mirror of
https://github.com/ziglang/zig.git
synced 2025-12-25 07:33:08 +00:00
Add testcase for serializing svc #0x80
This commit is contained in:
parent
d542e88706
commit
68bb1e91aa
@ -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| {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user