tactcomplabs / rev

RISC-V SST CPU Component
Other
17 stars 21 forks source link

change spacing to be more consistent #318

Closed leekillough closed 1 month ago

leekillough commented 1 month ago

This changes the spacing in some tables and declarations to look better.

Also, some std::map were changed to std::unordered_map. Unless the keys in a map must be kept in sorted order (such as to iterate across all keys in the map in sorted order), then std::unordered_map is generally faster.