mirror of
https://github.com/rkujawa/rk65c02.git
synced 2024-12-13 01:29:57 +00:00
Add missing includes, fix typo.
This commit is contained in:
parent
e3abea91ef
commit
1802bfbd1d
@ -2,6 +2,8 @@ BEGIN {
|
|||||||
FS=","
|
FS=","
|
||||||
print "#ifndef _EMULATION_H_"
|
print "#ifndef _EMULATION_H_"
|
||||||
print "#define _EMULATION_H_"
|
print "#define _EMULATION_H_"
|
||||||
|
print "#include \"rk65c02.h\""
|
||||||
|
print "#include \"instruction.h\""
|
||||||
}
|
}
|
||||||
|
|
||||||
/^OP_/{
|
/^OP_/{
|
||||||
@ -12,7 +14,7 @@ BEGIN {
|
|||||||
|
|
||||||
END {
|
END {
|
||||||
for (i in emuls)
|
for (i in emuls)
|
||||||
printf "void %s(rk65c02emu_t *, instruction_t *)\n",i
|
printf "void %s(rk65c02emu_t *, instruction_t *);\n",i
|
||||||
|
|
||||||
print "#endif /* _EMULATION_H_ */"
|
print "#endif /* _EMULATION_H_ */"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user