From 9b309c4c32d018a889fdeac988812838dea47cb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Cuevas?= Date: Tue, 9 Jun 2020 13:46:06 +0200 Subject: [PATCH] Now we have freeform field --- mine.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mine.asm b/mine.asm index 387414f..91f18d0 100644 --- a/mine.asm +++ b/mine.asm @@ -8,8 +8,8 @@ stack $3000 ;Constants ;;;;;;;;;;;;;;;;;;;;;;;;;;;; -COLUMNS = 8 -LINES = 8 +COLUMNS = 16 +LINES = 16 FIELDX = 16 FIELDY = 2 MAXMINES = 10 @@ -198,7 +198,7 @@ dontdraw: je jumplinedraw ;Time to increment SI in a more complex way inc si continuecomp: - cmp cx, COLUMNS * LINES ;Compare CX the max the field will be + cmp cx, 64 ;Compare CX the max the field will be jne drawloop ;Continue ret ;Return jumplinedraw: