1
0
mirror of https://github.com/stid/woz64.git synced 2024-05-28 07:41:28 +00:00
woz64/hardware/ram.asm
2020-01-19 23:32:37 -08:00

31 lines
615 B
NASM

#importonce
.filenamespace Ram
// ========================================================
// ////// CONSTANTS ///////////////////////////////////////
// ========================================================
// ========================================================
// ////// METHODS /////////////////////////////////////////
// ========================================================
* = * "Ram HW"
init: {
// Clear Zero Page
lda #$00
tay
!:
sta $0002,y
sta $0200,y
sta $0300,y
iny
bne !-
rts
}