Add testcase for serializing svc #0x80

This commit is contained in:
Jakub Konka 2020-11-01 00:00:02 +01:00
parent d542e88706
commit 68bb1e91aa

View File

@ -233,6 +233,10 @@ test "serialize instructions" {
.inst = Instruction.svc(0),
.expected = 0b1101_0100_000_0000000000000000_00001,
},
.{ // svc #0x80 ; typical on Darwin
.inst = Instruction.svc(0x80),
.expected = 0b1101_0100_000_0000000010000000_00001,
},
};
for (testcases) |case| {