mirror of
https://github.com/samsonjs/sectorlisp.git
synced 2026-03-25 09:05:48 +00:00
8 lines
258 B
Bash
Executable file
8 lines
258 B
Bash
Executable file
#!/bin/sh
|
|
if objdump -Cwd -Mi8086 sectorlisp.o | cat -n |
|
|
grep '[[:xdigit:]][[:xdigit:]] [[:xdigit:]][[:xdigit:]] [[:xdigit:]][[:xdigit:]][[:space:]]*j'; then
|
|
echo need to shuffle code around >&2
|
|
exit 1
|
|
else
|
|
echo all jump encodings are tiny >&2
|
|
fi
|