diff options
author | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-08 12:12:09 +0200 |
---|---|---|
committer | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-08 12:12:09 +0200 |
commit | 7ff0d605067d57f638da50e53eb4a7dbb7ef11e6 (patch) | |
tree | 96b198b1e2d961d0ae713e086420a003b7307666 /src/rom.v | |
parent | d1133b1f41d426482cb54b747caada8427654b3a (diff) | |
download | riscv_cpu-7ff0d605067d57f638da50e53eb4a7dbb7ef11e6.tar.gz riscv_cpu-7ff0d605067d57f638da50e53eb4a7dbb7ef11e6.zip |
build assembly files
Diffstat (limited to 'src/rom.v')
-rw-r--r-- | src/rom.v | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ module rom #( reg [7:0] memory [0:SIZE-1]; initial begin - $readmemh("rom/rom.hex", memory, 0, SIZE-1); + $readmemh("build/rom.hex", memory, 0, SIZE-1); end always @(posedge clk) begin |