From 7b96857dc1fc4aa33bc83682a9b0a218a77d760a Mon Sep 17 00:00:00 2001 From: Sharoy Veduchi <61427449+doodayev@users.noreply.github.com> Date: Tue, 13 Jun 2023 14:26:04 -0700 Subject: [PATCH] Added back stuff for GodDoodle These additions are needed for GodDoodle to function --- src/System/God/GodExterns.ZC | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/System/God/GodExterns.ZC b/src/System/God/GodExterns.ZC index 41929bcd..b2483e42 100755 --- a/src/System/God/GodExterns.ZC +++ b/src/System/God/GodExterns.ZC @@ -11,12 +11,18 @@ public class CGodGlobals I64 word_fuf_flags, word_count; CFifoU8 *fifo; + CDC *doodle_dc; + I64 doodle_ch; + CFifoU8 *doodle_fifo; + Bool doodle_done; } god; MemSet(&god, 0, sizeof(CGodGlobals)); +god.doodle_fifo =FifoU8New(2048 * 8); god.fifo = FifoU8New(2048 * 8); extern U0 GodBiblePassage(I64 num_lines=20); extern U0 GodBitsInsert(I64 num_bits, I64 bitfield); +extern U0 GodDoodle(U8 *hex=NULL); extern U0 GodSong(); extern U0 GodWord(I64 bits=17);