]> wirehaze git hosting - lifeboot.git/blobdiff - lifeboot.asm

wirehaze git hosting

initialize grid
[lifeboot.git] / lifeboot.asm
index 81185ddd29816e688d1c8ec713df5a4be2cd1fae..b0575aedc345a986800531d5002f8330be49286e 100644 (file)
@@ -9,7 +9,6 @@ org 0x7c00
 
 %define DEAD ' '            ; char to represent a dead cell
 %define ALIVE '#'           ; char to represent an alive cell
-%define INIT_RATIO 4        ; dead / alive
 %define PRINT_COLOR 0x07    ; grey on black
 
 %define GRID        ORG + 512               ; current cell grid (80 * 25 bytes)
@@ -53,6 +52,26 @@ mov ah, 0x00                ; get
 int 0x1a                    ;  system time
 mov [XSS], dx               ; cx:dx = number of clock ticks since midnight
 
+; initialize grid
+mov di, GRID
+mov cx, COLS * ROWS
+
+.initgrid:                  ; do {
+    call xs                 ;     ax = rand
+    mov dl, DEAD            ;     dl = DEAD (likely)
+
+    test ax, 0b11
+
+    jnz  .initgrid_nz       ;     if (ax % 4 == 0)
+    mov dl, ALIVE           ;         dl = ALIVE
+
+.initgrid_nz:
+    mov [di + cx], dl       ;     grid[cx] = dl
+
+    loop .initgrid          ; } while (--cx)
+
+jmp halt
+
 ; functions -------------------------------------------------------------------
 
 ; xs() - xorshift pseudorandom number generator -------------------------------
@@ -60,6 +79,8 @@ mov [XSS], dx               ; cx:dx = number of clock ticks since midnight
 ; output:
 ; ax        = updated state ([XSS])
 
+; clobbers ax, dx
+
 xs:
 
 mov ax, [XSS]