1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-21 20:29:24 +00:00

geos/process/sleep.s renamed to processsleep.s due to nameclash with common file

git-svn-id: svn://svn.cc65.org/cc65/trunk@2323 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst 2003-08-15 19:16:01 +00:00
parent 476d47dd46
commit b499757ee4
2 changed files with 21 additions and 1 deletions

View File

@ -8,7 +8,7 @@
@$(AS) -o $@ $(AFLAGS) $<
S_OBJS = processinitrestartenable.o processblock.o processfreeze.o sleep.o
S_OBJS = processinitrestartenable.o processblock.o processfreeze.o processsleep.o
all: $(S_OBJS)

View File

@ -0,0 +1,20 @@
;
; Maciej 'YTM/Alliance' Witkowiak
;
; 30.10.99
;
; void Sleep (int jiffies);
;
.export _Sleep
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
_Sleep:
sta r0L
stx r0H
jmp Sleep