1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-11 18:49:16 +00:00

Add missing includes, fix typo.

This commit is contained in:
Radosław Kujawa 2017-01-21 14:57:49 +01:00
parent e3abea91ef
commit 1802bfbd1d

View File

@ -2,6 +2,8 @@ BEGIN {
FS=","
print "#ifndef _EMULATION_H_"
print "#define _EMULATION_H_"
print "#include \"rk65c02.h\""
print "#include \"instruction.h\""
}
/^OP_/{
@ -12,7 +14,7 @@ BEGIN {
END {
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_ */"
}