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:
parent
476d47dd46
commit
b499757ee4
@ -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)
|
||||
|
||||
|
20
libsrc/geos/process/processsleep.s
Normal file
20
libsrc/geos/process/processsleep.s
Normal 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
|
Loading…
Reference in New Issue
Block a user