File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,9 @@ void HuC6280::OPCode0x02()
43
43
void HuC6280::OPCode0x03 ()
44
44
{
45
45
// TODO
46
- // ST1 #nn
47
- UnofficialOPCode ();
46
+ // ST0 #nn
47
+ u8 nn = Fetch8 ();
48
+ Debug (" ST0 %02X" , nn);
48
49
}
49
50
50
51
void HuC6280::OPCode0x04 ()
@@ -157,9 +158,10 @@ void HuC6280::OPCode0x12()
157
158
158
159
void HuC6280::OPCode0x13 ()
159
160
{
160
- // UNOFFICIAL
161
- // SLO ($n),Y
162
- UnofficialOPCode ();
161
+ // TODO
162
+ // ST1 #nn
163
+ u8 nn = Fetch8 ();
164
+ Debug (" ST1 %02X" , nn);
163
165
}
164
166
165
167
void HuC6280::OPCode0x14 ()
@@ -271,9 +273,10 @@ void HuC6280::OPCode0x22()
271
273
272
274
void HuC6280::OPCode0x23 ()
273
275
{
274
- // UNOFFICIAL
275
- // RLA $(nn,X)
276
- UnofficialOPCode ();
276
+ // TODO
277
+ // ST2 #nn
278
+ u8 nn = Fetch8 ();
279
+ Debug (" ST2 %02X" , nn);
277
280
}
278
281
279
282
void HuC6280::OPCode0x24 ()
You can’t perform that action at this time.
0 commit comments