IRC channel logs

2020-02-24.log

back to list of logs

<markjenkinsznc>OriansJ, M0-macro-compact.hex2 now has indentation and three column layout https://github.com/markjenkins/stage0/blob/e809b0bb2f83ceda732c7c99688f2c415b686f44/stage1/M0-macro-compact.hex2 and continues to produce the same binary
<markjenkinsznc>And operands in hex space sperated from each other and instruction
<markjenkinsznc>From a formatting perspective, I could align the operands in hex
<markjenkinsznc>the width of each column could also be adjusted downward per function where possible as well to avoid being super wide when not needed
<markjenkinsznc>as it was I didn't choose quite enough column width for generate_output when I used a code a formatter to produce this commit: https://github.com/markjenkins/stage0/commit/cb4a2b42d34b748dfc465097e38baf2fcabd4248
<markjenkinsznc>night
<fossy>OriansJ: FYI the way continue works in m2 planet is different to GCC, continue in m2 planet runs the rest of a loop, while in GCC, it skips over the rest of the loop.
<OriansJ>fossy: very true https://en.cppreference.com/w/cpp/language/continue
<OriansJ>I guess I need to fix M2-Planet in regards to how continue is supposed to behave