X-Git-Url: https://git.wirehaze.ovh/lifeboot.git/blobdiff_plain/3d90482f86a28c1ac8d295a389f16d007eaee3ea..9ed39df5a90be6cce8ee7948cefbf8e5fc7fe089:/lifeboot.asm diff --git a/lifeboot.asm b/lifeboot.asm index 60b5ea4..8b530f9 100644 --- a/lifeboot.asm +++ b/lifeboot.asm @@ -7,13 +7,13 @@ org 0x7c00 %define COLS 80 %define ROWS 25 -%define GRID ORG + 512 -%define NEXT_GRID GRID_CUR + COLS * ROWS +%define DEAD ' ' ; char to represent a dead cell +%define ALIVE '#' ; char to represent an alive cell +%define PRINT_COLOR 0x07 ; grey on black -%define DEAD ' ' -%define ALIVE '#' - -%define PRINT_COLOR 0x07 ; grey on black +%define GRID ORG + 512 ; current cell grid (80 * 25 bytes) +%define NEXT_GRID GRID + COLS * ROWS ; next cell grid (80 * 25 bytes) +%define XSS NEXT_GRID + COLS * ROWS ; xs() state ; entry point ----------------------------------------------------------------- @@ -27,6 +27,9 @@ mov ss, ax mov sp, ORG mov bp, ORG +; clear direction flag +cld + ; clear screen ---------------------------------------------------------------- ; disable cursor @@ -43,6 +46,65 @@ mov ax, (PRINT_COLOR << 8) | DEAD rep stosw ; fill cx words at es:di with ax +; setup ----------------------------------------------------------------------- + +setup: + +; initialize xss +mov ah, 0x00 ; get +int 0x1a ; system time +mov [XSS], dx ; cx:dx = number of clock ticks since midnight + +; initialize grid +mov cx, COLS * ROWS ; for each cell +xor ax, ax +mov es, ax +mov di, GRID ; es:di -> GRID + +.initgrid: ; do { + call xs ; [XSS] = rand + mov al, DEAD ; al = DEAD (likely) + + test [XSS], 0b11 + + jnz .initgrid_nz ; if ([XSS] % 4 == 0) + mov al, ALIVE ; al = ALIVE + +.initgrid_nz: + stosb ; [es:(di++)] = al + + loop .initgrid ; } while (--cx) + +jmp halt + +; functions ------------------------------------------------------------------- + +; xs() - xorshift pseudorandom number generator ------------------------------- + +; output: +; [XSS] = updated state + +; clobbers bx, dx + +xs: + +mov bx, [XSS] +mov dx, bx + +shl dx, 1 ; dx = xss << 1 +xor bx, dx ; bx = xss ^ (xss << 1) +mov dx, bx + +shr dx, 3 ; dx = xss' >> 3 +xor bx, dx ; bx = xss' ^ (xss' >> 3) +mov dx, bx + +shl dx, 10 ; dx = xss'' << 10 +xor bx, dx ; bx = xss'' ^ (xss'' << 10) +mov [XSS], bx + +ret + ; errors ---------------------------------------------------------------------- hello: