From 787be520e948256cb16113356eedc7da5564c329 Mon Sep 17 00:00:00 2001 From: pjht Date: Mon, 21 Nov 2022 12:54:07 -0600 Subject: [PATCH] Remove unnecessary stop instructions --- rom.68k | 3 --- 1 file changed, 3 deletions(-) diff --git a/rom.68k b/rom.68k index 6e8436c..51a3bfb 100644 --- a/rom.68k +++ b/rom.68k @@ -20,7 +20,6 @@ romfindret: move.b (a0)+, (a1)+ | Transfer a byte of ramcode to the ROM's IO space RAM dbra d0, ramcode_loop | Loop back if there is more to transfer jmp (a6) | Jump to the ramcode - stop #0x2700 ramcode: move.b #0x0, (0xFE, a6) | Disable the ROM @@ -32,8 +31,6 @@ ramcode: move.l #0x0, (0xC, a4) | Set the destination address to 0x0 move.w #0x1, (0x8, a4) | Send a DMA read command jmp (0x0).W | Jump to the loaded sector - - stop #0x2700 ramcode_end: nop | Padding to make sure ramcode_end and find_first_card are different