Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cellift/src/ift_rom_mem.sv
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ module taint_rom #(

// Only write the taint word to the (right-shifted) taint memory if this corresponds to the right bank.
if (AddrOffset <= section_addr && (((section_addr-AddrOffset)/WidthBytes+i)%NumBanks == BankId)) begin
mem_taints[((section_addr-AddrOffset)/WidthBytes+i)/NumBanks][taint_id] = word;
mem_taints[((section_addr-AddrOffset)/WidthBytes+i)/NumBanks] |= word;
$display("Bank %d: tainting addr/wbytes %x to boot rom addr %x: %x", BankId, section_addr/WidthBytes+i, ((section_addr-AddrOffset)/WidthBytes+i)/NumBanks, word);
end
end
Expand Down
Loading