Tim Follin ZX Spectrum 1 bit tunes are awesome.
By the way any news on a possible release before Christmas ?
By the way any news on a possible release before Christmas ?
10/31/2023: Localization News - Dead of the Brain 1!No, NOT a trick, a Halloween treat! Presenting the Dead of the Brain 1 English patch by David Shadoff for the DEAD last official PC Engine CD game published by NEC before exiting the console biz in 1999! I helped edit/betatest and it's also a game I actually finished in 2023, yaaay! Shubibiman also did a French localization. github.com/dshadoff/DeadoftheBraintwitter.com/NightWolve/PCENews |
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu[hu7d]
filename=hu7.asm
type=code
bank=0
org=f243
size=d9
ldy #high(HERE)
lda #low(HERE)
bne skip
dey
skip:
dec A
phy
pha
jmp [vector]
HERE:
dummy_interrupt_vector:
; some code
jsr user_code ; push pc-1 into the stack an jump to user_code
; the 'rts' in the code pointed by vector will bring us back here
rti ; end of the interrupt vector
user_code:
jmp [vector] ; let's jump to user defined code