?pathlinks? – Rev 905
Rev 896 |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
| ?url?
// full zxevo ROM here. ATM paging: bas48(0)/trdos(1)/bas128(2)/gluk(3)
module rom(
input [18:0] addr,
output reg [7:0] data,
input ce_n
);
wire [7:0] word;
bin2v #(.FILENAME("ers_test.rom")) zxevo_rom( .in_addr(addr), .out_word(word) );
always @*
begin
if( !ce_n )
data = word;
else
data = 8'bZZZZZZZZ;
end
endmodule