diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-03-15 21:22:30 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-03-15 21:22:30 -0700 |
commit | bc182ae559580d4d2cde6d5c5e8ed3bb5906bdb5 (patch) | |
tree | 3c193bf6d292ab34ffac46acf1cbc36a73371429 /linux | |
parent | 341f0c59be23e5eabee50b43608a64ebf75fd053 (diff) | |
download | mu-bc182ae559580d4d2cde6d5c5e8ed3bb5906bdb5.tar.gz |
boot.subx is now clean SubX
Diffstat (limited to 'linux')
-rwxr-xr-x | linux/pack | bin | 59507 -> 59567 bytes | |||
-rw-r--r-- | linux/pack.subx | 28 |
2 files changed, 27 insertions, 1 deletions
diff --git a/linux/pack b/linux/pack index 557b1c0c..e69773da 100755 --- a/linux/pack +++ b/linux/pack Binary files differdiff --git a/linux/pack.subx b/linux/pack.subx index b619712a..d6ff7af5 100644 --- a/linux/pack.subx +++ b/linux/pack.subx @@ -1977,6 +1977,8 @@ emit-opcodes: # line: (addr stream byte), out: (addr buffered-file) # f3 xx # f2 0f xx # f3 0f xx + # 66 xx (hacky support for boot.subx) + # db xx (hacky support for boot.subx) # # pseudocode: # rewind-stream(line) @@ -1985,7 +1987,7 @@ emit-opcodes: # line: (addr stream byte), out: (addr buffered-file) # if (slice-empty?(op1) || slice-starts-with?(op1, "#")) return # op1 = next-token-from-slice(op1->start, op1->end, "/") # write-slice-buffered(out, op1) - # if !slice-equal?(op1, "0f") && !slice-equal?(op1, "f2") && !slice-equal?(op1, "f3") + # if !slice-equal?(op1, "0f") && !slice-equal?(op1, "f2") && !slice-equal?(op1, "f3") && !slice-equal?(op1, "66") && !slice-equal?(op1, "db") # return # # var op2 = next-word(line) @@ -2116,6 +2118,30 @@ $emit-opcodes:op1: # . if (eax != false) goto op2 3d/compare-eax-and 0/imm32/false 75/jump-if-!= $emit-opcodes:op2/disp8 + # if (slice-equal?(op1, "66")) goto op2 + # . eax = slice-equal?(op1, "66") + # . . push args + 68/push "66"/imm32 + 51/push-ecx + # . . call + e8/call slice-equal?/disp32 + # . . discard args + 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 8/imm32 # add to esp + # . if (eax != false) goto op2 + 3d/compare-eax-and 0/imm32/false + 75/jump-if-!= $emit-opcodes:op2/disp8 + # if (slice-equal?(op1, "db")) goto op2 + # . eax = slice-equal?(op1, "db") + # . . push args + 68/push "db"/imm32 + 51/push-ecx + # . . call + e8/call slice-equal?/disp32 + # . . discard args + 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 8/imm32 # add to esp + # . if (eax != false) goto op2 + 3d/compare-eax-and 0/imm32/false + 75/jump-if-!= $emit-opcodes:op2/disp8 # otherwise return e9/jump $emit-opcodes:end/disp32 $emit-opcodes:op2: |