This commit is contained in:
bQUARKz 2026-03-02 15:12:05 +00:00
parent 5c53b92627
commit c6e3199821
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

@ -174,12 +174,3 @@ fn heavy_load(mut rom: &mut Vec<u8>) {
patch(&mut rom, jif_log_offset, after_log);
}
fn light_load(rom: &mut Vec<u8>) {
// Single function 0: main
// Only paints Purple: 0x780F once.
// The runtime handles calling this function repeatedly every tick.
// --- clear screen (Purple 0x780F) ---
rom.extend(asm("PUSH_I32 30735\nSYSCALL 0x1010\nFRAME_SYNC\nRET")); // 30735 is 0x780F
}