diff --git a/libsrc/c128/c128-georam.s b/libsrc/c128/c128-georam.s index 4e0ecd816..c521e4a4b 100644 --- a/libsrc/c128/c128-georam.s +++ b/libsrc/c128/c128-georam.s @@ -61,7 +61,7 @@ pagecount: .word 2048 ; Currently fixed INSTALL: lda #EM_ERR_OK - rts +; rts ; Run into UNINSTALL instead ; ------------------------------------------------------------------------ ; UNINSTALL routine. Is called before the driver is removed from memory. @@ -245,7 +245,7 @@ setup: sta ptr1 sta ptr2 iny lda (ptr1),y - sta ptr2+1 + sta ptr2+1 ; Get the count, calculate -(count-1) and store it into ptr3 diff --git a/libsrc/c128/c128-ramcart.s b/libsrc/c128/c128-ramcart.s index 695b47862..0931c3508 100644 --- a/libsrc/c128/c128-ramcart.s +++ b/libsrc/c128/c128-ramcart.s @@ -100,7 +100,7 @@ INSTALL: @readonly: lda #EM_ERR_NO_DEVICE - rts +; rts ; Run into UNINSTALL instead ; ------------------------------------------------------------------------ ; UNINSTALL routine. Is called before the driver is removed from memory. diff --git a/libsrc/c64/c64-georam.s b/libsrc/c64/c64-georam.s index 4e0ecd816..fc003b6aa 100644 --- a/libsrc/c64/c64-georam.s +++ b/libsrc/c64/c64-georam.s @@ -61,7 +61,7 @@ pagecount: .word 2048 ; Currently fixed INSTALL: lda #EM_ERR_OK - rts +; rts ; Run into UNINSTALL instead ; ------------------------------------------------------------------------ ; UNINSTALL routine. Is called before the driver is removed from memory. diff --git a/libsrc/c64/c64-ram.s b/libsrc/c64/c64-ram.s index 35194034d..161f35272 100644 --- a/libsrc/c64/c64-ram.s +++ b/libsrc/c64/c64-ram.s @@ -62,7 +62,7 @@ INSTALL: stx curpage ; Invalidate the current page inx ; X = 0 txa ; A = X = EM_ERR_OK - rts +; rts ; Run into UNINSTALL instead ; ------------------------------------------------------------------------ ; UNINSTALL routine. Is called before the driver is removed from memory. diff --git a/libsrc/c64/c64-ramcart.s b/libsrc/c64/c64-ramcart.s index 5541e9b9f..bd7741048 100644 --- a/libsrc/c64/c64-ramcart.s +++ b/libsrc/c64/c64-ramcart.s @@ -1,5 +1,5 @@ ; -; Extended memory driver for the RamCart 64/128KB cartridge. Driver works +; Extended memory driver for the RamCart 64/128KB cartridge. Driver works ; without problems when statically linked. ; Code is based on GEORAM code by Ullrich von Bassewitz. ; Maciej 'YTM/Elysium' Witkowiak @@ -100,7 +100,7 @@ INSTALL: @readonly: lda #EM_ERR_NO_DEVICE - rts +; rts ; Run into UNINSTALL instead ; ------------------------------------------------------------------------ ; UNINSTALL routine. Is called before the driver is removed from memory.