aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorAndrew Chambers <[email protected]>2021-10-14 20:03:43 +1300
committerAndrew Chambers <[email protected]>2021-10-14 20:03:43 +1300
commitad8d5f5f2689c21c3d3ea7d4fec0e2747f53883f (patch)
tree80ea491c90708cb46409f6633f5336343a99f3a7 /main.c
parenta4289ade4c65730124e10849b1544db374cf5062 (diff)
Update conditions to agree with clang.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 42950c3..5851844 100644
--- a/main.c
+++ b/main.c
@@ -792,8 +792,8 @@ static void assemble(void) {
case ASM_JMP: {
static uint8_t variant2op[31] = {
0xe9, 0x84, 0x88, 0x8b, 0x8a, 0x8a, 0x80, 0x85, 0x89, 0x8b, 0x81,
- 0x8f, 0x8d, 0x8c, 0x8e, 0x85, 0x83, 0x83, 0x82, 0x86, 0x8e, 0x8c,
- 0x8d, 0x8f, 0x84, 0x84, 0x82, 0x86, 0x82, 0x83, 0x87,
+ 0x8f, 0x8d, 0x8c, 0x8e, 0x85, 0x83, 0x87, 0x83, 0x82, 0x86, 0x8e,
+ 0x8c, 0x8d, 0x8f, 0x84, 0x82, 0x86, 0x82, 0x83, 0x87,
};
if (v->jmp.variant)
sb(0x0f);