1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Introduce failing ASL test.

This commit is contained in:
Thomas Harte 2022-04-20 20:22:56 -04:00
parent 3af93ada6f
commit e1f4187430

View File

@ -175,6 +175,11 @@ template <int index> NSString *operand(Preinstruction instruction) {
case Operation::NEGw: instruction = @"NEG.w"; break;
case Operation::NEGl: instruction = @"NEG.l"; break;
case Operation::ASLb: instruction = @"ASL.b"; break;
case Operation::ASLw: instruction = @"ASL.w"; break;
case Operation::ASLl: instruction = @"ASL.l"; break;
case Operation::ASLm: instruction = @"ASL.w"; break;
/*
TODO: