compile for two different SID base addresses

This commit is contained in:
nino-porcino 2022-01-13 17:20:27 +01:00
parent 13581255a2
commit f692c193bb
1 changed files with 7 additions and 1 deletions

View File

@ -10,8 +10,14 @@
// jsr music+6 to stop the music and quieten SID
//
#if SID_CC00
.var sid = $cc00 // $d400 on the C64
#endif
#if SID_C800
.var sid = $c800 // $d400 on the C64
#endif
.var dsp = $d012 // apple1 display device port
//rob hubbard