aboutsummaryrefslogtreecommitdiffstats
path: root/src/isa.adb
blob: 5941660f1b5f5b6e6e22b7b9e336faad0a9544ed (plain)
1
2
3
4
5
6
7
8
9
10
package body ISA is
   function To_Byte (O : Opcode) return Byte
      is (Byte (O.Value mod 256));

   function X_Register (O : Opcode) return Register_Index
      is (Register_Index (O.Value / 256));

   function Y_Register (O : Opcode) return Register_Index
      is (Register_Index (O.Value / 16 mod 16));
end ISA;