mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
15 lines
211 B
ArmAsm
15 lines
211 B
ArmAsm
;
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
;
|
|
; 30.10.99, 17.04.2003
|
|
|
|
; void EnterDeskTop (void);
|
|
|
|
.import _exit
|
|
.export _EnterDeskTop
|
|
|
|
_EnterDeskTop:
|
|
lda #0
|
|
tax
|
|
jmp _exit
|