1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
Jan Decaluwe 45a769d82d use modbv
--HG--
branch : 0.8-dev
2012-12-21 15:06:18 +01:00

33 lines
378 B
Verilog

// File: rom.v
// Generated by MyHDL 0.8dev
// Date: Fri Dec 21 15:02:39 2012
`timescale 1ns/10ps
module rom (
dout,
addr
);
// ROM model
output [7:0] dout;
reg [7:0] dout;
input [3:0] addr;
always @(addr) begin: ROM_READ
case (addr)
0: dout = 17;
1: dout = 134;
2: dout = 52;
default: dout = 9;
endcase
end
endmodule