This commit was generated by cvs2svn to compensate for changes in r2,

which included commits to RCS files with non-trunk default branches.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2000-05-28 13:40:48 +00:00
parent 579491e8a4
commit 53dd513176
847 changed files with 91345 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#
# Makefile for GEOS lib
# for cc65
#
#
%.o: %.s
@echo $<
@$(AS) -o $@ $(AFLAGS) $<
S_OBJS = callroutine.o enterdesktop.o firstinit.o getrandom.o getserialnumber.o\
initdoneio.o mainloop.o panic.o tobasic.o setdevice.o
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 21.12.99
; void CallRoutine (myRoutine);
.export _CallRoutine
.include "../inc/jumptab.inc"
_CallRoutine = CallRoutine

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; void EnterDeskTop (void);
.export _EnterDeskTop
.include "../inc/jumptab.inc"
_EnterDeskTop = EnterDeskTop

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; void FirstInit (void);
.export _FirstInit
.include "../inc/jumptab.inc"
_FirstInit = FirstInit

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; int GetRandom (void);
.export _GetRandom
.include "../inc/jumptab.inc"
_GetRandom = GetRandom

View File

@@ -0,0 +1,19 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; int GetSerialNumber (void);
.export _GetSerialNumber
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
_GetSerialNumber:
jsr GetSerialNumber
lda r0L
ldx r0H
rts

View File

@@ -0,0 +1,16 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; void InitForIO (void);
; void DoneWithIO (void);
.export _InitForIO, _DoneWithIO
.include "../inc/jumptab.inc"
_InitForIO = InitForIO
_DoneWithIO = DoneWithIO

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; void MainLoop (void);
.export _MainLoop
.include "../inc/jumptab.inc"
_MainLoop = MainLoop

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; void Panic (void);
.export _Panic
.include "../inc/jumptab.inc"
_Panic = Panic

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 21.12.99
; void SetDevice (char newDeviceNumber);
.export _SetDevice
.include "../inc/jumptab.inc"
_SetDevice = SetDevice

View File

@@ -0,0 +1,13 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
; void ToBASIC (void);
.export _ToBASIC
.include "../inc/jumptab.inc"
_ToBASIC = ToBASIC