mirror of
https://github.com/cc65/cc65.git
synced 2026-03-11 08:41:58 +00:00
16 lines
189 B
ArmAsm
16 lines
189 B
ArmAsm
;
|
|
; Stefan Haubenthal, 2023-01-16
|
|
;
|
|
|
|
.export initst
|
|
|
|
.include "mega65.inc"
|
|
|
|
.proc initst
|
|
|
|
lda #$00
|
|
sta STATUS
|
|
rts
|
|
|
|
.endproc
|