summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nqdasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nqdasm.c b/nqdasm.c
index a2ff732..a7020eb 100644
--- a/nqdasm.c
+++ b/nqdasm.c
@@ -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;
}