mirror of
https://github.com/cc65/cc65.git
synced 2026-01-22 00:20:00 +00:00
16 lines
188 B
ArmAsm
16 lines
188 B
ArmAsm
;
|
|
; Stefan Haubenthal, 2023-01-16
|
|
;
|
|
|
|
.export initst
|
|
|
|
.include "vic20.inc"
|
|
|
|
.proc initst
|
|
|
|
lda #$00
|
|
sta STATUS
|
|
rts
|
|
|
|
.endproc
|