19 lines
316 B
C++
19 lines
316 B
C++
#include "test-common.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
// CNST
|
|
// dst - 0, Direct
|
|
// imm - 0x4567
|
|
//
|
|
// BWNG
|
|
// dst - 0, Direct
|
|
// a - 0, Direct
|
|
{
|
|
foot::Emulator emu = run_instructions({ 0x00204567, 0x01200120 });
|
|
if (!check(0xBA98, emu.register_at(0))) { return 1; }
|
|
}
|
|
|
|
return 0;
|
|
}
|