MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / init_table68k

Function init_table68k

src/readcpu.cpp:963–977  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

961}
962
963void init_table68k(void)
964{
965 int i;
966
967 free(table68k);
968 table68k = xmalloc(struct instr, 65536);
969 for (i = 0; i < 65536; i++) {
970 table68k[i].mnemo = i_ILLG;
971 table68k[i].handler = -1;
972 }
973 for (i = 0; i < n_defs68k; i++) {
974 build_insn(i);
975 }
976 do_merges();
977}
978
979void exit_table68k(void)
980{

Callers 6

testFunction · 0.85
mainFunction · 0.85
init_m68kFunction · 0.85
mainFunction · 0.85
gencomp.cppFile · 0.85
compiler_initFunction · 0.85

Calls 2

build_insnFunction · 0.85
do_mergesFunction · 0.85

Tested by 1

testFunction · 0.68