// this file explains the contents of instr_mem.mif for lab 5
// you can use this file when your design does not compete the testbench 
// to check if every instruction is executed correctly
Load Byte 00000001 // acc = DM[1]
Add 00000000 //  ACC = ACC + DM[0]
Display // Move ACC to Display Reg
Store byte 00000001 // DM[1] = acc
subtract 00000000	: ACC = ACC - DM[0]
Store 00000000	// DM[0] = ACC;
Jump 00000000 // start over
