Skip to content

Commit

Permalink
Minor changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dtremblay committed Aug 28, 2020
1 parent a0df217 commit 39d3ead
Show file tree
Hide file tree
Showing 6 changed files with 10,470 additions and 849 deletions.
3 changes: 2 additions & 1 deletion OPL3_def.asm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ OPL3_R_WAVE_SELECT = $AFE7E0; $E0..$F5
OPL3_L_TIMER1 = $AFE602 ; TIMER-1
OPL3_L_TIMER2 = $AFE603 ; TIMER-2
OPL3_L_IRQ = $AFE604 ;
.comment OPL3_L_BASE = $AFE700
.comment
OPL3_L_BASE = $AFE700
;OPL3_L_BASE_LL = $E700
;OPL3_L_BASE_HL = $00AF
OPL3_L_TEST = $AFE701 ; TEST
Expand Down
7 changes: 4 additions & 3 deletions Rad_Player.asm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ EFFECT_SET_SPEED = $0F
FNUMBER_MIN = $0156
FNUMBER_MAX = $02AE

FIFTY_HZ_COUNT = 286360
SLOW_TIMER = 786703

SongData .struct
version .byte $00 ; bit 1 is RAD 1, bit 2 is RAD 2
songLength .byte $00
Expand All @@ -21,6 +24,7 @@ hasSlowTimer .byte $00 ;BOOL $00 = False, $01 = True
; special characters for notes
; C C# D D# E F F# G G# A A# B
note_array .byte $43, $90, $44, $91, $45, $46, $92, $47, $93, $41, $94, $42, $43
TuneInfo .dstruct SongData

; ************************************************************************************************
; We are assuming that the RAD File is already Loaded Somewhere
Expand Down Expand Up @@ -1004,6 +1008,3 @@ RAD_SETINSTRUMENT
STA [OPL2_IND_ADDY_LL]
PLY
RTS

* = $170000
TuneInfo .dstruct SongData
2 changes: 0 additions & 2 deletions tracker.asm
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

MOUSE_BUTTONS_REG= $380F00 ; bit 2=middle, bit 1=right, bit 0=left
INSTR_REC_LEN = INSTRUMENT_BAGPIPE1 - INSTRUMENT_ACCORDN
FIFTY_HZ_COUNT = 286360
SLOW_TIMER = 786703
SCRN_COPY = $001000
SCRN_COPY_CLR = $001000 + 800
SDCARD_LIST = $340000
Expand Down
Loading

0 comments on commit 39d3ead

Please sign in to comment.