Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions neslib.sinc
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,9 @@ _vram_unrle:

cmp <RLE_TAG
beq @2

@is_literal:

sta PPU_DATA
sta <RLE_BYTE
bne @1
Expand All @@ -576,6 +579,13 @@ _vram_unrle:

@21:

cmp#$01
bcs @is_run
lda <_RLE_TAG
bcc @is_literal

@is_run:

tax
lda <RLE_BYTE

Expand Down