From 42657b516784d7b7679c5c3a55d182843193a6bc Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Tue, 8 Oct 2024 07:20:01 -0400 Subject: [PATCH] Revised comments in IOBM --- cpld/IOBM.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpld/IOBM.v b/cpld/IOBM.v index ca76328..c20315c 100644 --- a/cpld/IOBM.v +++ b/cpld/IOBM.v @@ -40,7 +40,7 @@ module IOBM( reg [2:0] IOS = 0; reg IOS0; - /* DTACK/"ETACK"/BERR/reset synchronization */ + /* IODONE DTACK/"ETACK"/BERR/reset synchronization */ reg IODONEr; always @(posedge C16M) begin if ((IOS==3 || IOS==5) && !C8Mr) begin @@ -48,7 +48,7 @@ module IOBM( end else if (IOS==0) IODONEr <= 0; end - /* DTACK/"ETACK"/BERR/reset output */ + /* IODONE output */ assign IODONE = IODONEr; /* I/O bus control */