fix Briey verilator

This commit is contained in:
Dolu1990 2020-04-13 13:01:12 +02:00
parent 24b676ce30
commit 2942d0652a
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ public:
sdramIo->ADDR = &top->io_sdram_ADDR ;
sdramIo->DQ_read = (CData*)&top->io_sdram_DQ_read ;
sdramIo->DQ_write = (CData*)&top->io_sdram_DQ_write ;
sdramIo->DQ_writeEnable = &top->io_sdram_DQ_writeEnable;
sdramIo->DQ_writeEnable = (CData*)&top->io_sdram_DQ_writeEnable;
Sdram *sdram = new Sdram(sdramConfig, sdramIo);
axiClk->add(sdram);