mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Removes printf. It's no longer telling me anything.
This commit is contained in:
parent
28da1a724a
commit
7479dc74ed
@ -1017,10 +1017,8 @@ ProcessorStorage::ProcessorStorage() {
|
|||||||
next_op_ = micro_ops_.data();
|
next_op_ = micro_ops_.data();
|
||||||
while(*next_op_ != OperationMoveToNextProgram) ++next_op_;
|
while(*next_op_ != OperationMoveToNextProgram) ++next_op_;
|
||||||
|
|
||||||
#ifndef NDEBUG
|
// This is primarily to keep tabs, in case I want to pick a shorter form for the instruction table.
|
||||||
assert(micro_ops_.size() < 65536);
|
assert(micro_ops_.size() < 1024);
|
||||||
printf("Generated %zd micro-ops in total; covered %d opcodes\n", micro_ops_.size(), constructor.opcode);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ProcessorStorage::set_reset_state() {
|
void ProcessorStorage::set_reset_state() {
|
||||||
|
Loading…
Reference in New Issue
Block a user