From 0d13d07a045e546800f28c16937a85b6dec4178f Mon Sep 17 00:00:00 2001 From: Jerry Zhao Date: Mon, 2 Jan 2023 16:45:30 -0800 Subject: [PATCH] Remove extraneous semicolon from simif.h --- riscv/simif.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv/simif.h b/riscv/simif.h index 93da26cc..2c5bb27f 100644 --- a/riscv/simif.h +++ b/riscv/simif.h @@ -12,7 +12,7 @@ public: // should return NULL for MMIO addresses virtual char* addr_to_mem(reg_t paddr) = 0; // used for MMIO addresses - virtual bool mmio_fetch(reg_t paddr, size_t len, uint8_t* bytes) { return mmio_load(paddr, len, bytes); }; + virtual bool mmio_fetch(reg_t paddr, size_t len, uint8_t* bytes) { return mmio_load(paddr, len, bytes); } virtual bool mmio_load(reg_t paddr, size_t len, uint8_t* bytes) = 0; virtual bool mmio_store(reg_t paddr, size_t len, const uint8_t* bytes) = 0; // Callback for processors to let the simulation know they were reset.