checkin from eve

This commit is contained in:
2024-12-27 19:17:37 +00:00
parent a6a6f51f0b
commit 7ea3a6261d
6 changed files with 120 additions and 119 deletions

View File

@ -189,7 +189,7 @@ struct tgc5c: public arch_if {
uint8_t* get_regs_base_ptr() override;
inline uint64_t get_icount() { return reg.icount; }
inline uint64_t get_icount() { return reg.icount; } //This should not be accessible, only through the instrumentation_if
inline bool should_stop() { return interrupt_sim; }
@ -199,7 +199,7 @@ struct tgc5c: public arch_if {
virtual iss::sync_type needed_sync() const { return iss::NO_SYNC; }
inline uint32_t get_last_branch() { return reg.last_branch; }
inline uint32_t get_last_branch() { return reg.last_branch; } //This should also only be accessible through the instrumentation_if
#pragma pack(push, 1)