diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-10-18 18:38:26 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-10-18 18:38:26 +0200 |
commit | fe722b9304052b7a0a67fe01633c24ba5b4cdafa (patch) | |
tree | 7656b558c4dea8221bff07377253c66ec9f79086 /asm/assembler.cpp | |
parent | 8a2d1dc5c8b6639985d26d1c915048d87d52426b (diff) |
Implemented insertAddresses()
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 5c879b1..501c0a4 100644 --- a/asm/assembler.cpp +++ b/asm/assembler.cpp @@ -15,7 +15,7 @@ bool registerOp(const std::string& mnemonic, FactoryFunction f) return false; } - std::cout << "Registering mnemonic |" << mnemonic << "|." << std::endl; + //std::cout << "Registering mnemonic |" << mnemonic << "|." << std::endl; ops[mnemonic] = f; |