From 41dc054172313dcfeda09f50f47fdea397b83ace Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Tue, 8 Oct 2024 07:19:18 -0400 Subject: [PATCH] Formatting changes in RAM.v --- cpld/RAM.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpld/RAM.v b/cpld/RAM.v index 9e7b046..052fba6 100644 --- a/cpld/RAM.v +++ b/cpld/RAM.v @@ -38,11 +38,11 @@ module RAM( assign RAMReady = RAMReadyReg;//!RS[2]; /* RAM /RAS */ - assign nRAS = !((!nAS && RAMCS && RASEN) || RASrf); + assign nRAS = !((!nAS && RAMCS && RASEN) || RASrf); /* RAM /WE */ - assign nLWE = !(!nLDS && RASEL && !nWE); - assign nUWE = !(!nUDS && RASEL && !nWE); + assign nLWE = !(!nLDS && RASEL && !nWE); + assign nUWE = !(!nUDS && RASEL && !nWE); /* RAM /OE control */ always @(posedge CLK) begin