From 5f3d71b514e25f9359637b4bf1a2e63e4d52abcb Mon Sep 17 00:00:00 2001 From: Harley Travis Date: Sat, 4 Jul 2026 17:31:43 -0500 Subject: Update DskImg.HC I renamed xfer_blk to xfer_cyl, and added a jump to the start of this label. --- Examples/DskImg.HC | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Examples/DskImg.HC b/Examples/DskImg.HC index 5912302..f0cb3a7 100644 --- a/Examples/DskImg.HC +++ b/Examples/DskImg.HC @@ -21,7 +21,7 @@ U8 DskImg() // Allocate a buffer for the cylinders buf=MAlloc(cyl_len*bd->blk_size) - xfer_blk: + xfer_cyl: // If we are past the last blk, stop. if (blk>bd->max_blk) goto done; @@ -33,6 +33,7 @@ U8 DskImg() // Move to the next cylinder blk+=cyl_len; + goto xfer_cyl; done: // Close the image file and release the buffer -- cgit v1.2.3