############################################################################## # File: init ############################################################################## # Initialize all the flip flops in the system to a 0 INIT 0 # This will force the RESET input high to start the execution FORCE RESET 1 step 1 # Update the display if running interactively UPDATE # Load the memory into bank 0. Try to load 1K (bytes? words?) BANK 0 LENGTH 1024 MEMORYDOWNLOAD "mem.bin" !echo Here are the initial values: INCLUDE "disp"