Exemple #1
0
        static void Decode()
        {
            int address = TEXT_SECTION_START;

            while (_memory.Read(address).Any(x => x != 0))
            {
                byte[] bytes = _memory.Read(address);
                InstructionDecoder.PrintInstruction(bytes);
                address += 4;
            }
        }