Sometimes I wonder if anyone else feels like that when finding a solution to a certain problem during development (be it NES or otherwise).
Like this instance where I had a bunch of things to comment out, but no "block comments" in ASM6:
So I did this instead. But anyway, this might be a stupid topic because programming in general is one of those interesting flow-experience generating hobbies I do on the side, so you don't stop to think about things in that sort of way if it's your job I assume.
Like this instance where I had a bunch of things to comment out, but no "block comments" in ASM6:
Code:
.if 1 = 0
.db 0,3,6,9,12,16,19,22
.db 25,28,31,34,37,40,43,46
.db 49,51,54,57,60,63,65,68
.db 71,73,76,78,81,83,85,88
.db 90,92,94,96,98,100,102,104
.db 106,107,109,111,112,113,115,116
.db 117,118,120,121,122,122,123,124
.db 125,125,126,126,126,127,127,127
.db 127,127,127,126,126,126,125,125
.db 124,123,122,122,121,120,118,117
.db 116,115,113,112,111,109,107,106
.db 104,102,100,98,96,94,92,90
.db 88,85,83,81,78,76,73,71
.db 68,65,63,60,57,54,51,49
.db 46,43,40,37,34,31,28,25
.db 22,19,16,12,9,6,3,0
.endif
.db 0,3,6,9,12,16,19,22
.db 25,28,31,34,37,40,43,46
.db 49,51,54,57,60,63,65,68
.db 71,73,76,78,81,83,85,88
.db 90,92,94,96,98,100,102,104
.db 106,107,109,111,112,113,115,116
.db 117,118,120,121,122,122,123,124
.db 125,125,126,126,126,127,127,127
.db 127,127,127,126,126,126,125,125
.db 124,123,122,122,121,120,118,117
.db 116,115,113,112,111,109,107,106
.db 104,102,100,98,96,94,92,90
.db 88,85,83,81,78,76,73,71
.db 68,65,63,60,57,54,51,49
.db 46,43,40,37,34,31,28,25
.db 22,19,16,12,9,6,3,0
.endif
So I did this instead. But anyway, this might be a stupid topic because programming in general is one of those interesting flow-experience generating hobbies I do on the side, so you don't stop to think about things in that sort of way if it's your job I assume.