#include "test-common.h" int main(int argc, char** argv) { // CNST // dst - 0, Direct // imm - 0x4567 // // ZLSH // dst - 0, Direct // a - 0, Direct // b - 2, Immediate { foot::Emulator emu = run_instructions({ 0x00204567, 0x07200220 }); if (!check(0x159C, emu.register_at(0))) { return 1; } } return 0; }