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 ?
![]() |
PC-FX Localization for Team Innocent is released, a pre-Christmas gift!! In a twist, it feels like the NEC PC-FX got more attention in 2024 than any other time I can remember! Caveat: The localizers consider the "v0.9" patch a BETA as it still faces technical hurdles to eventually subtitle the FMV scenes, but they consider it very much playable. |
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