diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-10-18 16:59:54 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-10-18 16:59:54 +0200 |
commit | 8a2d1dc5c8b6639985d26d1c915048d87d52426b (patch) | |
tree | 2f3957a1c24ef35b4ec9259a6a0d97393b248a57 /asm/assembler.cpp | |
parent | 8f28495ab9a8ebf53868405541e907394895e51f (diff) |
Added xor, mov, jmp
Diffstat (limited to 'asm/assembler.cpp')
-rw-r--r-- | asm/assembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/assembler.cpp b/asm/assembler.cpp index d6ab230..5c879b1 100644 --- a/asm/assembler.cpp +++ b/asm/assembler.cpp @@ -11,7 +11,7 @@ std::unordered_map<std::string, FactoryFunction> ops; bool registerOp(const std::string& mnemonic, FactoryFunction f) { if (ops.contains(mnemonic)) { - std::cout << "Warning: mnemonic |" << mnemonic << "| already registered." << std::endl; + std::cerr << "Warning: mnemonic |" << mnemonic << "| already registered." << std::endl; return false; } |