Change benchmark to calc MD5 on 1024 softcores

This commit is contained in:
Nikolay Puzanov
2023-06-15 17:40:46 +03:00
parent 89c82cb611
commit 047bd9c42b
21 changed files with 1376 additions and 931 deletions

View File

@@ -9,6 +9,22 @@
(info "Control register")
(bits 1 "stop" w (reset #b0)))
(reg "md5_out0"
(info "Bytes 0..3 of MD5 sum")
(bits 32 "data" w))
(reg "md5_out1"
(info "Bytes 4..7 of MD5 sum")
(bits 32 "data" w))
(reg "md5_out2"
(info "Bytes 8..11 of MD5 sum")
(bits 32 "data" w))
(reg "md5_out3"
(info "Bytes 12..15 of MD5 sum")
(bits 32 "data" w))
(reg "console" read-notify
(info "Virtual console port")
(bits 8 "data" rw (info "Read/write char from/to console"))