Przeglądaj źródła

* fixed register number of IX

git-svn-id: branches/z80@44483 -
nickysn 5 lat temu
rodzic
commit
dc1ff00418

+ 1 - 1
compiler/z80/rz80con.inc

@@ -10,7 +10,7 @@ NR_DE = tregister($01030002);
 NR_L = tregister($01010003);
 NR_H = tregister($01020003);
 NR_HL = tregister($01030003);
-NR_IX = tregister($01030003);
+NR_IX = tregister($01030004);
 NR_IY = tregister($01030005);
 NR_A_ = tregister($01010006);
 NR_C_ = tregister($01010007);

+ 1 - 1
compiler/z80/rz80num.inc

@@ -10,7 +10,7 @@ tregister($01030002),
 tregister($01010003),
 tregister($01020003),
 tregister($01030003),
-tregister($01030003),
+tregister($01030004),
 tregister($01030005),
 tregister($01010006),
 tregister($01010007),

+ 1 - 1
compiler/z80/rz80sup.inc

@@ -10,7 +10,7 @@ RS_DE = 2;
 RS_L = 3;
 RS_H = 3;
 RS_HL = 3;
-RS_IX = 3;
+RS_IX = 4;
 RS_IY = 5;
 RS_A_ = 6;
 RS_C_ = 7;

+ 1 - 1
compiler/z80/z80reg.dat

@@ -16,7 +16,7 @@ DE,$01030002,de,7,7
 L,$01010003,l,8,8
 H,$01020003,h,9,9
 HL,$01030003,hl,10,10
-IX,$01030003,ix,11,11
+IX,$01030004,ix,11,11
 IY,$01030005,iy,12,12
 A_,$01010006,a'',13,13
 C_,$01010007,c'',14,14