RAM Random Access Memory can be written to and read from ROM
Solution
module nBitAdder(f, cOut, a, b, cIn);
parameter n = 7;
output reg [n:0] f;
output reg cOut;
input [n:0] a;
input [n:0] b;
input cIn;
always @(a, b, cIn)
{cOut, f} = a + b + cIn;
endmodule
module mem_ram_sync(
     clk,
     rst,
     read_rq,
     write_rq,
     rw_address,
     write_data,
     read_data
 );
 input           clk;
 input           rst;
 input           read_rq;
 input           write_rq;
 input[5:0]      rw_address;
 input[7:0]      write_data;
 output[7:0]     read_data;
reg[7:0]     read_data;
 
 integer out, i;
 
 // Declare memory 64x8 bits = 512 bits or 64 bytes
 reg [7:0] memory_ram_d [63:0];
 reg [7:0] memory_ram_q [63:0];
 
 // Use positive edge of clock to read the memory
 // Implement cyclic shift right
 always @(posedge clk or
     negedge rst)
 begin
     if (!rst)
     begin
         for (i=0;i<64; i=i+1)
             memory_ram_q[i] <= 0;
     end
     else
     begin
         for (i=0;i<64; i=i+1)
              memory_ram_q[i] <= memory_ram_d[i];
     end
 end
 
 
 always @(*)
 begin
     for (i=0;i<64; i=i+1)
         memory_ram_d[i] = memory_ram_q[i];
     if (write_rq && !read_rq)
         memory_ram_d[rw_address] = write_data;
     if (!write_rq && read_rq)
         read_data = memory_ram_q[rw_address];
 end
 
 endmodule
![RAM (Random Access Memory, can be written to and read from) ROM (Read Only Memory) Full Adder n-bit Adder module MOD2 (input [n - 1:0] X, input [n - 1:0] Y, ou  RAM (Random Access Memory, can be written to and read from) ROM (Read Only Memory) Full Adder n-bit Adder module MOD2 (input [n - 1:0] X, input [n - 1:0] Y, ou](/WebImages/19/ram-random-access-memory-can-be-written-to-and-read-from-rom-1038499-1761539144-0.webp)
![RAM (Random Access Memory, can be written to and read from) ROM (Read Only Memory) Full Adder n-bit Adder module MOD2 (input [n - 1:0] X, input [n - 1:0] Y, ou  RAM (Random Access Memory, can be written to and read from) ROM (Read Only Memory) Full Adder n-bit Adder module MOD2 (input [n - 1:0] X, input [n - 1:0] Y, ou](/WebImages/19/ram-random-access-memory-can-be-written-to-and-read-from-rom-1038499-1761539144-1.webp)
