mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-16 20:17:05 +03:00
This changeset contains an updated instruction database that brings ARM32 instructions for the first time. It also updates instruction database tooling especially for ARM64, which will also be used by ARM32 generator. Additionally, new operan has been added, which represents a register list as used by ARM32 instruction set. Other minor changes are related to ARM - some stuff had to be moved to a64 namespace from arm namespace as it's incompatible between 32-bit and 64-bit ISA.
6 lines
103 B
Bash
Executable File
6 lines
103 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
node ./tablegen-a32.js $@
|
|
node ./tablegen-a64.js $@
|
|
node ./tablegen-x86.js $@
|