From a564450415d54788d20a4c2b99dd35c1508e4a63 Mon Sep 17 00:00:00 2001 From: uz Date: Thu, 8 Mar 2012 18:59:41 +0000 Subject: [PATCH] Fixed a bug. High byte of the sector number is stored into the wrong place. Reported by Stefan Haubenthal. git-svn-id: svn://svn.cc65.org/cc65/trunk@5579 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/geos-cbm/disk/dio_params.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/geos-cbm/disk/dio_params.s b/libsrc/geos-cbm/disk/dio_params.s index 32a251b68..82f990356 100644 --- a/libsrc/geos-cbm/disk/dio_params.s +++ b/libsrc/geos-cbm/disk/dio_params.s @@ -26,7 +26,7 @@ dio_params: jsr popax sta dio_secnum - stx dio_secnum + stx dio_secnum+1 jsr popax ; get 3rd parameter pha ; save it -- 2.39.5