Skip to content

Commit 854feae

Browse files
author
Brian Holdsworth
committed
FIX: 'go64' to mount disk images in R/W mode
1 parent 557592e commit 854feae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cbm/cmd/go64.asm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jmp main
1717

1818
; Constants
1919
FALSE = 0x00
20+
TRUE = 0xff
2021
ldUsage64 = *
2122
!pet "Usage: go64 <image>",chrCR
2223
!pet "Supports T64 and D64 image.",chrCR,0
@@ -91,7 +92,7 @@ mountImageFile = *
9192
sta zp
9293
pla
9394
sta zp+1
94-
lda #FALSE
95+
lda #TRUE
9596
jsr aceMountImage
9697
lda errno
9798
beq mtDone

0 commit comments

Comments
 (0)