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:
18
libsrc/geos/system/Makefile
Normal file
18
libsrc/geos/system/Makefile
Normal 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
|
||||
13
libsrc/geos/system/callroutine.s
Normal file
13
libsrc/geos/system/callroutine.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 21.12.99
|
||||
|
||||
; void CallRoutine (myRoutine);
|
||||
|
||||
.export _CallRoutine
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_CallRoutine = CallRoutine
|
||||
13
libsrc/geos/system/enterdesktop.s
Normal file
13
libsrc/geos/system/enterdesktop.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 30.10.99
|
||||
|
||||
; void EnterDeskTop (void);
|
||||
|
||||
.export _EnterDeskTop
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_EnterDeskTop = EnterDeskTop
|
||||
13
libsrc/geos/system/firstinit.s
Normal file
13
libsrc/geos/system/firstinit.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 30.10.99
|
||||
|
||||
; void FirstInit (void);
|
||||
|
||||
.export _FirstInit
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_FirstInit = FirstInit
|
||||
13
libsrc/geos/system/getrandom.s
Normal file
13
libsrc/geos/system/getrandom.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 30.10.99
|
||||
|
||||
; int GetRandom (void);
|
||||
|
||||
.export _GetRandom
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_GetRandom = GetRandom
|
||||
19
libsrc/geos/system/getserialnumber.s
Normal file
19
libsrc/geos/system/getserialnumber.s
Normal 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
|
||||
16
libsrc/geos/system/initdoneio.s
Normal file
16
libsrc/geos/system/initdoneio.s
Normal 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
|
||||
13
libsrc/geos/system/mainloop.s
Normal file
13
libsrc/geos/system/mainloop.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 30.10.99
|
||||
|
||||
; void MainLoop (void);
|
||||
|
||||
.export _MainLoop
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_MainLoop = MainLoop
|
||||
13
libsrc/geos/system/panic.s
Normal file
13
libsrc/geos/system/panic.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 30.10.99
|
||||
|
||||
; void Panic (void);
|
||||
|
||||
.export _Panic
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_Panic = Panic
|
||||
13
libsrc/geos/system/setdevice.s
Normal file
13
libsrc/geos/system/setdevice.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 21.12.99
|
||||
|
||||
; void SetDevice (char newDeviceNumber);
|
||||
|
||||
.export _SetDevice
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_SetDevice = SetDevice
|
||||
13
libsrc/geos/system/tobasic.s
Normal file
13
libsrc/geos/system/tobasic.s
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
;
|
||||
; Maciej 'YTM/Alliance' Witkowiak
|
||||
;
|
||||
; 30.10.99
|
||||
|
||||
; void ToBASIC (void);
|
||||
|
||||
.export _ToBASIC
|
||||
|
||||
.include "../inc/jumptab.inc"
|
||||
|
||||
_ToBASIC = ToBASIC
|
||||
Reference in New Issue
Block a user