You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We still sorta need the spaces between the r, g, b signals since they are variable-width and we don't necessarily have an easy way to record what their widths are. Unless in VHDL you can do something like
write(line_el, red'length);
If this is possible, then we can remove those spaces, too by including a line at the top that specifies the lengths of r, g, and b.
The : is unnecessary. These logs are never going to be read by a human, so why make them human-readable?
The example
write_log.txt
from EE's website is 2,301,150 lines, with 63,876,645 characters. One ':' per line is 2,301,150 colons throughout the file.By removing this, we save about 3.6% file space. Not much, but it's effortless to achieve.
The text was updated successfully, but these errors were encountered: