// Internal Ram Declarations // Block Fill Initializations InternalRAM.byte(1-2) = 127 InternalRAM.word(3-4) = 32768 InternalRAM.string(110-111) = "The cat in the hat" // Byte Initializations InternalRAM.byte(0) = 16 InternalRAM.byte(127) = 120 InternalRAM.byte(255) = 180 // Word Initializations InternalRAM.word(01) = 255 InternalRAM.word(200) = 512 InternalRAM.word(235) = 65535 // String Initializations InternalRAM.string(2) = "Amulet Technologies, LLC" InternalRAM.string(100) = "www.AmuletTechnologies.com" InternalRAM.string(198) = "Hello, World!"