jbush001 / NyuziProcessor

GPGPU microprocessor architecture
Apache License 2.0
1.96k stars 348 forks source link

Fixing width cast warnings that pop-up when running with NUM_CORES > 1 #190

Closed Ciprian167 closed 4 years ago

Ciprian167 commented 4 years ago

test_l2_cache.sv - Adding explicit comparison for l2i_request_valid, as for NUM_CORES > 1, its width will be greater than 1 bit.

test_control_registers.sv - Removing fixed width cast on cr_suspend_thread and cr_resume_thread asserts, since their size will change based on NUM_CORES.

jbush001 commented 4 years ago

Thanks!