[#72179] change emitting of event and double to noop

This commit is contained in:
Mateusz Gancarz 2025-02-11 15:09:49 +01:00
parent 648ca9840c
commit 431a6de442
1 changed files with 2 additions and 2 deletions

View File

@ -612,7 +612,7 @@ void VerilatedSaif::commitTraceBuffer(VerilatedSaif::Buffer* bufp) { delete bufp
VL_ATTR_ALWINLINE
void VerilatedSaifBuffer::emitEvent(uint32_t code) {
fprintf(stdout, "Emitting event not implemented\n");
// Noop
}
VL_ATTR_ALWINLINE
@ -733,5 +733,5 @@ void VerilatedSaifBuffer::emitWData(uint32_t code, const WData* newvalp, int bit
VL_ATTR_ALWINLINE
void VerilatedSaifBuffer::emitDouble(uint32_t code, double newval) {
fprintf(stdout, "Emitting double not implemented\n");
// Noop
}