mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
159 lines
3.7 KiB
Verilog
159 lines
3.7 KiB
Verilog
`include "bus_commands.v"
|
|
|
|
`ifndef _HP48_IO_RAM
|
|
`define _HP48_IO_RAM
|
|
|
|
/**************************************************************************************************
|
|
*
|
|
* I/O ram
|
|
* length: 64 nibbles
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
module hp48_io_ram (
|
|
input strobe,
|
|
input reset,
|
|
input [19:0] address,
|
|
input [3:0] command,
|
|
input [3:0] nibble_in,
|
|
output reg [3:0] nibble_out,
|
|
output reg active,
|
|
input daisy_in,
|
|
output daisy_out,
|
|
output reg error
|
|
);
|
|
|
|
localparam IO_RAM_LEN = 64;
|
|
|
|
// localparam BUSCMD_DP_WRITE = C_BUSCMD_DP_WRITE;
|
|
// localparam BUSCMD_CONFIGURE = C_BUSCMD_CONFIGURE;
|
|
|
|
|
|
reg [0:0] configured;
|
|
reg [19:0] base_addr;
|
|
reg [19:0] pc_ptr;
|
|
reg [19:0] dp_ptr;
|
|
reg [3:0] mmio_ram [0:IO_RAM_LEN-1];
|
|
|
|
assign daisy_out = configured;
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
|
|
initial
|
|
begin
|
|
`ifdef SIM
|
|
$display("io_ram: set unconfigured");
|
|
`endif
|
|
configured = 0;
|
|
`ifdef SIM
|
|
$display("io_ram: reset error flag");
|
|
`endif
|
|
error = 1'b0;
|
|
`ifdef SIM
|
|
$display("io_ram: setting data pointer to 0");
|
|
`endif
|
|
dp_ptr = 0;
|
|
`ifdef SIM
|
|
// initialization only for simulation
|
|
$display("io_ram: initializing to 0");
|
|
for (base_addr = 0; base_addr < IO_RAM_LEN; base_addr++)
|
|
begin
|
|
$write(".");
|
|
mmio_ram[base_addr] <= 0;
|
|
end
|
|
$display("io_ram: setting base address to 0");
|
|
`endif
|
|
base_addr = 0;
|
|
|
|
`ifdef SIM
|
|
$write("\n");
|
|
$display("io_ram: initialized");
|
|
`endif
|
|
end
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
|
|
always @(*)
|
|
begin
|
|
active = 0;
|
|
|
|
if ((command==`BUSCMD_PC_READ)|(command==`BUSCMD_PC_WRITE))
|
|
active = ((base_addr>=pc_ptr)&(pc_ptr<base_addr+IO_RAM_LEN))&(configured);
|
|
|
|
if ((command==`BUSCMD_DP_READ)|(command==`BUSCMD_DP_WRITE))
|
|
active = ((base_addr>=dp_ptr)&(dp_ptr<base_addr+IO_RAM_LEN))&(configured);
|
|
end
|
|
|
|
always @(posedge strobe) begin
|
|
case (command)
|
|
`BUSCMD_PC_READ: begin
|
|
if (configured) begin
|
|
// $display("MMIO (%b - %5h) - PC_READ %5h -> %h", configured, base_addr, pc_ptr, mmio_ram[pc_ptr]);
|
|
nibble_out <= mmio_ram[pc_ptr];
|
|
end else begin
|
|
// $display("MMIO (%b - %5h) - PC_READ %5h UNCONFIGURED", configured, base_addr, pc_ptr);
|
|
end
|
|
pc_ptr <= pc_ptr + 1;
|
|
end
|
|
`BUSCMD_DP_READ: begin
|
|
if (configured) begin
|
|
$display("MMIO (%b - %5h) - DP_READ %5h -> %h", configured, base_addr, dp_ptr, mmio_ram[dp_ptr]);
|
|
nibble_out <= mmio_ram[dp_ptr];
|
|
end else begin
|
|
// $display("MMIO (%b - %5h) - DP_READ %5h UNCONFIGURED", configured, base_addr, dp_ptr);
|
|
end
|
|
dp_ptr <= dp_ptr + 1;
|
|
end
|
|
`BUSCMD_DP_WRITE: begin
|
|
if (configured) begin
|
|
// $display("MMIO (%b - %5h) - DP_WRITE %5h -> %h", configured, base_addr, dp_ptr, nibble_in);
|
|
mmio_ram[dp_ptr] <= nibble_in;
|
|
end else begin
|
|
$display("MMIO (%b - %5h) - DP_WRITE %5h -> %h UNCONFIGURED", configured, base_addr, dp_ptr, nibble_in);
|
|
end
|
|
dp_ptr <= dp_ptr + 1;
|
|
end
|
|
`BUSCMD_LOAD_PC: begin
|
|
// $display("MMIO (%b - %5h) - LOAD_PC %5h", configured, base_addr, address);
|
|
pc_ptr <= address;
|
|
end
|
|
`BUSCMD_LOAD_DP: begin
|
|
dp_ptr <= address;
|
|
// $display("MMIO (%b - %5h) - LOAD_DP %5h", configured, base_addr, address);
|
|
end
|
|
`BUSCMD_CONFIGURE: begin
|
|
if (!configured) begin
|
|
if (daisy_in) begin
|
|
base_addr <= address;
|
|
configured <= 1;
|
|
// $display("MMIO (%b - %5h) - CONFIGURE %5h", configured, base_addr, address);
|
|
end else begin
|
|
$display("MMIO (%b - %5h) - CAN'T CONFIGURE - DAISY_IN NOT SET %5h", configured, base_addr, address);
|
|
end
|
|
end else begin
|
|
// $display("MMIO (%b - %5h) - ALREADY CONFIGURED %5h", configured, base_addr, address);
|
|
end
|
|
end
|
|
`BUSCMD_RESET: begin
|
|
base_addr <= 0;
|
|
configured <= 0;
|
|
$display("MMIO (%b - %5h) - RESET", configured, base_addr);
|
|
end
|
|
default: begin
|
|
$display("MMIO (%b - %5h) - UNIMPLEMENTED COMMAND %d %5h", configured, base_addr, command, address);
|
|
error <= 1;
|
|
end
|
|
endcase
|
|
end
|
|
|
|
endmodule
|
|
|
|
`endif
|