From b0e6ce143cd105e003ed981215a303fa60f1a07b Mon Sep 17 00:00:00 2001 From: aramya <22577625+thamugadi@users.noreply.github.com> Date: Wed, 19 Jan 2022 16:23:30 +0100 Subject: [PATCH] Update load.fth --- loader/load.fth | 8 -------- 1 file changed, 8 deletions(-) diff --git a/loader/load.fth b/loader/load.fth index 5d666c6..bb1b5bf 100644 --- a/loader/load.fth +++ b/loader/load.fth @@ -1,5 +1,4 @@ ." powerpc-ofw-boot : Booting through OpenFirmware..." cr - \ storing 0xBE for beige, 0x5A for mac99 \ cannot use superior, inferior, different symbols (bootinfo.txt) : sup - dup abs = ; @@ -15,24 +14,17 @@ : magic-number-offset 0 ; : width-offset 4 ; : height-offset 8 ; - fba beige-vram = if beige-message beige-magic-number beige-vram c! then fba mac99-vram = if mac99-message mac99-magic-number mac99-vram c! then - fba beige-vram = if screen-width 4 beige-vram + l! then fba beige-vram = if screen-height 8 beige-vram + l! then - fba mac99-vram = if screen-width 4 mac99-vram + l! then fba mac99-vram = if screen-height 8 mac99-vram + l! then - ." informations stored :" cr fba a dump - variable run -1 run ! fba beige-vram diff fba mac99-vram diff and if hardware-error 0 run ! then run @ 0 = if 1 0 do 0 +loop then ." Running Game of Life: " cr boot hd:,\boot\kernel.elf - -