From f692c193bb64ceed8a57c4b6054e8e68a4351038 Mon Sep 17 00:00:00 2001 From: nino-porcino Date: Thu, 13 Jan 2022 17:20:27 +0100 Subject: [PATCH] compile for two different SID base addresses --- demos/montyr/montyr_apple1.asm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/demos/montyr/montyr_apple1.asm b/demos/montyr/montyr_apple1.asm index c6a676f..b163f44 100644 --- a/demos/montyr/montyr_apple1.asm +++ b/demos/montyr/montyr_apple1.asm @@ -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