From a3f7a48276e0d6ad1f1c4998c8582424c24a4e9e Mon Sep 17 00:00:00 2001 From: GabrielTofvesson Date: Wed, 17 Oct 2018 02:34:03 +0200 Subject: [PATCH] Fixed minor issues in ALU.v Rewrote RAM.v RAM should now support read and write RAM CKE will be pulled low when no queries to it are being made Added bank-independent read/write systems Added parameterized per-bank clock-hogging --- ALU.v | 34 ++------ Callback.v | 4 +- RAM.v | 227 +++++++++++++++++++++++++++++++++++++------------ SevenSegment.v | 30 ++++--- 4 files changed, 199 insertions(+), 96 deletions(-) diff --git a/ALU.v b/ALU.v index 619ef96..21c60e5 100644 --- a/ALU.v +++ b/ALU.v @@ -31,9 +31,9 @@ reg shift_rotate; wire [BITS:0] add_out; wire [BITS-1:0] lshift [0:LOG2_BITS]; -wire [LOG2_BITS:0] lshift_overflow; +wire [LOG2_BITS-1:0] lshift_overflow; wire [BITS-1:0] rshift [0:LOG2_BITS]; -wire [LOG2_BITS:0] rshift_underflow; +wire [LOG2_BITS-1:0] rshift_underflow; assign z = i_z[7:0]; assign o_flags = i_flg; @@ -42,33 +42,13 @@ FastAdder8 fa8(.cin(), .a(a), .b(b), .out(add_out[BITS-1:0]), .cout(add_out[BITS genvar i; generate - for(i = 1; i