diff options
author | Ian Moffett <ian@osmora.org> | 2024-08-03 23:37:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-08-03 23:37:12 -0400 |
commit | 58a5cce795868b3c7466b8585cf0ce7e32408cec (patch) | |
tree | 0adbe1bf6cf2f5984b5312d3631567f929b587a7 | |
parent | bf93a581e7daa9802cd27317b0fe2fe455adb280 (diff) |
soc: pimc: Fix typo in comment
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sv/soc/irq/pimc.sv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sv/soc/irq/pimc.sv b/sv/soc/irq/pimc.sv index 3c721b3..8bed807 100644 --- a/sv/soc/irq/pimc.sv +++ b/sv/soc/irq/pimc.sv @@ -89,7 +89,7 @@ module pimc #( endcase end - /* Handle MMIO wires */ + /* Handle MMIO writes */ if (mmio_we) begin case (mmio_addr) IRQTAB_MMIOBASE: irqtab[0] <= mmio_wdata; |