sylefeb / Silice

Silice is an easy-to-learn, powerful hardware description language, that simplifies designing hardware algorithms with parallelism and pipelines.
Other
1.3k stars 78 forks source link

Error initialising bram not brom #251

Open rob-ng15 opened 1 year ago

rob-ng15 commented 1 year ago
simple_dualport_bram uint8 characterGenerator8x8 <@video_clock,@clock> [4096] = {file("ROM/FONTS/CODE437-THIN.bin"),file("ROM/FONTS/CODE437-BOLD.bin"),pad(uninitialized)};
                                                                                                                    ^^^^ expecting something else

error

Gives an error, yet earlier in the code

brom uint8 characterGenerator8x8[4096] = {file("ROM/FONTS/CODE437-THIN.bin"), file("ROM/FONTS/CODE437-BOLD.bin"),pad(uninitialized)};

does not.