diff options
Diffstat (limited to 'nqdasm.c')
-rw-r--r-- | nqdasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ int main() while (scanf(" %x\n", &bits) > 0) { const struct mnemonic *m = match_instruction(bits); if (!m) { - fprintf(stderr, "could not decode instruction 0x%04x\n", bits); + printf("\t.word 0x%04x\n", bits); continue; } |