1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-27 12:29:32 +00:00
8bitworkshop/presets/nes/ex1.asm

96 lines
2.0 KiB
NASM
Raw Normal View History

include "nesdefs.asm"
;;;;; VARIABLES
seg.u RAM
2018-07-27 17:39:09 +00:00
org $0
;;;;; NES CARTRIDGE HEADER
NES_HEADER 0,2,1,0 ; mapper 0, 2 PRGs, 1 CHR, horiz. mirror
;;;;; START OF CODE
Start:
; wait for PPU warmup; clear CPU RAM
NES_INIT ; set up stack pointer, turn off PPU
jsr WaitSync ; wait for VSYNC
jsr ClearRAM ; clear RAM
jsr WaitSync ; wait for VSYNC (and PPU warmup)
; set palette and nametable VRAM
jsr SetPalette ; set palette colors
jsr HelloVRAM ; print message in name table
; reset PPU address and scroll registers
2018-07-27 17:39:09 +00:00
lda #0
sta PPU_ADDR
sta PPU_ADDR ; PPU addr = $0000
2018-07-27 17:39:09 +00:00
sta PPU_SCROLL
sta PPU_SCROLL ; PPU scroll = $0000
; activate PPU graphics
2018-11-19 14:10:13 +00:00
lda #CTRL_NMI
sta PPU_CTRL ; enable NMI
lda #MASK_BG
sta PPU_MASK ; enable rendering
2018-07-27 17:39:09 +00:00
.endless
jmp .endless ; endless loop
2018-07-27 17:39:09 +00:00
; fill video RAM with "Hello World" msg
HelloVRAM: subroutine
2019-02-28 21:08:41 +00:00
; set PPU address to name table A (row 1, col 1)
PPU_SETADDR $2021
2019-02-28 21:08:41 +00:00
ldy #0 ; set Y counter to 0
2018-07-27 17:39:09 +00:00
.loop:
lda HelloMsg,y ; get next character
beq .end ; is 0? exit loop
sta PPU_DATA ; store+advance PPU
iny ; next character
bne .loop ; loop
.end
rts ; return to caller
2019-02-28 21:08:41 +00:00
; ASCII message to display on screen
HelloMsg:
.byte "Hello, World!"
.byte 0 ; zero terminator
2018-07-27 17:39:09 +00:00
; set palette colors
SetPalette: subroutine
2019-02-28 21:08:41 +00:00
; set PPU address to palette start
PPU_SETADDR $3f00
ldy #0
.loop:
2019-02-26 15:56:51 +00:00
lda Palette,y ; lookup byte in ROM
sta PPU_DATA ; store byte to PPU data
iny ; Y = Y + 1
cpy #32 ; is Y equal to 32?
bne .loop ; not yet, loop
rts ; return to caller
2018-07-27 17:39:09 +00:00
;;;;; COMMON SUBROUTINES
include "nesppu.asm"
2018-07-27 17:39:09 +00:00
;;;;; INTERRUPT HANDLERS
NMIHandler:
2019-02-28 21:08:41 +00:00
rti ; return from interrupt
2018-07-27 17:39:09 +00:00
;;;;; CONSTANT DATA
Palette:
2019-02-28 21:08:41 +00:00
hex 1f ;screen color
2019-04-09 14:24:23 +00:00
hex 01112100 ;background 0
hex 02122200 ;background 1
hex 02112100 ;background 2
hex 01122200 ;background 3
2018-07-27 17:39:09 +00:00
;;;;; CPU VECTORS
NES_VECTORS
2018-07-27 17:39:09 +00:00
;;;;; TILE SETS
org $10000
incbin "jroatch.chr"