1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00

Remove global namespace operator

git-svn-id: svn://svn.cc65.org/cc65/trunk@562 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-12-06 20:08:19 +00:00
parent 5da1b0181f
commit 023d649490

View File

@ -13,9 +13,9 @@
.proc _clock
lda #0 ; Byte 3 is always zero
sta ::sreg+1
sta sreg+1
jsr RDTIM
sty ::sreg
sty sreg
rts ; Don't set CC, this has no meaning here
.endproc