diff --git a/src/test/kc/examples/plasma/plasma-unroll.kc b/src/test/kc/examples/plasma/plasma-unroll.kc index f1307e0d8..c2aed8d06 100644 --- a/src/test/kc/examples/plasma/plasma-unroll.kc +++ b/src/test/kc/examples/plasma/plasma-unroll.kc @@ -1,5 +1,6 @@ // A KickC version of the plasma routine from the CC65 samples -// This version has an unrolled inner loop to reach ~50FPS +// This version has an unrolled inner loop to reach 50+FPS +// This version also optimizes the inner loop by calculating the Y buffer as a set of differences // (w)2001 by groepaz/hitmen // Cleanup and porting to CC65 by Ullrich von Bassewitz. // Ported to KickC by Jesper Gravgaard. @@ -45,8 +46,12 @@ void doplasma(unsigned char* screen) { unsigned char c1a = c1A; unsigned char c1b = c1B; + unsigned char yprev = 0; + // Calculate ybuff as a bunch of differences for (unsigned char i = 0; i < 25; ++i) { - ybuf[i] = (SINTABLE[c1a] + SINTABLE[c1b]); + unsigned char yval = (SINTABLE[c1a] + SINTABLE[c1b]); + ybuf[i] = yval - yprev; + yprev = yval; c1a += 4; c1b += 9; } @@ -62,10 +67,13 @@ void doplasma(unsigned char* screen) { c2A += 2; c2B -= 3; for (unsigned char i = 0; i < 40; ++i) { - unsigned char xval = xbuf[i]; + // Find the first value on the row + unsigned char val = xbuf[i]; + // Calculate the next values as sums of diffs // Use experimental loop unrolling to increase the speed inline for (unsigned char ii = 0; ii < 25; ++ii) { - (screen+ii*40)[i] = xval + ybuf[ii]; + val += ybuf[ii]; + (screen+ii*40)[i] = val; } } } diff --git a/src/test/ref/examples/plasma/plasma-unroll.asm b/src/test/ref/examples/plasma/plasma-unroll.asm index cff6e7d8e..d0b3f619a 100644 --- a/src/test/ref/examples/plasma/plasma-unroll.asm +++ b/src/test/ref/examples/plasma/plasma-unroll.asm @@ -78,22 +78,31 @@ doplasma: { sta c1a lda c1B sta c1b - lda #0 - sta i - b1: ldy c1a lda SINTABLE,y ldy c1b clc adc SINTABLE,y - ldy i - sta ybuf,y + sta ybuf + lda #1 + sta i + // Calculate ybuff as a bunch of differences + b1: lax c1a axs #-[4] stx c1a lax c1b axs #-[9] stx c1b + ldy c1a + lda SINTABLE,y + ldy c1b + clc + adc SINTABLE,y + ldy i + sec + sbc ybuf+-1,y + sta ybuf,y inc i lda i cmp #$19 @@ -137,105 +146,81 @@ doplasma: { stx c2B ldx #0 b5: - ldy xbuf,x - // Use experimental loop unrolling to increase the speed - tya + lda xbuf,x clc adc ybuf sta SCREEN1,x - tya + // Calculate the next values as sums of diffs + // Use experimental loop unrolling to increase the speed clc adc ybuf+1 sta SCREEN1+1*$28,x - tya clc adc ybuf+2 sta SCREEN1+2*$28,x - tya clc adc ybuf+3 sta SCREEN1+3*$28,x - tya clc adc ybuf+4 sta SCREEN1+4*$28,x - tya clc adc ybuf+5 sta SCREEN1+5*$28,x - tya clc adc ybuf+6 sta SCREEN1+6*$28,x - tya clc adc ybuf+7 sta SCREEN1+7*$28,x - tya clc adc ybuf+8 sta SCREEN1+8*$28,x - tya clc adc ybuf+9 sta SCREEN1+9*$28,x - tya clc adc ybuf+$a sta SCREEN1+$a*$28,x - tya clc adc ybuf+$b sta SCREEN1+$b*$28,x - tya clc adc ybuf+$c sta SCREEN1+$c*$28,x - tya clc adc ybuf+$d sta SCREEN1+$d*$28,x - tya clc adc ybuf+$e sta SCREEN1+$e*$28,x - tya clc adc ybuf+$f sta SCREEN1+$f*$28,x - tya clc adc ybuf+$10 sta SCREEN1+$10*$28,x - tya clc adc ybuf+$11 sta SCREEN1+$11*$28,x - tya clc adc ybuf+$12 sta SCREEN1+$12*$28,x - tya clc adc ybuf+$13 sta SCREEN1+$13*$28,x - tya clc adc ybuf+$14 sta SCREEN1+$14*$28,x - tya clc adc ybuf+$15 sta SCREEN1+$15*$28,x - tya clc adc ybuf+$16 sta SCREEN1+$16*$28,x - tya clc adc ybuf+$17 sta SCREEN1+$17*$28,x - tya clc adc ybuf+$18 sta SCREEN1+$18*$28,x diff --git a/src/test/ref/examples/plasma/plasma-unroll.cfg b/src/test/ref/examples/plasma/plasma-unroll.cfg index acfd8b720..a4c7efc9b 100644 --- a/src/test/ref/examples/plasma/plasma-unroll.cfg +++ b/src/test/ref/examples/plasma/plasma-unroll.cfg @@ -46,238 +46,238 @@ main::@4: scope:[main] from main::@3 doplasma: scope:[doplasma] from main::@4 [19] (byte) doplasma::c1a#0 ← (byte) c1A#1 [20] (byte) doplasma::c1b#0 ← (byte) c1B#1 + [21] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#0) + [22] *((const byte[$19]) doplasma::ybuf#0) ← (byte~) doplasma::$0 to:doplasma::@1 doplasma::@1: scope:[doplasma] from doplasma doplasma::@1 - [21] (byte) doplasma::i#2 ← phi( doplasma/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@1/(byte) doplasma::i#1 ) - [21] (byte) doplasma::c1b#2 ← phi( doplasma/(byte) doplasma::c1b#0 doplasma::@1/(byte) doplasma::c1b#1 ) - [21] (byte) doplasma::c1a#2 ← phi( doplasma/(byte) doplasma::c1a#0 doplasma::@1/(byte) doplasma::c1a#1 ) - [22] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#2) - [23] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$0 + [23] (byte) doplasma::i#2 ← phi( doplasma/(byte/signed byte/word/signed word/dword/signed dword) 1 doplasma::@1/(byte) doplasma::i#1 ) + [23] (byte) doplasma::c1b#2 ← phi( doplasma/(byte) doplasma::c1b#0 doplasma::@1/(byte) doplasma::c1b#1 ) + [23] (byte) doplasma::c1a#2 ← phi( doplasma/(byte) doplasma::c1a#0 doplasma::@1/(byte) doplasma::c1a#1 ) [24] (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 [25] (byte) doplasma::c1b#1 ← (byte) doplasma::c1b#2 + (byte/signed byte/word/signed word/dword/signed dword) 9 - [26] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 - [27] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 + [26] (byte~) doplasma::$1 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#1) + [27] (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((const byte[$19]) doplasma::ybuf#0+-(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) doplasma::i#2) + [28] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$3 + [29] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 + [30] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 to:doplasma::@2 doplasma::@2: scope:[doplasma] from doplasma::@1 - [28] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 - [29] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 - [30] (byte) doplasma::c2a#0 ← (byte) c2A#1 - [31] (byte) doplasma::c2b#0 ← (byte) c2B#1 + [31] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 + [32] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 + [33] (byte) doplasma::c2a#0 ← (byte) c2A#1 + [34] (byte) doplasma::c2b#0 ← (byte) c2B#1 to:doplasma::@3 doplasma::@3: scope:[doplasma] from doplasma::@2 doplasma::@3 - [32] (byte) doplasma::i1#2 ← phi( doplasma::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@3/(byte) doplasma::i1#1 ) - [32] (byte) doplasma::c2b#2 ← phi( doplasma::@2/(byte) doplasma::c2b#0 doplasma::@3/(byte) doplasma::c2b#1 ) - [32] (byte) doplasma::c2a#2 ← phi( doplasma::@2/(byte) doplasma::c2a#0 doplasma::@3/(byte) doplasma::c2a#1 ) - [33] (byte~) doplasma::$2 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) - [34] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$2 - [35] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 - [36] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 - [37] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 - [38] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 + [35] (byte) doplasma::i1#2 ← phi( doplasma::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@3/(byte) doplasma::i1#1 ) + [35] (byte) doplasma::c2b#2 ← phi( doplasma::@2/(byte) doplasma::c2b#0 doplasma::@3/(byte) doplasma::c2b#1 ) + [35] (byte) doplasma::c2a#2 ← phi( doplasma::@2/(byte) doplasma::c2a#0 doplasma::@3/(byte) doplasma::c2a#1 ) + [36] (byte~) doplasma::$5 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) + [37] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$5 + [38] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 + [39] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 + [40] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 + [41] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 to:doplasma::@4 doplasma::@4: scope:[doplasma] from doplasma::@3 - [39] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 - [40] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 + [42] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 + [43] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 to:doplasma::@5 doplasma::@5: scope:[doplasma] from doplasma::@4 doplasma::@7 - [41] (byte) doplasma::i2#2 ← phi( doplasma::@4/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@7/(byte) doplasma::i2#1 ) - [42] (byte) doplasma::xval#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + [44] (byte) doplasma::i2#2 ← phi( doplasma::@4/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@7/(byte) doplasma::i2#1 ) + [45] (byte) doplasma::val#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((const byte[$19]) doplasma::ybuf#0) + [46] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte) doplasma::val#0 to:doplasma::@6 doplasma::@6: scope:[doplasma] from doplasma::@5 - [43] (byte~) doplasma::$6 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0) - [44] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte~) doplasma::$6 + [47] (byte) doplasma::val#1 ← (byte) doplasma::val#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) + [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#1 to:doplasma::@6_1 doplasma::@6_1: scope:[doplasma] from doplasma::@6 - [45] (byte~) doplasma::$11 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) - [46] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$11 + [49] (byte) doplasma::val#4 ← (byte) doplasma::val#1 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) + [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#4 to:doplasma::@6_2 doplasma::@6_2: scope:[doplasma] from doplasma::@6_1 - [47] (byte~) doplasma::$14 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) - [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$14 + [51] (byte) doplasma::val#6 ← (byte) doplasma::val#4 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) + [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#6 to:doplasma::@6_3 doplasma::@6_3: scope:[doplasma] from doplasma::@6_2 - [49] (byte~) doplasma::$17 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) - [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$17 + [53] (byte) doplasma::val#8 ← (byte) doplasma::val#6 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) + [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#8 to:doplasma::@6_4 doplasma::@6_4: scope:[doplasma] from doplasma::@6_3 - [51] (byte~) doplasma::$20 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) - [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$20 + [55] (byte) doplasma::val#10 ← (byte) doplasma::val#8 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) + [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#10 to:doplasma::@6_5 doplasma::@6_5: scope:[doplasma] from doplasma::@6_4 - [53] (byte~) doplasma::$23 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) - [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$23 + [57] (byte) doplasma::val#12 ← (byte) doplasma::val#10 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) + [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#12 to:doplasma::@6_6 doplasma::@6_6: scope:[doplasma] from doplasma::@6_5 - [55] (byte~) doplasma::$26 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) - [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$26 + [59] (byte) doplasma::val#14 ← (byte) doplasma::val#12 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) + [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#14 to:doplasma::@6_7 doplasma::@6_7: scope:[doplasma] from doplasma::@6_6 - [57] (byte~) doplasma::$29 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) - [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$29 + [61] (byte) doplasma::val#16 ← (byte) doplasma::val#14 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) + [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#16 to:doplasma::@6_8 doplasma::@6_8: scope:[doplasma] from doplasma::@6_7 - [59] (byte~) doplasma::$32 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) - [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$32 + [63] (byte) doplasma::val#18 ← (byte) doplasma::val#16 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) + [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#18 to:doplasma::@6_9 doplasma::@6_9: scope:[doplasma] from doplasma::@6_8 - [61] (byte~) doplasma::$35 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) - [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$35 + [65] (byte) doplasma::val#20 ← (byte) doplasma::val#18 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) + [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#20 to:doplasma::@6_10 doplasma::@6_10: scope:[doplasma] from doplasma::@6_9 - [63] (byte~) doplasma::$38 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) - [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$38 + [67] (byte) doplasma::val#22 ← (byte) doplasma::val#20 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) + [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#22 to:doplasma::@6_11 doplasma::@6_11: scope:[doplasma] from doplasma::@6_10 - [65] (byte~) doplasma::$41 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) - [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$41 + [69] (byte) doplasma::val#24 ← (byte) doplasma::val#22 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) + [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#24 to:doplasma::@6_12 doplasma::@6_12: scope:[doplasma] from doplasma::@6_11 - [67] (byte~) doplasma::$44 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) - [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$44 + [71] (byte) doplasma::val#26 ← (byte) doplasma::val#24 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) + [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#26 to:doplasma::@6_13 doplasma::@6_13: scope:[doplasma] from doplasma::@6_12 - [69] (byte~) doplasma::$47 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) - [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$47 + [73] (byte) doplasma::val#28 ← (byte) doplasma::val#26 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) + [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#28 to:doplasma::@6_14 doplasma::@6_14: scope:[doplasma] from doplasma::@6_13 - [71] (byte~) doplasma::$50 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) - [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$50 + [75] (byte) doplasma::val#30 ← (byte) doplasma::val#28 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) + [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#30 to:doplasma::@6_15 doplasma::@6_15: scope:[doplasma] from doplasma::@6_14 - [73] (byte~) doplasma::$53 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) - [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$53 + [77] (byte) doplasma::val#32 ← (byte) doplasma::val#30 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) + [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#32 to:doplasma::@6_16 doplasma::@6_16: scope:[doplasma] from doplasma::@6_15 - [75] (byte~) doplasma::$56 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) - [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$56 + [79] (byte) doplasma::val#34 ← (byte) doplasma::val#32 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) + [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#34 to:doplasma::@6_17 doplasma::@6_17: scope:[doplasma] from doplasma::@6_16 - [77] (byte~) doplasma::$59 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) - [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$59 + [81] (byte) doplasma::val#36 ← (byte) doplasma::val#34 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) + [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#36 to:doplasma::@6_18 doplasma::@6_18: scope:[doplasma] from doplasma::@6_17 - [79] (byte~) doplasma::$62 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) - [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$62 + [83] (byte) doplasma::val#38 ← (byte) doplasma::val#36 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) + [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#38 to:doplasma::@6_19 doplasma::@6_19: scope:[doplasma] from doplasma::@6_18 - [81] (byte~) doplasma::$65 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) - [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$65 + [85] (byte) doplasma::val#40 ← (byte) doplasma::val#38 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) + [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#40 to:doplasma::@6_20 doplasma::@6_20: scope:[doplasma] from doplasma::@6_19 - [83] (byte~) doplasma::$68 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) - [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$68 + [87] (byte) doplasma::val#42 ← (byte) doplasma::val#40 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) + [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#42 to:doplasma::@6_21 doplasma::@6_21: scope:[doplasma] from doplasma::@6_20 - [85] (byte~) doplasma::$71 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) - [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$71 + [89] (byte) doplasma::val#44 ← (byte) doplasma::val#42 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) + [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#44 to:doplasma::@6_22 doplasma::@6_22: scope:[doplasma] from doplasma::@6_21 - [87] (byte~) doplasma::$74 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) - [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$74 + [91] (byte) doplasma::val#46 ← (byte) doplasma::val#44 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) + [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#46 to:doplasma::@6_23 doplasma::@6_23: scope:[doplasma] from doplasma::@6_22 - [89] (byte~) doplasma::$77 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) - [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$77 - to:doplasma::@6_24 -doplasma::@6_24: scope:[doplasma] from doplasma::@6_23 - [91] (byte~) doplasma::$80 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) - [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$80 + [93] (byte) doplasma::val#48 ← (byte) doplasma::val#46 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) + [94] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#48 to:doplasma::@7 -doplasma::@7: scope:[doplasma] from doplasma::@6_24 - [93] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 - [94] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 +doplasma::@7: scope:[doplasma] from doplasma::@6_23 + [95] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 + [96] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 to:doplasma::@return doplasma::@return: scope:[doplasma] from doplasma::@7 - [95] return + [97] return to:@return makecharset: scope:[makecharset] from main::@2 - [96] phi() - [97] call sid_rnd_init + [98] phi() + [99] call sid_rnd_init to:makecharset::@10 makecharset::@10: scope:[makecharset] from makecharset - [98] phi() - [99] call print_cls + [100] phi() + [101] call print_cls to:makecharset::@1 makecharset::@1: scope:[makecharset] from makecharset::@10 makecharset::@9 - [100] (byte*) print_char_cursor#45 ← phi( makecharset::@10/(const byte*) print_line_cursor#0 makecharset::@9/(byte*) print_char_cursor#18 ) - [100] (word) makecharset::c#2 ← phi( makecharset::@10/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@9/(word) makecharset::c#1 ) - [101] (byte~) makecharset::$2 ← < (word) makecharset::c#2 - [102] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) + [102] (byte*) print_char_cursor#45 ← phi( makecharset::@10/(const byte*) print_line_cursor#0 makecharset::@9/(byte*) print_char_cursor#18 ) + [102] (word) makecharset::c#2 ← phi( makecharset::@10/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@9/(word) makecharset::c#1 ) + [103] (byte~) makecharset::$2 ← < (word) makecharset::c#2 + [104] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) to:makecharset::@2 makecharset::@2: scope:[makecharset] from makecharset::@1 makecharset::@6 - [103] (byte) makecharset::i#7 ← phi( makecharset::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@6/(byte) makecharset::i#1 ) + [105] (byte) makecharset::i#7 ← phi( makecharset::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@6/(byte) makecharset::i#1 ) to:makecharset::@3 makecharset::@3: scope:[makecharset] from makecharset::@2 makecharset::@4 - [104] (byte) makecharset::b#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::b#3 ) - [104] (byte) makecharset::ii#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::ii#1 ) - [105] call sid_rnd - [106] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 + [106] (byte) makecharset::b#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::b#3 ) + [106] (byte) makecharset::ii#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::ii#1 ) + [107] call sid_rnd + [108] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 to:makecharset::@11 makecharset::@11: scope:[makecharset] from makecharset::@3 - [107] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 - [108] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff - [109] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 + [109] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 + [110] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff + [111] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 to:makecharset::@5 makecharset::@5: scope:[makecharset] from makecharset::@11 - [110] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) + [112] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) to:makecharset::@4 makecharset::@4: scope:[makecharset] from makecharset::@11 makecharset::@5 - [111] (byte) makecharset::b#3 ← phi( makecharset::@11/(byte) makecharset::b#2 makecharset::@5/(byte) makecharset::b#1 ) - [112] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 - [113] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 + [113] (byte) makecharset::b#3 ← phi( makecharset::@11/(byte) makecharset::b#2 makecharset::@5/(byte) makecharset::b#1 ) + [114] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 + [115] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 to:makecharset::@6 makecharset::@6: scope:[makecharset] from makecharset::@4 - [114] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 - [115] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 - [116] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 - [117] (byte) makecharset::i#1 ← ++ (byte) makecharset::i#7 - [118] if((byte) makecharset::i#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@2 + [116] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 + [117] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 + [118] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 + [119] (byte) makecharset::i#1 ← ++ (byte) makecharset::i#7 + [120] if((byte) makecharset::i#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@2 to:makecharset::@7 makecharset::@7: scope:[makecharset] from makecharset::@6 - [119] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 - [120] if((byte/word~) makecharset::$11!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto makecharset::@9 + [121] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 + [122] if((byte/word~) makecharset::$11!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto makecharset::@9 to:makecharset::@8 makecharset::@8: scope:[makecharset] from makecharset::@7 - [121] phi() - [122] call print_char + [123] phi() + [124] call print_char to:makecharset::@9 makecharset::@9: scope:[makecharset] from makecharset::@7 makecharset::@8 - [123] (byte*) print_char_cursor#18 ← phi( makecharset::@8/(byte*) print_char_cursor#1 makecharset::@7/(byte*) print_char_cursor#45 ) - [124] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 - [125] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 + [125] (byte*) print_char_cursor#18 ← phi( makecharset::@8/(byte*) print_char_cursor#1 makecharset::@7/(byte*) print_char_cursor#45 ) + [126] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 + [127] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 to:makecharset::@return makecharset::@return: scope:[makecharset] from makecharset::@9 - [126] return + [128] return to:@return print_char: scope:[print_char] from makecharset::@8 - [127] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 - [128] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 + [129] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 + [130] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 to:print_char::@return print_char::@return: scope:[print_char] from print_char - [129] return - to:@return -sid_rnd: scope:[sid_rnd] from makecharset::@3 - [130] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) - to:sid_rnd::@return -sid_rnd::@return: scope:[sid_rnd] from sid_rnd [131] return to:@return +sid_rnd: scope:[sid_rnd] from makecharset::@3 + [132] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) + to:sid_rnd::@return +sid_rnd::@return: scope:[sid_rnd] from sid_rnd + [133] return + to:@return print_cls: scope:[print_cls] from makecharset::@10 - [132] phi() + [134] phi() to:print_cls::@1 print_cls::@1: scope:[print_cls] from print_cls print_cls::@1 - [133] (byte*) print_cls::sc#2 ← phi( print_cls/(const byte*) print_line_cursor#0 print_cls::@1/(byte*) print_cls::sc#1 ) - [134] *((byte*) print_cls::sc#2) ← (byte) ' ' - [135] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 - [136] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 + [135] (byte*) print_cls::sc#2 ← phi( print_cls/(const byte*) print_line_cursor#0 print_cls::@1/(byte*) print_cls::sc#1 ) + [136] *((byte*) print_cls::sc#2) ← (byte) ' ' + [137] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 + [138] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 to:print_cls::@return print_cls::@return: scope:[print_cls] from print_cls::@1 - [137] return + [139] return to:@return sid_rnd_init: scope:[sid_rnd_init] from makecharset - [138] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff - [139] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 + [140] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff + [141] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 to:sid_rnd_init::@return sid_rnd_init::@return: scope:[sid_rnd_init] from sid_rnd_init - [140] return + [142] return to:@return diff --git a/src/test/ref/examples/plasma/plasma-unroll.log b/src/test/ref/examples/plasma/plasma-unroll.log index 66b829bf9..e3a1ed439 100644 --- a/src/test/ref/examples/plasma/plasma-unroll.log +++ b/src/test/ref/examples/plasma/plasma-unroll.log @@ -331,7 +331,9 @@ doplasma: scope:[doplasma] from main::@4 (byte[$19]) doplasma::ybuf#0 ← { fill( $19, 0) } (byte) doplasma::c1a#0 ← (byte) c1A#8 (byte) doplasma::c1b#0 ← (byte) c1B#8 - (byte) doplasma::i#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (byte~) doplasma::$0 ← *((byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((byte*) SINTABLE#0 + (byte) doplasma::c1b#0) + *((byte[$19]) doplasma::ybuf#0 + (byte/signed byte/word/signed word/dword/signed dword) 0) ← (byte~) doplasma::$0 + (byte) doplasma::i#0 ← (byte/signed byte/word/signed word/dword/signed dword) 1 to:doplasma::@1 doplasma::@1: scope:[doplasma] from doplasma doplasma::@1 (byte*) doplasma::screen#7 ← phi( doplasma/(byte*) doplasma::screen#8 doplasma::@1/(byte*) doplasma::screen#7 ) @@ -342,13 +344,15 @@ doplasma::@1: scope:[doplasma] from doplasma doplasma::@1 (byte) doplasma::i#2 ← phi( doplasma/(byte) doplasma::i#0 doplasma::@1/(byte) doplasma::i#1 ) (byte) doplasma::c1b#2 ← phi( doplasma/(byte) doplasma::c1b#0 doplasma::@1/(byte) doplasma::c1b#1 ) (byte) doplasma::c1a#2 ← phi( doplasma/(byte) doplasma::c1a#0 doplasma::@1/(byte) doplasma::c1a#1 ) - (byte~) doplasma::$0 ← *((byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((byte*) SINTABLE#0 + (byte) doplasma::c1b#2) - *((byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$0 (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 (byte) doplasma::c1b#1 ← (byte) doplasma::c1b#2 + (byte/signed byte/word/signed word/dword/signed dword) 9 + (byte~) doplasma::$1 ← *((byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((byte*) SINTABLE#0 + (byte) doplasma::c1b#1) + (byte/signed word/word/dword/signed dword~) doplasma::$2 ← (byte) doplasma::i#2 - (byte/signed byte/word/signed word/dword/signed dword) 1 + (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((byte[$19]) doplasma::ybuf#0 + (byte/signed word/word/dword/signed dword~) doplasma::$2) + *((byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$3 (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 - (bool~) doplasma::$1 ← (byte) doplasma::i#1 < (byte/signed byte/word/signed word/dword/signed dword) $19 - if((bool~) doplasma::$1) goto doplasma::@1 + (bool~) doplasma::$4 ← (byte) doplasma::i#1 < (byte/signed byte/word/signed word/dword/signed dword) $19 + if((bool~) doplasma::$4) goto doplasma::@1 to:doplasma::@2 doplasma::@2: scope:[doplasma] from doplasma::@1 (byte*) doplasma::screen#6 ← phi( doplasma::@1/(byte*) doplasma::screen#7 ) @@ -371,13 +375,13 @@ doplasma::@3: scope:[doplasma] from doplasma::@2 doplasma::@3 (byte) doplasma::i1#2 ← phi( doplasma::@2/(byte) doplasma::i1#0 doplasma::@3/(byte) doplasma::i1#1 ) (byte) doplasma::c2b#2 ← phi( doplasma::@2/(byte) doplasma::c2b#0 doplasma::@3/(byte) doplasma::c2b#1 ) (byte) doplasma::c2a#2 ← phi( doplasma::@2/(byte) doplasma::c2a#0 doplasma::@3/(byte) doplasma::c2a#1 ) - (byte~) doplasma::$2 ← *((byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((byte*) SINTABLE#0 + (byte) doplasma::c2b#2) - *((byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$2 + (byte~) doplasma::$5 ← *((byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((byte*) SINTABLE#0 + (byte) doplasma::c2b#2) + *((byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$5 (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 - (bool~) doplasma::$3 ← (byte) doplasma::i1#1 < (byte/signed byte/word/signed word/dword/signed dword) $28 - if((bool~) doplasma::$3) goto doplasma::@3 + (bool~) doplasma::$6 ← (byte) doplasma::i1#1 < (byte/signed byte/word/signed word/dword/signed dword) $28 + if((bool~) doplasma::$6) goto doplasma::@3 to:doplasma::@4 doplasma::@4: scope:[doplasma] from doplasma::@3 (byte) c1B#22 ← phi( doplasma::@3/(byte) c1B#24 ) @@ -394,10 +398,14 @@ doplasma::@5: scope:[doplasma] from doplasma::@4 doplasma::@7 (byte) c2A#22 ← phi( doplasma::@4/(byte) c2A#3 doplasma::@7/(byte) c2A#16 ) (byte) c1B#20 ← phi( doplasma::@4/(byte) c1B#22 doplasma::@7/(byte) c1B#15 ) (byte) c1A#20 ← phi( doplasma::@4/(byte) c1A#22 doplasma::@7/(byte) c1A#15 ) - (byte*) doplasma::screen#2 ← phi( doplasma::@4/(byte*) doplasma::screen#3 doplasma::@7/(byte*) doplasma::screen#4 ) + (byte*) doplasma::screen#1 ← phi( doplasma::@4/(byte*) doplasma::screen#3 doplasma::@7/(byte*) doplasma::screen#4 ) (byte) doplasma::i2#2 ← phi( doplasma::@4/(byte) doplasma::i2#0 doplasma::@7/(byte) doplasma::i2#1 ) - (byte) doplasma::xval#0 ← *((byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) - (byte) doplasma::ii#0 ← (byte/signed byte/word/signed word/dword/signed dword) 0 + (byte~) doplasma::$7 ← *((byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((byte[$19]) doplasma::ybuf#0 + (byte/signed byte/word/signed word/dword/signed dword) 0) + (byte) doplasma::val#0 ← (byte~) doplasma::$7 + (byte/signed byte/word/signed word/dword/signed dword~) doplasma::$8 ← (byte/signed byte/word/signed word/dword/signed dword) 0 * (byte/signed byte/word/signed word/dword/signed dword) $28 + (byte*~) doplasma::$9 ← (byte*) doplasma::screen#1 + (byte/signed byte/word/signed word/dword/signed dword~) doplasma::$8 + *((byte*~) doplasma::$9 + (byte) doplasma::i2#2) ← (byte) doplasma::val#0 + (byte) doplasma::ii#0 ← (byte/signed byte/word/signed word/dword/signed dword) 1 to:doplasma::@6 doplasma::@6: scope:[doplasma] from doplasma::@5 doplasma::@6 (byte) c2B#20 ← phi( doplasma::@5/(byte) c2B#22 doplasma::@6/(byte) c2B#20 ) @@ -405,27 +413,27 @@ doplasma::@6: scope:[doplasma] from doplasma::@5 doplasma::@6 (byte) c1B#18 ← phi( doplasma::@5/(byte) c1B#20 doplasma::@6/(byte) c1B#18 ) (byte) c1A#18 ← phi( doplasma::@5/(byte) c1A#20 doplasma::@6/(byte) c1A#18 ) (byte) doplasma::i2#3 ← phi( doplasma::@5/(byte) doplasma::i2#2 doplasma::@6/(byte) doplasma::i2#3 ) - (byte) doplasma::xval#1 ← phi( doplasma::@5/(byte) doplasma::xval#0 doplasma::@6/(byte) doplasma::xval#1 ) - (byte*) doplasma::screen#1 ← phi( doplasma::@5/(byte*) doplasma::screen#2 doplasma::@6/(byte*) doplasma::screen#1 ) + (byte*) doplasma::screen#2 ← phi( doplasma::@5/(byte*) doplasma::screen#1 doplasma::@6/(byte*) doplasma::screen#2 ) (byte) doplasma::ii#2 ← phi( doplasma::@5/(byte) doplasma::ii#0 doplasma::@6/(byte) doplasma::ii#1 ) - (byte/signed word/word/dword/signed dword~) doplasma::$4 ← (byte) doplasma::ii#2 * (byte/signed byte/word/signed word/dword/signed dword) $28 - (byte*~) doplasma::$5 ← (byte*) doplasma::screen#1 + (byte/signed word/word/dword/signed dword~) doplasma::$4 - (byte~) doplasma::$6 ← (byte) doplasma::xval#1 + *((byte[$19]) doplasma::ybuf#0 + (byte) doplasma::ii#2) - *((byte*~) doplasma::$5 + (byte) doplasma::i2#3) ← (byte~) doplasma::$6 + (byte) doplasma::val#2 ← phi( doplasma::@5/(byte) doplasma::val#0 doplasma::@6/(byte) doplasma::val#1 ) + (byte) doplasma::val#1 ← (byte) doplasma::val#2 + *((byte[$19]) doplasma::ybuf#0 + (byte) doplasma::ii#2) + (byte/signed word/word/dword/signed dword~) doplasma::$10 ← (byte) doplasma::ii#2 * (byte/signed byte/word/signed word/dword/signed dword) $28 + (byte*~) doplasma::$11 ← (byte*) doplasma::screen#2 + (byte/signed word/word/dword/signed dword~) doplasma::$10 + *((byte*~) doplasma::$11 + (byte) doplasma::i2#3) ← (byte) doplasma::val#1 (byte) doplasma::ii#1 ← ++ (byte) doplasma::ii#2 - (bool~) doplasma::$7 ← (byte) doplasma::ii#1 < (byte/signed byte/word/signed word/dword/signed dword) $19 - unroll if((bool~) doplasma::$7) goto doplasma::@6 + (bool~) doplasma::$12 ← (byte) doplasma::ii#1 < (byte/signed byte/word/signed word/dword/signed dword) $19 + unroll if((bool~) doplasma::$12) goto doplasma::@6 to:doplasma::@7 doplasma::@7: scope:[doplasma] from doplasma::@6 - (byte*) doplasma::screen#4 ← phi( doplasma::@6/(byte*) doplasma::screen#1 ) (byte) c2B#16 ← phi( doplasma::@6/(byte) c2B#20 ) (byte) c2A#16 ← phi( doplasma::@6/(byte) c2A#20 ) (byte) c1B#15 ← phi( doplasma::@6/(byte) c1B#18 ) (byte) c1A#15 ← phi( doplasma::@6/(byte) c1A#18 ) + (byte*) doplasma::screen#4 ← phi( doplasma::@6/(byte*) doplasma::screen#2 ) (byte) doplasma::i2#4 ← phi( doplasma::@6/(byte) doplasma::i2#3 ) (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#4 - (bool~) doplasma::$8 ← (byte) doplasma::i2#1 < (byte/signed byte/word/signed word/dword/signed dword) $28 - if((bool~) doplasma::$8) goto doplasma::@5 + (bool~) doplasma::$13 ← (byte) doplasma::i2#1 < (byte/signed byte/word/signed word/dword/signed dword) $28 + if((bool~) doplasma::$13) goto doplasma::@5 to:doplasma::@return doplasma::@return: scope:[doplasma] from doplasma::@7 (byte) c2B#10 ← phi( doplasma::@7/(byte) c2B#16 ) @@ -933,14 +941,19 @@ SYMBOL TABLE SSA (byte) c2B#9 (void()) doplasma((byte*) doplasma::screen) (byte~) doplasma::$0 -(bool~) doplasma::$1 -(byte~) doplasma::$2 -(bool~) doplasma::$3 -(byte/signed word/word/dword/signed dword~) doplasma::$4 -(byte*~) doplasma::$5 -(byte~) doplasma::$6 -(bool~) doplasma::$7 -(bool~) doplasma::$8 +(byte~) doplasma::$1 +(byte/signed word/word/dword/signed dword~) doplasma::$10 +(byte*~) doplasma::$11 +(bool~) doplasma::$12 +(bool~) doplasma::$13 +(byte/signed word/word/dword/signed dword~) doplasma::$2 +(byte~) doplasma::$3 +(bool~) doplasma::$4 +(byte~) doplasma::$5 +(bool~) doplasma::$6 +(byte~) doplasma::$7 +(byte/signed byte/word/signed word/dword/signed dword~) doplasma::$8 +(byte*~) doplasma::$9 (label) doplasma::@1 (label) doplasma::@2 (label) doplasma::@3 @@ -993,11 +1006,12 @@ SYMBOL TABLE SSA (byte*) doplasma::screen#6 (byte*) doplasma::screen#7 (byte*) doplasma::screen#8 +(byte) doplasma::val +(byte) doplasma::val#0 +(byte) doplasma::val#1 +(byte) doplasma::val#2 (byte[$28]) doplasma::xbuf (byte[$28]) doplasma::xbuf#0 -(byte) doplasma::xval -(byte) doplasma::xval#0 -(byte) doplasma::xval#1 (byte[$19]) doplasma::ybuf (byte[$19]) doplasma::ybuf#0 (void()) main() @@ -1271,8 +1285,8 @@ SYMBOL TABLE SSA (void()) sid_rnd_init() (label) sid_rnd_init::@return -Inversing boolean not [265] (bool~) makecharset::$6 ← (byte~) makecharset::$4 <= (byte) makecharset::s#1 from [264] (bool~) makecharset::$5 ← (byte~) makecharset::$4 > (byte) makecharset::s#1 -Inversing boolean not [283] (bool~) makecharset::$13 ← (byte/word~) makecharset::$11 != (byte/signed byte/word/signed word/dword/signed dword) 0 from [282] (bool~) makecharset::$12 ← (byte/word~) makecharset::$11 == (byte/signed byte/word/signed word/dword/signed dword) 0 +Inversing boolean not [273] (bool~) makecharset::$6 ← (byte~) makecharset::$4 <= (byte) makecharset::s#1 from [272] (bool~) makecharset::$5 ← (byte~) makecharset::$4 > (byte) makecharset::s#1 +Inversing boolean not [291] (bool~) makecharset::$13 ← (byte/word~) makecharset::$11 != (byte/signed byte/word/signed word/dword/signed dword) 0 from [290] (bool~) makecharset::$12 ← (byte/word~) makecharset::$11 == (byte/signed byte/word/signed word/dword/signed dword) 0 Successful SSA optimization Pass2UnaryNotSimplification Alias (byte*) print_line_cursor#0 = (byte*) print_screen#0 (byte*) print_char_cursor#0 (byte*) print_line_cursor#35 (byte*) print_char_cursor#40 (byte*) print_screen#13 (byte*) print_line_cursor#32 (byte*) print_char_cursor#37 (byte*) print_screen#12 (byte*) print_line_cursor#29 (byte*) print_char_cursor#35 (byte*) print_screen#11 (byte*) print_line_cursor#25 (byte*) print_char_cursor#31 (byte*) print_screen#10 (byte*) print_line_cursor#18 (byte*) print_char_cursor#25 (byte*) print_screen#9 Alias (byte*) print_char_cursor#1 = (byte*) print_char_cursor#12 (byte*) print_char_cursor#2 @@ -1310,12 +1324,13 @@ Alias (byte) c2B#15 = (byte) c2B#9 Alias (byte*) doplasma::screen#3 = (byte*) doplasma::screen#5 Alias (byte) c1A#22 = (byte) c1A#24 Alias (byte) c1B#22 = (byte) c1B#24 +Alias (byte) doplasma::val#0 = (byte~) doplasma::$7 Alias (byte) doplasma::i2#3 = (byte) doplasma::i2#4 +Alias (byte*) doplasma::screen#2 = (byte*) doplasma::screen#4 Alias (byte) c1A#10 = (byte) c1A#15 (byte) c1A#18 (byte) c1A#4 Alias (byte) c1B#10 = (byte) c1B#15 (byte) c1B#18 (byte) c1B#4 Alias (byte) c2A#10 = (byte) c2A#16 (byte) c2A#20 (byte) c2A#4 Alias (byte) c2B#10 = (byte) c2B#16 (byte) c2B#20 (byte) c2B#4 -Alias (byte*) doplasma::screen#1 = (byte*) doplasma::screen#4 Alias (byte*) print_screen#4 = (byte*) print_screen#5 Alias (byte*) print_line_cursor#16 = (byte*) print_line_cursor#22 Alias (byte*) print_char_cursor#23 = (byte*) print_char_cursor#29 @@ -1380,8 +1395,7 @@ Self Phi Eliminated (byte) c2B#15 Self Phi Eliminated (byte*) doplasma::screen#3 Self Phi Eliminated (byte) c1A#22 Self Phi Eliminated (byte) c1B#22 -Self Phi Eliminated (byte*) doplasma::screen#1 -Self Phi Eliminated (byte) doplasma::xval#1 +Self Phi Eliminated (byte*) doplasma::screen#2 Self Phi Eliminated (byte) doplasma::i2#3 Self Phi Eliminated (byte) c1A#10 Self Phi Eliminated (byte) c1B#10 @@ -1435,8 +1449,7 @@ Redundant Phi (byte) c2B#15 (byte) c2B#14 Redundant Phi (byte*) doplasma::screen#3 (byte*) doplasma::screen#6 Redundant Phi (byte) c1A#22 (byte) c1A#3 Redundant Phi (byte) c1B#22 (byte) c1B#3 -Redundant Phi (byte*) doplasma::screen#1 (byte*) doplasma::screen#2 -Redundant Phi (byte) doplasma::xval#1 (byte) doplasma::xval#0 +Redundant Phi (byte*) doplasma::screen#2 (byte*) doplasma::screen#1 Redundant Phi (byte) doplasma::i2#3 (byte) doplasma::i2#2 Redundant Phi (byte) c1A#10 (byte) c1A#20 Redundant Phi (byte) c1B#10 (byte) c1B#20 @@ -1464,15 +1477,15 @@ Redundant Phi (byte) c2B#11 (byte) c2B#1 Successful SSA optimization Pass2RedundantPhiElimination Simple Condition (bool~) print_cls::$1 [97] if((byte*) print_cls::sc#1!=(byte*~) print_cls::$0) goto print_cls::@1 Simple Condition (bool~) main::$3 [141] if((byte*) main::col#1!=rangelast(COLS#0,main::$2)) goto main::@1 -Simple Condition (bool~) doplasma::$1 [202] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 -Simple Condition (bool~) doplasma::$3 [216] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 -Simple Condition (bool~) doplasma::$7 [231] unroll if((byte) doplasma::ii#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6 -Simple Condition (bool~) doplasma::$8 [235] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 -Simple Condition (bool~) makecharset::$6 [266] if((byte~) makecharset::$4<=(byte) makecharset::s#3) goto makecharset::@4 -Simple Condition (bool~) makecharset::$7 [270] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 -Simple Condition (bool~) makecharset::$10 [279] if((byte) makecharset::i#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@2 -Simple Condition (bool~) makecharset::$13 [284] if((byte/word~) makecharset::$11!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto makecharset::@9 -Simple Condition (bool~) makecharset::$15 [288] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 +Simple Condition (bool~) doplasma::$4 [206] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 +Simple Condition (bool~) doplasma::$6 [220] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 +Simple Condition (bool~) doplasma::$12 [239] unroll if((byte) doplasma::ii#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6 +Simple Condition (bool~) doplasma::$13 [243] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 +Simple Condition (bool~) makecharset::$6 [274] if((byte~) makecharset::$4<=(byte) makecharset::s#3) goto makecharset::@4 +Simple Condition (bool~) makecharset::$7 [278] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 +Simple Condition (bool~) makecharset::$10 [287] if((byte) makecharset::i#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@2 +Simple Condition (bool~) makecharset::$13 [292] if((byte/word~) makecharset::$11!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto makecharset::@9 +Simple Condition (bool~) makecharset::$15 [296] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 Successful SSA optimization Pass2ConditionalJumpSimplification Constant (const byte*) PROCPORT_DDR#0 = ((byte*))0 Constant (const byte) PROCPORT_DDR_MEMORY_MASK#0 = 7 @@ -1577,10 +1590,11 @@ Constant (const byte) c2A#17 = 0 Constant (const byte) c2B#17 = 0 Constant (const byte[$28]) doplasma::xbuf#0 = { fill( $28, 0) } Constant (const byte[$19]) doplasma::ybuf#0 = { fill( $19, 0) } -Constant (const byte) doplasma::i#0 = 0 +Constant (const byte) doplasma::i#0 = 1 Constant (const byte) doplasma::i1#0 = 0 Constant (const byte) doplasma::i2#0 = 0 -Constant (const byte) doplasma::ii#0 = 0 +Constant (const byte/signed byte/word/signed word/dword/signed dword) doplasma::$8 = 0*$28 +Constant (const byte) doplasma::ii#0 = 1 Constant (const byte[8]) makecharset::bittab#0 = { 1, 2, 4, 8, $10, $20, $40, $80 } Constant (const word) makecharset::c#0 = 0 Constant (const byte) makecharset::i#0 = 0 @@ -1611,8 +1625,14 @@ Constant (const byte/word/dword) main::toD0181_$7#0 = main::toD0181_$6#0&$f Successful SSA optimization Pass2ConstantIdentification Constant (const byte) main::toD0181_return#0 = main::toD0181_$3#0|main::toD0181_$7#0 Successful SSA optimization Pass2ConstantIdentification +Consolidated array index constant in *(doplasma::ybuf#0+0) +Consolidated array index constant in assignment *(doplasma::ybuf#0+-1 + doplasma::$2) +Consolidated array index constant in *(doplasma::ybuf#0+0) +Removed zero-constant in assignment doplasma::$9 +Successful SSA optimization Pass2ConstantAdditionElimination if() condition always true - replacing block destination [24] if(true) goto main::@4 Successful SSA optimization Pass2ConstantIfs +Inferred type updated to byte in [35] (byte/signed word/word/dword/signed dword~) doplasma::$2 ← (byte) doplasma::i#2 Successful SSA optimization PassNEliminateUnusedVars Successful SSA optimization PassNEliminateUnusedVars Removing unused block main::@return @@ -1633,7 +1653,10 @@ Culled Empty Block (label) makecharset::@12 Culled Empty Block (label) makecharset::@14 Culled Empty Block (label) @29 Successful SSA optimization Pass2CullEmptyBlocks -Self Phi Eliminated (byte*) doplasma::screen#2 +Alias (byte) doplasma::i#2 = (byte~) doplasma::$2 +Alias (byte*) doplasma::screen#1 = (byte*~) doplasma::$9 +Successful SSA optimization Pass2AliasElimination +Self Phi Eliminated (byte*) doplasma::screen#1 Self Phi Eliminated (byte) c1A#20 Self Phi Eliminated (byte) c1B#20 Self Phi Eliminated (byte) c2A#22 @@ -1644,7 +1667,7 @@ Self Phi Eliminated (byte*) makecharset::charset#6 Self Phi Eliminated (byte*) print_line_cursor#39 Self Phi Eliminated (byte*) print_char_cursor#44 Successful SSA optimization Pass2SelfPhiElimination -Redundant Phi (byte*) doplasma::screen#2 (const byte*) doplasma::screen#0 +Redundant Phi (byte*) doplasma::screen#1 (const byte*) doplasma::screen#0 Redundant Phi (byte) c1A#20 (byte) c1A#3 Redundant Phi (byte) c1B#20 (byte) c1B#3 Redundant Phi (byte) c2A#22 (byte) c2A#3 @@ -1655,8 +1678,8 @@ Redundant Phi (byte*) makecharset::charset#6 (byte*) makecharset::charset#7 Redundant Phi (byte*) print_line_cursor#39 (byte*) print_line_cursor#40 Redundant Phi (byte*) print_char_cursor#44 (byte*) print_char_cursor#45 Successful SSA optimization Pass2RedundantPhiElimination -Inferred type updated to word in [75] (word/signed dword/dword~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 -Inferred type updated to word in [76] (word/signed dword/dword~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 +Inferred type updated to word in [79] (word/signed dword/dword~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 +Inferred type updated to word in [80] (word/signed dword/dword~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 Successful SSA optimization PassNEliminateUnusedVars Self Phi Eliminated (byte*) makecharset::charset#7 Successful SSA optimization Pass2SelfPhiElimination @@ -1664,337 +1687,374 @@ Redundant Phi (byte*) makecharset::charset#7 (const byte*) makecharset::charset# Successful SSA optimization Pass2RedundantPhiElimination Unrolling loop Loop head: doplasma::@6 tails: doplasma::@6 blocks: doplasma::@6 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#0 = (byte) doplasma::val#2 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#2 (const byte) doplasma::ii#0 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const byte/signed word/word/dword/signed dword) doplasma::$4 = doplasma::ii#0*$28 +Constant (const byte/signed word/word/dword/signed dword) doplasma::$10 = doplasma::ii#0*$28 Constant (const byte) doplasma::ii#1 = ++doplasma::ii#0 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$5 = doplasma::screen#0+doplasma::$4 +Constant (const byte*) doplasma::$11 = doplasma::screen#0+doplasma::$10 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#0) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [51] if((const byte) doplasma::ii#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_1 +if() condition always true - replacing block destination [55] if((const byte) doplasma::ii#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_1 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_1 tails: doplasma::@6_1 blocks: doplasma::@6_1 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#1 = (byte) doplasma::val#3 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#3 (const byte) doplasma::ii#1 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const byte/signed word/word/dword/signed dword) doplasma::$9 = doplasma::ii#1*$28 +Constant (const byte/signed word/word/dword/signed dword) doplasma::$14 = doplasma::ii#1*$28 Constant (const byte) doplasma::ii#4 = ++doplasma::ii#1 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$10 = doplasma::screen#0+doplasma::$9 +Constant (const byte*) doplasma::$15 = doplasma::screen#0+doplasma::$14 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#1) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [41] if((const byte) doplasma::ii#4<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_2 +if() condition always true - replacing block destination [45] if((const byte) doplasma::ii#4<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_2 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_2 tails: doplasma::@6_2 blocks: doplasma::@6_2 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#4 = (byte) doplasma::val#5 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#5 (const byte) doplasma::ii#4 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const byte/signed word/word/dword/signed dword) doplasma::$12 = doplasma::ii#4*$28 +Constant (const byte/signed word/word/dword/signed dword) doplasma::$16 = doplasma::ii#4*$28 Constant (const byte) doplasma::ii#6 = ++doplasma::ii#4 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$13 = doplasma::screen#0+doplasma::$12 +Constant (const byte*) doplasma::$17 = doplasma::screen#0+doplasma::$16 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#4) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [43] if((const byte) doplasma::ii#6<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_3 +if() condition always true - replacing block destination [47] if((const byte) doplasma::ii#6<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_3 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_3 tails: doplasma::@6_3 blocks: doplasma::@6_3 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#6 = (byte) doplasma::val#7 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#7 (const byte) doplasma::ii#6 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const byte/signed word/word/dword/signed dword) doplasma::$15 = doplasma::ii#6*$28 +Constant (const byte/signed word/word/dword/signed dword) doplasma::$18 = doplasma::ii#6*$28 Constant (const byte) doplasma::ii#8 = ++doplasma::ii#6 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$16 = doplasma::screen#0+doplasma::$15 -Successful SSA optimization Pass2ConstantIdentification -Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#6) -Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [45] if((const byte) doplasma::ii#8<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_4 -Successful SSA optimization Pass2ConstantIfs -Unrolling loop Loop head: doplasma::@6_4 tails: doplasma::@6_4 blocks: doplasma::@6_4 -Successful SSA optimization Pass2LoopUnroll -Redundant Phi (byte) doplasma::ii#9 (const byte) doplasma::ii#8 -Successful SSA optimization Pass2RedundantPhiElimination -Constant (const byte/signed word/word/dword/signed dword) doplasma::$18 = doplasma::ii#8*$28 -Constant (const byte) doplasma::ii#10 = ++doplasma::ii#8 -Successful SSA optimization Pass2ConstantIdentification Constant (const byte*) doplasma::$19 = doplasma::screen#0+doplasma::$18 Successful SSA optimization Pass2ConstantIdentification +Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#6) +Successful SSA optimization Pass2ConstantAdditionElimination +if() condition always true - replacing block destination [49] if((const byte) doplasma::ii#8<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_4 +Successful SSA optimization Pass2ConstantIfs +Unrolling loop Loop head: doplasma::@6_4 tails: doplasma::@6_4 blocks: doplasma::@6_4 +Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#8 = (byte) doplasma::val#9 +Successful SSA optimization Pass2AliasElimination +Redundant Phi (byte) doplasma::ii#9 (const byte) doplasma::ii#8 +Successful SSA optimization Pass2RedundantPhiElimination +Constant (const byte/signed word/word/dword/signed dword) doplasma::$20 = doplasma::ii#8*$28 +Constant (const byte) doplasma::ii#10 = ++doplasma::ii#8 +Successful SSA optimization Pass2ConstantIdentification +Constant (const byte*) doplasma::$21 = doplasma::screen#0+doplasma::$20 +Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#8) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [47] if((const byte) doplasma::ii#10<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_5 +if() condition always true - replacing block destination [51] if((const byte) doplasma::ii#10<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_5 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_5 tails: doplasma::@6_5 blocks: doplasma::@6_5 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#10 = (byte) doplasma::val#11 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#11 (const byte) doplasma::ii#10 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const byte/signed word/word/dword/signed dword) doplasma::$21 = doplasma::ii#10*$28 +Constant (const byte/signed word/word/dword/signed dword) doplasma::$22 = doplasma::ii#10*$28 Constant (const byte) doplasma::ii#12 = ++doplasma::ii#10 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$22 = doplasma::screen#0+doplasma::$21 +Constant (const byte*) doplasma::$23 = doplasma::screen#0+doplasma::$22 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#10) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [49] if((const byte) doplasma::ii#12<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_6 +if() condition always true - replacing block destination [53] if((const byte) doplasma::ii#12<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_6 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_6 tails: doplasma::@6_6 blocks: doplasma::@6_6 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#12 = (byte) doplasma::val#13 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#13 (const byte) doplasma::ii#12 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const byte/signed word/word/dword/signed dword) doplasma::$24 = doplasma::ii#12*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$24 = doplasma::ii#12*$28 Constant (const byte) doplasma::ii#14 = ++doplasma::ii#12 Successful SSA optimization Pass2ConstantIdentification Constant (const byte*) doplasma::$25 = doplasma::screen#0+doplasma::$24 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#12) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [51] if((const byte) doplasma::ii#14<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_7 +if() condition always true - replacing block destination [55] if((const byte) doplasma::ii#14<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_7 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_7 tails: doplasma::@6_7 blocks: doplasma::@6_7 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#14 = (byte) doplasma::val#15 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#15 (const byte) doplasma::ii#14 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$27 = doplasma::ii#14*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$26 = doplasma::ii#14*$28 Constant (const byte) doplasma::ii#16 = ++doplasma::ii#14 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$28 = doplasma::screen#0+doplasma::$27 +Constant (const byte*) doplasma::$27 = doplasma::screen#0+doplasma::$26 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#14) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [53] if((const byte) doplasma::ii#16<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_8 +if() condition always true - replacing block destination [57] if((const byte) doplasma::ii#16<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_8 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_8 tails: doplasma::@6_8 blocks: doplasma::@6_8 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#16 = (byte) doplasma::val#17 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#17 (const byte) doplasma::ii#16 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$30 = doplasma::ii#16*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$28 = doplasma::ii#16*$28 Constant (const byte) doplasma::ii#18 = ++doplasma::ii#16 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$31 = doplasma::screen#0+doplasma::$30 +Constant (const byte*) doplasma::$29 = doplasma::screen#0+doplasma::$28 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#16) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [55] if((const byte) doplasma::ii#18<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_9 +if() condition always true - replacing block destination [59] if((const byte) doplasma::ii#18<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_9 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_9 tails: doplasma::@6_9 blocks: doplasma::@6_9 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#18 = (byte) doplasma::val#19 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#19 (const byte) doplasma::ii#18 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$33 = doplasma::ii#18*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$30 = doplasma::ii#18*$28 Constant (const byte) doplasma::ii#20 = ++doplasma::ii#18 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$34 = doplasma::screen#0+doplasma::$33 +Constant (const byte*) doplasma::$31 = doplasma::screen#0+doplasma::$30 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#18) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [57] if((const byte) doplasma::ii#20<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_10 +if() condition always true - replacing block destination [61] if((const byte) doplasma::ii#20<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_10 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_10 tails: doplasma::@6_10 blocks: doplasma::@6_10 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#20 = (byte) doplasma::val#21 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#21 (const byte) doplasma::ii#20 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$36 = doplasma::ii#20*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$32 = doplasma::ii#20*$28 Constant (const byte) doplasma::ii#22 = ++doplasma::ii#20 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$37 = doplasma::screen#0+doplasma::$36 +Constant (const byte*) doplasma::$33 = doplasma::screen#0+doplasma::$32 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#20) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [59] if((const byte) doplasma::ii#22<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_11 +if() condition always true - replacing block destination [63] if((const byte) doplasma::ii#22<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_11 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_11 tails: doplasma::@6_11 blocks: doplasma::@6_11 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#22 = (byte) doplasma::val#23 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#23 (const byte) doplasma::ii#22 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$39 = doplasma::ii#22*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$34 = doplasma::ii#22*$28 Constant (const byte) doplasma::ii#24 = ++doplasma::ii#22 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$40 = doplasma::screen#0+doplasma::$39 +Constant (const byte*) doplasma::$35 = doplasma::screen#0+doplasma::$34 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#22) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [61] if((const byte) doplasma::ii#24<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_12 +if() condition always true - replacing block destination [65] if((const byte) doplasma::ii#24<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_12 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_12 tails: doplasma::@6_12 blocks: doplasma::@6_12 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#24 = (byte) doplasma::val#25 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#25 (const byte) doplasma::ii#24 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$42 = doplasma::ii#24*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$36 = doplasma::ii#24*$28 Constant (const byte) doplasma::ii#26 = ++doplasma::ii#24 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$43 = doplasma::screen#0+doplasma::$42 +Constant (const byte*) doplasma::$37 = doplasma::screen#0+doplasma::$36 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#24) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [63] if((const byte) doplasma::ii#26<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_13 +if() condition always true - replacing block destination [67] if((const byte) doplasma::ii#26<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_13 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_13 tails: doplasma::@6_13 blocks: doplasma::@6_13 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#26 = (byte) doplasma::val#27 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#27 (const byte) doplasma::ii#26 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$45 = doplasma::ii#26*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$38 = doplasma::ii#26*$28 Constant (const byte) doplasma::ii#28 = ++doplasma::ii#26 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$46 = doplasma::screen#0+doplasma::$45 +Constant (const byte*) doplasma::$39 = doplasma::screen#0+doplasma::$38 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#26) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [65] if((const byte) doplasma::ii#28<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_14 +if() condition always true - replacing block destination [69] if((const byte) doplasma::ii#28<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_14 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_14 tails: doplasma::@6_14 blocks: doplasma::@6_14 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#28 = (byte) doplasma::val#29 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#29 (const byte) doplasma::ii#28 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$48 = doplasma::ii#28*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$40 = doplasma::ii#28*$28 Constant (const byte) doplasma::ii#30 = ++doplasma::ii#28 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$49 = doplasma::screen#0+doplasma::$48 +Constant (const byte*) doplasma::$41 = doplasma::screen#0+doplasma::$40 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#28) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [67] if((const byte) doplasma::ii#30<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_15 +if() condition always true - replacing block destination [71] if((const byte) doplasma::ii#30<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_15 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_15 tails: doplasma::@6_15 blocks: doplasma::@6_15 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#30 = (byte) doplasma::val#31 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#31 (const byte) doplasma::ii#30 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$51 = doplasma::ii#30*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$42 = doplasma::ii#30*$28 Constant (const byte) doplasma::ii#32 = ++doplasma::ii#30 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$52 = doplasma::screen#0+doplasma::$51 +Constant (const byte*) doplasma::$43 = doplasma::screen#0+doplasma::$42 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#30) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [69] if((const byte) doplasma::ii#32<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_16 +if() condition always true - replacing block destination [73] if((const byte) doplasma::ii#32<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_16 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_16 tails: doplasma::@6_16 blocks: doplasma::@6_16 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#32 = (byte) doplasma::val#33 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#33 (const byte) doplasma::ii#32 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$54 = doplasma::ii#32*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$44 = doplasma::ii#32*$28 Constant (const byte) doplasma::ii#34 = ++doplasma::ii#32 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$55 = doplasma::screen#0+doplasma::$54 +Constant (const byte*) doplasma::$45 = doplasma::screen#0+doplasma::$44 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#32) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [71] if((const byte) doplasma::ii#34<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_17 +if() condition always true - replacing block destination [75] if((const byte) doplasma::ii#34<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_17 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_17 tails: doplasma::@6_17 blocks: doplasma::@6_17 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#34 = (byte) doplasma::val#35 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#35 (const byte) doplasma::ii#34 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$57 = doplasma::ii#34*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$46 = doplasma::ii#34*$28 Constant (const byte) doplasma::ii#36 = ++doplasma::ii#34 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$58 = doplasma::screen#0+doplasma::$57 +Constant (const byte*) doplasma::$47 = doplasma::screen#0+doplasma::$46 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#34) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [73] if((const byte) doplasma::ii#36<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_18 +if() condition always true - replacing block destination [77] if((const byte) doplasma::ii#36<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_18 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_18 tails: doplasma::@6_18 blocks: doplasma::@6_18 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#36 = (byte) doplasma::val#37 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#37 (const byte) doplasma::ii#36 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$60 = doplasma::ii#36*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$48 = doplasma::ii#36*$28 Constant (const byte) doplasma::ii#38 = ++doplasma::ii#36 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$61 = doplasma::screen#0+doplasma::$60 +Constant (const byte*) doplasma::$49 = doplasma::screen#0+doplasma::$48 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#36) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [75] if((const byte) doplasma::ii#38<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_19 +if() condition always true - replacing block destination [79] if((const byte) doplasma::ii#38<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_19 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_19 tails: doplasma::@6_19 blocks: doplasma::@6_19 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#38 = (byte) doplasma::val#39 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#39 (const byte) doplasma::ii#38 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$63 = doplasma::ii#38*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$50 = doplasma::ii#38*$28 Constant (const byte) doplasma::ii#40 = ++doplasma::ii#38 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$64 = doplasma::screen#0+doplasma::$63 +Constant (const byte*) doplasma::$51 = doplasma::screen#0+doplasma::$50 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#38) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [77] if((const byte) doplasma::ii#40<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_20 +if() condition always true - replacing block destination [81] if((const byte) doplasma::ii#40<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_20 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_20 tails: doplasma::@6_20 blocks: doplasma::@6_20 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#40 = (byte) doplasma::val#41 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#41 (const byte) doplasma::ii#40 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$66 = doplasma::ii#40*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$52 = doplasma::ii#40*$28 Constant (const byte) doplasma::ii#42 = ++doplasma::ii#40 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$67 = doplasma::screen#0+doplasma::$66 +Constant (const byte*) doplasma::$53 = doplasma::screen#0+doplasma::$52 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#40) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [79] if((const byte) doplasma::ii#42<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_21 +if() condition always true - replacing block destination [83] if((const byte) doplasma::ii#42<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_21 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_21 tails: doplasma::@6_21 blocks: doplasma::@6_21 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#42 = (byte) doplasma::val#43 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#43 (const byte) doplasma::ii#42 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$69 = doplasma::ii#42*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$54 = doplasma::ii#42*$28 Constant (const byte) doplasma::ii#44 = ++doplasma::ii#42 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$70 = doplasma::screen#0+doplasma::$69 +Constant (const byte*) doplasma::$55 = doplasma::screen#0+doplasma::$54 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#42) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [81] if((const byte) doplasma::ii#44<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_22 +if() condition always true - replacing block destination [85] if((const byte) doplasma::ii#44<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_22 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_22 tails: doplasma::@6_22 blocks: doplasma::@6_22 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#44 = (byte) doplasma::val#45 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#45 (const byte) doplasma::ii#44 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$72 = doplasma::ii#44*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$56 = doplasma::ii#44*$28 Constant (const byte) doplasma::ii#46 = ++doplasma::ii#44 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$73 = doplasma::screen#0+doplasma::$72 +Constant (const byte*) doplasma::$57 = doplasma::screen#0+doplasma::$56 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#44) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [83] if((const byte) doplasma::ii#46<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_23 +if() condition always true - replacing block destination [87] if((const byte) doplasma::ii#46<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_23 Successful SSA optimization Pass2ConstantIfs Unrolling loop Loop head: doplasma::@6_23 tails: doplasma::@6_23 blocks: doplasma::@6_23 Successful SSA optimization Pass2LoopUnroll +Alias (byte) doplasma::val#46 = (byte) doplasma::val#47 +Successful SSA optimization Pass2AliasElimination Redundant Phi (byte) doplasma::ii#47 (const byte) doplasma::ii#46 Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$75 = doplasma::ii#46*$28 +Constant (const word/signed word/dword/signed dword) doplasma::$58 = doplasma::ii#46*$28 Constant (const byte) doplasma::ii#48 = ++doplasma::ii#46 Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$76 = doplasma::screen#0+doplasma::$75 +Constant (const byte*) doplasma::$59 = doplasma::screen#0+doplasma::$58 Successful SSA optimization Pass2ConstantIdentification Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#46) Successful SSA optimization Pass2ConstantAdditionElimination -if() condition always true - replacing block destination [85] if((const byte) doplasma::ii#48<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_24 -Successful SSA optimization Pass2ConstantIfs -Unrolling loop Loop head: doplasma::@6_24 tails: doplasma::@6_24 blocks: doplasma::@6_24 -Successful SSA optimization Pass2LoopUnroll -Redundant Phi (byte) doplasma::ii#49 (const byte) doplasma::ii#48 -Successful SSA optimization Pass2RedundantPhiElimination -Constant (const word/signed word/dword/signed dword) doplasma::$78 = doplasma::ii#48*$28 -Constant (const byte) doplasma::ii#50 = ++doplasma::ii#48 -Successful SSA optimization Pass2ConstantIdentification -Constant (const byte*) doplasma::$79 = doplasma::screen#0+doplasma::$78 -Successful SSA optimization Pass2ConstantIdentification -Consolidated array index constant in *(doplasma::ybuf#0+doplasma::ii#48) -Successful SSA optimization Pass2ConstantAdditionElimination -Removing PHI-reference to removed block (doplasma::@6_24) in block doplasma::@6_25 -if() condition always false - eliminating [87] if((const byte) doplasma::ii#50<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_25 +Removing PHI-reference to removed block (doplasma::@6_23) in block doplasma::@6_24 +Removing PHI-reference to removed block (doplasma::@6_23) in block doplasma::@6_24 +if() condition always false - eliminating [89] if((const byte) doplasma::ii#48<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@6_24 Successful SSA optimization Pass2ConstantIfs Successful SSA optimization PassNEliminateUnusedVars -Eliminating variable (byte) doplasma::ii#51 from unused block doplasma::@6_25 -Eliminating variable (byte/signed word/word/dword/signed dword~) doplasma::$81 from unused block doplasma::@6_25 -Eliminating variable (byte*~) doplasma::$82 from unused block doplasma::@6_25 -Eliminating variable (byte~) doplasma::$83 from unused block doplasma::@6_25 -Eliminating variable (byte) doplasma::ii#52 from unused block doplasma::@6_25 -Removing unused block doplasma::@6_25 +Eliminating variable (byte) doplasma::val#49 from unused block doplasma::@6_24 +Eliminating variable (byte) doplasma::ii#49 from unused block doplasma::@6_24 +Eliminating variable (byte) doplasma::val#50 from unused block doplasma::@6_24 +Eliminating variable (byte/signed word/word/dword/signed dword~) doplasma::$60 from unused block doplasma::@6_24 +Eliminating variable (byte*~) doplasma::$61 from unused block doplasma::@6_24 +Eliminating variable (byte) doplasma::ii#50 from unused block doplasma::@6_24 +Removing unused block doplasma::@6_24 Successful SSA optimization Pass2EliminateUnusedBlocks Inlining constant with var siblings (const byte*) print_cls::sc#0 Inlining constant with var siblings (const byte*) main::col#0 @@ -2025,7 +2085,6 @@ Inlining constant with different constant siblings (const byte) doplasma::ii#40 Inlining constant with different constant siblings (const byte) doplasma::ii#42 Inlining constant with different constant siblings (const byte) doplasma::ii#44 Inlining constant with different constant siblings (const byte) doplasma::ii#46 -Inlining constant with different constant siblings (const byte) doplasma::ii#48 Inlining constant with var siblings (const word) makecharset::c#0 Inlining constant with var siblings (const byte) makecharset::i#0 Inlining constant with var siblings (const byte) makecharset::b#0 @@ -2034,114 +2093,109 @@ Inlining constant with var siblings (const byte) c1A#16 Inlining constant with var siblings (const byte) c1B#16 Inlining constant with var siblings (const byte) c2A#17 Inlining constant with var siblings (const byte) c2B#17 -Constant inlined doplasma::ii#46 = ++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#48 = ++++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::ii#46 = ++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined main::col#0 = (const byte*) COLS#0 -Constant inlined doplasma::ii#40 = ++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#42 = ++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#44 = ++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#6 = ++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#8 = ++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$67 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::ii#40 = ++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#42 = ++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#44 = ++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#6 = ++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#8 = ++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined c1A#16 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$69 = ++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$64 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$63 = ++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$66 = ++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$60 = ++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$61 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::ii#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#1 = ++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#4 = ++++(byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::ii#0 = (byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#1 = ++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#4 = ++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined main::toD0181_$7#0 = >((word))(const byte*) CHARSET#0/(byte/signed byte/word/signed word/dword/signed dword) 4&(byte/signed byte/word/signed word/dword/signed dword) $f -Constant inlined doplasma::$57 = ++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$57 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined main::toD0181_$3#0 = >((word))(const byte*) SCREEN1#0&(word/signed word/dword/signed dword) $3fff*(byte/signed byte/word/signed word/dword/signed dword) 4 -Constant inlined doplasma::$58 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$52 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$55 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$56 = ++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$59 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$58 = ++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$53 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$52 = ++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$55 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined makecharset::c#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$54 = ++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$51 = ++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$54 = ++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$51 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$50 = ++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined main::toD0181_screen#0 = (const byte*) SCREEN1#0 -Constant inlined doplasma::ii#24 = ++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#26 = ++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::ii#24 = ++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#26 = ++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined print_cls::$0 = (const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8 -Constant inlined doplasma::ii#28 = ++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#20 = ++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#22 = ++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$9 = ++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::ii#36 = ++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$5 = (const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$4 = (byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::ii#38 = ++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::ii#28 = ++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#20 = ++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#22 = ++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#36 = ++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#38 = ++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined main::toD0181_$0#0 = ((word))(const byte*) SCREEN1#0 -Constant inlined doplasma::ii#30 = ++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::ii#30 = ++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined print_cls::sc#0 = (const byte*) print_line_cursor#0 -Constant inlined doplasma::ii#32 = ++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#34 = ++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$79 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::ii#32 = ++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#34 = ++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined main::$2 = (const byte*) COLS#0+(word/signed word/dword/signed dword) $3e8 -Constant inlined doplasma::$78 = ++++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined main::toD0181_$4#0 = ((word))(const byte*) CHARSET#0 -Constant inlined doplasma::$75 = ++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined c2B#17 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$76 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$70 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$73 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$72 = ++++++++++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined doplasma::i2#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$28 = (const byte*) SCREEN1#0+++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$27 = ++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$24 = ++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$25 = (const byte*) SCREEN1#0+++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$28 = ++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$27 = (const byte*) SCREEN1#0+++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$29 = (const byte*) SCREEN1#0+++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$24 = ++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$23 = (const byte*) SCREEN1#0+++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$26 = ++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$25 = (const byte*) SCREEN1#0+++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$20 = ++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined c2A#17 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$22 = (const byte*) SCREEN1#0+++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$21 = ++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::ii#14 = ++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#16 = ++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#18 = ++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::$22 = ++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$21 = (const byte*) SCREEN1#0+++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::ii#14 = ++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#16 = ++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#18 = ++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined main::toD0181_$1#0 = ((word))(const byte*) SCREEN1#0&(word/signed word/dword/signed dword) $3fff -Constant inlined doplasma::ii#10 = ++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::ii#12 = ++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::ii#10 = ++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 +Constant inlined doplasma::ii#12 = ++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined makecharset::ii#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::$17 = (const byte*) SCREEN1#0+++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined makecharset::i#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$16 = (const byte*) SCREEN1#0+++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$16 = ++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined makecharset::charset#0 = (const byte*) CHARSET#0 -Constant inlined doplasma::$19 = (const byte*) SCREEN1#0+++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$18 = ++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$13 = (const byte*) SCREEN1#0+++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$19 = (const byte*) SCREEN1#0+++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$18 = ++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined doplasma::screen#0 = (const byte*) SCREEN1#0 -Constant inlined doplasma::$12 = ++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$15 = ++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$15 = (const byte*) SCREEN1#0+++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined main::toD0181_$5#0 = >((word))(const byte*) CHARSET#0 -Constant inlined doplasma::$10 = (const byte*) SCREEN1#0+++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$14 = ++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$11 = (const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$10 = (byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined main::toD0181_gfx#0 = (const byte*) CHARSET#0 -Constant inlined doplasma::i#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 +Constant inlined doplasma::i#0 = (byte/signed byte/word/signed word/dword/signed dword) 1 Constant inlined doplasma::i1#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$49 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$46 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$45 = ++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$48 = ++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$42 = ++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$43 = (const byte*) SCREEN1#0+++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$40 = (const byte*) SCREEN1#0+++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$49 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$46 = ++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$45 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$48 = ++++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$47 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$42 = ++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$41 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$44 = ++++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$43 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$40 = ++++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined main::toD0181_$6#0 = >((word))(const byte*) CHARSET#0/(byte/signed byte/word/signed word/dword/signed dword) 4 -Constant inlined doplasma::$39 = ++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$39 = (const byte*) SCREEN1#0+++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$38 = ++++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined main::toD0181_$2#0 = ((word))(const byte*) SCREEN1#0&(word/signed word/dword/signed dword) $3fff*(byte/signed byte/word/signed word/dword/signed dword) 4 +Constant inlined doplasma::$35 = (const byte*) SCREEN1#0+++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined c1B#16 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$34 = (const byte*) SCREEN1#0+++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$37 = (const byte*) SCREEN1#0+++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$36 = ++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$31 = (const byte*) SCREEN1#0+++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 -Constant inlined doplasma::$30 = ++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$34 = ++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$37 = (const byte*) SCREEN1#0+++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$36 = ++++++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$31 = (const byte*) SCREEN1#0+++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$30 = ++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Constant inlined makecharset::b#0 = (byte/signed byte/word/signed word/dword/signed dword) 0 -Constant inlined doplasma::$33 = ++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 0*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$33 = (const byte*) SCREEN1#0+++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 +Constant inlined doplasma::$32 = ++++++++++++++++++++(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 Successful SSA optimization Pass2ConstantInlining Simplifying constant plus zero doplasma::ybuf#0+0 -Simplifying constant multiply by zero 0*$28 -Simplifying constant integer increment ++0 -Simplifying constant integer increment ++0 -Simplifying constant integer increment ++0 +Simplifying constant plus zero doplasma::ybuf#0+0 +Simplifying constant integer increment ++1 Simplifying constant integer increment ++1 Simplifying constant integer increment ++1 Simplifying constant integer increment ++2 @@ -2188,8 +2242,6 @@ Simplifying constant integer increment ++$16 Simplifying constant integer increment ++$16 Simplifying constant integer increment ++$17 Successful SSA optimization Pass2ConstantSimplification -Simplifying constant plus zero SCREEN1#0+0 -Simplifying constant integer increment ++1 Simplifying constant integer increment ++2 Simplifying constant integer increment ++3 Simplifying constant integer increment ++4 @@ -2236,7 +2288,7 @@ Adding NOP phi() at start of print_cls CALL GRAPH Calls in [] to main:3 Calls in [main] to makecharset:13 doplasma:18 -Calls in [makecharset] to sid_rnd_init:113 print_cls:115 sid_rnd:121 print_char:139 +Calls in [makecharset] to sid_rnd_init:115 print_cls:117 sid_rnd:123 print_char:141 Created 20 initial phi equivalence classes Coalesced [19] c1A#28 ← c1A#3 @@ -2244,27 +2296,27 @@ Coalesced [20] c1B#28 ← c1B#3 Coalesced [21] c2A#28 ← c2A#3 Coalesced [22] c2B#28 ← c2B#3 Coalesced [23] main::col#3 ← main::col#1 -Coalesced [26] doplasma::c1a#3 ← doplasma::c1a#0 -Coalesced [27] doplasma::c1b#3 ← doplasma::c1b#0 -Coalesced [39] doplasma::c2a#3 ← doplasma::c2a#0 -Coalesced [40] doplasma::c2b#3 ← doplasma::c2b#0 -Coalesced [105] doplasma::i2#5 ← doplasma::i2#1 -Coalesced [106] doplasma::c2a#4 ← doplasma::c2a#1 -Coalesced [107] doplasma::c2b#4 ← doplasma::c2b#1 -Coalesced [108] doplasma::i1#3 ← doplasma::i1#1 -Coalesced [109] doplasma::c1a#4 ← doplasma::c1a#1 -Coalesced [110] doplasma::c1b#4 ← doplasma::c1b#1 -Coalesced [111] doplasma::i#3 ← doplasma::i#1 -Coalesced [127] makecharset::b#9 ← makecharset::b#1 -Coalesced [140] print_char_cursor#47 ← print_char_cursor#1 -Coalesced [145] makecharset::c#13 ← makecharset::c#1 -Coalesced [146] print_char_cursor#46 ← print_char_cursor#18 -Coalesced (already) [147] print_char_cursor#48 ← print_char_cursor#45 -Coalesced [148] makecharset::i#8 ← makecharset::i#1 -Coalesced [149] makecharset::ii#6 ← makecharset::ii#1 -Coalesced [150] makecharset::b#7 ← makecharset::b#3 -Coalesced (already) [151] makecharset::b#8 ← makecharset::b#2 -Coalesced [163] print_cls::sc#3 ← print_cls::sc#1 +Coalesced [28] doplasma::c1a#3 ← doplasma::c1a#0 +Coalesced [29] doplasma::c1b#3 ← doplasma::c1b#0 +Coalesced [42] doplasma::c2a#3 ← doplasma::c2a#0 +Coalesced [43] doplasma::c2b#3 ← doplasma::c2b#0 +Coalesced [107] doplasma::i2#5 ← doplasma::i2#1 +Coalesced [108] doplasma::c2a#4 ← doplasma::c2a#1 +Coalesced [109] doplasma::c2b#4 ← doplasma::c2b#1 +Coalesced [110] doplasma::i1#3 ← doplasma::i1#1 +Coalesced [111] doplasma::c1a#4 ← doplasma::c1a#1 +Coalesced [112] doplasma::c1b#4 ← doplasma::c1b#1 +Coalesced [113] doplasma::i#3 ← doplasma::i#1 +Coalesced [129] makecharset::b#9 ← makecharset::b#1 +Coalesced [142] print_char_cursor#47 ← print_char_cursor#1 +Coalesced [147] makecharset::c#13 ← makecharset::c#1 +Coalesced [148] print_char_cursor#46 ← print_char_cursor#18 +Coalesced (already) [149] print_char_cursor#48 ← print_char_cursor#45 +Coalesced [150] makecharset::i#8 ← makecharset::i#1 +Coalesced [151] makecharset::ii#6 ← makecharset::ii#1 +Coalesced [152] makecharset::b#7 ← makecharset::b#3 +Coalesced (already) [153] makecharset::b#8 ← makecharset::b#2 +Coalesced [165] print_cls::sc#3 ← print_cls::sc#1 Coalesced down to 18 phi equivalence classes Culled Empty Block (label) main::@12 Culled Empty Block (label) doplasma::@11 @@ -2341,240 +2393,240 @@ main::@4: scope:[main] from main::@3 doplasma: scope:[doplasma] from main::@4 [19] (byte) doplasma::c1a#0 ← (byte) c1A#1 [20] (byte) doplasma::c1b#0 ← (byte) c1B#1 + [21] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#0) + [22] *((const byte[$19]) doplasma::ybuf#0) ← (byte~) doplasma::$0 to:doplasma::@1 doplasma::@1: scope:[doplasma] from doplasma doplasma::@1 - [21] (byte) doplasma::i#2 ← phi( doplasma/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@1/(byte) doplasma::i#1 ) - [21] (byte) doplasma::c1b#2 ← phi( doplasma/(byte) doplasma::c1b#0 doplasma::@1/(byte) doplasma::c1b#1 ) - [21] (byte) doplasma::c1a#2 ← phi( doplasma/(byte) doplasma::c1a#0 doplasma::@1/(byte) doplasma::c1a#1 ) - [22] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#2) - [23] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$0 + [23] (byte) doplasma::i#2 ← phi( doplasma/(byte/signed byte/word/signed word/dword/signed dword) 1 doplasma::@1/(byte) doplasma::i#1 ) + [23] (byte) doplasma::c1b#2 ← phi( doplasma/(byte) doplasma::c1b#0 doplasma::@1/(byte) doplasma::c1b#1 ) + [23] (byte) doplasma::c1a#2 ← phi( doplasma/(byte) doplasma::c1a#0 doplasma::@1/(byte) doplasma::c1a#1 ) [24] (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 [25] (byte) doplasma::c1b#1 ← (byte) doplasma::c1b#2 + (byte/signed byte/word/signed word/dword/signed dword) 9 - [26] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 - [27] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 + [26] (byte~) doplasma::$1 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#1) + [27] (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((const byte[$19]) doplasma::ybuf#0+-(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) doplasma::i#2) + [28] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$3 + [29] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 + [30] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 to:doplasma::@2 doplasma::@2: scope:[doplasma] from doplasma::@1 - [28] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 - [29] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 - [30] (byte) doplasma::c2a#0 ← (byte) c2A#1 - [31] (byte) doplasma::c2b#0 ← (byte) c2B#1 + [31] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 + [32] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 + [33] (byte) doplasma::c2a#0 ← (byte) c2A#1 + [34] (byte) doplasma::c2b#0 ← (byte) c2B#1 to:doplasma::@3 doplasma::@3: scope:[doplasma] from doplasma::@2 doplasma::@3 - [32] (byte) doplasma::i1#2 ← phi( doplasma::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@3/(byte) doplasma::i1#1 ) - [32] (byte) doplasma::c2b#2 ← phi( doplasma::@2/(byte) doplasma::c2b#0 doplasma::@3/(byte) doplasma::c2b#1 ) - [32] (byte) doplasma::c2a#2 ← phi( doplasma::@2/(byte) doplasma::c2a#0 doplasma::@3/(byte) doplasma::c2a#1 ) - [33] (byte~) doplasma::$2 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) - [34] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$2 - [35] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 - [36] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 - [37] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 - [38] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 + [35] (byte) doplasma::i1#2 ← phi( doplasma::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@3/(byte) doplasma::i1#1 ) + [35] (byte) doplasma::c2b#2 ← phi( doplasma::@2/(byte) doplasma::c2b#0 doplasma::@3/(byte) doplasma::c2b#1 ) + [35] (byte) doplasma::c2a#2 ← phi( doplasma::@2/(byte) doplasma::c2a#0 doplasma::@3/(byte) doplasma::c2a#1 ) + [36] (byte~) doplasma::$5 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) + [37] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$5 + [38] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 + [39] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 + [40] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 + [41] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 to:doplasma::@4 doplasma::@4: scope:[doplasma] from doplasma::@3 - [39] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 - [40] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 + [42] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 + [43] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 to:doplasma::@5 doplasma::@5: scope:[doplasma] from doplasma::@4 doplasma::@7 - [41] (byte) doplasma::i2#2 ← phi( doplasma::@4/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@7/(byte) doplasma::i2#1 ) - [42] (byte) doplasma::xval#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + [44] (byte) doplasma::i2#2 ← phi( doplasma::@4/(byte/signed byte/word/signed word/dword/signed dword) 0 doplasma::@7/(byte) doplasma::i2#1 ) + [45] (byte) doplasma::val#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((const byte[$19]) doplasma::ybuf#0) + [46] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte) doplasma::val#0 to:doplasma::@6 doplasma::@6: scope:[doplasma] from doplasma::@5 - [43] (byte~) doplasma::$6 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0) - [44] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte~) doplasma::$6 + [47] (byte) doplasma::val#1 ← (byte) doplasma::val#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) + [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#1 to:doplasma::@6_1 doplasma::@6_1: scope:[doplasma] from doplasma::@6 - [45] (byte~) doplasma::$11 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) - [46] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$11 + [49] (byte) doplasma::val#4 ← (byte) doplasma::val#1 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) + [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#4 to:doplasma::@6_2 doplasma::@6_2: scope:[doplasma] from doplasma::@6_1 - [47] (byte~) doplasma::$14 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) - [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$14 + [51] (byte) doplasma::val#6 ← (byte) doplasma::val#4 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) + [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#6 to:doplasma::@6_3 doplasma::@6_3: scope:[doplasma] from doplasma::@6_2 - [49] (byte~) doplasma::$17 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) - [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$17 + [53] (byte) doplasma::val#8 ← (byte) doplasma::val#6 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) + [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#8 to:doplasma::@6_4 doplasma::@6_4: scope:[doplasma] from doplasma::@6_3 - [51] (byte~) doplasma::$20 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) - [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$20 + [55] (byte) doplasma::val#10 ← (byte) doplasma::val#8 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) + [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#10 to:doplasma::@6_5 doplasma::@6_5: scope:[doplasma] from doplasma::@6_4 - [53] (byte~) doplasma::$23 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) - [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$23 + [57] (byte) doplasma::val#12 ← (byte) doplasma::val#10 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) + [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#12 to:doplasma::@6_6 doplasma::@6_6: scope:[doplasma] from doplasma::@6_5 - [55] (byte~) doplasma::$26 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) - [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$26 + [59] (byte) doplasma::val#14 ← (byte) doplasma::val#12 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) + [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#14 to:doplasma::@6_7 doplasma::@6_7: scope:[doplasma] from doplasma::@6_6 - [57] (byte~) doplasma::$29 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) - [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$29 + [61] (byte) doplasma::val#16 ← (byte) doplasma::val#14 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) + [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#16 to:doplasma::@6_8 doplasma::@6_8: scope:[doplasma] from doplasma::@6_7 - [59] (byte~) doplasma::$32 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) - [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$32 + [63] (byte) doplasma::val#18 ← (byte) doplasma::val#16 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) + [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#18 to:doplasma::@6_9 doplasma::@6_9: scope:[doplasma] from doplasma::@6_8 - [61] (byte~) doplasma::$35 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) - [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$35 + [65] (byte) doplasma::val#20 ← (byte) doplasma::val#18 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) + [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#20 to:doplasma::@6_10 doplasma::@6_10: scope:[doplasma] from doplasma::@6_9 - [63] (byte~) doplasma::$38 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) - [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$38 + [67] (byte) doplasma::val#22 ← (byte) doplasma::val#20 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) + [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#22 to:doplasma::@6_11 doplasma::@6_11: scope:[doplasma] from doplasma::@6_10 - [65] (byte~) doplasma::$41 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) - [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$41 + [69] (byte) doplasma::val#24 ← (byte) doplasma::val#22 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) + [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#24 to:doplasma::@6_12 doplasma::@6_12: scope:[doplasma] from doplasma::@6_11 - [67] (byte~) doplasma::$44 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) - [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$44 + [71] (byte) doplasma::val#26 ← (byte) doplasma::val#24 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) + [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#26 to:doplasma::@6_13 doplasma::@6_13: scope:[doplasma] from doplasma::@6_12 - [69] (byte~) doplasma::$47 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) - [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$47 + [73] (byte) doplasma::val#28 ← (byte) doplasma::val#26 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) + [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#28 to:doplasma::@6_14 doplasma::@6_14: scope:[doplasma] from doplasma::@6_13 - [71] (byte~) doplasma::$50 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) - [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$50 + [75] (byte) doplasma::val#30 ← (byte) doplasma::val#28 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) + [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#30 to:doplasma::@6_15 doplasma::@6_15: scope:[doplasma] from doplasma::@6_14 - [73] (byte~) doplasma::$53 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) - [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$53 + [77] (byte) doplasma::val#32 ← (byte) doplasma::val#30 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) + [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#32 to:doplasma::@6_16 doplasma::@6_16: scope:[doplasma] from doplasma::@6_15 - [75] (byte~) doplasma::$56 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) - [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$56 + [79] (byte) doplasma::val#34 ← (byte) doplasma::val#32 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) + [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#34 to:doplasma::@6_17 doplasma::@6_17: scope:[doplasma] from doplasma::@6_16 - [77] (byte~) doplasma::$59 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) - [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$59 + [81] (byte) doplasma::val#36 ← (byte) doplasma::val#34 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) + [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#36 to:doplasma::@6_18 doplasma::@6_18: scope:[doplasma] from doplasma::@6_17 - [79] (byte~) doplasma::$62 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) - [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$62 + [83] (byte) doplasma::val#38 ← (byte) doplasma::val#36 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) + [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#38 to:doplasma::@6_19 doplasma::@6_19: scope:[doplasma] from doplasma::@6_18 - [81] (byte~) doplasma::$65 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) - [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$65 + [85] (byte) doplasma::val#40 ← (byte) doplasma::val#38 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) + [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#40 to:doplasma::@6_20 doplasma::@6_20: scope:[doplasma] from doplasma::@6_19 - [83] (byte~) doplasma::$68 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) - [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$68 + [87] (byte) doplasma::val#42 ← (byte) doplasma::val#40 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) + [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#42 to:doplasma::@6_21 doplasma::@6_21: scope:[doplasma] from doplasma::@6_20 - [85] (byte~) doplasma::$71 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) - [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$71 + [89] (byte) doplasma::val#44 ← (byte) doplasma::val#42 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) + [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#44 to:doplasma::@6_22 doplasma::@6_22: scope:[doplasma] from doplasma::@6_21 - [87] (byte~) doplasma::$74 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) - [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$74 + [91] (byte) doplasma::val#46 ← (byte) doplasma::val#44 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) + [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#46 to:doplasma::@6_23 doplasma::@6_23: scope:[doplasma] from doplasma::@6_22 - [89] (byte~) doplasma::$77 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) - [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$77 - to:doplasma::@6_24 -doplasma::@6_24: scope:[doplasma] from doplasma::@6_23 - [91] (byte~) doplasma::$80 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) - [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$80 + [93] (byte) doplasma::val#48 ← (byte) doplasma::val#46 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) + [94] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#48 to:doplasma::@7 -doplasma::@7: scope:[doplasma] from doplasma::@6_24 - [93] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 - [94] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 +doplasma::@7: scope:[doplasma] from doplasma::@6_23 + [95] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 + [96] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 to:doplasma::@return doplasma::@return: scope:[doplasma] from doplasma::@7 - [95] return + [97] return to:@return makecharset: scope:[makecharset] from main::@2 - [96] phi() - [97] call sid_rnd_init + [98] phi() + [99] call sid_rnd_init to:makecharset::@10 makecharset::@10: scope:[makecharset] from makecharset - [98] phi() - [99] call print_cls + [100] phi() + [101] call print_cls to:makecharset::@1 makecharset::@1: scope:[makecharset] from makecharset::@10 makecharset::@9 - [100] (byte*) print_char_cursor#45 ← phi( makecharset::@10/(const byte*) print_line_cursor#0 makecharset::@9/(byte*) print_char_cursor#18 ) - [100] (word) makecharset::c#2 ← phi( makecharset::@10/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@9/(word) makecharset::c#1 ) - [101] (byte~) makecharset::$2 ← < (word) makecharset::c#2 - [102] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) + [102] (byte*) print_char_cursor#45 ← phi( makecharset::@10/(const byte*) print_line_cursor#0 makecharset::@9/(byte*) print_char_cursor#18 ) + [102] (word) makecharset::c#2 ← phi( makecharset::@10/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@9/(word) makecharset::c#1 ) + [103] (byte~) makecharset::$2 ← < (word) makecharset::c#2 + [104] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) to:makecharset::@2 makecharset::@2: scope:[makecharset] from makecharset::@1 makecharset::@6 - [103] (byte) makecharset::i#7 ← phi( makecharset::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@6/(byte) makecharset::i#1 ) + [105] (byte) makecharset::i#7 ← phi( makecharset::@1/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@6/(byte) makecharset::i#1 ) to:makecharset::@3 makecharset::@3: scope:[makecharset] from makecharset::@2 makecharset::@4 - [104] (byte) makecharset::b#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::b#3 ) - [104] (byte) makecharset::ii#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::ii#1 ) - [105] call sid_rnd - [106] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 + [106] (byte) makecharset::b#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::b#3 ) + [106] (byte) makecharset::ii#2 ← phi( makecharset::@2/(byte/signed byte/word/signed word/dword/signed dword) 0 makecharset::@4/(byte) makecharset::ii#1 ) + [107] call sid_rnd + [108] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 to:makecharset::@11 makecharset::@11: scope:[makecharset] from makecharset::@3 - [107] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 - [108] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff - [109] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 + [109] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 + [110] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff + [111] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 to:makecharset::@5 makecharset::@5: scope:[makecharset] from makecharset::@11 - [110] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) + [112] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) to:makecharset::@4 makecharset::@4: scope:[makecharset] from makecharset::@11 makecharset::@5 - [111] (byte) makecharset::b#3 ← phi( makecharset::@11/(byte) makecharset::b#2 makecharset::@5/(byte) makecharset::b#1 ) - [112] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 - [113] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 + [113] (byte) makecharset::b#3 ← phi( makecharset::@11/(byte) makecharset::b#2 makecharset::@5/(byte) makecharset::b#1 ) + [114] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 + [115] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 to:makecharset::@6 makecharset::@6: scope:[makecharset] from makecharset::@4 - [114] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 - [115] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 - [116] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 - [117] (byte) makecharset::i#1 ← ++ (byte) makecharset::i#7 - [118] if((byte) makecharset::i#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@2 + [116] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 + [117] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 + [118] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 + [119] (byte) makecharset::i#1 ← ++ (byte) makecharset::i#7 + [120] if((byte) makecharset::i#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@2 to:makecharset::@7 makecharset::@7: scope:[makecharset] from makecharset::@6 - [119] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 - [120] if((byte/word~) makecharset::$11!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto makecharset::@9 + [121] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 + [122] if((byte/word~) makecharset::$11!=(byte/signed byte/word/signed word/dword/signed dword) 0) goto makecharset::@9 to:makecharset::@8 makecharset::@8: scope:[makecharset] from makecharset::@7 - [121] phi() - [122] call print_char + [123] phi() + [124] call print_char to:makecharset::@9 makecharset::@9: scope:[makecharset] from makecharset::@7 makecharset::@8 - [123] (byte*) print_char_cursor#18 ← phi( makecharset::@8/(byte*) print_char_cursor#1 makecharset::@7/(byte*) print_char_cursor#45 ) - [124] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 - [125] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 + [125] (byte*) print_char_cursor#18 ← phi( makecharset::@8/(byte*) print_char_cursor#1 makecharset::@7/(byte*) print_char_cursor#45 ) + [126] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 + [127] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 to:makecharset::@return makecharset::@return: scope:[makecharset] from makecharset::@9 - [126] return + [128] return to:@return print_char: scope:[print_char] from makecharset::@8 - [127] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 - [128] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 + [129] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 + [130] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 to:print_char::@return print_char::@return: scope:[print_char] from print_char - [129] return - to:@return -sid_rnd: scope:[sid_rnd] from makecharset::@3 - [130] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) - to:sid_rnd::@return -sid_rnd::@return: scope:[sid_rnd] from sid_rnd [131] return to:@return +sid_rnd: scope:[sid_rnd] from makecharset::@3 + [132] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) + to:sid_rnd::@return +sid_rnd::@return: scope:[sid_rnd] from sid_rnd + [133] return + to:@return print_cls: scope:[print_cls] from makecharset::@10 - [132] phi() + [134] phi() to:print_cls::@1 print_cls::@1: scope:[print_cls] from print_cls print_cls::@1 - [133] (byte*) print_cls::sc#2 ← phi( print_cls/(const byte*) print_line_cursor#0 print_cls::@1/(byte*) print_cls::sc#1 ) - [134] *((byte*) print_cls::sc#2) ← (byte) ' ' - [135] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 - [136] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 + [135] (byte*) print_cls::sc#2 ← phi( print_cls/(const byte*) print_line_cursor#0 print_cls::@1/(byte*) print_cls::sc#1 ) + [136] *((byte*) print_cls::sc#2) ← (byte) ' ' + [137] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 + [138] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 to:print_cls::@return print_cls::@return: scope:[print_cls] from print_cls::@1 - [137] return + [139] return to:@return sid_rnd_init: scope:[sid_rnd_init] from makecharset - [138] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff - [139] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 + [140] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff + [141] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 to:sid_rnd_init::@return sid_rnd_init::@return: scope:[sid_rnd_init] from sid_rnd_init - [140] return + [142] return to:@return @@ -2675,53 +2727,30 @@ VARIABLE REGISTER WEIGHTS (byte) WHITE (byte) YELLOW (byte) c1A -(byte) c1A#1 1.3636363636363638 -(byte) c1A#3 0.18840579710144925 +(byte) c1A#1 1.0714285714285714 +(byte) c1A#3 0.1911764705882353 (byte) c1B -(byte) c1B#1 1.25 -(byte) c1B#3 0.1911764705882353 +(byte) c1B#1 0.9999999999999999 +(byte) c1B#3 0.19402985074626866 (byte) c2A -(byte) c2A#1 0.6818181818181819 -(byte) c2A#3 0.22413793103448276 +(byte) c2A#1 0.6 +(byte) c2A#3 0.22807017543859648 (byte) c2B -(byte) c2B#1 0.6521739130434783 -(byte) c2B#3 0.22807017543859648 +(byte) c2B#1 0.5769230769230769 +(byte) c2B#3 0.23214285714285715 (void()) doplasma((byte*) doplasma::screen) -(byte~) doplasma::$0 202.0 -(byte~) doplasma::$11 202.0 -(byte~) doplasma::$14 202.0 -(byte~) doplasma::$17 202.0 -(byte~) doplasma::$2 202.0 -(byte~) doplasma::$20 202.0 -(byte~) doplasma::$23 202.0 -(byte~) doplasma::$26 202.0 -(byte~) doplasma::$29 202.0 -(byte~) doplasma::$32 202.0 -(byte~) doplasma::$35 202.0 -(byte~) doplasma::$38 202.0 -(byte~) doplasma::$41 202.0 -(byte~) doplasma::$44 202.0 -(byte~) doplasma::$47 202.0 -(byte~) doplasma::$50 202.0 -(byte~) doplasma::$53 202.0 -(byte~) doplasma::$56 202.0 -(byte~) doplasma::$59 202.0 -(byte~) doplasma::$6 202.0 -(byte~) doplasma::$62 202.0 -(byte~) doplasma::$65 202.0 -(byte~) doplasma::$68 202.0 -(byte~) doplasma::$71 202.0 -(byte~) doplasma::$74 202.0 -(byte~) doplasma::$77 202.0 -(byte~) doplasma::$80 202.0 +(byte~) doplasma::$0 4.0 +(byte~) doplasma::$1 202.0 +(byte~) doplasma::$3 202.0 +(byte~) doplasma::$5 202.0 (byte) doplasma::c1a -(byte) doplasma::c1a#0 2.0 -(byte) doplasma::c1a#1 50.5 -(byte) doplasma::c1a#2 101.66666666666666 +(byte) doplasma::c1a#0 1.5 +(byte) doplasma::c1a#1 43.285714285714285 +(byte) doplasma::c1a#2 204.0 (byte) doplasma::c1b -(byte) doplasma::c1b#0 4.0 -(byte) doplasma::c1b#1 67.33333333333333 -(byte) doplasma::c1b#2 76.25 +(byte) doplasma::c1b#0 2.0 +(byte) doplasma::c1b#1 50.5 +(byte) doplasma::c1b#2 102.0 (byte) doplasma::c2a (byte) doplasma::c2a#0 2.0 (byte) doplasma::c2a#1 50.5 @@ -2732,18 +2761,42 @@ VARIABLE REGISTER WEIGHTS (byte) doplasma::c2b#2 76.25 (byte) doplasma::i (byte) doplasma::i#1 151.5 -(byte) doplasma::i#2 60.599999999999994 +(byte) doplasma::i#2 67.33333333333333 (byte) doplasma::i1 (byte) doplasma::i1#1 151.5 (byte) doplasma::i1#2 60.599999999999994 (byte) doplasma::i2 (byte) doplasma::i2#1 151.5 -(byte) doplasma::i2#2 54.3846153846154 +(byte) doplasma::i2#2 55.45098039215691 (byte) doplasma::ii (byte*) doplasma::screen +(byte) doplasma::val +(byte) doplasma::val#0 151.5 +(byte) doplasma::val#1 151.5 +(byte) doplasma::val#10 151.5 +(byte) doplasma::val#12 151.5 +(byte) doplasma::val#14 151.5 +(byte) doplasma::val#16 151.5 +(byte) doplasma::val#18 151.5 +(byte) doplasma::val#20 151.5 +(byte) doplasma::val#22 151.5 +(byte) doplasma::val#24 151.5 +(byte) doplasma::val#26 151.5 +(byte) doplasma::val#28 151.5 +(byte) doplasma::val#30 151.5 +(byte) doplasma::val#32 151.5 +(byte) doplasma::val#34 151.5 +(byte) doplasma::val#36 151.5 +(byte) doplasma::val#38 151.5 +(byte) doplasma::val#4 151.5 +(byte) doplasma::val#40 151.5 +(byte) doplasma::val#42 151.5 +(byte) doplasma::val#44 151.5 +(byte) doplasma::val#46 151.5 +(byte) doplasma::val#48 202.0 +(byte) doplasma::val#6 151.5 +(byte) doplasma::val#8 151.5 (byte[$28]) doplasma::xbuf -(byte) doplasma::xval -(byte) doplasma::xval#0 53.59183673469388 (byte[$19]) doplasma::ybuf (void()) main() (byte*) main::col @@ -2824,33 +2877,34 @@ Initial phi equivalence classes [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] [ print_cls::sc#2 print_cls::sc#1 ] Added variable doplasma::$0 to zero page equivalence class [ doplasma::$0 ] -Added variable doplasma::$2 to zero page equivalence class [ doplasma::$2 ] -Added variable doplasma::xval#0 to zero page equivalence class [ doplasma::xval#0 ] -Added variable doplasma::$6 to zero page equivalence class [ doplasma::$6 ] -Added variable doplasma::$11 to zero page equivalence class [ doplasma::$11 ] -Added variable doplasma::$14 to zero page equivalence class [ doplasma::$14 ] -Added variable doplasma::$17 to zero page equivalence class [ doplasma::$17 ] -Added variable doplasma::$20 to zero page equivalence class [ doplasma::$20 ] -Added variable doplasma::$23 to zero page equivalence class [ doplasma::$23 ] -Added variable doplasma::$26 to zero page equivalence class [ doplasma::$26 ] -Added variable doplasma::$29 to zero page equivalence class [ doplasma::$29 ] -Added variable doplasma::$32 to zero page equivalence class [ doplasma::$32 ] -Added variable doplasma::$35 to zero page equivalence class [ doplasma::$35 ] -Added variable doplasma::$38 to zero page equivalence class [ doplasma::$38 ] -Added variable doplasma::$41 to zero page equivalence class [ doplasma::$41 ] -Added variable doplasma::$44 to zero page equivalence class [ doplasma::$44 ] -Added variable doplasma::$47 to zero page equivalence class [ doplasma::$47 ] -Added variable doplasma::$50 to zero page equivalence class [ doplasma::$50 ] -Added variable doplasma::$53 to zero page equivalence class [ doplasma::$53 ] -Added variable doplasma::$56 to zero page equivalence class [ doplasma::$56 ] -Added variable doplasma::$59 to zero page equivalence class [ doplasma::$59 ] -Added variable doplasma::$62 to zero page equivalence class [ doplasma::$62 ] -Added variable doplasma::$65 to zero page equivalence class [ doplasma::$65 ] -Added variable doplasma::$68 to zero page equivalence class [ doplasma::$68 ] -Added variable doplasma::$71 to zero page equivalence class [ doplasma::$71 ] -Added variable doplasma::$74 to zero page equivalence class [ doplasma::$74 ] -Added variable doplasma::$77 to zero page equivalence class [ doplasma::$77 ] -Added variable doplasma::$80 to zero page equivalence class [ doplasma::$80 ] +Added variable doplasma::$1 to zero page equivalence class [ doplasma::$1 ] +Added variable doplasma::$3 to zero page equivalence class [ doplasma::$3 ] +Added variable doplasma::$5 to zero page equivalence class [ doplasma::$5 ] +Added variable doplasma::val#0 to zero page equivalence class [ doplasma::val#0 ] +Added variable doplasma::val#1 to zero page equivalence class [ doplasma::val#1 ] +Added variable doplasma::val#4 to zero page equivalence class [ doplasma::val#4 ] +Added variable doplasma::val#6 to zero page equivalence class [ doplasma::val#6 ] +Added variable doplasma::val#8 to zero page equivalence class [ doplasma::val#8 ] +Added variable doplasma::val#10 to zero page equivalence class [ doplasma::val#10 ] +Added variable doplasma::val#12 to zero page equivalence class [ doplasma::val#12 ] +Added variable doplasma::val#14 to zero page equivalence class [ doplasma::val#14 ] +Added variable doplasma::val#16 to zero page equivalence class [ doplasma::val#16 ] +Added variable doplasma::val#18 to zero page equivalence class [ doplasma::val#18 ] +Added variable doplasma::val#20 to zero page equivalence class [ doplasma::val#20 ] +Added variable doplasma::val#22 to zero page equivalence class [ doplasma::val#22 ] +Added variable doplasma::val#24 to zero page equivalence class [ doplasma::val#24 ] +Added variable doplasma::val#26 to zero page equivalence class [ doplasma::val#26 ] +Added variable doplasma::val#28 to zero page equivalence class [ doplasma::val#28 ] +Added variable doplasma::val#30 to zero page equivalence class [ doplasma::val#30 ] +Added variable doplasma::val#32 to zero page equivalence class [ doplasma::val#32 ] +Added variable doplasma::val#34 to zero page equivalence class [ doplasma::val#34 ] +Added variable doplasma::val#36 to zero page equivalence class [ doplasma::val#36 ] +Added variable doplasma::val#38 to zero page equivalence class [ doplasma::val#38 ] +Added variable doplasma::val#40 to zero page equivalence class [ doplasma::val#40 ] +Added variable doplasma::val#42 to zero page equivalence class [ doplasma::val#42 ] +Added variable doplasma::val#44 to zero page equivalence class [ doplasma::val#44 ] +Added variable doplasma::val#46 to zero page equivalence class [ doplasma::val#46 ] +Added variable doplasma::val#48 to zero page equivalence class [ doplasma::val#48 ] Added variable makecharset::$2 to zero page equivalence class [ makecharset::$2 ] Added variable makecharset::s#0 to zero page equivalence class [ makecharset::s#0 ] Added variable sid_rnd::return#2 to zero page equivalence class [ sid_rnd::return#2 ] @@ -2880,33 +2934,34 @@ Complete equivalence classes [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] [ print_cls::sc#2 print_cls::sc#1 ] [ doplasma::$0 ] -[ doplasma::$2 ] -[ doplasma::xval#0 ] -[ doplasma::$6 ] -[ doplasma::$11 ] -[ doplasma::$14 ] -[ doplasma::$17 ] -[ doplasma::$20 ] -[ doplasma::$23 ] -[ doplasma::$26 ] -[ doplasma::$29 ] -[ doplasma::$32 ] -[ doplasma::$35 ] -[ doplasma::$38 ] -[ doplasma::$41 ] -[ doplasma::$44 ] -[ doplasma::$47 ] -[ doplasma::$50 ] -[ doplasma::$53 ] -[ doplasma::$56 ] -[ doplasma::$59 ] -[ doplasma::$62 ] -[ doplasma::$65 ] -[ doplasma::$68 ] -[ doplasma::$71 ] -[ doplasma::$74 ] -[ doplasma::$77 ] -[ doplasma::$80 ] +[ doplasma::$1 ] +[ doplasma::$3 ] +[ doplasma::$5 ] +[ doplasma::val#0 ] +[ doplasma::val#1 ] +[ doplasma::val#4 ] +[ doplasma::val#6 ] +[ doplasma::val#8 ] +[ doplasma::val#10 ] +[ doplasma::val#12 ] +[ doplasma::val#14 ] +[ doplasma::val#16 ] +[ doplasma::val#18 ] +[ doplasma::val#20 ] +[ doplasma::val#22 ] +[ doplasma::val#24 ] +[ doplasma::val#26 ] +[ doplasma::val#28 ] +[ doplasma::val#30 ] +[ doplasma::val#32 ] +[ doplasma::val#34 ] +[ doplasma::val#36 ] +[ doplasma::val#38 ] +[ doplasma::val#40 ] +[ doplasma::val#42 ] +[ doplasma::val#44 ] +[ doplasma::val#46 ] +[ doplasma::val#48 ] [ makecharset::$2 ] [ makecharset::s#0 ] [ sid_rnd::return#2 ] @@ -2935,42 +2990,43 @@ Allocated zp ZP_BYTE:20 [ makecharset::ii#2 makecharset::ii#1 ] Allocated zp ZP_BYTE:21 [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] Allocated zp ZP_WORD:22 [ print_cls::sc#2 print_cls::sc#1 ] Allocated zp ZP_BYTE:24 [ doplasma::$0 ] -Allocated zp ZP_BYTE:25 [ doplasma::$2 ] -Allocated zp ZP_BYTE:26 [ doplasma::xval#0 ] -Allocated zp ZP_BYTE:27 [ doplasma::$6 ] -Allocated zp ZP_BYTE:28 [ doplasma::$11 ] -Allocated zp ZP_BYTE:29 [ doplasma::$14 ] -Allocated zp ZP_BYTE:30 [ doplasma::$17 ] -Allocated zp ZP_BYTE:31 [ doplasma::$20 ] -Allocated zp ZP_BYTE:32 [ doplasma::$23 ] -Allocated zp ZP_BYTE:33 [ doplasma::$26 ] -Allocated zp ZP_BYTE:34 [ doplasma::$29 ] -Allocated zp ZP_BYTE:35 [ doplasma::$32 ] -Allocated zp ZP_BYTE:36 [ doplasma::$35 ] -Allocated zp ZP_BYTE:37 [ doplasma::$38 ] -Allocated zp ZP_BYTE:38 [ doplasma::$41 ] -Allocated zp ZP_BYTE:39 [ doplasma::$44 ] -Allocated zp ZP_BYTE:40 [ doplasma::$47 ] -Allocated zp ZP_BYTE:41 [ doplasma::$50 ] -Allocated zp ZP_BYTE:42 [ doplasma::$53 ] -Allocated zp ZP_BYTE:43 [ doplasma::$56 ] -Allocated zp ZP_BYTE:44 [ doplasma::$59 ] -Allocated zp ZP_BYTE:45 [ doplasma::$62 ] -Allocated zp ZP_BYTE:46 [ doplasma::$65 ] -Allocated zp ZP_BYTE:47 [ doplasma::$68 ] -Allocated zp ZP_BYTE:48 [ doplasma::$71 ] -Allocated zp ZP_BYTE:49 [ doplasma::$74 ] -Allocated zp ZP_BYTE:50 [ doplasma::$77 ] -Allocated zp ZP_BYTE:51 [ doplasma::$80 ] -Allocated zp ZP_BYTE:52 [ makecharset::$2 ] -Allocated zp ZP_BYTE:53 [ makecharset::s#0 ] -Allocated zp ZP_BYTE:54 [ sid_rnd::return#2 ] -Allocated zp ZP_BYTE:55 [ makecharset::$3 ] -Allocated zp ZP_BYTE:56 [ makecharset::$4 ] -Allocated zp ZP_WORD:57 [ makecharset::$8 ] -Allocated zp ZP_WORD:59 [ makecharset::$9 ] -Allocated zp ZP_BYTE:61 [ makecharset::$11 ] -Allocated zp ZP_BYTE:62 [ sid_rnd::return#0 ] +Allocated zp ZP_BYTE:25 [ doplasma::$1 ] +Allocated zp ZP_BYTE:26 [ doplasma::$3 ] +Allocated zp ZP_BYTE:27 [ doplasma::$5 ] +Allocated zp ZP_BYTE:28 [ doplasma::val#0 ] +Allocated zp ZP_BYTE:29 [ doplasma::val#1 ] +Allocated zp ZP_BYTE:30 [ doplasma::val#4 ] +Allocated zp ZP_BYTE:31 [ doplasma::val#6 ] +Allocated zp ZP_BYTE:32 [ doplasma::val#8 ] +Allocated zp ZP_BYTE:33 [ doplasma::val#10 ] +Allocated zp ZP_BYTE:34 [ doplasma::val#12 ] +Allocated zp ZP_BYTE:35 [ doplasma::val#14 ] +Allocated zp ZP_BYTE:36 [ doplasma::val#16 ] +Allocated zp ZP_BYTE:37 [ doplasma::val#18 ] +Allocated zp ZP_BYTE:38 [ doplasma::val#20 ] +Allocated zp ZP_BYTE:39 [ doplasma::val#22 ] +Allocated zp ZP_BYTE:40 [ doplasma::val#24 ] +Allocated zp ZP_BYTE:41 [ doplasma::val#26 ] +Allocated zp ZP_BYTE:42 [ doplasma::val#28 ] +Allocated zp ZP_BYTE:43 [ doplasma::val#30 ] +Allocated zp ZP_BYTE:44 [ doplasma::val#32 ] +Allocated zp ZP_BYTE:45 [ doplasma::val#34 ] +Allocated zp ZP_BYTE:46 [ doplasma::val#36 ] +Allocated zp ZP_BYTE:47 [ doplasma::val#38 ] +Allocated zp ZP_BYTE:48 [ doplasma::val#40 ] +Allocated zp ZP_BYTE:49 [ doplasma::val#42 ] +Allocated zp ZP_BYTE:50 [ doplasma::val#44 ] +Allocated zp ZP_BYTE:51 [ doplasma::val#46 ] +Allocated zp ZP_BYTE:52 [ doplasma::val#48 ] +Allocated zp ZP_BYTE:53 [ makecharset::$2 ] +Allocated zp ZP_BYTE:54 [ makecharset::s#0 ] +Allocated zp ZP_BYTE:55 [ sid_rnd::return#2 ] +Allocated zp ZP_BYTE:56 [ makecharset::$3 ] +Allocated zp ZP_BYTE:57 [ makecharset::$4 ] +Allocated zp ZP_WORD:58 [ makecharset::$8 ] +Allocated zp ZP_WORD:60 [ makecharset::$9 ] +Allocated zp ZP_BYTE:62 [ makecharset::$11 ] +Allocated zp ZP_BYTE:63 [ sid_rnd::return#0 ] INITIAL ASM //SEG0 File Comments @@ -3073,7 +3129,7 @@ main: { //SEG24 main::@2 b2: //SEG25 [13] call makecharset - //SEG26 [96] phi from main::@2 to makecharset [phi:main::@2->makecharset] + //SEG26 [98] phi from main::@2 to makecharset [phi:main::@2->makecharset] makecharset_from_b2: jsr makecharset //SEG27 [14] phi from main::@2 to main::toD0181 [phi:main::@2->main::toD0181] @@ -3123,73 +3179,74 @@ main: { // Render plasma to the passed screen doplasma: { .label _0 = $18 - .label _2 = $19 - .label _6 = $1b + .label _1 = $19 + .label _3 = $1a + .label _5 = $1b .label c1a = 8 .label c1b = 9 .label i = $a .label c2a = $b .label c2b = $c .label i1 = $d - .label xval = $1a + .label val = $1c + .label val_1 = $1d .label i2 = $e - .label _11 = $1c - .label _14 = $1d - .label _17 = $1e - .label _20 = $1f - .label _23 = $20 - .label _26 = $21 - .label _29 = $22 - .label _32 = $23 - .label _35 = $24 - .label _38 = $25 - .label _41 = $26 - .label _44 = $27 - .label _47 = $28 - .label _50 = $29 - .label _53 = $2a - .label _56 = $2b - .label _59 = $2c - .label _62 = $2d - .label _65 = $2e - .label _68 = $2f - .label _71 = $30 - .label _74 = $31 - .label _77 = $32 - .label _80 = $33 + .label val_4 = $1e + .label val_6 = $1f + .label val_8 = $20 + .label val_10 = $21 + .label val_12 = $22 + .label val_14 = $23 + .label val_16 = $24 + .label val_18 = $25 + .label val_20 = $26 + .label val_22 = $27 + .label val_24 = $28 + .label val_26 = $29 + .label val_28 = $2a + .label val_30 = $2b + .label val_32 = $2c + .label val_34 = $2d + .label val_36 = $2e + .label val_38 = $2f + .label val_40 = $30 + .label val_42 = $31 + .label val_44 = $32 + .label val_46 = $33 + .label val_48 = $34 //SEG46 [19] (byte) doplasma::c1a#0 ← (byte) c1A#1 -- vbuz1=vbuz2 lda c1A sta c1a //SEG47 [20] (byte) doplasma::c1b#0 ← (byte) c1B#1 -- vbuz1=vbuz2 lda c1B sta c1b - //SEG48 [21] phi from doplasma to doplasma::@1 [phi:doplasma->doplasma::@1] - b1_from_doplasma: - //SEG49 [21] phi (byte) doplasma::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma->doplasma::@1#0] -- vbuz1=vbuc1 - lda #0 - sta i - //SEG50 [21] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#0 [phi:doplasma->doplasma::@1#1] -- register_copy - //SEG51 [21] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#0 [phi:doplasma->doplasma::@1#2] -- register_copy - jmp b1 - //SEG52 [21] phi from doplasma::@1 to doplasma::@1 [phi:doplasma::@1->doplasma::@1] - b1_from_b1: - //SEG53 [21] phi (byte) doplasma::i#2 = (byte) doplasma::i#1 [phi:doplasma::@1->doplasma::@1#0] -- register_copy - //SEG54 [21] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#1 [phi:doplasma::@1->doplasma::@1#1] -- register_copy - //SEG55 [21] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#1 [phi:doplasma::@1->doplasma::@1#2] -- register_copy - jmp b1 - //SEG56 doplasma::@1 - b1: - //SEG57 [22] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#2) -- vbuz1=pbuc1_derefidx_vbuz2_plus_pbuc1_derefidx_vbuz3 + //SEG48 [21] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#0) -- vbuz1=pbuc1_derefidx_vbuz2_plus_pbuc1_derefidx_vbuz3 ldy c1a lda SINTABLE,y ldy c1b clc adc SINTABLE,y sta _0 - //SEG58 [23] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$0 -- pbuc1_derefidx_vbuz1=vbuz2 + //SEG49 [22] *((const byte[$19]) doplasma::ybuf#0) ← (byte~) doplasma::$0 -- _deref_pbuc1=vbuz1 lda _0 - ldy i - sta ybuf,y + sta ybuf + //SEG50 [23] phi from doplasma to doplasma::@1 [phi:doplasma->doplasma::@1] + b1_from_doplasma: + //SEG51 [23] phi (byte) doplasma::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 1 [phi:doplasma->doplasma::@1#0] -- vbuz1=vbuc1 + lda #1 + sta i + //SEG52 [23] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#0 [phi:doplasma->doplasma::@1#1] -- register_copy + //SEG53 [23] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#0 [phi:doplasma->doplasma::@1#2] -- register_copy + jmp b1 + // Calculate ybuff as a bunch of differences + //SEG54 [23] phi from doplasma::@1 to doplasma::@1 [phi:doplasma::@1->doplasma::@1] + b1_from_b1: + //SEG55 [23] phi (byte) doplasma::i#2 = (byte) doplasma::i#1 [phi:doplasma::@1->doplasma::@1#0] -- register_copy + //SEG56 [23] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#1 [phi:doplasma::@1->doplasma::@1#1] -- register_copy + //SEG57 [23] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#1 [phi:doplasma::@1->doplasma::@1#2] -- register_copy + jmp b1 + //SEG58 doplasma::@1 + b1: //SEG59 [24] (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 -- vbuz1=vbuz1_plus_vbuc1 lax c1a axs #-[4] @@ -3198,540 +3255,552 @@ doplasma: { lax c1b axs #-[9] stx c1b - //SEG61 [26] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 -- vbuz1=_inc_vbuz1 + //SEG61 [26] (byte~) doplasma::$1 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#1) -- vbuz1=pbuc1_derefidx_vbuz2_plus_pbuc1_derefidx_vbuz3 + ldy c1a + lda SINTABLE,y + ldy c1b + clc + adc SINTABLE,y + sta _1 + //SEG62 [27] (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((const byte[$19]) doplasma::ybuf#0+-(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) doplasma::i#2) -- vbuz1=vbuz2_minus_pbuc1_derefidx_vbuz3 + lda _1 + ldy i + sec + sbc ybuf+-1,y + sta _3 + //SEG63 [28] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$3 -- pbuc1_derefidx_vbuz1=vbuz2 + lda _3 + ldy i + sta ybuf,y + //SEG64 [29] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 -- vbuz1=_inc_vbuz1 inc i - //SEG62 [27] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 -- vbuz1_lt_vbuc1_then_la1 + //SEG65 [30] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 -- vbuz1_lt_vbuc1_then_la1 lda i cmp #$19 bcc b1_from_b1 jmp b2 - //SEG63 doplasma::@2 + //SEG66 doplasma::@2 b2: - //SEG64 [28] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 + //SEG67 [31] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 lax c1A axs #-[3] stx c1A - //SEG65 [29] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 -- vbuz1=vbuz1_minus_vbuc1 + //SEG68 [32] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 -- vbuz1=vbuz1_minus_vbuc1 lax c1B axs #5 stx c1B - //SEG66 [30] (byte) doplasma::c2a#0 ← (byte) c2A#1 -- vbuz1=vbuz2 + //SEG69 [33] (byte) doplasma::c2a#0 ← (byte) c2A#1 -- vbuz1=vbuz2 lda c2A sta c2a - //SEG67 [31] (byte) doplasma::c2b#0 ← (byte) c2B#1 -- vbuz1=vbuz2 + //SEG70 [34] (byte) doplasma::c2b#0 ← (byte) c2B#1 -- vbuz1=vbuz2 lda c2B sta c2b - //SEG68 [32] phi from doplasma::@2 to doplasma::@3 [phi:doplasma::@2->doplasma::@3] + //SEG71 [35] phi from doplasma::@2 to doplasma::@3 [phi:doplasma::@2->doplasma::@3] b3_from_b2: - //SEG69 [32] phi (byte) doplasma::i1#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@2->doplasma::@3#0] -- vbuz1=vbuc1 + //SEG72 [35] phi (byte) doplasma::i1#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@2->doplasma::@3#0] -- vbuz1=vbuc1 lda #0 sta i1 - //SEG70 [32] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#0 [phi:doplasma::@2->doplasma::@3#1] -- register_copy - //SEG71 [32] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#0 [phi:doplasma::@2->doplasma::@3#2] -- register_copy + //SEG73 [35] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#0 [phi:doplasma::@2->doplasma::@3#1] -- register_copy + //SEG74 [35] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#0 [phi:doplasma::@2->doplasma::@3#2] -- register_copy jmp b3 - //SEG72 [32] phi from doplasma::@3 to doplasma::@3 [phi:doplasma::@3->doplasma::@3] + //SEG75 [35] phi from doplasma::@3 to doplasma::@3 [phi:doplasma::@3->doplasma::@3] b3_from_b3: - //SEG73 [32] phi (byte) doplasma::i1#2 = (byte) doplasma::i1#1 [phi:doplasma::@3->doplasma::@3#0] -- register_copy - //SEG74 [32] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#1 [phi:doplasma::@3->doplasma::@3#1] -- register_copy - //SEG75 [32] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#1 [phi:doplasma::@3->doplasma::@3#2] -- register_copy + //SEG76 [35] phi (byte) doplasma::i1#2 = (byte) doplasma::i1#1 [phi:doplasma::@3->doplasma::@3#0] -- register_copy + //SEG77 [35] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#1 [phi:doplasma::@3->doplasma::@3#1] -- register_copy + //SEG78 [35] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#1 [phi:doplasma::@3->doplasma::@3#2] -- register_copy jmp b3 - //SEG76 doplasma::@3 + //SEG79 doplasma::@3 b3: - //SEG77 [33] (byte~) doplasma::$2 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) -- vbuz1=pbuc1_derefidx_vbuz2_plus_pbuc1_derefidx_vbuz3 + //SEG80 [36] (byte~) doplasma::$5 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) -- vbuz1=pbuc1_derefidx_vbuz2_plus_pbuc1_derefidx_vbuz3 ldy c2a lda SINTABLE,y ldy c2b clc adc SINTABLE,y - sta _2 - //SEG78 [34] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$2 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _2 + sta _5 + //SEG81 [37] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$5 -- pbuc1_derefidx_vbuz1=vbuz2 + lda _5 ldy i1 sta xbuf,y - //SEG79 [35] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 + //SEG82 [38] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 lax c2a axs #-[3] stx c2a - //SEG80 [36] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 -- vbuz1=vbuz1_plus_vbuc1 + //SEG83 [39] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 -- vbuz1=vbuz1_plus_vbuc1 lax c2b axs #-[7] stx c2b - //SEG81 [37] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 -- vbuz1=_inc_vbuz1 + //SEG84 [40] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 -- vbuz1=_inc_vbuz1 inc i1 - //SEG82 [38] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 -- vbuz1_lt_vbuc1_then_la1 + //SEG85 [41] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 -- vbuz1_lt_vbuc1_then_la1 lda i1 cmp #$28 bcc b3_from_b3 jmp b4 - //SEG83 doplasma::@4 + //SEG86 doplasma::@4 b4: - //SEG84 [39] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 -- vbuz1=vbuz1_plus_2 + //SEG87 [42] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 -- vbuz1=vbuz1_plus_2 lda c2A clc adc #2 sta c2A - //SEG85 [40] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_minus_vbuc1 + //SEG88 [43] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_minus_vbuc1 lax c2B axs #3 stx c2B - //SEG86 [41] phi from doplasma::@4 to doplasma::@5 [phi:doplasma::@4->doplasma::@5] + //SEG89 [44] phi from doplasma::@4 to doplasma::@5 [phi:doplasma::@4->doplasma::@5] b5_from_b4: - //SEG87 [41] phi (byte) doplasma::i2#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@4->doplasma::@5#0] -- vbuz1=vbuc1 + //SEG90 [44] phi (byte) doplasma::i2#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@4->doplasma::@5#0] -- vbuz1=vbuc1 lda #0 sta i2 jmp b5 - //SEG88 [41] phi from doplasma::@7 to doplasma::@5 [phi:doplasma::@7->doplasma::@5] + //SEG91 [44] phi from doplasma::@7 to doplasma::@5 [phi:doplasma::@7->doplasma::@5] b5_from_b7: - //SEG89 [41] phi (byte) doplasma::i2#2 = (byte) doplasma::i2#1 [phi:doplasma::@7->doplasma::@5#0] -- register_copy + //SEG92 [44] phi (byte) doplasma::i2#2 = (byte) doplasma::i2#1 [phi:doplasma::@7->doplasma::@5#0] -- register_copy jmp b5 - //SEG90 doplasma::@5 + //SEG93 doplasma::@5 b5: - //SEG91 [42] (byte) doplasma::xval#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) -- vbuz1=pbuc1_derefidx_vbuz2 + //SEG94 [45] (byte) doplasma::val#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((const byte[$19]) doplasma::ybuf#0) -- vbuz1=pbuc1_derefidx_vbuz2_plus__deref_pbuc2 ldy i2 lda xbuf,y - sta xval - jmp b6 - // Use experimental loop unrolling to increase the speed - //SEG92 doplasma::@6 - b6: - //SEG93 [43] (byte~) doplasma::$6 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0) -- vbuz1=vbuz2_plus__deref_pbuc1 - lda ybuf clc - adc xval - sta _6 - //SEG94 [44] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte~) doplasma::$6 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _6 + adc ybuf + sta val + //SEG95 [46] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte) doplasma::val#0 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val ldy i2 sta SCREEN1,y - jmp b6_1 - //SEG95 doplasma::@6_1 - b6_1: - //SEG96 [45] (byte~) doplasma::$11 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6 + // Calculate the next values as sums of diffs + // Use experimental loop unrolling to increase the speed + //SEG96 doplasma::@6 + b6: + //SEG97 [47] (byte) doplasma::val#1 ← (byte) doplasma::val#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+1 clc - adc xval - sta _11 - //SEG97 [46] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$11 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _11 + adc val + sta val_1 + //SEG98 [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#1 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_1 ldy i2 sta SCREEN1+1*$28,y - jmp b6_2 - //SEG98 doplasma::@6_2 - b6_2: - //SEG99 [47] (byte~) doplasma::$14 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_1 + //SEG99 doplasma::@6_1 + b6_1: + //SEG100 [49] (byte) doplasma::val#4 ← (byte) doplasma::val#1 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+2 clc - adc xval - sta _14 - //SEG100 [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$14 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _14 + adc val_1 + sta val_4 + //SEG101 [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#4 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_4 ldy i2 sta SCREEN1+2*$28,y - jmp b6_3 - //SEG101 doplasma::@6_3 - b6_3: - //SEG102 [49] (byte~) doplasma::$17 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_2 + //SEG102 doplasma::@6_2 + b6_2: + //SEG103 [51] (byte) doplasma::val#6 ← (byte) doplasma::val#4 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+3 clc - adc xval - sta _17 - //SEG103 [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$17 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _17 + adc val_4 + sta val_6 + //SEG104 [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#6 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_6 ldy i2 sta SCREEN1+3*$28,y - jmp b6_4 - //SEG104 doplasma::@6_4 - b6_4: - //SEG105 [51] (byte~) doplasma::$20 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_3 + //SEG105 doplasma::@6_3 + b6_3: + //SEG106 [53] (byte) doplasma::val#8 ← (byte) doplasma::val#6 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+4 clc - adc xval - sta _20 - //SEG106 [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$20 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _20 + adc val_6 + sta val_8 + //SEG107 [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#8 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_8 ldy i2 sta SCREEN1+4*$28,y - jmp b6_5 - //SEG107 doplasma::@6_5 - b6_5: - //SEG108 [53] (byte~) doplasma::$23 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_4 + //SEG108 doplasma::@6_4 + b6_4: + //SEG109 [55] (byte) doplasma::val#10 ← (byte) doplasma::val#8 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+5 clc - adc xval - sta _23 - //SEG109 [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$23 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _23 + adc val_8 + sta val_10 + //SEG110 [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#10 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_10 ldy i2 sta SCREEN1+5*$28,y - jmp b6_6 - //SEG110 doplasma::@6_6 - b6_6: - //SEG111 [55] (byte~) doplasma::$26 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_5 + //SEG111 doplasma::@6_5 + b6_5: + //SEG112 [57] (byte) doplasma::val#12 ← (byte) doplasma::val#10 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+6 clc - adc xval - sta _26 - //SEG112 [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$26 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _26 + adc val_10 + sta val_12 + //SEG113 [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#12 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_12 ldy i2 sta SCREEN1+6*$28,y - jmp b6_7 - //SEG113 doplasma::@6_7 - b6_7: - //SEG114 [57] (byte~) doplasma::$29 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_6 + //SEG114 doplasma::@6_6 + b6_6: + //SEG115 [59] (byte) doplasma::val#14 ← (byte) doplasma::val#12 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+7 clc - adc xval - sta _29 - //SEG115 [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$29 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _29 + adc val_12 + sta val_14 + //SEG116 [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#14 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_14 ldy i2 sta SCREEN1+7*$28,y - jmp b6_8 - //SEG116 doplasma::@6_8 - b6_8: - //SEG117 [59] (byte~) doplasma::$32 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_7 + //SEG117 doplasma::@6_7 + b6_7: + //SEG118 [61] (byte) doplasma::val#16 ← (byte) doplasma::val#14 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+8 clc - adc xval - sta _32 - //SEG118 [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$32 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _32 + adc val_14 + sta val_16 + //SEG119 [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#16 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_16 ldy i2 sta SCREEN1+8*$28,y - jmp b6_9 - //SEG119 doplasma::@6_9 - b6_9: - //SEG120 [61] (byte~) doplasma::$35 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_8 + //SEG120 doplasma::@6_8 + b6_8: + //SEG121 [63] (byte) doplasma::val#18 ← (byte) doplasma::val#16 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+9 clc - adc xval - sta _35 - //SEG121 [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$35 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _35 + adc val_16 + sta val_18 + //SEG122 [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#18 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_18 ldy i2 sta SCREEN1+9*$28,y - jmp b6_10 - //SEG122 doplasma::@6_10 - b6_10: - //SEG123 [63] (byte~) doplasma::$38 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_9 + //SEG123 doplasma::@6_9 + b6_9: + //SEG124 [65] (byte) doplasma::val#20 ← (byte) doplasma::val#18 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$a clc - adc xval - sta _38 - //SEG124 [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$38 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _38 + adc val_18 + sta val_20 + //SEG125 [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#20 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_20 ldy i2 sta SCREEN1+$a*$28,y - jmp b6_11 - //SEG125 doplasma::@6_11 - b6_11: - //SEG126 [65] (byte~) doplasma::$41 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_10 + //SEG126 doplasma::@6_10 + b6_10: + //SEG127 [67] (byte) doplasma::val#22 ← (byte) doplasma::val#20 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$b clc - adc xval - sta _41 - //SEG127 [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$41 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _41 + adc val_20 + sta val_22 + //SEG128 [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#22 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_22 ldy i2 sta SCREEN1+$b*$28,y - jmp b6_12 - //SEG128 doplasma::@6_12 - b6_12: - //SEG129 [67] (byte~) doplasma::$44 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_11 + //SEG129 doplasma::@6_11 + b6_11: + //SEG130 [69] (byte) doplasma::val#24 ← (byte) doplasma::val#22 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$c clc - adc xval - sta _44 - //SEG130 [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$44 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _44 + adc val_22 + sta val_24 + //SEG131 [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#24 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_24 ldy i2 sta SCREEN1+$c*$28,y - jmp b6_13 - //SEG131 doplasma::@6_13 - b6_13: - //SEG132 [69] (byte~) doplasma::$47 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_12 + //SEG132 doplasma::@6_12 + b6_12: + //SEG133 [71] (byte) doplasma::val#26 ← (byte) doplasma::val#24 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$d clc - adc xval - sta _47 - //SEG133 [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$47 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _47 + adc val_24 + sta val_26 + //SEG134 [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#26 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_26 ldy i2 sta SCREEN1+$d*$28,y - jmp b6_14 - //SEG134 doplasma::@6_14 - b6_14: - //SEG135 [71] (byte~) doplasma::$50 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_13 + //SEG135 doplasma::@6_13 + b6_13: + //SEG136 [73] (byte) doplasma::val#28 ← (byte) doplasma::val#26 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$e clc - adc xval - sta _50 - //SEG136 [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$50 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _50 + adc val_26 + sta val_28 + //SEG137 [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#28 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_28 ldy i2 sta SCREEN1+$e*$28,y - jmp b6_15 - //SEG137 doplasma::@6_15 - b6_15: - //SEG138 [73] (byte~) doplasma::$53 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_14 + //SEG138 doplasma::@6_14 + b6_14: + //SEG139 [75] (byte) doplasma::val#30 ← (byte) doplasma::val#28 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$f clc - adc xval - sta _53 - //SEG139 [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$53 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _53 + adc val_28 + sta val_30 + //SEG140 [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#30 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_30 ldy i2 sta SCREEN1+$f*$28,y - jmp b6_16 - //SEG140 doplasma::@6_16 - b6_16: - //SEG141 [75] (byte~) doplasma::$56 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_15 + //SEG141 doplasma::@6_15 + b6_15: + //SEG142 [77] (byte) doplasma::val#32 ← (byte) doplasma::val#30 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$10 clc - adc xval - sta _56 - //SEG142 [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$56 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _56 + adc val_30 + sta val_32 + //SEG143 [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#32 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_32 ldy i2 sta SCREEN1+$10*$28,y - jmp b6_17 - //SEG143 doplasma::@6_17 - b6_17: - //SEG144 [77] (byte~) doplasma::$59 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_16 + //SEG144 doplasma::@6_16 + b6_16: + //SEG145 [79] (byte) doplasma::val#34 ← (byte) doplasma::val#32 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$11 clc - adc xval - sta _59 - //SEG145 [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$59 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _59 + adc val_32 + sta val_34 + //SEG146 [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#34 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_34 ldy i2 sta SCREEN1+$11*$28,y - jmp b6_18 - //SEG146 doplasma::@6_18 - b6_18: - //SEG147 [79] (byte~) doplasma::$62 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_17 + //SEG147 doplasma::@6_17 + b6_17: + //SEG148 [81] (byte) doplasma::val#36 ← (byte) doplasma::val#34 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$12 clc - adc xval - sta _62 - //SEG148 [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$62 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _62 + adc val_34 + sta val_36 + //SEG149 [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#36 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_36 ldy i2 sta SCREEN1+$12*$28,y - jmp b6_19 - //SEG149 doplasma::@6_19 - b6_19: - //SEG150 [81] (byte~) doplasma::$65 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_18 + //SEG150 doplasma::@6_18 + b6_18: + //SEG151 [83] (byte) doplasma::val#38 ← (byte) doplasma::val#36 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$13 clc - adc xval - sta _65 - //SEG151 [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$65 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _65 + adc val_36 + sta val_38 + //SEG152 [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#38 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_38 ldy i2 sta SCREEN1+$13*$28,y - jmp b6_20 - //SEG152 doplasma::@6_20 - b6_20: - //SEG153 [83] (byte~) doplasma::$68 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_19 + //SEG153 doplasma::@6_19 + b6_19: + //SEG154 [85] (byte) doplasma::val#40 ← (byte) doplasma::val#38 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$14 clc - adc xval - sta _68 - //SEG154 [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$68 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _68 + adc val_38 + sta val_40 + //SEG155 [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#40 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_40 ldy i2 sta SCREEN1+$14*$28,y - jmp b6_21 - //SEG155 doplasma::@6_21 - b6_21: - //SEG156 [85] (byte~) doplasma::$71 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_20 + //SEG156 doplasma::@6_20 + b6_20: + //SEG157 [87] (byte) doplasma::val#42 ← (byte) doplasma::val#40 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$15 clc - adc xval - sta _71 - //SEG157 [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$71 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _71 + adc val_40 + sta val_42 + //SEG158 [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#42 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_42 ldy i2 sta SCREEN1+$15*$28,y - jmp b6_22 - //SEG158 doplasma::@6_22 - b6_22: - //SEG159 [87] (byte~) doplasma::$74 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_21 + //SEG159 doplasma::@6_21 + b6_21: + //SEG160 [89] (byte) doplasma::val#44 ← (byte) doplasma::val#42 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$16 clc - adc xval - sta _74 - //SEG160 [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$74 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _74 + adc val_42 + sta val_44 + //SEG161 [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#44 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_44 ldy i2 sta SCREEN1+$16*$28,y - jmp b6_23 - //SEG161 doplasma::@6_23 - b6_23: - //SEG162 [89] (byte~) doplasma::$77 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_22 + //SEG162 doplasma::@6_22 + b6_22: + //SEG163 [91] (byte) doplasma::val#46 ← (byte) doplasma::val#44 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$17 clc - adc xval - sta _77 - //SEG163 [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$77 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _77 + adc val_44 + sta val_46 + //SEG164 [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#46 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_46 ldy i2 sta SCREEN1+$17*$28,y - jmp b6_24 - //SEG164 doplasma::@6_24 - b6_24: - //SEG165 [91] (byte~) doplasma::$80 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) -- vbuz1=vbuz2_plus__deref_pbuc1 + jmp b6_23 + //SEG165 doplasma::@6_23 + b6_23: + //SEG166 [93] (byte) doplasma::val#48 ← (byte) doplasma::val#46 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) -- vbuz1=vbuz2_plus__deref_pbuc1 lda ybuf+$18 clc - adc xval - sta _80 - //SEG166 [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$80 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _80 + adc val_46 + sta val_48 + //SEG167 [94] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#48 -- pbuc1_derefidx_vbuz1=vbuz2 + lda val_48 ldy i2 sta SCREEN1+$18*$28,y jmp b7 - //SEG167 doplasma::@7 + //SEG168 doplasma::@7 b7: - //SEG168 [93] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 -- vbuz1=_inc_vbuz1 + //SEG169 [95] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 -- vbuz1=_inc_vbuz1 inc i2 - //SEG169 [94] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 -- vbuz1_lt_vbuc1_then_la1 + //SEG170 [96] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 -- vbuz1_lt_vbuc1_then_la1 lda i2 cmp #$28 bcc b5_from_b7 jmp breturn - //SEG170 doplasma::@return + //SEG171 doplasma::@return breturn: - //SEG171 [95] return + //SEG172 [97] return rts xbuf: .fill $28, 0 ybuf: .fill $19, 0 } -//SEG172 makecharset +//SEG173 makecharset // Make a plasma-friendly charset where the chars are randomly filled makecharset: { - .label _2 = $34 - .label _3 = $37 - .label _4 = $38 - .label _8 = $39 - .label _9 = $3b - .label _11 = $3d - .label s = $35 + .label _2 = $35 + .label _3 = $38 + .label _4 = $39 + .label _8 = $3a + .label _9 = $3c + .label _11 = $3e + .label s = $36 .label ii = $14 .label b = $15 .label i = $13 .label c = $f - //SEG173 [97] call sid_rnd_init + //SEG174 [99] call sid_rnd_init jsr sid_rnd_init - //SEG174 [98] phi from makecharset to makecharset::@10 [phi:makecharset->makecharset::@10] + //SEG175 [100] phi from makecharset to makecharset::@10 [phi:makecharset->makecharset::@10] b10_from_makecharset: jmp b10 - //SEG175 makecharset::@10 + //SEG176 makecharset::@10 b10: - //SEG176 [99] call print_cls - //SEG177 [132] phi from makecharset::@10 to print_cls [phi:makecharset::@10->print_cls] + //SEG177 [101] call print_cls + //SEG178 [134] phi from makecharset::@10 to print_cls [phi:makecharset::@10->print_cls] print_cls_from_b10: jsr print_cls - //SEG178 [100] phi from makecharset::@10 to makecharset::@1 [phi:makecharset::@10->makecharset::@1] + //SEG179 [102] phi from makecharset::@10 to makecharset::@1 [phi:makecharset::@10->makecharset::@1] b1_from_b10: - //SEG179 [100] phi (byte*) print_char_cursor#45 = (const byte*) print_line_cursor#0 [phi:makecharset::@10->makecharset::@1#0] -- pbuz1=pbuc1 + //SEG180 [102] phi (byte*) print_char_cursor#45 = (const byte*) print_line_cursor#0 [phi:makecharset::@10->makecharset::@1#0] -- pbuz1=pbuc1 lda #print_line_cursor sta print_char_cursor+1 - //SEG180 [100] phi (word) makecharset::c#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@10->makecharset::@1#1] -- vwuz1=vbuc1 + //SEG181 [102] phi (word) makecharset::c#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@10->makecharset::@1#1] -- vwuz1=vbuc1 lda #0 sta c lda #0 sta c+1 jmp b1 - //SEG181 [100] phi from makecharset::@9 to makecharset::@1 [phi:makecharset::@9->makecharset::@1] + //SEG182 [102] phi from makecharset::@9 to makecharset::@1 [phi:makecharset::@9->makecharset::@1] b1_from_b9: - //SEG182 [100] phi (byte*) print_char_cursor#45 = (byte*) print_char_cursor#18 [phi:makecharset::@9->makecharset::@1#0] -- register_copy - //SEG183 [100] phi (word) makecharset::c#2 = (word) makecharset::c#1 [phi:makecharset::@9->makecharset::@1#1] -- register_copy + //SEG183 [102] phi (byte*) print_char_cursor#45 = (byte*) print_char_cursor#18 [phi:makecharset::@9->makecharset::@1#0] -- register_copy + //SEG184 [102] phi (word) makecharset::c#2 = (word) makecharset::c#1 [phi:makecharset::@9->makecharset::@1#1] -- register_copy jmp b1 - //SEG184 makecharset::@1 + //SEG185 makecharset::@1 b1: - //SEG185 [101] (byte~) makecharset::$2 ← < (word) makecharset::c#2 -- vbuz1=_lo_vwuz2 + //SEG186 [103] (byte~) makecharset::$2 ← < (word) makecharset::c#2 -- vbuz1=_lo_vwuz2 lda c sta _2 - //SEG186 [102] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) -- vbuz1=pbuc1_derefidx_vbuz2 + //SEG187 [104] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) -- vbuz1=pbuc1_derefidx_vbuz2 ldy _2 lda SINTABLE,y sta s - //SEG187 [103] phi from makecharset::@1 to makecharset::@2 [phi:makecharset::@1->makecharset::@2] + //SEG188 [105] phi from makecharset::@1 to makecharset::@2 [phi:makecharset::@1->makecharset::@2] b2_from_b1: - //SEG188 [103] phi (byte) makecharset::i#7 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@1->makecharset::@2#0] -- vbuz1=vbuc1 + //SEG189 [105] phi (byte) makecharset::i#7 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@1->makecharset::@2#0] -- vbuz1=vbuc1 lda #0 sta i jmp b2 - //SEG189 [103] phi from makecharset::@6 to makecharset::@2 [phi:makecharset::@6->makecharset::@2] + //SEG190 [105] phi from makecharset::@6 to makecharset::@2 [phi:makecharset::@6->makecharset::@2] b2_from_b6: - //SEG190 [103] phi (byte) makecharset::i#7 = (byte) makecharset::i#1 [phi:makecharset::@6->makecharset::@2#0] -- register_copy + //SEG191 [105] phi (byte) makecharset::i#7 = (byte) makecharset::i#1 [phi:makecharset::@6->makecharset::@2#0] -- register_copy jmp b2 - //SEG191 makecharset::@2 + //SEG192 makecharset::@2 b2: - //SEG192 [104] phi from makecharset::@2 to makecharset::@3 [phi:makecharset::@2->makecharset::@3] + //SEG193 [106] phi from makecharset::@2 to makecharset::@3 [phi:makecharset::@2->makecharset::@3] b3_from_b2: - //SEG193 [104] phi (byte) makecharset::b#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#0] -- vbuz1=vbuc1 + //SEG194 [106] phi (byte) makecharset::b#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#0] -- vbuz1=vbuc1 lda #0 sta b - //SEG194 [104] phi (byte) makecharset::ii#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#1] -- vbuz1=vbuc1 + //SEG195 [106] phi (byte) makecharset::ii#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#1] -- vbuz1=vbuc1 lda #0 sta ii jmp b3 - //SEG195 [104] phi from makecharset::@4 to makecharset::@3 [phi:makecharset::@4->makecharset::@3] + //SEG196 [106] phi from makecharset::@4 to makecharset::@3 [phi:makecharset::@4->makecharset::@3] b3_from_b4: - //SEG196 [104] phi (byte) makecharset::b#2 = (byte) makecharset::b#3 [phi:makecharset::@4->makecharset::@3#0] -- register_copy - //SEG197 [104] phi (byte) makecharset::ii#2 = (byte) makecharset::ii#1 [phi:makecharset::@4->makecharset::@3#1] -- register_copy + //SEG197 [106] phi (byte) makecharset::b#2 = (byte) makecharset::b#3 [phi:makecharset::@4->makecharset::@3#0] -- register_copy + //SEG198 [106] phi (byte) makecharset::ii#2 = (byte) makecharset::ii#1 [phi:makecharset::@4->makecharset::@3#1] -- register_copy jmp b3 - //SEG198 makecharset::@3 + //SEG199 makecharset::@3 b3: - //SEG199 [105] call sid_rnd + //SEG200 [107] call sid_rnd jsr sid_rnd - //SEG200 [106] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 -- vbuz1=vbuz2 + //SEG201 [108] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 -- vbuz1=vbuz2 lda sid_rnd.return sta sid_rnd.return_2 jmp b11 - //SEG201 makecharset::@11 + //SEG202 makecharset::@11 b11: - //SEG202 [107] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 -- vbuz1=vbuz2 + //SEG203 [109] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 -- vbuz1=vbuz2 lda sid_rnd.return_2 sta _3 - //SEG203 [108] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff -- vbuz1=vbuz2_band_vbuc1 + //SEG204 [110] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff -- vbuz1=vbuz2_band_vbuc1 lda #$ff and _3 sta _4 - //SEG204 [109] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 -- vbuz1_le_vbuz2_then_la1 + //SEG205 [111] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 -- vbuz1_le_vbuz2_then_la1 lda s cmp _4 bcs b4_from_b11 jmp b5 - //SEG205 makecharset::@5 + //SEG206 makecharset::@5 b5: - //SEG206 [110] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) -- vbuz1=vbuz1_bor_pbuc1_derefidx_vbuz2 + //SEG207 [112] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) -- vbuz1=vbuz1_bor_pbuc1_derefidx_vbuz2 lda b ldy ii ora bittab,y sta b - //SEG207 [111] phi from makecharset::@11 makecharset::@5 to makecharset::@4 [phi:makecharset::@11/makecharset::@5->makecharset::@4] + //SEG208 [113] phi from makecharset::@11 makecharset::@5 to makecharset::@4 [phi:makecharset::@11/makecharset::@5->makecharset::@4] b4_from_b11: b4_from_b5: - //SEG208 [111] phi (byte) makecharset::b#3 = (byte) makecharset::b#2 [phi:makecharset::@11/makecharset::@5->makecharset::@4#0] -- register_copy + //SEG209 [113] phi (byte) makecharset::b#3 = (byte) makecharset::b#2 [phi:makecharset::@11/makecharset::@5->makecharset::@4#0] -- register_copy jmp b4 - //SEG209 makecharset::@4 + //SEG210 makecharset::@4 b4: - //SEG210 [112] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 -- vbuz1=_inc_vbuz1 + //SEG211 [114] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 -- vbuz1=_inc_vbuz1 inc ii - //SEG211 [113] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 -- vbuz1_lt_vbuc1_then_la1 + //SEG212 [115] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 -- vbuz1_lt_vbuc1_then_la1 lda ii cmp #8 bcc b3_from_b4 jmp b6 - //SEG212 makecharset::@6 + //SEG213 makecharset::@6 b6: - //SEG213 [114] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 -- vwuz1=vwuz2_rol_3 + //SEG214 [116] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 -- vwuz1=vwuz2_rol_3 lda c asl sta _8 @@ -3742,7 +3811,7 @@ makecharset: { rol _8+1 asl _8 rol _8+1 - //SEG214 [115] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 -- vwuz1=vwuz2_plus_vbuz3 + //SEG215 [117] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 -- vwuz1=vwuz2_plus_vbuz3 lda i clc adc _8 @@ -3750,7 +3819,7 @@ makecharset: { lda #0 adc _8+1 sta _9+1 - //SEG215 [116] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 -- pbuc1_derefidx_vwuz1=vbuz2 + //SEG216 [118] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 -- pbuc1_derefidx_vwuz1=vbuz2 lda b sta !v++1 lda #makecharset::@8] + //SEG222 [123] phi from makecharset::@7 to makecharset::@8 [phi:makecharset::@7->makecharset::@8] b8_from_b7: jmp b8 - //SEG222 makecharset::@8 + //SEG223 makecharset::@8 b8: - //SEG223 [122] call print_char + //SEG224 [124] call print_char jsr print_char - //SEG224 [123] phi from makecharset::@7 makecharset::@8 to makecharset::@9 [phi:makecharset::@7/makecharset::@8->makecharset::@9] + //SEG225 [125] phi from makecharset::@7 makecharset::@8 to makecharset::@9 [phi:makecharset::@7/makecharset::@8->makecharset::@9] b9_from_b7: b9_from_b8: - //SEG225 [123] phi (byte*) print_char_cursor#18 = (byte*) print_char_cursor#45 [phi:makecharset::@7/makecharset::@8->makecharset::@9#0] -- register_copy + //SEG226 [125] phi (byte*) print_char_cursor#18 = (byte*) print_char_cursor#45 [phi:makecharset::@7/makecharset::@8->makecharset::@9#0] -- register_copy jmp b9 - //SEG226 makecharset::@9 + //SEG227 makecharset::@9 b9: - //SEG227 [124] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 -- vwuz1=_inc_vwuz1 + //SEG228 [126] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 -- vwuz1=_inc_vwuz1 inc c bne !+ inc c+1 !: - //SEG228 [125] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 -- vwuz1_lt_vwuc1_then_la1 + //SEG229 [127] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 -- vwuz1_lt_vwuc1_then_la1 lda c+1 cmp #>$100 bcc b1_from_b9 @@ -3810,74 +3879,74 @@ makecharset: { bcc b1_from_b9 !: jmp breturn - //SEG229 makecharset::@return + //SEG230 makecharset::@return breturn: - //SEG230 [126] return + //SEG231 [128] return rts bittab: .byte 1, 2, 4, 8, $10, $20, $40, $80 } -//SEG231 print_char +//SEG232 print_char // Print a single char print_char: { .const ch = '.' - //SEG232 [127] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 -- _deref_pbuz1=vbuc1 + //SEG233 [129] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 -- _deref_pbuz1=vbuc1 lda #ch ldy #0 sta (print_char_cursor),y - //SEG233 [128] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 -- pbuz1=_inc_pbuz1 + //SEG234 [130] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 -- pbuz1=_inc_pbuz1 inc print_char_cursor bne !+ inc print_char_cursor+1 !: jmp breturn - //SEG234 print_char::@return + //SEG235 print_char::@return breturn: - //SEG235 [129] return + //SEG236 [131] return rts } -//SEG236 sid_rnd +//SEG237 sid_rnd // Get a random number from the SID voice 3, // Must be initialized with sid_rnd_init() sid_rnd: { - .label return = $3e - .label return_2 = $36 - //SEG237 [130] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) -- vbuz1=_deref_pbuc1 + .label return = $3f + .label return_2 = $37 + //SEG238 [132] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) -- vbuz1=_deref_pbuc1 lda SID_VOICE3_OSC sta return jmp breturn - //SEG238 sid_rnd::@return + //SEG239 sid_rnd::@return breturn: - //SEG239 [131] return + //SEG240 [133] return rts } -//SEG240 print_cls +//SEG241 print_cls // Clear the screen. Also resets current line/char cursor. print_cls: { .label sc = $16 - //SEG241 [133] phi from print_cls to print_cls::@1 [phi:print_cls->print_cls::@1] + //SEG242 [135] phi from print_cls to print_cls::@1 [phi:print_cls->print_cls::@1] b1_from_print_cls: - //SEG242 [133] phi (byte*) print_cls::sc#2 = (const byte*) print_line_cursor#0 [phi:print_cls->print_cls::@1#0] -- pbuz1=pbuc1 + //SEG243 [135] phi (byte*) print_cls::sc#2 = (const byte*) print_line_cursor#0 [phi:print_cls->print_cls::@1#0] -- pbuz1=pbuc1 lda #print_line_cursor sta sc+1 jmp b1 - //SEG243 [133] phi from print_cls::@1 to print_cls::@1 [phi:print_cls::@1->print_cls::@1] + //SEG244 [135] phi from print_cls::@1 to print_cls::@1 [phi:print_cls::@1->print_cls::@1] b1_from_b1: - //SEG244 [133] phi (byte*) print_cls::sc#2 = (byte*) print_cls::sc#1 [phi:print_cls::@1->print_cls::@1#0] -- register_copy + //SEG245 [135] phi (byte*) print_cls::sc#2 = (byte*) print_cls::sc#1 [phi:print_cls::@1->print_cls::@1#0] -- register_copy jmp b1 - //SEG245 print_cls::@1 + //SEG246 print_cls::@1 b1: - //SEG246 [134] *((byte*) print_cls::sc#2) ← (byte) ' ' -- _deref_pbuz1=vbuc1 + //SEG247 [136] *((byte*) print_cls::sc#2) ← (byte) ' ' -- _deref_pbuz1=vbuc1 lda #' ' ldy #0 sta (sc),y - //SEG247 [135] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 -- pbuz1=_inc_pbuz1 + //SEG248 [137] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 -- pbuz1=_inc_pbuz1 inc sc bne !+ inc sc+1 !: - //SEG248 [136] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 -- pbuz1_neq_pbuc1_then_la1 + //SEG249 [138] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 -- pbuz1_neq_pbuc1_then_la1 lda sc+1 cmp #>print_line_cursor+$3e8 bne b1_from_b1 @@ -3885,26 +3954,26 @@ print_cls: { cmp #$ffff sta SID_VOICE3_FREQ+1 - //SEG253 [139] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 -- _deref_pbuc1=vbuc2 + //SEG254 [141] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 -- _deref_pbuc1=vbuc2 lda #SID_CONTROL_NOISE sta SID_VOICE3_CONTROL jmp breturn - //SEG254 sid_rnd_init::@return + //SEG255 sid_rnd_init::@return breturn: - //SEG255 [140] return + //SEG256 [142] return rts } .pc = SINTABLE "SINTABLE" @@ -3918,119 +3987,122 @@ Statement [7] *((const byte*) BGCOL#0) ← (const byte) BLUE#0 [ ] ( main:3 [ ] Statement [9] *((byte*) main::col#2) ← (const byte) BLACK#0 [ main::col#2 ] ( main:3 [ main::col#2 ] ) always clobbers reg byte a reg byte y Statement [11] if((byte*) main::col#1!=(byte*)(const byte*) COLS#0+(word/signed word/dword/signed dword) $3e8+(byte/signed byte/word/signed word/dword/signed dword) 1) goto main::@1 [ main::col#1 ] ( main:3 [ main::col#1 ] ) always clobbers reg byte a Statement [15] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:3 [ ] ) always clobbers reg byte a -Statement [22] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#2) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#2 doplasma::c1b#2 doplasma::i#2 doplasma::$0 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#2 doplasma::c1b#2 doplasma::i#2 doplasma::$0 ] ) always clobbers reg byte a +Statement [21] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#0) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#0 doplasma::c1b#0 doplasma::$0 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#0 doplasma::c1b#0 doplasma::$0 ] ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp ZP_BYTE:4 [ c1A#1 c1A#3 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:5 [ c1B#1 c1B#3 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:6 [ c2A#1 c2A#3 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:7 [ c2B#1 c2B#3 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:8 [ doplasma::c1a#2 doplasma::c1a#0 doplasma::c1a#1 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:9 [ doplasma::c1b#2 doplasma::c1b#0 doplasma::c1b#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] Statement [24] (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1b#2 doplasma::i#2 doplasma::c1a#1 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1b#2 doplasma::i#2 doplasma::c1a#1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] Statement [25] (byte) doplasma::c1b#1 ← (byte) doplasma::c1b#2 + (byte/signed byte/word/signed word/dword/signed dword) 9 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 ] ) always clobbers reg byte a -Statement [28] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ( main:3::doplasma:18 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ) always clobbers reg byte a -Statement [29] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ) always clobbers reg byte a -Statement [33] (byte~) doplasma::$2 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$2 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$2 ] ) always clobbers reg byte a +Statement [26] (byte~) doplasma::$1 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#1) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$1 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$1 ] ) always clobbers reg byte a +Statement [27] (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((const byte[$19]) doplasma::ybuf#0+-(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) doplasma::i#2) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$3 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$3 ] ) always clobbers reg byte a +Statement [31] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ( main:3::doplasma:18 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ) always clobbers reg byte a +Statement [32] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ) always clobbers reg byte a +Statement [36] (byte~) doplasma::$5 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$5 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$5 ] ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:12 [ doplasma::c2b#2 doplasma::c2b#0 doplasma::c2b#1 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] -Statement [35] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ) always clobbers reg byte a -Statement [36] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ) always clobbers reg byte a -Statement [40] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ) always clobbers reg byte a -Statement [43] (byte~) doplasma::$6 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$6 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$6 ] ) always clobbers reg byte a +Statement [38] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ) always clobbers reg byte a +Statement [39] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ) always clobbers reg byte a +Statement [43] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ) always clobbers reg byte a +Statement [45] (byte) doplasma::val#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((const byte[$19]) doplasma::ybuf#0) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#0 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#0 ] ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp ZP_BYTE:14 [ doplasma::i2#2 doplasma::i2#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:26 [ doplasma::xval#0 ] -Statement [45] (byte~) doplasma::$11 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$11 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$11 ] ) always clobbers reg byte a -Statement [47] (byte~) doplasma::$14 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$14 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$14 ] ) always clobbers reg byte a -Statement [49] (byte~) doplasma::$17 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$17 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$17 ] ) always clobbers reg byte a -Statement [51] (byte~) doplasma::$20 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$20 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$20 ] ) always clobbers reg byte a -Statement [53] (byte~) doplasma::$23 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$23 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$23 ] ) always clobbers reg byte a -Statement [55] (byte~) doplasma::$26 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$26 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$26 ] ) always clobbers reg byte a -Statement [57] (byte~) doplasma::$29 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$29 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$29 ] ) always clobbers reg byte a -Statement [59] (byte~) doplasma::$32 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$32 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$32 ] ) always clobbers reg byte a -Statement [61] (byte~) doplasma::$35 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$35 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$35 ] ) always clobbers reg byte a -Statement [63] (byte~) doplasma::$38 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$38 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$38 ] ) always clobbers reg byte a -Statement [65] (byte~) doplasma::$41 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$41 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$41 ] ) always clobbers reg byte a -Statement [67] (byte~) doplasma::$44 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$44 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$44 ] ) always clobbers reg byte a -Statement [69] (byte~) doplasma::$47 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$47 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$47 ] ) always clobbers reg byte a -Statement [71] (byte~) doplasma::$50 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$50 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$50 ] ) always clobbers reg byte a -Statement [73] (byte~) doplasma::$53 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$53 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$53 ] ) always clobbers reg byte a -Statement [75] (byte~) doplasma::$56 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$56 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$56 ] ) always clobbers reg byte a -Statement [77] (byte~) doplasma::$59 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$59 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$59 ] ) always clobbers reg byte a -Statement [79] (byte~) doplasma::$62 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$62 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$62 ] ) always clobbers reg byte a -Statement [81] (byte~) doplasma::$65 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$65 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$65 ] ) always clobbers reg byte a -Statement [83] (byte~) doplasma::$68 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$68 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$68 ] ) always clobbers reg byte a -Statement [85] (byte~) doplasma::$71 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$71 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$71 ] ) always clobbers reg byte a -Statement [87] (byte~) doplasma::$74 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$74 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$74 ] ) always clobbers reg byte a -Statement [89] (byte~) doplasma::$77 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$77 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$77 ] ) always clobbers reg byte a -Statement [91] (byte~) doplasma::$80 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::$80 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::$80 ] ) always clobbers reg byte a -Statement [101] (byte~) makecharset::$2 ← < (word) makecharset::c#2 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ) always clobbers reg byte a -Statement [110] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:53 [ makecharset::s#0 ] +Statement [47] (byte) doplasma::val#1 ← (byte) doplasma::val#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#1 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#1 ] ) always clobbers reg byte a +Statement [49] (byte) doplasma::val#4 ← (byte) doplasma::val#1 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#4 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#4 ] ) always clobbers reg byte a +Statement [51] (byte) doplasma::val#6 ← (byte) doplasma::val#4 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#6 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#6 ] ) always clobbers reg byte a +Statement [53] (byte) doplasma::val#8 ← (byte) doplasma::val#6 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#8 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#8 ] ) always clobbers reg byte a +Statement [55] (byte) doplasma::val#10 ← (byte) doplasma::val#8 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#10 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#10 ] ) always clobbers reg byte a +Statement [57] (byte) doplasma::val#12 ← (byte) doplasma::val#10 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#12 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#12 ] ) always clobbers reg byte a +Statement [59] (byte) doplasma::val#14 ← (byte) doplasma::val#12 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#14 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#14 ] ) always clobbers reg byte a +Statement [61] (byte) doplasma::val#16 ← (byte) doplasma::val#14 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#16 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#16 ] ) always clobbers reg byte a +Statement [63] (byte) doplasma::val#18 ← (byte) doplasma::val#16 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#18 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#18 ] ) always clobbers reg byte a +Statement [65] (byte) doplasma::val#20 ← (byte) doplasma::val#18 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#20 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#20 ] ) always clobbers reg byte a +Statement [67] (byte) doplasma::val#22 ← (byte) doplasma::val#20 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#22 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#22 ] ) always clobbers reg byte a +Statement [69] (byte) doplasma::val#24 ← (byte) doplasma::val#22 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#24 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#24 ] ) always clobbers reg byte a +Statement [71] (byte) doplasma::val#26 ← (byte) doplasma::val#24 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#26 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#26 ] ) always clobbers reg byte a +Statement [73] (byte) doplasma::val#28 ← (byte) doplasma::val#26 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#28 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#28 ] ) always clobbers reg byte a +Statement [75] (byte) doplasma::val#30 ← (byte) doplasma::val#28 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#30 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#30 ] ) always clobbers reg byte a +Statement [77] (byte) doplasma::val#32 ← (byte) doplasma::val#30 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#32 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#32 ] ) always clobbers reg byte a +Statement [79] (byte) doplasma::val#34 ← (byte) doplasma::val#32 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#34 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#34 ] ) always clobbers reg byte a +Statement [81] (byte) doplasma::val#36 ← (byte) doplasma::val#34 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#36 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#36 ] ) always clobbers reg byte a +Statement [83] (byte) doplasma::val#38 ← (byte) doplasma::val#36 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#38 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#38 ] ) always clobbers reg byte a +Statement [85] (byte) doplasma::val#40 ← (byte) doplasma::val#38 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#40 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#40 ] ) always clobbers reg byte a +Statement [87] (byte) doplasma::val#42 ← (byte) doplasma::val#40 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#42 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#42 ] ) always clobbers reg byte a +Statement [89] (byte) doplasma::val#44 ← (byte) doplasma::val#42 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#44 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#44 ] ) always clobbers reg byte a +Statement [91] (byte) doplasma::val#46 ← (byte) doplasma::val#44 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#46 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#46 ] ) always clobbers reg byte a +Statement [93] (byte) doplasma::val#48 ← (byte) doplasma::val#46 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#48 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#48 ] ) always clobbers reg byte a +Statement [103] (byte~) makecharset::$2 ← < (word) makecharset::c#2 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ) always clobbers reg byte a +Statement [112] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:54 [ makecharset::s#0 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:20 [ makecharset::ii#2 makecharset::ii#1 ] -Statement [114] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ) always clobbers reg byte a +Statement [116] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp ZP_BYTE:21 [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] -Statement [115] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ) always clobbers reg byte a -Statement [116] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ) always clobbers reg byte a -Statement [119] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ) always clobbers reg byte a -Statement [125] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 [ makecharset::c#1 print_char_cursor#18 ] ( main:3::makecharset:13 [ makecharset::c#1 print_char_cursor#18 ] ) always clobbers reg byte a -Statement [127] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 [ print_char_cursor#45 ] ( main:3::makecharset:13::print_char:122 [ makecharset::c#2 print_char_cursor#45 ] ) always clobbers reg byte a reg byte y -Statement [134] *((byte*) print_cls::sc#2) ← (byte) ' ' [ print_cls::sc#2 ] ( main:3::makecharset:13::print_cls:99 [ print_cls::sc#2 ] ) always clobbers reg byte a reg byte y -Statement [136] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 [ print_cls::sc#1 ] ( main:3::makecharset:13::print_cls:99 [ print_cls::sc#1 ] ) always clobbers reg byte a -Statement [138] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff [ ] ( main:3::makecharset:13::sid_rnd_init:97 [ ] ) always clobbers reg byte a -Statement [139] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 [ ] ( main:3::makecharset:13::sid_rnd_init:97 [ ] ) always clobbers reg byte a +Statement [117] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ) always clobbers reg byte a +Statement [118] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ) always clobbers reg byte a +Statement [121] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ) always clobbers reg byte a +Statement [127] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 [ makecharset::c#1 print_char_cursor#18 ] ( main:3::makecharset:13 [ makecharset::c#1 print_char_cursor#18 ] ) always clobbers reg byte a +Statement [129] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 [ print_char_cursor#45 ] ( main:3::makecharset:13::print_char:124 [ makecharset::c#2 print_char_cursor#45 ] ) always clobbers reg byte a reg byte y +Statement [136] *((byte*) print_cls::sc#2) ← (byte) ' ' [ print_cls::sc#2 ] ( main:3::makecharset:13::print_cls:101 [ print_cls::sc#2 ] ) always clobbers reg byte a reg byte y +Statement [138] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 [ print_cls::sc#1 ] ( main:3::makecharset:13::print_cls:101 [ print_cls::sc#1 ] ) always clobbers reg byte a +Statement [140] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff [ ] ( main:3::makecharset:13::sid_rnd_init:99 [ ] ) always clobbers reg byte a +Statement [141] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 [ ] ( main:3::makecharset:13::sid_rnd_init:99 [ ] ) always clobbers reg byte a Statement [6] *((const byte*) BORDERCOL#0) ← (const byte) BLUE#0 [ ] ( main:3 [ ] ) always clobbers reg byte a Statement [7] *((const byte*) BGCOL#0) ← (const byte) BLUE#0 [ ] ( main:3 [ ] ) always clobbers reg byte a Statement [9] *((byte*) main::col#2) ← (const byte) BLACK#0 [ main::col#2 ] ( main:3 [ main::col#2 ] ) always clobbers reg byte a reg byte y Statement [11] if((byte*) main::col#1!=(byte*)(const byte*) COLS#0+(word/signed word/dword/signed dword) $3e8+(byte/signed byte/word/signed word/dword/signed dword) 1) goto main::@1 [ main::col#1 ] ( main:3 [ main::col#1 ] ) always clobbers reg byte a Statement [15] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:3 [ ] ) always clobbers reg byte a -Statement [22] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#2) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#2 doplasma::c1b#2 doplasma::i#2 doplasma::$0 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#2 doplasma::c1b#2 doplasma::i#2 doplasma::$0 ] ) always clobbers reg byte a +Statement [21] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#0) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#0 doplasma::c1b#0 doplasma::$0 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1a#0 doplasma::c1b#0 doplasma::$0 ] ) always clobbers reg byte a Statement [24] (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1b#2 doplasma::i#2 doplasma::c1a#1 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::c1b#2 doplasma::i#2 doplasma::c1a#1 ] ) always clobbers reg byte a Statement [25] (byte) doplasma::c1b#1 ← (byte) doplasma::c1b#2 + (byte/signed byte/word/signed word/dword/signed dword) 9 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 ] ) always clobbers reg byte a -Statement [28] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ( main:3::doplasma:18 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ) always clobbers reg byte a -Statement [29] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ) always clobbers reg byte a -Statement [33] (byte~) doplasma::$2 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$2 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$2 ] ) always clobbers reg byte a -Statement [35] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ) always clobbers reg byte a -Statement [36] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ) always clobbers reg byte a -Statement [40] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ) always clobbers reg byte a -Statement [43] (byte~) doplasma::$6 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$6 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$6 ] ) always clobbers reg byte a -Statement [45] (byte~) doplasma::$11 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$11 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$11 ] ) always clobbers reg byte a -Statement [47] (byte~) doplasma::$14 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$14 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$14 ] ) always clobbers reg byte a -Statement [49] (byte~) doplasma::$17 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$17 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$17 ] ) always clobbers reg byte a -Statement [51] (byte~) doplasma::$20 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$20 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$20 ] ) always clobbers reg byte a -Statement [53] (byte~) doplasma::$23 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$23 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$23 ] ) always clobbers reg byte a -Statement [55] (byte~) doplasma::$26 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$26 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$26 ] ) always clobbers reg byte a -Statement [57] (byte~) doplasma::$29 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$29 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$29 ] ) always clobbers reg byte a -Statement [59] (byte~) doplasma::$32 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$32 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$32 ] ) always clobbers reg byte a -Statement [61] (byte~) doplasma::$35 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$35 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$35 ] ) always clobbers reg byte a -Statement [63] (byte~) doplasma::$38 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$38 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$38 ] ) always clobbers reg byte a -Statement [65] (byte~) doplasma::$41 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$41 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$41 ] ) always clobbers reg byte a -Statement [67] (byte~) doplasma::$44 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$44 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$44 ] ) always clobbers reg byte a -Statement [69] (byte~) doplasma::$47 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$47 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$47 ] ) always clobbers reg byte a -Statement [71] (byte~) doplasma::$50 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$50 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$50 ] ) always clobbers reg byte a -Statement [73] (byte~) doplasma::$53 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$53 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$53 ] ) always clobbers reg byte a -Statement [75] (byte~) doplasma::$56 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$56 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$56 ] ) always clobbers reg byte a -Statement [77] (byte~) doplasma::$59 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$59 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$59 ] ) always clobbers reg byte a -Statement [79] (byte~) doplasma::$62 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$62 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$62 ] ) always clobbers reg byte a -Statement [81] (byte~) doplasma::$65 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$65 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$65 ] ) always clobbers reg byte a -Statement [83] (byte~) doplasma::$68 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$68 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$68 ] ) always clobbers reg byte a -Statement [85] (byte~) doplasma::$71 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$71 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$71 ] ) always clobbers reg byte a -Statement [87] (byte~) doplasma::$74 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$74 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$74 ] ) always clobbers reg byte a -Statement [89] (byte~) doplasma::$77 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$77 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::xval#0 doplasma::$77 ] ) always clobbers reg byte a -Statement [91] (byte~) doplasma::$80 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::$80 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::$80 ] ) always clobbers reg byte a -Statement [101] (byte~) makecharset::$2 ← < (word) makecharset::c#2 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ) always clobbers reg byte a -Statement [110] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ) always clobbers reg byte a -Statement [114] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ) always clobbers reg byte a -Statement [115] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ) always clobbers reg byte a -Statement [116] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ) always clobbers reg byte a -Statement [119] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ) always clobbers reg byte a -Statement [125] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 [ makecharset::c#1 print_char_cursor#18 ] ( main:3::makecharset:13 [ makecharset::c#1 print_char_cursor#18 ] ) always clobbers reg byte a -Statement [127] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 [ print_char_cursor#45 ] ( main:3::makecharset:13::print_char:122 [ makecharset::c#2 print_char_cursor#45 ] ) always clobbers reg byte a reg byte y -Statement [134] *((byte*) print_cls::sc#2) ← (byte) ' ' [ print_cls::sc#2 ] ( main:3::makecharset:13::print_cls:99 [ print_cls::sc#2 ] ) always clobbers reg byte a reg byte y -Statement [136] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 [ print_cls::sc#1 ] ( main:3::makecharset:13::print_cls:99 [ print_cls::sc#1 ] ) always clobbers reg byte a -Statement [138] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff [ ] ( main:3::makecharset:13::sid_rnd_init:97 [ ] ) always clobbers reg byte a -Statement [139] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 [ ] ( main:3::makecharset:13::sid_rnd_init:97 [ ] ) always clobbers reg byte a +Statement [26] (byte~) doplasma::$1 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#1) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$1 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$1 ] ) always clobbers reg byte a +Statement [27] (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((const byte[$19]) doplasma::ybuf#0+-(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) doplasma::i#2) [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$3 ] ( main:3::doplasma:18 [ c1A#1 c1B#1 c2A#1 c2B#1 doplasma::i#2 doplasma::c1a#1 doplasma::c1b#1 doplasma::$3 ] ) always clobbers reg byte a +Statement [31] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ( main:3::doplasma:18 [ c1B#1 c2A#1 c2B#1 c1A#3 ] ) always clobbers reg byte a +Statement [32] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 ] ) always clobbers reg byte a +Statement [36] (byte~) doplasma::$5 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$5 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2a#2 doplasma::c2b#2 doplasma::i1#2 doplasma::$5 ] ) always clobbers reg byte a +Statement [38] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::c2b#2 doplasma::i1#2 doplasma::c2a#1 ] ) always clobbers reg byte a +Statement [39] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ( main:3::doplasma:18 [ c2A#1 c2B#1 c1A#3 c1B#3 doplasma::i1#2 doplasma::c2a#1 doplasma::c2b#1 ] ) always clobbers reg byte a +Statement [43] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 ] ) always clobbers reg byte a +Statement [45] (byte) doplasma::val#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((const byte[$19]) doplasma::ybuf#0) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#0 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#0 ] ) always clobbers reg byte a +Statement [47] (byte) doplasma::val#1 ← (byte) doplasma::val#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#1 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#1 ] ) always clobbers reg byte a +Statement [49] (byte) doplasma::val#4 ← (byte) doplasma::val#1 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#4 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#4 ] ) always clobbers reg byte a +Statement [51] (byte) doplasma::val#6 ← (byte) doplasma::val#4 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#6 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#6 ] ) always clobbers reg byte a +Statement [53] (byte) doplasma::val#8 ← (byte) doplasma::val#6 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#8 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#8 ] ) always clobbers reg byte a +Statement [55] (byte) doplasma::val#10 ← (byte) doplasma::val#8 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#10 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#10 ] ) always clobbers reg byte a +Statement [57] (byte) doplasma::val#12 ← (byte) doplasma::val#10 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#12 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#12 ] ) always clobbers reg byte a +Statement [59] (byte) doplasma::val#14 ← (byte) doplasma::val#12 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#14 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#14 ] ) always clobbers reg byte a +Statement [61] (byte) doplasma::val#16 ← (byte) doplasma::val#14 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#16 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#16 ] ) always clobbers reg byte a +Statement [63] (byte) doplasma::val#18 ← (byte) doplasma::val#16 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#18 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#18 ] ) always clobbers reg byte a +Statement [65] (byte) doplasma::val#20 ← (byte) doplasma::val#18 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#20 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#20 ] ) always clobbers reg byte a +Statement [67] (byte) doplasma::val#22 ← (byte) doplasma::val#20 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#22 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#22 ] ) always clobbers reg byte a +Statement [69] (byte) doplasma::val#24 ← (byte) doplasma::val#22 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#24 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#24 ] ) always clobbers reg byte a +Statement [71] (byte) doplasma::val#26 ← (byte) doplasma::val#24 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#26 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#26 ] ) always clobbers reg byte a +Statement [73] (byte) doplasma::val#28 ← (byte) doplasma::val#26 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#28 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#28 ] ) always clobbers reg byte a +Statement [75] (byte) doplasma::val#30 ← (byte) doplasma::val#28 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#30 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#30 ] ) always clobbers reg byte a +Statement [77] (byte) doplasma::val#32 ← (byte) doplasma::val#30 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#32 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#32 ] ) always clobbers reg byte a +Statement [79] (byte) doplasma::val#34 ← (byte) doplasma::val#32 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#34 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#34 ] ) always clobbers reg byte a +Statement [81] (byte) doplasma::val#36 ← (byte) doplasma::val#34 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#36 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#36 ] ) always clobbers reg byte a +Statement [83] (byte) doplasma::val#38 ← (byte) doplasma::val#36 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#38 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#38 ] ) always clobbers reg byte a +Statement [85] (byte) doplasma::val#40 ← (byte) doplasma::val#38 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#40 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#40 ] ) always clobbers reg byte a +Statement [87] (byte) doplasma::val#42 ← (byte) doplasma::val#40 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#42 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#42 ] ) always clobbers reg byte a +Statement [89] (byte) doplasma::val#44 ← (byte) doplasma::val#42 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#44 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#44 ] ) always clobbers reg byte a +Statement [91] (byte) doplasma::val#46 ← (byte) doplasma::val#44 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#46 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#46 ] ) always clobbers reg byte a +Statement [93] (byte) doplasma::val#48 ← (byte) doplasma::val#46 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#48 ] ( main:3::doplasma:18 [ c1A#3 c1B#3 c2A#3 c2B#3 doplasma::i2#2 doplasma::val#48 ] ) always clobbers reg byte a +Statement [103] (byte~) makecharset::$2 ← < (word) makecharset::c#2 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$2 ] ) always clobbers reg byte a +Statement [112] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::ii#2 makecharset::b#1 ] ) always clobbers reg byte a +Statement [116] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$8 ] ) always clobbers reg byte a +Statement [117] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 makecharset::b#3 makecharset::$9 ] ) always clobbers reg byte a +Statement [118] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::s#0 makecharset::i#7 ] ) always clobbers reg byte a +Statement [121] (byte/word~) makecharset::$11 ← (word) makecharset::c#2 & (byte/signed byte/word/signed word/dword/signed dword) 7 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ( main:3::makecharset:13 [ makecharset::c#2 print_char_cursor#45 makecharset::$11 ] ) always clobbers reg byte a +Statement [127] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 [ makecharset::c#1 print_char_cursor#18 ] ( main:3::makecharset:13 [ makecharset::c#1 print_char_cursor#18 ] ) always clobbers reg byte a +Statement [129] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 [ print_char_cursor#45 ] ( main:3::makecharset:13::print_char:124 [ makecharset::c#2 print_char_cursor#45 ] ) always clobbers reg byte a reg byte y +Statement [136] *((byte*) print_cls::sc#2) ← (byte) ' ' [ print_cls::sc#2 ] ( main:3::makecharset:13::print_cls:101 [ print_cls::sc#2 ] ) always clobbers reg byte a reg byte y +Statement [138] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 [ print_cls::sc#1 ] ( main:3::makecharset:13::print_cls:101 [ print_cls::sc#1 ] ) always clobbers reg byte a +Statement [140] *((const word*) SID_VOICE3_FREQ#0) ← (word/dword/signed dword) $ffff [ ] ( main:3::makecharset:13::sid_rnd_init:99 [ ] ) always clobbers reg byte a +Statement [141] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 [ ] ( main:3::makecharset:13::sid_rnd_init:99 [ ] ) always clobbers reg byte a Potential registers zp ZP_WORD:2 [ main::col#2 main::col#1 ] : zp ZP_WORD:2 , Potential registers zp ZP_BYTE:4 [ c1A#1 c1A#3 ] : zp ZP_BYTE:4 , reg byte x , reg byte y , Potential registers zp ZP_BYTE:5 [ c1B#1 c1B#3 ] : zp ZP_BYTE:5 , reg byte x , reg byte y , @@ -4050,160 +4122,163 @@ Potential registers zp ZP_BYTE:20 [ makecharset::ii#2 makecharset::ii#1 ] : zp Z Potential registers zp ZP_BYTE:21 [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] : zp ZP_BYTE:21 , reg byte x , reg byte y , Potential registers zp ZP_WORD:22 [ print_cls::sc#2 print_cls::sc#1 ] : zp ZP_WORD:22 , Potential registers zp ZP_BYTE:24 [ doplasma::$0 ] : zp ZP_BYTE:24 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:25 [ doplasma::$2 ] : zp ZP_BYTE:25 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:26 [ doplasma::xval#0 ] : zp ZP_BYTE:26 , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:27 [ doplasma::$6 ] : zp ZP_BYTE:27 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:28 [ doplasma::$11 ] : zp ZP_BYTE:28 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:29 [ doplasma::$14 ] : zp ZP_BYTE:29 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:30 [ doplasma::$17 ] : zp ZP_BYTE:30 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:31 [ doplasma::$20 ] : zp ZP_BYTE:31 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:32 [ doplasma::$23 ] : zp ZP_BYTE:32 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:33 [ doplasma::$26 ] : zp ZP_BYTE:33 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:34 [ doplasma::$29 ] : zp ZP_BYTE:34 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:35 [ doplasma::$32 ] : zp ZP_BYTE:35 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:36 [ doplasma::$35 ] : zp ZP_BYTE:36 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:37 [ doplasma::$38 ] : zp ZP_BYTE:37 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:38 [ doplasma::$41 ] : zp ZP_BYTE:38 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:39 [ doplasma::$44 ] : zp ZP_BYTE:39 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:40 [ doplasma::$47 ] : zp ZP_BYTE:40 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:41 [ doplasma::$50 ] : zp ZP_BYTE:41 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:42 [ doplasma::$53 ] : zp ZP_BYTE:42 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:43 [ doplasma::$56 ] : zp ZP_BYTE:43 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:44 [ doplasma::$59 ] : zp ZP_BYTE:44 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:45 [ doplasma::$62 ] : zp ZP_BYTE:45 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:46 [ doplasma::$65 ] : zp ZP_BYTE:46 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:47 [ doplasma::$68 ] : zp ZP_BYTE:47 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:48 [ doplasma::$71 ] : zp ZP_BYTE:48 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:49 [ doplasma::$74 ] : zp ZP_BYTE:49 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:50 [ doplasma::$77 ] : zp ZP_BYTE:50 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:51 [ doplasma::$80 ] : zp ZP_BYTE:51 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:52 [ makecharset::$2 ] : zp ZP_BYTE:52 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:53 [ makecharset::s#0 ] : zp ZP_BYTE:53 , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:54 [ sid_rnd::return#2 ] : zp ZP_BYTE:54 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:55 [ makecharset::$3 ] : zp ZP_BYTE:55 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:56 [ makecharset::$4 ] : zp ZP_BYTE:56 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:57 [ makecharset::$8 ] : zp ZP_WORD:57 , -Potential registers zp ZP_WORD:59 [ makecharset::$9 ] : zp ZP_WORD:59 , -Potential registers zp ZP_BYTE:61 [ makecharset::$11 ] : zp ZP_BYTE:61 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:62 [ sid_rnd::return#0 ] : zp ZP_BYTE:62 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:25 [ doplasma::$1 ] : zp ZP_BYTE:25 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:26 [ doplasma::$3 ] : zp ZP_BYTE:26 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:27 [ doplasma::$5 ] : zp ZP_BYTE:27 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:28 [ doplasma::val#0 ] : zp ZP_BYTE:28 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:29 [ doplasma::val#1 ] : zp ZP_BYTE:29 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:30 [ doplasma::val#4 ] : zp ZP_BYTE:30 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:31 [ doplasma::val#6 ] : zp ZP_BYTE:31 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:32 [ doplasma::val#8 ] : zp ZP_BYTE:32 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:33 [ doplasma::val#10 ] : zp ZP_BYTE:33 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:34 [ doplasma::val#12 ] : zp ZP_BYTE:34 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:35 [ doplasma::val#14 ] : zp ZP_BYTE:35 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:36 [ doplasma::val#16 ] : zp ZP_BYTE:36 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:37 [ doplasma::val#18 ] : zp ZP_BYTE:37 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:38 [ doplasma::val#20 ] : zp ZP_BYTE:38 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:39 [ doplasma::val#22 ] : zp ZP_BYTE:39 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:40 [ doplasma::val#24 ] : zp ZP_BYTE:40 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:41 [ doplasma::val#26 ] : zp ZP_BYTE:41 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:42 [ doplasma::val#28 ] : zp ZP_BYTE:42 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:43 [ doplasma::val#30 ] : zp ZP_BYTE:43 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:44 [ doplasma::val#32 ] : zp ZP_BYTE:44 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:45 [ doplasma::val#34 ] : zp ZP_BYTE:45 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:46 [ doplasma::val#36 ] : zp ZP_BYTE:46 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:47 [ doplasma::val#38 ] : zp ZP_BYTE:47 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:48 [ doplasma::val#40 ] : zp ZP_BYTE:48 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:49 [ doplasma::val#42 ] : zp ZP_BYTE:49 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:50 [ doplasma::val#44 ] : zp ZP_BYTE:50 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:51 [ doplasma::val#46 ] : zp ZP_BYTE:51 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:52 [ doplasma::val#48 ] : zp ZP_BYTE:52 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:53 [ makecharset::$2 ] : zp ZP_BYTE:53 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:54 [ makecharset::s#0 ] : zp ZP_BYTE:54 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:55 [ sid_rnd::return#2 ] : zp ZP_BYTE:55 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:56 [ makecharset::$3 ] : zp ZP_BYTE:56 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:57 [ makecharset::$4 ] : zp ZP_BYTE:57 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:58 [ makecharset::$8 ] : zp ZP_WORD:58 , +Potential registers zp ZP_WORD:60 [ makecharset::$9 ] : zp ZP_WORD:60 , +Potential registers zp ZP_BYTE:62 [ makecharset::$11 ] : zp ZP_BYTE:62 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:63 [ sid_rnd::return#0 ] : zp ZP_BYTE:63 , reg byte a , reg byte x , reg byte y , REGISTER UPLIFT SCOPES -Uplift Scope [makecharset] 3,123.3: zp ZP_BYTE:21 [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] 2,002: zp ZP_BYTE:55 [ makecharset::$3 ] 2,002: zp ZP_BYTE:56 [ makecharset::$4 ] 1,876.88: zp ZP_BYTE:20 [ makecharset::ii#2 makecharset::ii#1 ] 202: zp ZP_WORD:57 [ makecharset::$8 ] 202: zp ZP_WORD:59 [ makecharset::$9 ] 173.14: zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] 59.53: zp ZP_BYTE:53 [ makecharset::s#0 ] 22.54: zp ZP_WORD:15 [ makecharset::c#2 makecharset::c#1 ] 22: zp ZP_BYTE:52 [ makecharset::$2 ] 22: zp ZP_BYTE:61 [ makecharset::$11 ] -Uplift Scope [doplasma] 212.1: zp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] 212.1: zp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] 205.88: zp ZP_BYTE:14 [ doplasma::i2#2 doplasma::i2#1 ] 202: zp ZP_BYTE:24 [ doplasma::$0 ] 202: zp ZP_BYTE:25 [ doplasma::$2 ] 202: zp ZP_BYTE:27 [ doplasma::$6 ] 202: zp ZP_BYTE:28 [ doplasma::$11 ] 202: zp ZP_BYTE:29 [ doplasma::$14 ] 202: zp ZP_BYTE:30 [ doplasma::$17 ] 202: zp ZP_BYTE:31 [ doplasma::$20 ] 202: zp ZP_BYTE:32 [ doplasma::$23 ] 202: zp ZP_BYTE:33 [ doplasma::$26 ] 202: zp ZP_BYTE:34 [ doplasma::$29 ] 202: zp ZP_BYTE:35 [ doplasma::$32 ] 202: zp ZP_BYTE:36 [ doplasma::$35 ] 202: zp ZP_BYTE:37 [ doplasma::$38 ] 202: zp ZP_BYTE:38 [ doplasma::$41 ] 202: zp ZP_BYTE:39 [ doplasma::$44 ] 202: zp ZP_BYTE:40 [ doplasma::$47 ] 202: zp ZP_BYTE:41 [ doplasma::$50 ] 202: zp ZP_BYTE:42 [ doplasma::$53 ] 202: zp ZP_BYTE:43 [ doplasma::$56 ] 202: zp ZP_BYTE:44 [ doplasma::$59 ] 202: zp ZP_BYTE:45 [ doplasma::$62 ] 202: zp ZP_BYTE:46 [ doplasma::$65 ] 202: zp ZP_BYTE:47 [ doplasma::$68 ] 202: zp ZP_BYTE:48 [ doplasma::$71 ] 202: zp ZP_BYTE:49 [ doplasma::$74 ] 202: zp ZP_BYTE:50 [ doplasma::$77 ] 202: zp ZP_BYTE:51 [ doplasma::$80 ] 154.17: zp ZP_BYTE:8 [ doplasma::c1a#2 doplasma::c1a#0 doplasma::c1a#1 ] 154.17: zp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] 147.58: zp ZP_BYTE:9 [ doplasma::c1b#2 doplasma::c1b#0 doplasma::c1b#1 ] 147.58: zp ZP_BYTE:12 [ doplasma::c2b#2 doplasma::c2b#0 doplasma::c2b#1 ] 53.59: zp ZP_BYTE:26 [ doplasma::xval#0 ] -Uplift Scope [sid_rnd] 2,002: zp ZP_BYTE:54 [ sid_rnd::return#2 ] 334.33: zp ZP_BYTE:62 [ sid_rnd::return#0 ] +Uplift Scope [makecharset] 3,123.3: zp ZP_BYTE:21 [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] 2,002: zp ZP_BYTE:56 [ makecharset::$3 ] 2,002: zp ZP_BYTE:57 [ makecharset::$4 ] 1,876.88: zp ZP_BYTE:20 [ makecharset::ii#2 makecharset::ii#1 ] 202: zp ZP_WORD:58 [ makecharset::$8 ] 202: zp ZP_WORD:60 [ makecharset::$9 ] 173.14: zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] 59.53: zp ZP_BYTE:54 [ makecharset::s#0 ] 22.54: zp ZP_WORD:15 [ makecharset::c#2 makecharset::c#1 ] 22: zp ZP_BYTE:53 [ makecharset::$2 ] 22: zp ZP_BYTE:62 [ makecharset::$11 ] +Uplift Scope [doplasma] 248.79: zp ZP_BYTE:8 [ doplasma::c1a#2 doplasma::c1a#0 doplasma::c1a#1 ] 218.83: zp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] 212.1: zp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] 206.95: zp ZP_BYTE:14 [ doplasma::i2#2 doplasma::i2#1 ] 202: zp ZP_BYTE:25 [ doplasma::$1 ] 202: zp ZP_BYTE:26 [ doplasma::$3 ] 202: zp ZP_BYTE:27 [ doplasma::$5 ] 202: zp ZP_BYTE:52 [ doplasma::val#48 ] 154.5: zp ZP_BYTE:9 [ doplasma::c1b#2 doplasma::c1b#0 doplasma::c1b#1 ] 154.17: zp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] 151.5: zp ZP_BYTE:28 [ doplasma::val#0 ] 151.5: zp ZP_BYTE:29 [ doplasma::val#1 ] 151.5: zp ZP_BYTE:30 [ doplasma::val#4 ] 151.5: zp ZP_BYTE:31 [ doplasma::val#6 ] 151.5: zp ZP_BYTE:32 [ doplasma::val#8 ] 151.5: zp ZP_BYTE:33 [ doplasma::val#10 ] 151.5: zp ZP_BYTE:34 [ doplasma::val#12 ] 151.5: zp ZP_BYTE:35 [ doplasma::val#14 ] 151.5: zp ZP_BYTE:36 [ doplasma::val#16 ] 151.5: zp ZP_BYTE:37 [ doplasma::val#18 ] 151.5: zp ZP_BYTE:38 [ doplasma::val#20 ] 151.5: zp ZP_BYTE:39 [ doplasma::val#22 ] 151.5: zp ZP_BYTE:40 [ doplasma::val#24 ] 151.5: zp ZP_BYTE:41 [ doplasma::val#26 ] 151.5: zp ZP_BYTE:42 [ doplasma::val#28 ] 151.5: zp ZP_BYTE:43 [ doplasma::val#30 ] 151.5: zp ZP_BYTE:44 [ doplasma::val#32 ] 151.5: zp ZP_BYTE:45 [ doplasma::val#34 ] 151.5: zp ZP_BYTE:46 [ doplasma::val#36 ] 151.5: zp ZP_BYTE:47 [ doplasma::val#38 ] 151.5: zp ZP_BYTE:48 [ doplasma::val#40 ] 151.5: zp ZP_BYTE:49 [ doplasma::val#42 ] 151.5: zp ZP_BYTE:50 [ doplasma::val#44 ] 151.5: zp ZP_BYTE:51 [ doplasma::val#46 ] 147.58: zp ZP_BYTE:12 [ doplasma::c2b#2 doplasma::c2b#0 doplasma::c2b#1 ] 4: zp ZP_BYTE:24 [ doplasma::$0 ] +Uplift Scope [sid_rnd] 2,002: zp ZP_BYTE:55 [ sid_rnd::return#2 ] 334.33: zp ZP_BYTE:63 [ sid_rnd::return#0 ] Uplift Scope [print_cls] 33: zp ZP_WORD:22 [ print_cls::sc#2 print_cls::sc#1 ] Uplift Scope [main] 33: zp ZP_WORD:2 [ main::col#2 main::col#1 ] -Uplift Scope [] 16.46: zp ZP_WORD:17 [ print_char_cursor#45 print_char_cursor#18 print_char_cursor#1 ] 1.55: zp ZP_BYTE:4 [ c1A#1 c1A#3 ] 1.44: zp ZP_BYTE:5 [ c1B#1 c1B#3 ] 0.91: zp ZP_BYTE:6 [ c2A#1 c2A#3 ] 0.88: zp ZP_BYTE:7 [ c2B#1 c2B#3 ] +Uplift Scope [] 16.46: zp ZP_WORD:17 [ print_char_cursor#45 print_char_cursor#18 print_char_cursor#1 ] 1.26: zp ZP_BYTE:4 [ c1A#1 c1A#3 ] 1.19: zp ZP_BYTE:5 [ c1B#1 c1B#3 ] 0.83: zp ZP_BYTE:6 [ c2A#1 c2A#3 ] 0.81: zp ZP_BYTE:7 [ c2B#1 c2B#3 ] Uplift Scope [print_char] Uplift Scope [sid_rnd_init] -Uplifting [makecharset] best 163555 combination reg byte y [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] reg byte a [ makecharset::$3 ] zp ZP_BYTE:56 [ makecharset::$4 ] reg byte x [ makecharset::ii#2 makecharset::ii#1 ] zp ZP_WORD:57 [ makecharset::$8 ] zp ZP_WORD:59 [ makecharset::$9 ] zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] zp ZP_BYTE:53 [ makecharset::s#0 ] zp ZP_WORD:15 [ makecharset::c#2 makecharset::c#1 ] zp ZP_BYTE:52 [ makecharset::$2 ] zp ZP_BYTE:61 [ makecharset::$11 ] +Uplifting [makecharset] best 164232 combination reg byte y [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] reg byte a [ makecharset::$3 ] zp ZP_BYTE:57 [ makecharset::$4 ] reg byte x [ makecharset::ii#2 makecharset::ii#1 ] zp ZP_WORD:58 [ makecharset::$8 ] zp ZP_WORD:60 [ makecharset::$9 ] zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] zp ZP_BYTE:54 [ makecharset::s#0 ] zp ZP_WORD:15 [ makecharset::c#2 makecharset::c#1 ] zp ZP_BYTE:53 [ makecharset::$2 ] zp ZP_BYTE:62 [ makecharset::$11 ] Limited combination testing to 100 combinations of 20736 possible. -Uplifting [sid_rnd] best 154552 combination reg byte a [ sid_rnd::return#2 ] reg byte a [ sid_rnd::return#0 ] -Uplifting [print_cls] best 154552 combination zp ZP_WORD:22 [ print_cls::sc#2 print_cls::sc#1 ] -Uplifting [main] best 154552 combination zp ZP_WORD:2 [ main::col#2 main::col#1 ] -Uplifting [] best 154552 combination zp ZP_WORD:17 [ print_char_cursor#45 print_char_cursor#18 print_char_cursor#1 ] zp ZP_BYTE:4 [ c1A#1 c1A#3 ] zp ZP_BYTE:5 [ c1B#1 c1B#3 ] zp ZP_BYTE:6 [ c2A#1 c2A#3 ] zp ZP_BYTE:7 [ c2B#1 c2B#3 ] -Uplifting [print_char] best 154552 combination -Uplifting [sid_rnd_init] best 154552 combination -Attempting to uplift remaining variables inzp ZP_BYTE:56 [ makecharset::$4 ] -Uplifting [makecharset] best 154552 combination zp ZP_BYTE:56 [ makecharset::$4 ] -Attempting to uplift remaining variables inzp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] -Uplifting [doplasma] best 154552 combination zp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] -Uplifting [doplasma] best 154552 combination zp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:14 [ doplasma::i2#2 doplasma::i2#1 ] -Uplifting [doplasma] best 145852 combination reg byte x [ doplasma::i2#2 doplasma::i2#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:24 [ doplasma::$0 ] -Uplifting [doplasma] best 145252 combination reg byte a [ doplasma::$0 ] -Attempting to uplift remaining variables inzp ZP_BYTE:25 [ doplasma::$2 ] -Uplifting [doplasma] best 144652 combination reg byte a [ doplasma::$2 ] -Attempting to uplift remaining variables inzp ZP_BYTE:27 [ doplasma::$6 ] -Uplifting [doplasma] best 144052 combination reg byte a [ doplasma::$6 ] -Attempting to uplift remaining variables inzp ZP_BYTE:28 [ doplasma::$11 ] -Uplifting [doplasma] best 143452 combination reg byte a [ doplasma::$11 ] -Attempting to uplift remaining variables inzp ZP_BYTE:29 [ doplasma::$14 ] -Uplifting [doplasma] best 142852 combination reg byte a [ doplasma::$14 ] -Attempting to uplift remaining variables inzp ZP_BYTE:30 [ doplasma::$17 ] -Uplifting [doplasma] best 142252 combination reg byte a [ doplasma::$17 ] -Attempting to uplift remaining variables inzp ZP_BYTE:31 [ doplasma::$20 ] -Uplifting [doplasma] best 141652 combination reg byte a [ doplasma::$20 ] -Attempting to uplift remaining variables inzp ZP_BYTE:32 [ doplasma::$23 ] -Uplifting [doplasma] best 141052 combination reg byte a [ doplasma::$23 ] -Attempting to uplift remaining variables inzp ZP_BYTE:33 [ doplasma::$26 ] -Uplifting [doplasma] best 140452 combination reg byte a [ doplasma::$26 ] -Attempting to uplift remaining variables inzp ZP_BYTE:34 [ doplasma::$29 ] -Uplifting [doplasma] best 139852 combination reg byte a [ doplasma::$29 ] -Attempting to uplift remaining variables inzp ZP_BYTE:35 [ doplasma::$32 ] -Uplifting [doplasma] best 139252 combination reg byte a [ doplasma::$32 ] -Attempting to uplift remaining variables inzp ZP_BYTE:36 [ doplasma::$35 ] -Uplifting [doplasma] best 138652 combination reg byte a [ doplasma::$35 ] -Attempting to uplift remaining variables inzp ZP_BYTE:37 [ doplasma::$38 ] -Uplifting [doplasma] best 138052 combination reg byte a [ doplasma::$38 ] -Attempting to uplift remaining variables inzp ZP_BYTE:38 [ doplasma::$41 ] -Uplifting [doplasma] best 137452 combination reg byte a [ doplasma::$41 ] -Attempting to uplift remaining variables inzp ZP_BYTE:39 [ doplasma::$44 ] -Uplifting [doplasma] best 136852 combination reg byte a [ doplasma::$44 ] -Attempting to uplift remaining variables inzp ZP_BYTE:40 [ doplasma::$47 ] -Uplifting [doplasma] best 136252 combination reg byte a [ doplasma::$47 ] -Attempting to uplift remaining variables inzp ZP_BYTE:41 [ doplasma::$50 ] -Uplifting [doplasma] best 135652 combination reg byte a [ doplasma::$50 ] -Attempting to uplift remaining variables inzp ZP_BYTE:42 [ doplasma::$53 ] -Uplifting [doplasma] best 135052 combination reg byte a [ doplasma::$53 ] -Attempting to uplift remaining variables inzp ZP_BYTE:43 [ doplasma::$56 ] -Uplifting [doplasma] best 134452 combination reg byte a [ doplasma::$56 ] -Attempting to uplift remaining variables inzp ZP_BYTE:44 [ doplasma::$59 ] -Uplifting [doplasma] best 133852 combination reg byte a [ doplasma::$59 ] -Attempting to uplift remaining variables inzp ZP_BYTE:45 [ doplasma::$62 ] -Uplifting [doplasma] best 133252 combination reg byte a [ doplasma::$62 ] -Attempting to uplift remaining variables inzp ZP_BYTE:46 [ doplasma::$65 ] -Uplifting [doplasma] best 132652 combination reg byte a [ doplasma::$65 ] -Attempting to uplift remaining variables inzp ZP_BYTE:47 [ doplasma::$68 ] -Uplifting [doplasma] best 132052 combination reg byte a [ doplasma::$68 ] -Attempting to uplift remaining variables inzp ZP_BYTE:48 [ doplasma::$71 ] -Uplifting [doplasma] best 131452 combination reg byte a [ doplasma::$71 ] -Attempting to uplift remaining variables inzp ZP_BYTE:49 [ doplasma::$74 ] -Uplifting [doplasma] best 130852 combination reg byte a [ doplasma::$74 ] -Attempting to uplift remaining variables inzp ZP_BYTE:50 [ doplasma::$77 ] -Uplifting [doplasma] best 130252 combination reg byte a [ doplasma::$77 ] -Attempting to uplift remaining variables inzp ZP_BYTE:51 [ doplasma::$80 ] -Uplifting [doplasma] best 129652 combination reg byte a [ doplasma::$80 ] -Attempting to uplift remaining variables inzp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] -Uplifting [makecharset] best 129652 combination zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] +Uplifting [sid_rnd] best 155229 combination reg byte a [ sid_rnd::return#2 ] reg byte a [ sid_rnd::return#0 ] +Uplifting [print_cls] best 155229 combination zp ZP_WORD:22 [ print_cls::sc#2 print_cls::sc#1 ] +Uplifting [main] best 155229 combination zp ZP_WORD:2 [ main::col#2 main::col#1 ] +Uplifting [] best 155229 combination zp ZP_WORD:17 [ print_char_cursor#45 print_char_cursor#18 print_char_cursor#1 ] zp ZP_BYTE:4 [ c1A#1 c1A#3 ] zp ZP_BYTE:5 [ c1B#1 c1B#3 ] zp ZP_BYTE:6 [ c2A#1 c2A#3 ] zp ZP_BYTE:7 [ c2B#1 c2B#3 ] +Uplifting [print_char] best 155229 combination +Uplifting [sid_rnd_init] best 155229 combination +Attempting to uplift remaining variables inzp ZP_BYTE:57 [ makecharset::$4 ] +Uplifting [makecharset] best 155229 combination zp ZP_BYTE:57 [ makecharset::$4 ] Attempting to uplift remaining variables inzp ZP_BYTE:8 [ doplasma::c1a#2 doplasma::c1a#0 doplasma::c1a#1 ] -Uplifting [doplasma] best 129652 combination zp ZP_BYTE:8 [ doplasma::c1a#2 doplasma::c1a#0 doplasma::c1a#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] -Uplifting [doplasma] best 129652 combination zp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] +Uplifting [doplasma] best 155229 combination zp ZP_BYTE:8 [ doplasma::c1a#2 doplasma::c1a#0 doplasma::c1a#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] +Uplifting [doplasma] best 155229 combination zp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] +Uplifting [doplasma] best 155229 combination zp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:14 [ doplasma::i2#2 doplasma::i2#1 ] +Uplifting [doplasma] best 146529 combination reg byte x [ doplasma::i2#2 doplasma::i2#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:25 [ doplasma::$1 ] +Uplifting [doplasma] best 145929 combination reg byte a [ doplasma::$1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:26 [ doplasma::$3 ] +Uplifting [doplasma] best 145329 combination reg byte a [ doplasma::$3 ] +Attempting to uplift remaining variables inzp ZP_BYTE:27 [ doplasma::$5 ] +Uplifting [doplasma] best 144729 combination reg byte a [ doplasma::$5 ] +Attempting to uplift remaining variables inzp ZP_BYTE:52 [ doplasma::val#48 ] +Uplifting [doplasma] best 144129 combination reg byte a [ doplasma::val#48 ] +Attempting to uplift remaining variables inzp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] +Uplifting [makecharset] best 144129 combination zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] Attempting to uplift remaining variables inzp ZP_BYTE:9 [ doplasma::c1b#2 doplasma::c1b#0 doplasma::c1b#1 ] -Uplifting [doplasma] best 129652 combination zp ZP_BYTE:9 [ doplasma::c1b#2 doplasma::c1b#0 doplasma::c1b#1 ] +Uplifting [doplasma] best 144129 combination zp ZP_BYTE:9 [ doplasma::c1b#2 doplasma::c1b#0 doplasma::c1b#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] +Uplifting [doplasma] best 144129 combination zp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:28 [ doplasma::val#0 ] +Uplifting [doplasma] best 143229 combination reg byte a [ doplasma::val#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:29 [ doplasma::val#1 ] +Uplifting [doplasma] best 142329 combination reg byte a [ doplasma::val#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:30 [ doplasma::val#4 ] +Uplifting [doplasma] best 141429 combination reg byte a [ doplasma::val#4 ] +Attempting to uplift remaining variables inzp ZP_BYTE:31 [ doplasma::val#6 ] +Uplifting [doplasma] best 140529 combination reg byte a [ doplasma::val#6 ] +Attempting to uplift remaining variables inzp ZP_BYTE:32 [ doplasma::val#8 ] +Uplifting [doplasma] best 139629 combination reg byte a [ doplasma::val#8 ] +Attempting to uplift remaining variables inzp ZP_BYTE:33 [ doplasma::val#10 ] +Uplifting [doplasma] best 138729 combination reg byte a [ doplasma::val#10 ] +Attempting to uplift remaining variables inzp ZP_BYTE:34 [ doplasma::val#12 ] +Uplifting [doplasma] best 137829 combination reg byte a [ doplasma::val#12 ] +Attempting to uplift remaining variables inzp ZP_BYTE:35 [ doplasma::val#14 ] +Uplifting [doplasma] best 136929 combination reg byte a [ doplasma::val#14 ] +Attempting to uplift remaining variables inzp ZP_BYTE:36 [ doplasma::val#16 ] +Uplifting [doplasma] best 136029 combination reg byte a [ doplasma::val#16 ] +Attempting to uplift remaining variables inzp ZP_BYTE:37 [ doplasma::val#18 ] +Uplifting [doplasma] best 135129 combination reg byte a [ doplasma::val#18 ] +Attempting to uplift remaining variables inzp ZP_BYTE:38 [ doplasma::val#20 ] +Uplifting [doplasma] best 134229 combination reg byte a [ doplasma::val#20 ] +Attempting to uplift remaining variables inzp ZP_BYTE:39 [ doplasma::val#22 ] +Uplifting [doplasma] best 133329 combination reg byte a [ doplasma::val#22 ] +Attempting to uplift remaining variables inzp ZP_BYTE:40 [ doplasma::val#24 ] +Uplifting [doplasma] best 132429 combination reg byte a [ doplasma::val#24 ] +Attempting to uplift remaining variables inzp ZP_BYTE:41 [ doplasma::val#26 ] +Uplifting [doplasma] best 131529 combination reg byte a [ doplasma::val#26 ] +Attempting to uplift remaining variables inzp ZP_BYTE:42 [ doplasma::val#28 ] +Uplifting [doplasma] best 130629 combination reg byte a [ doplasma::val#28 ] +Attempting to uplift remaining variables inzp ZP_BYTE:43 [ doplasma::val#30 ] +Uplifting [doplasma] best 129729 combination reg byte a [ doplasma::val#30 ] +Attempting to uplift remaining variables inzp ZP_BYTE:44 [ doplasma::val#32 ] +Uplifting [doplasma] best 128829 combination reg byte a [ doplasma::val#32 ] +Attempting to uplift remaining variables inzp ZP_BYTE:45 [ doplasma::val#34 ] +Uplifting [doplasma] best 127929 combination reg byte a [ doplasma::val#34 ] +Attempting to uplift remaining variables inzp ZP_BYTE:46 [ doplasma::val#36 ] +Uplifting [doplasma] best 127029 combination reg byte a [ doplasma::val#36 ] +Attempting to uplift remaining variables inzp ZP_BYTE:47 [ doplasma::val#38 ] +Uplifting [doplasma] best 126129 combination reg byte a [ doplasma::val#38 ] +Attempting to uplift remaining variables inzp ZP_BYTE:48 [ doplasma::val#40 ] +Uplifting [doplasma] best 125229 combination reg byte a [ doplasma::val#40 ] +Attempting to uplift remaining variables inzp ZP_BYTE:49 [ doplasma::val#42 ] +Uplifting [doplasma] best 124329 combination reg byte a [ doplasma::val#42 ] +Attempting to uplift remaining variables inzp ZP_BYTE:50 [ doplasma::val#44 ] +Uplifting [doplasma] best 123429 combination reg byte a [ doplasma::val#44 ] +Attempting to uplift remaining variables inzp ZP_BYTE:51 [ doplasma::val#46 ] +Uplifting [doplasma] best 122529 combination reg byte a [ doplasma::val#46 ] Attempting to uplift remaining variables inzp ZP_BYTE:12 [ doplasma::c2b#2 doplasma::c2b#0 doplasma::c2b#1 ] -Uplifting [doplasma] best 129652 combination zp ZP_BYTE:12 [ doplasma::c2b#2 doplasma::c2b#0 doplasma::c2b#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:53 [ makecharset::s#0 ] -Uplifting [makecharset] best 129652 combination zp ZP_BYTE:53 [ makecharset::s#0 ] -Attempting to uplift remaining variables inzp ZP_BYTE:26 [ doplasma::xval#0 ] -Uplifting [doplasma] best 126852 combination reg byte y [ doplasma::xval#0 ] -Attempting to uplift remaining variables inzp ZP_BYTE:52 [ makecharset::$2 ] -Uplifting [makecharset] best 126812 combination reg byte a [ makecharset::$2 ] -Attempting to uplift remaining variables inzp ZP_BYTE:61 [ makecharset::$11 ] -Uplifting [makecharset] best 126752 combination reg byte a [ makecharset::$11 ] +Uplifting [doplasma] best 122529 combination zp ZP_BYTE:12 [ doplasma::c2b#2 doplasma::c2b#0 doplasma::c2b#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:54 [ makecharset::s#0 ] +Uplifting [makecharset] best 122529 combination zp ZP_BYTE:54 [ makecharset::s#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:53 [ makecharset::$2 ] +Uplifting [makecharset] best 122489 combination reg byte a [ makecharset::$2 ] +Attempting to uplift remaining variables inzp ZP_BYTE:62 [ makecharset::$11 ] +Uplifting [makecharset] best 122429 combination reg byte a [ makecharset::$11 ] +Attempting to uplift remaining variables inzp ZP_BYTE:24 [ doplasma::$0 ] +Uplifting [doplasma] best 122423 combination reg byte a [ doplasma::$0 ] Attempting to uplift remaining variables inzp ZP_BYTE:4 [ c1A#1 c1A#3 ] -Uplifting [] best 126752 combination zp ZP_BYTE:4 [ c1A#1 c1A#3 ] +Uplifting [] best 122423 combination zp ZP_BYTE:4 [ c1A#1 c1A#3 ] Attempting to uplift remaining variables inzp ZP_BYTE:5 [ c1B#1 c1B#3 ] -Uplifting [] best 126752 combination zp ZP_BYTE:5 [ c1B#1 c1B#3 ] +Uplifting [] best 122423 combination zp ZP_BYTE:5 [ c1B#1 c1B#3 ] Attempting to uplift remaining variables inzp ZP_BYTE:6 [ c2A#1 c2A#3 ] -Uplifting [] best 126752 combination zp ZP_BYTE:6 [ c2A#1 c2A#3 ] +Uplifting [] best 122423 combination zp ZP_BYTE:6 [ c2A#1 c2A#3 ] Attempting to uplift remaining variables inzp ZP_BYTE:7 [ c2B#1 c2B#3 ] -Uplifting [] best 126752 combination zp ZP_BYTE:7 [ c2B#1 c2B#3 ] -Coalescing zero page register with common assignment [ zp ZP_WORD:57 [ makecharset::$8 ] ] with [ zp ZP_WORD:59 [ makecharset::$9 ] ] - score: 1 +Uplifting [] best 122423 combination zp ZP_BYTE:7 [ c2B#1 c2B#3 ] +Coalescing zero page register with common assignment [ zp ZP_WORD:58 [ makecharset::$8 ] ] with [ zp ZP_WORD:60 [ makecharset::$9 ] ] - score: 1 Coalescing zero page register [ zp ZP_WORD:2 [ main::col#2 main::col#1 ] ] with [ zp ZP_WORD:15 [ makecharset::c#2 makecharset::c#1 ] ] Coalescing zero page register [ zp ZP_WORD:2 [ main::col#2 main::col#1 makecharset::c#2 makecharset::c#1 ] ] with [ zp ZP_WORD:22 [ print_cls::sc#2 print_cls::sc#1 ] ] Coalescing zero page register [ zp ZP_BYTE:4 [ c1A#1 c1A#3 ] ] with [ zp ZP_BYTE:19 [ makecharset::i#7 makecharset::i#1 ] ] -Coalescing zero page register [ zp ZP_BYTE:5 [ c1B#1 c1B#3 ] ] with [ zp ZP_BYTE:53 [ makecharset::s#0 ] ] -Coalescing zero page register [ zp ZP_BYTE:6 [ c2A#1 c2A#3 ] ] with [ zp ZP_BYTE:56 [ makecharset::$4 ] ] +Coalescing zero page register [ zp ZP_BYTE:5 [ c1B#1 c1B#3 ] ] with [ zp ZP_BYTE:54 [ makecharset::s#0 ] ] +Coalescing zero page register [ zp ZP_BYTE:6 [ c2A#1 c2A#3 ] ] with [ zp ZP_BYTE:57 [ makecharset::$4 ] ] Coalescing zero page register [ zp ZP_BYTE:8 [ doplasma::c1a#2 doplasma::c1a#0 doplasma::c1a#1 ] ] with [ zp ZP_BYTE:11 [ doplasma::c2a#2 doplasma::c2a#0 doplasma::c2a#1 ] ] Coalescing zero page register [ zp ZP_BYTE:9 [ doplasma::c1b#2 doplasma::c1b#0 doplasma::c1b#1 ] ] with [ zp ZP_BYTE:12 [ doplasma::c2b#2 doplasma::c2b#0 doplasma::c2b#1 ] ] Coalescing zero page register [ zp ZP_BYTE:10 [ doplasma::i#2 doplasma::i#1 ] ] with [ zp ZP_BYTE:13 [ doplasma::i1#2 doplasma::i1#1 ] ] Allocated (was zp ZP_WORD:17) zp ZP_WORD:11 [ print_char_cursor#45 print_char_cursor#18 print_char_cursor#1 ] -Allocated (was zp ZP_WORD:57) zp ZP_WORD:13 [ makecharset::$8 makecharset::$9 ] +Allocated (was zp ZP_WORD:58) zp ZP_WORD:13 [ makecharset::$8 makecharset::$9 ] ASSEMBLER BEFORE OPTIMIZATION //SEG0 File Comments @@ -4306,7 +4381,7 @@ main: { //SEG24 main::@2 b2: //SEG25 [13] call makecharset - //SEG26 [96] phi from main::@2 to makecharset [phi:main::@2->makecharset] + //SEG26 [98] phi from main::@2 to makecharset [phi:main::@2->makecharset] makecharset_from_b2: jsr makecharset //SEG27 [14] phi from main::@2 to main::toD0181 [phi:main::@2->main::toD0181] @@ -4367,31 +4442,31 @@ doplasma: { //SEG47 [20] (byte) doplasma::c1b#0 ← (byte) c1B#1 -- vbuz1=vbuz2 lda c1B sta c1b - //SEG48 [21] phi from doplasma to doplasma::@1 [phi:doplasma->doplasma::@1] - b1_from_doplasma: - //SEG49 [21] phi (byte) doplasma::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma->doplasma::@1#0] -- vbuz1=vbuc1 - lda #0 - sta i - //SEG50 [21] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#0 [phi:doplasma->doplasma::@1#1] -- register_copy - //SEG51 [21] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#0 [phi:doplasma->doplasma::@1#2] -- register_copy - jmp b1 - //SEG52 [21] phi from doplasma::@1 to doplasma::@1 [phi:doplasma::@1->doplasma::@1] - b1_from_b1: - //SEG53 [21] phi (byte) doplasma::i#2 = (byte) doplasma::i#1 [phi:doplasma::@1->doplasma::@1#0] -- register_copy - //SEG54 [21] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#1 [phi:doplasma::@1->doplasma::@1#1] -- register_copy - //SEG55 [21] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#1 [phi:doplasma::@1->doplasma::@1#2] -- register_copy - jmp b1 - //SEG56 doplasma::@1 - b1: - //SEG57 [22] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#2) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 + //SEG48 [21] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#0) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 ldy c1a lda SINTABLE,y ldy c1b clc adc SINTABLE,y - //SEG58 [23] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$0 -- pbuc1_derefidx_vbuz1=vbuaa - ldy i - sta ybuf,y + //SEG49 [22] *((const byte[$19]) doplasma::ybuf#0) ← (byte~) doplasma::$0 -- _deref_pbuc1=vbuaa + sta ybuf + //SEG50 [23] phi from doplasma to doplasma::@1 [phi:doplasma->doplasma::@1] + b1_from_doplasma: + //SEG51 [23] phi (byte) doplasma::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 1 [phi:doplasma->doplasma::@1#0] -- vbuz1=vbuc1 + lda #1 + sta i + //SEG52 [23] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#0 [phi:doplasma->doplasma::@1#1] -- register_copy + //SEG53 [23] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#0 [phi:doplasma->doplasma::@1#2] -- register_copy + jmp b1 + // Calculate ybuff as a bunch of differences + //SEG54 [23] phi from doplasma::@1 to doplasma::@1 [phi:doplasma::@1->doplasma::@1] + b1_from_b1: + //SEG55 [23] phi (byte) doplasma::i#2 = (byte) doplasma::i#1 [phi:doplasma::@1->doplasma::@1#0] -- register_copy + //SEG56 [23] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#1 [phi:doplasma::@1->doplasma::@1#1] -- register_copy + //SEG57 [23] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#1 [phi:doplasma::@1->doplasma::@1#2] -- register_copy + jmp b1 + //SEG58 doplasma::@1 + b1: //SEG59 [24] (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 -- vbuz1=vbuz1_plus_vbuc1 lax c1a axs #-[4] @@ -4400,336 +4475,321 @@ doplasma: { lax c1b axs #-[9] stx c1b - //SEG61 [26] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 -- vbuz1=_inc_vbuz1 + //SEG61 [26] (byte~) doplasma::$1 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#1) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 + ldy c1a + lda SINTABLE,y + ldy c1b + clc + adc SINTABLE,y + //SEG62 [27] (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((const byte[$19]) doplasma::ybuf#0+-(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) doplasma::i#2) -- vbuaa=vbuaa_minus_pbuc1_derefidx_vbuz1 + ldy i + sec + sbc ybuf+-1,y + //SEG63 [28] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$3 -- pbuc1_derefidx_vbuz1=vbuaa + ldy i + sta ybuf,y + //SEG64 [29] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 -- vbuz1=_inc_vbuz1 inc i - //SEG62 [27] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 -- vbuz1_lt_vbuc1_then_la1 + //SEG65 [30] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 -- vbuz1_lt_vbuc1_then_la1 lda i cmp #$19 bcc b1_from_b1 jmp b2 - //SEG63 doplasma::@2 + //SEG66 doplasma::@2 b2: - //SEG64 [28] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 + //SEG67 [31] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 lax c1A axs #-[3] stx c1A - //SEG65 [29] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 -- vbuz1=vbuz1_minus_vbuc1 + //SEG68 [32] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 -- vbuz1=vbuz1_minus_vbuc1 lax c1B axs #5 stx c1B - //SEG66 [30] (byte) doplasma::c2a#0 ← (byte) c2A#1 -- vbuz1=vbuz2 + //SEG69 [33] (byte) doplasma::c2a#0 ← (byte) c2A#1 -- vbuz1=vbuz2 lda c2A sta c2a - //SEG67 [31] (byte) doplasma::c2b#0 ← (byte) c2B#1 -- vbuz1=vbuz2 + //SEG70 [34] (byte) doplasma::c2b#0 ← (byte) c2B#1 -- vbuz1=vbuz2 lda c2B sta c2b - //SEG68 [32] phi from doplasma::@2 to doplasma::@3 [phi:doplasma::@2->doplasma::@3] + //SEG71 [35] phi from doplasma::@2 to doplasma::@3 [phi:doplasma::@2->doplasma::@3] b3_from_b2: - //SEG69 [32] phi (byte) doplasma::i1#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@2->doplasma::@3#0] -- vbuz1=vbuc1 + //SEG72 [35] phi (byte) doplasma::i1#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@2->doplasma::@3#0] -- vbuz1=vbuc1 lda #0 sta i1 - //SEG70 [32] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#0 [phi:doplasma::@2->doplasma::@3#1] -- register_copy - //SEG71 [32] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#0 [phi:doplasma::@2->doplasma::@3#2] -- register_copy + //SEG73 [35] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#0 [phi:doplasma::@2->doplasma::@3#1] -- register_copy + //SEG74 [35] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#0 [phi:doplasma::@2->doplasma::@3#2] -- register_copy jmp b3 - //SEG72 [32] phi from doplasma::@3 to doplasma::@3 [phi:doplasma::@3->doplasma::@3] + //SEG75 [35] phi from doplasma::@3 to doplasma::@3 [phi:doplasma::@3->doplasma::@3] b3_from_b3: - //SEG73 [32] phi (byte) doplasma::i1#2 = (byte) doplasma::i1#1 [phi:doplasma::@3->doplasma::@3#0] -- register_copy - //SEG74 [32] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#1 [phi:doplasma::@3->doplasma::@3#1] -- register_copy - //SEG75 [32] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#1 [phi:doplasma::@3->doplasma::@3#2] -- register_copy + //SEG76 [35] phi (byte) doplasma::i1#2 = (byte) doplasma::i1#1 [phi:doplasma::@3->doplasma::@3#0] -- register_copy + //SEG77 [35] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#1 [phi:doplasma::@3->doplasma::@3#1] -- register_copy + //SEG78 [35] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#1 [phi:doplasma::@3->doplasma::@3#2] -- register_copy jmp b3 - //SEG76 doplasma::@3 + //SEG79 doplasma::@3 b3: - //SEG77 [33] (byte~) doplasma::$2 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 + //SEG80 [36] (byte~) doplasma::$5 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 ldy c2a lda SINTABLE,y ldy c2b clc adc SINTABLE,y - //SEG78 [34] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$2 -- pbuc1_derefidx_vbuz1=vbuaa + //SEG81 [37] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$5 -- pbuc1_derefidx_vbuz1=vbuaa ldy i1 sta xbuf,y - //SEG79 [35] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 + //SEG82 [38] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 lax c2a axs #-[3] stx c2a - //SEG80 [36] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 -- vbuz1=vbuz1_plus_vbuc1 + //SEG83 [39] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 -- vbuz1=vbuz1_plus_vbuc1 lax c2b axs #-[7] stx c2b - //SEG81 [37] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 -- vbuz1=_inc_vbuz1 + //SEG84 [40] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 -- vbuz1=_inc_vbuz1 inc i1 - //SEG82 [38] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 -- vbuz1_lt_vbuc1_then_la1 + //SEG85 [41] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 -- vbuz1_lt_vbuc1_then_la1 lda i1 cmp #$28 bcc b3_from_b3 jmp b4 - //SEG83 doplasma::@4 + //SEG86 doplasma::@4 b4: - //SEG84 [39] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 -- vbuz1=vbuz1_plus_2 + //SEG87 [42] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 -- vbuz1=vbuz1_plus_2 lda c2A clc adc #2 sta c2A - //SEG85 [40] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_minus_vbuc1 + //SEG88 [43] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_minus_vbuc1 lax c2B axs #3 stx c2B - //SEG86 [41] phi from doplasma::@4 to doplasma::@5 [phi:doplasma::@4->doplasma::@5] + //SEG89 [44] phi from doplasma::@4 to doplasma::@5 [phi:doplasma::@4->doplasma::@5] b5_from_b4: - //SEG87 [41] phi (byte) doplasma::i2#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@4->doplasma::@5#0] -- vbuxx=vbuc1 + //SEG90 [44] phi (byte) doplasma::i2#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@4->doplasma::@5#0] -- vbuxx=vbuc1 ldx #0 jmp b5 - //SEG88 [41] phi from doplasma::@7 to doplasma::@5 [phi:doplasma::@7->doplasma::@5] + //SEG91 [44] phi from doplasma::@7 to doplasma::@5 [phi:doplasma::@7->doplasma::@5] b5_from_b7: - //SEG89 [41] phi (byte) doplasma::i2#2 = (byte) doplasma::i2#1 [phi:doplasma::@7->doplasma::@5#0] -- register_copy + //SEG92 [44] phi (byte) doplasma::i2#2 = (byte) doplasma::i2#1 [phi:doplasma::@7->doplasma::@5#0] -- register_copy jmp b5 - //SEG90 doplasma::@5 + //SEG93 doplasma::@5 b5: - //SEG91 [42] (byte) doplasma::xval#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) -- vbuyy=pbuc1_derefidx_vbuxx - ldy xbuf,x - jmp b6 - // Use experimental loop unrolling to increase the speed - //SEG92 doplasma::@6 - b6: - //SEG93 [43] (byte~) doplasma::$6 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG94 [45] (byte) doplasma::val#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((const byte[$19]) doplasma::ybuf#0) -- vbuaa=pbuc1_derefidx_vbuxx_plus__deref_pbuc2 + lda xbuf,x clc adc ybuf - //SEG94 [44] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte~) doplasma::$6 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG95 [46] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte) doplasma::val#0 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1,x - jmp b6_1 - //SEG95 doplasma::@6_1 - b6_1: - //SEG96 [45] (byte~) doplasma::$11 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6 + // Calculate the next values as sums of diffs + // Use experimental loop unrolling to increase the speed + //SEG96 doplasma::@6 + b6: + //SEG97 [47] (byte) doplasma::val#1 ← (byte) doplasma::val#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+1 - //SEG97 [46] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$11 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG98 [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#1 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+1*$28,x - jmp b6_2 - //SEG98 doplasma::@6_2 - b6_2: - //SEG99 [47] (byte~) doplasma::$14 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_1 + //SEG99 doplasma::@6_1 + b6_1: + //SEG100 [49] (byte) doplasma::val#4 ← (byte) doplasma::val#1 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+2 - //SEG100 [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$14 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG101 [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#4 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+2*$28,x - jmp b6_3 - //SEG101 doplasma::@6_3 - b6_3: - //SEG102 [49] (byte~) doplasma::$17 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_2 + //SEG102 doplasma::@6_2 + b6_2: + //SEG103 [51] (byte) doplasma::val#6 ← (byte) doplasma::val#4 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+3 - //SEG103 [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$17 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG104 [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#6 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+3*$28,x - jmp b6_4 - //SEG104 doplasma::@6_4 - b6_4: - //SEG105 [51] (byte~) doplasma::$20 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_3 + //SEG105 doplasma::@6_3 + b6_3: + //SEG106 [53] (byte) doplasma::val#8 ← (byte) doplasma::val#6 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+4 - //SEG106 [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$20 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG107 [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#8 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+4*$28,x - jmp b6_5 - //SEG107 doplasma::@6_5 - b6_5: - //SEG108 [53] (byte~) doplasma::$23 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_4 + //SEG108 doplasma::@6_4 + b6_4: + //SEG109 [55] (byte) doplasma::val#10 ← (byte) doplasma::val#8 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+5 - //SEG109 [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$23 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG110 [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#10 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+5*$28,x - jmp b6_6 - //SEG110 doplasma::@6_6 - b6_6: - //SEG111 [55] (byte~) doplasma::$26 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_5 + //SEG111 doplasma::@6_5 + b6_5: + //SEG112 [57] (byte) doplasma::val#12 ← (byte) doplasma::val#10 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+6 - //SEG112 [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$26 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG113 [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#12 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+6*$28,x - jmp b6_7 - //SEG113 doplasma::@6_7 - b6_7: - //SEG114 [57] (byte~) doplasma::$29 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_6 + //SEG114 doplasma::@6_6 + b6_6: + //SEG115 [59] (byte) doplasma::val#14 ← (byte) doplasma::val#12 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+7 - //SEG115 [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$29 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG116 [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#14 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+7*$28,x - jmp b6_8 - //SEG116 doplasma::@6_8 - b6_8: - //SEG117 [59] (byte~) doplasma::$32 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_7 + //SEG117 doplasma::@6_7 + b6_7: + //SEG118 [61] (byte) doplasma::val#16 ← (byte) doplasma::val#14 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+8 - //SEG118 [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$32 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG119 [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#16 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+8*$28,x - jmp b6_9 - //SEG119 doplasma::@6_9 - b6_9: - //SEG120 [61] (byte~) doplasma::$35 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_8 + //SEG120 doplasma::@6_8 + b6_8: + //SEG121 [63] (byte) doplasma::val#18 ← (byte) doplasma::val#16 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+9 - //SEG121 [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$35 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG122 [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#18 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+9*$28,x - jmp b6_10 - //SEG122 doplasma::@6_10 - b6_10: - //SEG123 [63] (byte~) doplasma::$38 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_9 + //SEG123 doplasma::@6_9 + b6_9: + //SEG124 [65] (byte) doplasma::val#20 ← (byte) doplasma::val#18 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$a - //SEG124 [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$38 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG125 [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#20 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$a*$28,x - jmp b6_11 - //SEG125 doplasma::@6_11 - b6_11: - //SEG126 [65] (byte~) doplasma::$41 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_10 + //SEG126 doplasma::@6_10 + b6_10: + //SEG127 [67] (byte) doplasma::val#22 ← (byte) doplasma::val#20 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$b - //SEG127 [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$41 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG128 [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#22 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$b*$28,x - jmp b6_12 - //SEG128 doplasma::@6_12 - b6_12: - //SEG129 [67] (byte~) doplasma::$44 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_11 + //SEG129 doplasma::@6_11 + b6_11: + //SEG130 [69] (byte) doplasma::val#24 ← (byte) doplasma::val#22 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$c - //SEG130 [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$44 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG131 [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#24 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$c*$28,x - jmp b6_13 - //SEG131 doplasma::@6_13 - b6_13: - //SEG132 [69] (byte~) doplasma::$47 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_12 + //SEG132 doplasma::@6_12 + b6_12: + //SEG133 [71] (byte) doplasma::val#26 ← (byte) doplasma::val#24 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$d - //SEG133 [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$47 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG134 [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#26 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$d*$28,x - jmp b6_14 - //SEG134 doplasma::@6_14 - b6_14: - //SEG135 [71] (byte~) doplasma::$50 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_13 + //SEG135 doplasma::@6_13 + b6_13: + //SEG136 [73] (byte) doplasma::val#28 ← (byte) doplasma::val#26 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$e - //SEG136 [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$50 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG137 [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#28 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$e*$28,x - jmp b6_15 - //SEG137 doplasma::@6_15 - b6_15: - //SEG138 [73] (byte~) doplasma::$53 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_14 + //SEG138 doplasma::@6_14 + b6_14: + //SEG139 [75] (byte) doplasma::val#30 ← (byte) doplasma::val#28 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$f - //SEG139 [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$53 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG140 [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#30 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$f*$28,x - jmp b6_16 - //SEG140 doplasma::@6_16 - b6_16: - //SEG141 [75] (byte~) doplasma::$56 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_15 + //SEG141 doplasma::@6_15 + b6_15: + //SEG142 [77] (byte) doplasma::val#32 ← (byte) doplasma::val#30 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$10 - //SEG142 [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$56 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG143 [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#32 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$10*$28,x - jmp b6_17 - //SEG143 doplasma::@6_17 - b6_17: - //SEG144 [77] (byte~) doplasma::$59 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_16 + //SEG144 doplasma::@6_16 + b6_16: + //SEG145 [79] (byte) doplasma::val#34 ← (byte) doplasma::val#32 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$11 - //SEG145 [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$59 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG146 [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#34 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$11*$28,x - jmp b6_18 - //SEG146 doplasma::@6_18 - b6_18: - //SEG147 [79] (byte~) doplasma::$62 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_17 + //SEG147 doplasma::@6_17 + b6_17: + //SEG148 [81] (byte) doplasma::val#36 ← (byte) doplasma::val#34 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$12 - //SEG148 [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$62 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG149 [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#36 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$12*$28,x - jmp b6_19 - //SEG149 doplasma::@6_19 - b6_19: - //SEG150 [81] (byte~) doplasma::$65 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_18 + //SEG150 doplasma::@6_18 + b6_18: + //SEG151 [83] (byte) doplasma::val#38 ← (byte) doplasma::val#36 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$13 - //SEG151 [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$65 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG152 [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#38 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$13*$28,x - jmp b6_20 - //SEG152 doplasma::@6_20 - b6_20: - //SEG153 [83] (byte~) doplasma::$68 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_19 + //SEG153 doplasma::@6_19 + b6_19: + //SEG154 [85] (byte) doplasma::val#40 ← (byte) doplasma::val#38 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$14 - //SEG154 [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$68 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG155 [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#40 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$14*$28,x - jmp b6_21 - //SEG155 doplasma::@6_21 - b6_21: - //SEG156 [85] (byte~) doplasma::$71 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_20 + //SEG156 doplasma::@6_20 + b6_20: + //SEG157 [87] (byte) doplasma::val#42 ← (byte) doplasma::val#40 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$15 - //SEG157 [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$71 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG158 [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#42 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$15*$28,x - jmp b6_22 - //SEG158 doplasma::@6_22 - b6_22: - //SEG159 [87] (byte~) doplasma::$74 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_21 + //SEG159 doplasma::@6_21 + b6_21: + //SEG160 [89] (byte) doplasma::val#44 ← (byte) doplasma::val#42 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$16 - //SEG160 [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$74 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG161 [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#44 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$16*$28,x - jmp b6_23 - //SEG161 doplasma::@6_23 - b6_23: - //SEG162 [89] (byte~) doplasma::$77 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_22 + //SEG162 doplasma::@6_22 + b6_22: + //SEG163 [91] (byte) doplasma::val#46 ← (byte) doplasma::val#44 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$17 - //SEG163 [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$77 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG164 [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#46 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$17*$28,x - jmp b6_24 - //SEG164 doplasma::@6_24 - b6_24: - //SEG165 [91] (byte~) doplasma::$80 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + jmp b6_23 + //SEG165 doplasma::@6_23 + b6_23: + //SEG166 [93] (byte) doplasma::val#48 ← (byte) doplasma::val#46 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$18 - //SEG166 [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$80 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG167 [94] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#48 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$18*$28,x jmp b7 - //SEG167 doplasma::@7 + //SEG168 doplasma::@7 b7: - //SEG168 [93] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 -- vbuxx=_inc_vbuxx + //SEG169 [95] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 -- vbuxx=_inc_vbuxx inx - //SEG169 [94] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 -- vbuxx_lt_vbuc1_then_la1 + //SEG170 [96] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 -- vbuxx_lt_vbuc1_then_la1 cpx #$28 bcc b5_from_b7 jmp breturn - //SEG170 doplasma::@return + //SEG171 doplasma::@return breturn: - //SEG171 [95] return + //SEG172 [97] return rts xbuf: .fill $28, 0 ybuf: .fill $19, 0 } -//SEG172 makecharset +//SEG173 makecharset // Make a plasma-friendly charset where the chars are randomly filled makecharset: { .label _4 = 6 @@ -4738,106 +4798,106 @@ makecharset: { .label s = 5 .label i = 4 .label c = 2 - //SEG173 [97] call sid_rnd_init + //SEG174 [99] call sid_rnd_init jsr sid_rnd_init - //SEG174 [98] phi from makecharset to makecharset::@10 [phi:makecharset->makecharset::@10] + //SEG175 [100] phi from makecharset to makecharset::@10 [phi:makecharset->makecharset::@10] b10_from_makecharset: jmp b10 - //SEG175 makecharset::@10 + //SEG176 makecharset::@10 b10: - //SEG176 [99] call print_cls - //SEG177 [132] phi from makecharset::@10 to print_cls [phi:makecharset::@10->print_cls] + //SEG177 [101] call print_cls + //SEG178 [134] phi from makecharset::@10 to print_cls [phi:makecharset::@10->print_cls] print_cls_from_b10: jsr print_cls - //SEG178 [100] phi from makecharset::@10 to makecharset::@1 [phi:makecharset::@10->makecharset::@1] + //SEG179 [102] phi from makecharset::@10 to makecharset::@1 [phi:makecharset::@10->makecharset::@1] b1_from_b10: - //SEG179 [100] phi (byte*) print_char_cursor#45 = (const byte*) print_line_cursor#0 [phi:makecharset::@10->makecharset::@1#0] -- pbuz1=pbuc1 + //SEG180 [102] phi (byte*) print_char_cursor#45 = (const byte*) print_line_cursor#0 [phi:makecharset::@10->makecharset::@1#0] -- pbuz1=pbuc1 lda #print_line_cursor sta print_char_cursor+1 - //SEG180 [100] phi (word) makecharset::c#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@10->makecharset::@1#1] -- vwuz1=vbuc1 + //SEG181 [102] phi (word) makecharset::c#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@10->makecharset::@1#1] -- vwuz1=vbuc1 lda #0 sta c lda #0 sta c+1 jmp b1 - //SEG181 [100] phi from makecharset::@9 to makecharset::@1 [phi:makecharset::@9->makecharset::@1] + //SEG182 [102] phi from makecharset::@9 to makecharset::@1 [phi:makecharset::@9->makecharset::@1] b1_from_b9: - //SEG182 [100] phi (byte*) print_char_cursor#45 = (byte*) print_char_cursor#18 [phi:makecharset::@9->makecharset::@1#0] -- register_copy - //SEG183 [100] phi (word) makecharset::c#2 = (word) makecharset::c#1 [phi:makecharset::@9->makecharset::@1#1] -- register_copy + //SEG183 [102] phi (byte*) print_char_cursor#45 = (byte*) print_char_cursor#18 [phi:makecharset::@9->makecharset::@1#0] -- register_copy + //SEG184 [102] phi (word) makecharset::c#2 = (word) makecharset::c#1 [phi:makecharset::@9->makecharset::@1#1] -- register_copy jmp b1 - //SEG184 makecharset::@1 + //SEG185 makecharset::@1 b1: - //SEG185 [101] (byte~) makecharset::$2 ← < (word) makecharset::c#2 -- vbuaa=_lo_vwuz1 + //SEG186 [103] (byte~) makecharset::$2 ← < (word) makecharset::c#2 -- vbuaa=_lo_vwuz1 lda c - //SEG186 [102] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) -- vbuz1=pbuc1_derefidx_vbuaa + //SEG187 [104] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) -- vbuz1=pbuc1_derefidx_vbuaa tay lda SINTABLE,y sta s - //SEG187 [103] phi from makecharset::@1 to makecharset::@2 [phi:makecharset::@1->makecharset::@2] + //SEG188 [105] phi from makecharset::@1 to makecharset::@2 [phi:makecharset::@1->makecharset::@2] b2_from_b1: - //SEG188 [103] phi (byte) makecharset::i#7 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@1->makecharset::@2#0] -- vbuz1=vbuc1 + //SEG189 [105] phi (byte) makecharset::i#7 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@1->makecharset::@2#0] -- vbuz1=vbuc1 lda #0 sta i jmp b2 - //SEG189 [103] phi from makecharset::@6 to makecharset::@2 [phi:makecharset::@6->makecharset::@2] + //SEG190 [105] phi from makecharset::@6 to makecharset::@2 [phi:makecharset::@6->makecharset::@2] b2_from_b6: - //SEG190 [103] phi (byte) makecharset::i#7 = (byte) makecharset::i#1 [phi:makecharset::@6->makecharset::@2#0] -- register_copy + //SEG191 [105] phi (byte) makecharset::i#7 = (byte) makecharset::i#1 [phi:makecharset::@6->makecharset::@2#0] -- register_copy jmp b2 - //SEG191 makecharset::@2 + //SEG192 makecharset::@2 b2: - //SEG192 [104] phi from makecharset::@2 to makecharset::@3 [phi:makecharset::@2->makecharset::@3] + //SEG193 [106] phi from makecharset::@2 to makecharset::@3 [phi:makecharset::@2->makecharset::@3] b3_from_b2: - //SEG193 [104] phi (byte) makecharset::b#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#0] -- vbuyy=vbuc1 + //SEG194 [106] phi (byte) makecharset::b#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#0] -- vbuyy=vbuc1 ldy #0 - //SEG194 [104] phi (byte) makecharset::ii#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#1] -- vbuxx=vbuc1 + //SEG195 [106] phi (byte) makecharset::ii#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#1] -- vbuxx=vbuc1 ldx #0 jmp b3 - //SEG195 [104] phi from makecharset::@4 to makecharset::@3 [phi:makecharset::@4->makecharset::@3] + //SEG196 [106] phi from makecharset::@4 to makecharset::@3 [phi:makecharset::@4->makecharset::@3] b3_from_b4: - //SEG196 [104] phi (byte) makecharset::b#2 = (byte) makecharset::b#3 [phi:makecharset::@4->makecharset::@3#0] -- register_copy - //SEG197 [104] phi (byte) makecharset::ii#2 = (byte) makecharset::ii#1 [phi:makecharset::@4->makecharset::@3#1] -- register_copy + //SEG197 [106] phi (byte) makecharset::b#2 = (byte) makecharset::b#3 [phi:makecharset::@4->makecharset::@3#0] -- register_copy + //SEG198 [106] phi (byte) makecharset::ii#2 = (byte) makecharset::ii#1 [phi:makecharset::@4->makecharset::@3#1] -- register_copy jmp b3 - //SEG198 makecharset::@3 + //SEG199 makecharset::@3 b3: - //SEG199 [105] call sid_rnd + //SEG200 [107] call sid_rnd jsr sid_rnd - //SEG200 [106] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 + //SEG201 [108] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 jmp b11 - //SEG201 makecharset::@11 + //SEG202 makecharset::@11 b11: - //SEG202 [107] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 - //SEG203 [108] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff -- vbuz1=vbuaa_band_vbuc1 + //SEG203 [109] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 + //SEG204 [110] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff -- vbuz1=vbuaa_band_vbuc1 and #$ff sta _4 - //SEG204 [109] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 -- vbuz1_le_vbuz2_then_la1 + //SEG205 [111] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 -- vbuz1_le_vbuz2_then_la1 lda s cmp _4 bcs b4_from_b11 jmp b5 - //SEG205 makecharset::@5 + //SEG206 makecharset::@5 b5: - //SEG206 [110] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) -- vbuyy=vbuyy_bor_pbuc1_derefidx_vbuxx + //SEG207 [112] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) -- vbuyy=vbuyy_bor_pbuc1_derefidx_vbuxx tya ora bittab,x tay - //SEG207 [111] phi from makecharset::@11 makecharset::@5 to makecharset::@4 [phi:makecharset::@11/makecharset::@5->makecharset::@4] + //SEG208 [113] phi from makecharset::@11 makecharset::@5 to makecharset::@4 [phi:makecharset::@11/makecharset::@5->makecharset::@4] b4_from_b11: b4_from_b5: - //SEG208 [111] phi (byte) makecharset::b#3 = (byte) makecharset::b#2 [phi:makecharset::@11/makecharset::@5->makecharset::@4#0] -- register_copy + //SEG209 [113] phi (byte) makecharset::b#3 = (byte) makecharset::b#2 [phi:makecharset::@11/makecharset::@5->makecharset::@4#0] -- register_copy jmp b4 - //SEG209 makecharset::@4 + //SEG210 makecharset::@4 b4: - //SEG210 [112] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 -- vbuxx=_inc_vbuxx + //SEG211 [114] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 -- vbuxx=_inc_vbuxx inx - //SEG211 [113] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 -- vbuxx_lt_vbuc1_then_la1 + //SEG212 [115] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 -- vbuxx_lt_vbuc1_then_la1 cpx #8 bcc b3_from_b4 jmp b6 - //SEG212 makecharset::@6 + //SEG213 makecharset::@6 b6: - //SEG213 [114] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 -- vwuz1=vwuz2_rol_3 + //SEG214 [116] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 -- vwuz1=vwuz2_rol_3 lda c asl sta _8 @@ -4848,7 +4908,7 @@ makecharset: { rol _8+1 asl _8 rol _8+1 - //SEG214 [115] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 -- vwuz1=vwuz1_plus_vbuz2 + //SEG215 [117] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 -- vwuz1=vwuz1_plus_vbuz2 lda i clc adc _9 @@ -4856,7 +4916,7 @@ makecharset: { bcc !+ inc _9+1 !: - //SEG215 [116] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 -- pbuc1_derefidx_vwuz1=vbuyy + //SEG216 [118] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 -- pbuc1_derefidx_vwuz1=vbuyy tya sta !v++1 lda #makecharset::@8] + //SEG222 [123] phi from makecharset::@7 to makecharset::@8 [phi:makecharset::@7->makecharset::@8] b8_from_b7: jmp b8 - //SEG222 makecharset::@8 + //SEG223 makecharset::@8 b8: - //SEG223 [122] call print_char + //SEG224 [124] call print_char jsr print_char - //SEG224 [123] phi from makecharset::@7 makecharset::@8 to makecharset::@9 [phi:makecharset::@7/makecharset::@8->makecharset::@9] + //SEG225 [125] phi from makecharset::@7 makecharset::@8 to makecharset::@9 [phi:makecharset::@7/makecharset::@8->makecharset::@9] b9_from_b7: b9_from_b8: - //SEG225 [123] phi (byte*) print_char_cursor#18 = (byte*) print_char_cursor#45 [phi:makecharset::@7/makecharset::@8->makecharset::@9#0] -- register_copy + //SEG226 [125] phi (byte*) print_char_cursor#18 = (byte*) print_char_cursor#45 [phi:makecharset::@7/makecharset::@8->makecharset::@9#0] -- register_copy jmp b9 - //SEG226 makecharset::@9 + //SEG227 makecharset::@9 b9: - //SEG227 [124] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 -- vwuz1=_inc_vwuz1 + //SEG228 [126] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 -- vwuz1=_inc_vwuz1 inc c bne !+ inc c+1 !: - //SEG228 [125] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 -- vwuz1_lt_vwuc1_then_la1 + //SEG229 [127] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 -- vwuz1_lt_vwuc1_then_la1 lda c+1 cmp #>$100 bcc b1_from_b9 @@ -4914,71 +4974,71 @@ makecharset: { bcc b1_from_b9 !: jmp breturn - //SEG229 makecharset::@return + //SEG230 makecharset::@return breturn: - //SEG230 [126] return + //SEG231 [128] return rts bittab: .byte 1, 2, 4, 8, $10, $20, $40, $80 } -//SEG231 print_char +//SEG232 print_char // Print a single char print_char: { .const ch = '.' - //SEG232 [127] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 -- _deref_pbuz1=vbuc1 + //SEG233 [129] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 -- _deref_pbuz1=vbuc1 lda #ch ldy #0 sta (print_char_cursor),y - //SEG233 [128] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 -- pbuz1=_inc_pbuz1 + //SEG234 [130] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 -- pbuz1=_inc_pbuz1 inc print_char_cursor bne !+ inc print_char_cursor+1 !: jmp breturn - //SEG234 print_char::@return + //SEG235 print_char::@return breturn: - //SEG235 [129] return + //SEG236 [131] return rts } -//SEG236 sid_rnd +//SEG237 sid_rnd // Get a random number from the SID voice 3, // Must be initialized with sid_rnd_init() sid_rnd: { - //SEG237 [130] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) -- vbuaa=_deref_pbuc1 + //SEG238 [132] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) -- vbuaa=_deref_pbuc1 lda SID_VOICE3_OSC jmp breturn - //SEG238 sid_rnd::@return + //SEG239 sid_rnd::@return breturn: - //SEG239 [131] return + //SEG240 [133] return rts } -//SEG240 print_cls +//SEG241 print_cls // Clear the screen. Also resets current line/char cursor. print_cls: { .label sc = 2 - //SEG241 [133] phi from print_cls to print_cls::@1 [phi:print_cls->print_cls::@1] + //SEG242 [135] phi from print_cls to print_cls::@1 [phi:print_cls->print_cls::@1] b1_from_print_cls: - //SEG242 [133] phi (byte*) print_cls::sc#2 = (const byte*) print_line_cursor#0 [phi:print_cls->print_cls::@1#0] -- pbuz1=pbuc1 + //SEG243 [135] phi (byte*) print_cls::sc#2 = (const byte*) print_line_cursor#0 [phi:print_cls->print_cls::@1#0] -- pbuz1=pbuc1 lda #print_line_cursor sta sc+1 jmp b1 - //SEG243 [133] phi from print_cls::@1 to print_cls::@1 [phi:print_cls::@1->print_cls::@1] + //SEG244 [135] phi from print_cls::@1 to print_cls::@1 [phi:print_cls::@1->print_cls::@1] b1_from_b1: - //SEG244 [133] phi (byte*) print_cls::sc#2 = (byte*) print_cls::sc#1 [phi:print_cls::@1->print_cls::@1#0] -- register_copy + //SEG245 [135] phi (byte*) print_cls::sc#2 = (byte*) print_cls::sc#1 [phi:print_cls::@1->print_cls::@1#0] -- register_copy jmp b1 - //SEG245 print_cls::@1 + //SEG246 print_cls::@1 b1: - //SEG246 [134] *((byte*) print_cls::sc#2) ← (byte) ' ' -- _deref_pbuz1=vbuc1 + //SEG247 [136] *((byte*) print_cls::sc#2) ← (byte) ' ' -- _deref_pbuz1=vbuc1 lda #' ' ldy #0 sta (sc),y - //SEG247 [135] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 -- pbuz1=_inc_pbuz1 + //SEG248 [137] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 -- pbuz1=_inc_pbuz1 inc sc bne !+ inc sc+1 !: - //SEG248 [136] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 -- pbuz1_neq_pbuc1_then_la1 + //SEG249 [138] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 -- pbuz1_neq_pbuc1_then_la1 lda sc+1 cmp #>print_line_cursor+$3e8 bne b1_from_b1 @@ -4986,26 +5046,26 @@ print_cls: { cmp #$ffff sta SID_VOICE3_FREQ+1 - //SEG253 [139] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 -- _deref_pbuc1=vbuc2 + //SEG254 [141] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 -- _deref_pbuc1=vbuc2 lda #SID_CONTROL_NOISE sta SID_VOICE3_CONTROL jmp breturn - //SEG254 sid_rnd_init::@return + //SEG255 sid_rnd_init::@return breturn: - //SEG255 [140] return + //SEG256 [142] return rts } .pc = SINTABLE "SINTABLE" @@ -5052,7 +5112,6 @@ Removing instruction jmp b6_20 Removing instruction jmp b6_21 Removing instruction jmp b6_22 Removing instruction jmp b6_23 -Removing instruction jmp b6_24 Removing instruction jmp b7 Removing instruction jmp breturn Removing instruction jmp b10 @@ -5077,6 +5136,7 @@ Removing instruction lda #BLUE Removing instruction lda #0 Removing instruction lda #0 Removing instruction lda #0 +Removing instruction ldy i Removing instruction lda #0 Succesful ASM optimization Pass5UnnecesaryLoadElimination Replacing label b1_from_b1 with b1 @@ -5155,7 +5215,6 @@ Removing instruction b6_20: Removing instruction b6_21: Removing instruction b6_22: Removing instruction b6_23: -Removing instruction b6_24: Removing instruction b7: Removing instruction breturn: Removing instruction b10: @@ -5187,8 +5246,8 @@ Removing instruction jmp b1 Succesful ASM optimization Pass5NextJumpElimination Removing instruction bbegin: Succesful ASM optimization Pass5UnusedLabelElimination -Fixing long branch [243] bcc b5 to bcs -Fixing long branch [341] bcc b1 to bcs +Fixing long branch [228] bcc b5 to bcs +Fixing long branch [326] bcc b1 to bcs FINAL SYMBOL TABLE (label) @1 @@ -5304,45 +5363,22 @@ FINAL SYMBOL TABLE (byte) WHITE (byte) YELLOW (byte) c1A -(byte) c1A#1 c1A zp ZP_BYTE:4 1.3636363636363638 -(byte) c1A#3 c1A zp ZP_BYTE:4 0.18840579710144925 +(byte) c1A#1 c1A zp ZP_BYTE:4 1.0714285714285714 +(byte) c1A#3 c1A zp ZP_BYTE:4 0.1911764705882353 (byte) c1B -(byte) c1B#1 c1B zp ZP_BYTE:5 1.25 -(byte) c1B#3 c1B zp ZP_BYTE:5 0.1911764705882353 +(byte) c1B#1 c1B zp ZP_BYTE:5 0.9999999999999999 +(byte) c1B#3 c1B zp ZP_BYTE:5 0.19402985074626866 (byte) c2A -(byte) c2A#1 c2A zp ZP_BYTE:6 0.6818181818181819 -(byte) c2A#3 c2A zp ZP_BYTE:6 0.22413793103448276 +(byte) c2A#1 c2A zp ZP_BYTE:6 0.6 +(byte) c2A#3 c2A zp ZP_BYTE:6 0.22807017543859648 (byte) c2B -(byte) c2B#1 c2B zp ZP_BYTE:7 0.6521739130434783 -(byte) c2B#3 c2B zp ZP_BYTE:7 0.22807017543859648 +(byte) c2B#1 c2B zp ZP_BYTE:7 0.5769230769230769 +(byte) c2B#3 c2B zp ZP_BYTE:7 0.23214285714285715 (void()) doplasma((byte*) doplasma::screen) -(byte~) doplasma::$0 reg byte a 202.0 -(byte~) doplasma::$11 reg byte a 202.0 -(byte~) doplasma::$14 reg byte a 202.0 -(byte~) doplasma::$17 reg byte a 202.0 -(byte~) doplasma::$2 reg byte a 202.0 -(byte~) doplasma::$20 reg byte a 202.0 -(byte~) doplasma::$23 reg byte a 202.0 -(byte~) doplasma::$26 reg byte a 202.0 -(byte~) doplasma::$29 reg byte a 202.0 -(byte~) doplasma::$32 reg byte a 202.0 -(byte~) doplasma::$35 reg byte a 202.0 -(byte~) doplasma::$38 reg byte a 202.0 -(byte~) doplasma::$41 reg byte a 202.0 -(byte~) doplasma::$44 reg byte a 202.0 -(byte~) doplasma::$47 reg byte a 202.0 -(byte~) doplasma::$50 reg byte a 202.0 -(byte~) doplasma::$53 reg byte a 202.0 -(byte~) doplasma::$56 reg byte a 202.0 -(byte~) doplasma::$59 reg byte a 202.0 -(byte~) doplasma::$6 reg byte a 202.0 -(byte~) doplasma::$62 reg byte a 202.0 -(byte~) doplasma::$65 reg byte a 202.0 -(byte~) doplasma::$68 reg byte a 202.0 -(byte~) doplasma::$71 reg byte a 202.0 -(byte~) doplasma::$74 reg byte a 202.0 -(byte~) doplasma::$77 reg byte a 202.0 -(byte~) doplasma::$80 reg byte a 202.0 +(byte~) doplasma::$0 reg byte a 4.0 +(byte~) doplasma::$1 reg byte a 202.0 +(byte~) doplasma::$3 reg byte a 202.0 +(byte~) doplasma::$5 reg byte a 202.0 (label) doplasma::@1 (label) doplasma::@2 (label) doplasma::@3 @@ -5365,7 +5401,6 @@ FINAL SYMBOL TABLE (label) doplasma::@6_21 (label) doplasma::@6_22 (label) doplasma::@6_23 -(label) doplasma::@6_24 (label) doplasma::@6_3 (label) doplasma::@6_4 (label) doplasma::@6_5 @@ -5376,13 +5411,13 @@ FINAL SYMBOL TABLE (label) doplasma::@7 (label) doplasma::@return (byte) doplasma::c1a -(byte) doplasma::c1a#0 c1a zp ZP_BYTE:8 2.0 -(byte) doplasma::c1a#1 c1a zp ZP_BYTE:8 50.5 -(byte) doplasma::c1a#2 c1a zp ZP_BYTE:8 101.66666666666666 +(byte) doplasma::c1a#0 c1a zp ZP_BYTE:8 1.5 +(byte) doplasma::c1a#1 c1a zp ZP_BYTE:8 43.285714285714285 +(byte) doplasma::c1a#2 c1a zp ZP_BYTE:8 204.0 (byte) doplasma::c1b -(byte) doplasma::c1b#0 c1b zp ZP_BYTE:9 4.0 -(byte) doplasma::c1b#1 c1b zp ZP_BYTE:9 67.33333333333333 -(byte) doplasma::c1b#2 c1b zp ZP_BYTE:9 76.25 +(byte) doplasma::c1b#0 c1b zp ZP_BYTE:9 2.0 +(byte) doplasma::c1b#1 c1b zp ZP_BYTE:9 50.5 +(byte) doplasma::c1b#2 c1b zp ZP_BYTE:9 102.0 (byte) doplasma::c2a (byte) doplasma::c2a#0 c2a zp ZP_BYTE:8 2.0 (byte) doplasma::c2a#1 c2a zp ZP_BYTE:8 50.5 @@ -5393,19 +5428,43 @@ FINAL SYMBOL TABLE (byte) doplasma::c2b#2 c2b zp ZP_BYTE:9 76.25 (byte) doplasma::i (byte) doplasma::i#1 i zp ZP_BYTE:10 151.5 -(byte) doplasma::i#2 i zp ZP_BYTE:10 60.599999999999994 +(byte) doplasma::i#2 i zp ZP_BYTE:10 67.33333333333333 (byte) doplasma::i1 (byte) doplasma::i1#1 i1 zp ZP_BYTE:10 151.5 (byte) doplasma::i1#2 i1 zp ZP_BYTE:10 60.599999999999994 (byte) doplasma::i2 (byte) doplasma::i2#1 reg byte x 151.5 -(byte) doplasma::i2#2 reg byte x 54.3846153846154 +(byte) doplasma::i2#2 reg byte x 55.45098039215691 (byte) doplasma::ii (byte*) doplasma::screen +(byte) doplasma::val +(byte) doplasma::val#0 reg byte a 151.5 +(byte) doplasma::val#1 reg byte a 151.5 +(byte) doplasma::val#10 reg byte a 151.5 +(byte) doplasma::val#12 reg byte a 151.5 +(byte) doplasma::val#14 reg byte a 151.5 +(byte) doplasma::val#16 reg byte a 151.5 +(byte) doplasma::val#18 reg byte a 151.5 +(byte) doplasma::val#20 reg byte a 151.5 +(byte) doplasma::val#22 reg byte a 151.5 +(byte) doplasma::val#24 reg byte a 151.5 +(byte) doplasma::val#26 reg byte a 151.5 +(byte) doplasma::val#28 reg byte a 151.5 +(byte) doplasma::val#30 reg byte a 151.5 +(byte) doplasma::val#32 reg byte a 151.5 +(byte) doplasma::val#34 reg byte a 151.5 +(byte) doplasma::val#36 reg byte a 151.5 +(byte) doplasma::val#38 reg byte a 151.5 +(byte) doplasma::val#4 reg byte a 151.5 +(byte) doplasma::val#40 reg byte a 151.5 +(byte) doplasma::val#42 reg byte a 151.5 +(byte) doplasma::val#44 reg byte a 151.5 +(byte) doplasma::val#46 reg byte a 151.5 +(byte) doplasma::val#48 reg byte a 202.0 +(byte) doplasma::val#6 reg byte a 151.5 +(byte) doplasma::val#8 reg byte a 151.5 (byte[$28]) doplasma::xbuf (const byte[$28]) doplasma::xbuf#0 xbuf = { fill( $28, 0) } -(byte) doplasma::xval -(byte) doplasma::xval#0 reg byte y 53.59183673469388 (byte[$19]) doplasma::ybuf (const byte[$19]) doplasma::ybuf#0 ybuf = { fill( $19, 0) } (void()) main() @@ -5507,33 +5566,34 @@ zp ZP_WORD:11 [ print_char_cursor#45 print_char_cursor#18 print_char_cursor#1 ] reg byte x [ makecharset::ii#2 makecharset::ii#1 ] reg byte y [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] reg byte a [ doplasma::$0 ] -reg byte a [ doplasma::$2 ] -reg byte y [ doplasma::xval#0 ] -reg byte a [ doplasma::$6 ] -reg byte a [ doplasma::$11 ] -reg byte a [ doplasma::$14 ] -reg byte a [ doplasma::$17 ] -reg byte a [ doplasma::$20 ] -reg byte a [ doplasma::$23 ] -reg byte a [ doplasma::$26 ] -reg byte a [ doplasma::$29 ] -reg byte a [ doplasma::$32 ] -reg byte a [ doplasma::$35 ] -reg byte a [ doplasma::$38 ] -reg byte a [ doplasma::$41 ] -reg byte a [ doplasma::$44 ] -reg byte a [ doplasma::$47 ] -reg byte a [ doplasma::$50 ] -reg byte a [ doplasma::$53 ] -reg byte a [ doplasma::$56 ] -reg byte a [ doplasma::$59 ] -reg byte a [ doplasma::$62 ] -reg byte a [ doplasma::$65 ] -reg byte a [ doplasma::$68 ] -reg byte a [ doplasma::$71 ] -reg byte a [ doplasma::$74 ] -reg byte a [ doplasma::$77 ] -reg byte a [ doplasma::$80 ] +reg byte a [ doplasma::$1 ] +reg byte a [ doplasma::$3 ] +reg byte a [ doplasma::$5 ] +reg byte a [ doplasma::val#0 ] +reg byte a [ doplasma::val#1 ] +reg byte a [ doplasma::val#4 ] +reg byte a [ doplasma::val#6 ] +reg byte a [ doplasma::val#8 ] +reg byte a [ doplasma::val#10 ] +reg byte a [ doplasma::val#12 ] +reg byte a [ doplasma::val#14 ] +reg byte a [ doplasma::val#16 ] +reg byte a [ doplasma::val#18 ] +reg byte a [ doplasma::val#20 ] +reg byte a [ doplasma::val#22 ] +reg byte a [ doplasma::val#24 ] +reg byte a [ doplasma::val#26 ] +reg byte a [ doplasma::val#28 ] +reg byte a [ doplasma::val#30 ] +reg byte a [ doplasma::val#32 ] +reg byte a [ doplasma::val#34 ] +reg byte a [ doplasma::val#36 ] +reg byte a [ doplasma::val#38 ] +reg byte a [ doplasma::val#40 ] +reg byte a [ doplasma::val#42 ] +reg byte a [ doplasma::val#44 ] +reg byte a [ doplasma::val#46 ] +reg byte a [ doplasma::val#48 ] reg byte a [ makecharset::$2 ] reg byte a [ sid_rnd::return#2 ] reg byte a [ makecharset::$3 ] @@ -5543,7 +5603,7 @@ reg byte a [ sid_rnd::return#0 ] FINAL ASSEMBLER -Score: 97100 +Score: 92771 //SEG0 File Comments // A KickC version of the plasma routine from the CC65 samples @@ -5627,7 +5687,7 @@ main: { //SEG23 [12] phi from main::@1 to main::@2 [phi:main::@1->main::@2] //SEG24 main::@2 //SEG25 [13] call makecharset - //SEG26 [96] phi from main::@2 to makecharset [phi:main::@2->makecharset] + //SEG26 [98] phi from main::@2 to makecharset [phi:main::@2->makecharset] jsr makecharset //SEG27 [14] phi from main::@2 to main::toD0181 [phi:main::@2->main::toD0181] //SEG28 main::toD0181 @@ -5673,27 +5733,27 @@ doplasma: { //SEG47 [20] (byte) doplasma::c1b#0 ← (byte) c1B#1 -- vbuz1=vbuz2 lda c1B sta c1b - //SEG48 [21] phi from doplasma to doplasma::@1 [phi:doplasma->doplasma::@1] - //SEG49 [21] phi (byte) doplasma::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma->doplasma::@1#0] -- vbuz1=vbuc1 - lda #0 - sta i - //SEG50 [21] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#0 [phi:doplasma->doplasma::@1#1] -- register_copy - //SEG51 [21] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#0 [phi:doplasma->doplasma::@1#2] -- register_copy - //SEG52 [21] phi from doplasma::@1 to doplasma::@1 [phi:doplasma::@1->doplasma::@1] - //SEG53 [21] phi (byte) doplasma::i#2 = (byte) doplasma::i#1 [phi:doplasma::@1->doplasma::@1#0] -- register_copy - //SEG54 [21] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#1 [phi:doplasma::@1->doplasma::@1#1] -- register_copy - //SEG55 [21] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#1 [phi:doplasma::@1->doplasma::@1#2] -- register_copy - //SEG56 doplasma::@1 - b1: - //SEG57 [22] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#2) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 + //SEG48 [21] (byte~) doplasma::$0 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#0) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#0) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 ldy c1a lda SINTABLE,y ldy c1b clc adc SINTABLE,y - //SEG58 [23] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$0 -- pbuc1_derefidx_vbuz1=vbuaa - ldy i - sta ybuf,y + //SEG49 [22] *((const byte[$19]) doplasma::ybuf#0) ← (byte~) doplasma::$0 -- _deref_pbuc1=vbuaa + sta ybuf + //SEG50 [23] phi from doplasma to doplasma::@1 [phi:doplasma->doplasma::@1] + //SEG51 [23] phi (byte) doplasma::i#2 = (byte/signed byte/word/signed word/dword/signed dword) 1 [phi:doplasma->doplasma::@1#0] -- vbuz1=vbuc1 + lda #1 + sta i + //SEG52 [23] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#0 [phi:doplasma->doplasma::@1#1] -- register_copy + //SEG53 [23] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#0 [phi:doplasma->doplasma::@1#2] -- register_copy + // Calculate ybuff as a bunch of differences + //SEG54 [23] phi from doplasma::@1 to doplasma::@1 [phi:doplasma::@1->doplasma::@1] + //SEG55 [23] phi (byte) doplasma::i#2 = (byte) doplasma::i#1 [phi:doplasma::@1->doplasma::@1#0] -- register_copy + //SEG56 [23] phi (byte) doplasma::c1b#2 = (byte) doplasma::c1b#1 [phi:doplasma::@1->doplasma::@1#1] -- register_copy + //SEG57 [23] phi (byte) doplasma::c1a#2 = (byte) doplasma::c1a#1 [phi:doplasma::@1->doplasma::@1#2] -- register_copy + //SEG58 doplasma::@1 + b1: //SEG59 [24] (byte) doplasma::c1a#1 ← (byte) doplasma::c1a#2 + (byte/signed byte/word/signed word/dword/signed dword) 4 -- vbuz1=vbuz1_plus_vbuc1 lax c1a axs #-[4] @@ -5702,272 +5762,258 @@ doplasma: { lax c1b axs #-[9] stx c1b - //SEG61 [26] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 -- vbuz1=_inc_vbuz1 + //SEG61 [26] (byte~) doplasma::$1 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c1a#1) + *((const byte*) SINTABLE#0 + (byte) doplasma::c1b#1) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 + ldy c1a + lda SINTABLE,y + ldy c1b + clc + adc SINTABLE,y + //SEG62 [27] (byte~) doplasma::$3 ← (byte~) doplasma::$1 - *((const byte[$19]) doplasma::ybuf#0+-(byte/signed byte/word/signed word/dword/signed dword) 1 + (byte) doplasma::i#2) -- vbuaa=vbuaa_minus_pbuc1_derefidx_vbuz1 + ldy i + sec + sbc ybuf+-1,y + //SEG63 [28] *((const byte[$19]) doplasma::ybuf#0 + (byte) doplasma::i#2) ← (byte~) doplasma::$3 -- pbuc1_derefidx_vbuz1=vbuaa + sta ybuf,y + //SEG64 [29] (byte) doplasma::i#1 ← ++ (byte) doplasma::i#2 -- vbuz1=_inc_vbuz1 inc i - //SEG62 [27] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 -- vbuz1_lt_vbuc1_then_la1 + //SEG65 [30] if((byte) doplasma::i#1<(byte/signed byte/word/signed word/dword/signed dword) $19) goto doplasma::@1 -- vbuz1_lt_vbuc1_then_la1 lda i cmp #$19 bcc b1 - //SEG63 doplasma::@2 - //SEG64 [28] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 + //SEG66 doplasma::@2 + //SEG67 [31] (byte) c1A#3 ← (byte) c1A#1 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 lax c1A axs #-[3] stx c1A - //SEG65 [29] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 -- vbuz1=vbuz1_minus_vbuc1 + //SEG68 [32] (byte) c1B#3 ← (byte) c1B#1 - (byte/signed byte/word/signed word/dword/signed dword) 5 -- vbuz1=vbuz1_minus_vbuc1 lax c1B axs #5 stx c1B - //SEG66 [30] (byte) doplasma::c2a#0 ← (byte) c2A#1 -- vbuz1=vbuz2 + //SEG69 [33] (byte) doplasma::c2a#0 ← (byte) c2A#1 -- vbuz1=vbuz2 lda c2A sta c2a - //SEG67 [31] (byte) doplasma::c2b#0 ← (byte) c2B#1 -- vbuz1=vbuz2 + //SEG70 [34] (byte) doplasma::c2b#0 ← (byte) c2B#1 -- vbuz1=vbuz2 lda c2B sta c2b - //SEG68 [32] phi from doplasma::@2 to doplasma::@3 [phi:doplasma::@2->doplasma::@3] - //SEG69 [32] phi (byte) doplasma::i1#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@2->doplasma::@3#0] -- vbuz1=vbuc1 + //SEG71 [35] phi from doplasma::@2 to doplasma::@3 [phi:doplasma::@2->doplasma::@3] + //SEG72 [35] phi (byte) doplasma::i1#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@2->doplasma::@3#0] -- vbuz1=vbuc1 lda #0 sta i1 - //SEG70 [32] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#0 [phi:doplasma::@2->doplasma::@3#1] -- register_copy - //SEG71 [32] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#0 [phi:doplasma::@2->doplasma::@3#2] -- register_copy - //SEG72 [32] phi from doplasma::@3 to doplasma::@3 [phi:doplasma::@3->doplasma::@3] - //SEG73 [32] phi (byte) doplasma::i1#2 = (byte) doplasma::i1#1 [phi:doplasma::@3->doplasma::@3#0] -- register_copy - //SEG74 [32] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#1 [phi:doplasma::@3->doplasma::@3#1] -- register_copy - //SEG75 [32] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#1 [phi:doplasma::@3->doplasma::@3#2] -- register_copy - //SEG76 doplasma::@3 + //SEG73 [35] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#0 [phi:doplasma::@2->doplasma::@3#1] -- register_copy + //SEG74 [35] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#0 [phi:doplasma::@2->doplasma::@3#2] -- register_copy + //SEG75 [35] phi from doplasma::@3 to doplasma::@3 [phi:doplasma::@3->doplasma::@3] + //SEG76 [35] phi (byte) doplasma::i1#2 = (byte) doplasma::i1#1 [phi:doplasma::@3->doplasma::@3#0] -- register_copy + //SEG77 [35] phi (byte) doplasma::c2b#2 = (byte) doplasma::c2b#1 [phi:doplasma::@3->doplasma::@3#1] -- register_copy + //SEG78 [35] phi (byte) doplasma::c2a#2 = (byte) doplasma::c2a#1 [phi:doplasma::@3->doplasma::@3#2] -- register_copy + //SEG79 doplasma::@3 b3: - //SEG77 [33] (byte~) doplasma::$2 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 + //SEG80 [36] (byte~) doplasma::$5 ← *((const byte*) SINTABLE#0 + (byte) doplasma::c2a#2) + *((const byte*) SINTABLE#0 + (byte) doplasma::c2b#2) -- vbuaa=pbuc1_derefidx_vbuz1_plus_pbuc1_derefidx_vbuz2 ldy c2a lda SINTABLE,y ldy c2b clc adc SINTABLE,y - //SEG78 [34] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$2 -- pbuc1_derefidx_vbuz1=vbuaa + //SEG81 [37] *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i1#2) ← (byte~) doplasma::$5 -- pbuc1_derefidx_vbuz1=vbuaa ldy i1 sta xbuf,y - //SEG79 [35] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 + //SEG82 [38] (byte) doplasma::c2a#1 ← (byte) doplasma::c2a#2 + (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_plus_vbuc1 lax c2a axs #-[3] stx c2a - //SEG80 [36] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 -- vbuz1=vbuz1_plus_vbuc1 + //SEG83 [39] (byte) doplasma::c2b#1 ← (byte) doplasma::c2b#2 + (byte/signed byte/word/signed word/dword/signed dword) 7 -- vbuz1=vbuz1_plus_vbuc1 lax c2b axs #-[7] stx c2b - //SEG81 [37] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 -- vbuz1=_inc_vbuz1 + //SEG84 [40] (byte) doplasma::i1#1 ← ++ (byte) doplasma::i1#2 -- vbuz1=_inc_vbuz1 inc i1 - //SEG82 [38] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 -- vbuz1_lt_vbuc1_then_la1 + //SEG85 [41] if((byte) doplasma::i1#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@3 -- vbuz1_lt_vbuc1_then_la1 lda i1 cmp #$28 bcc b3 - //SEG83 doplasma::@4 - //SEG84 [39] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 -- vbuz1=vbuz1_plus_2 + //SEG86 doplasma::@4 + //SEG87 [42] (byte) c2A#3 ← (byte) c2A#1 + (byte/signed byte/word/signed word/dword/signed dword) 2 -- vbuz1=vbuz1_plus_2 lda c2A clc adc #2 sta c2A - //SEG85 [40] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_minus_vbuc1 + //SEG88 [43] (byte) c2B#3 ← (byte) c2B#1 - (byte/signed byte/word/signed word/dword/signed dword) 3 -- vbuz1=vbuz1_minus_vbuc1 lax c2B axs #3 stx c2B - //SEG86 [41] phi from doplasma::@4 to doplasma::@5 [phi:doplasma::@4->doplasma::@5] - //SEG87 [41] phi (byte) doplasma::i2#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@4->doplasma::@5#0] -- vbuxx=vbuc1 + //SEG89 [44] phi from doplasma::@4 to doplasma::@5 [phi:doplasma::@4->doplasma::@5] + //SEG90 [44] phi (byte) doplasma::i2#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:doplasma::@4->doplasma::@5#0] -- vbuxx=vbuc1 ldx #0 - //SEG88 [41] phi from doplasma::@7 to doplasma::@5 [phi:doplasma::@7->doplasma::@5] - //SEG89 [41] phi (byte) doplasma::i2#2 = (byte) doplasma::i2#1 [phi:doplasma::@7->doplasma::@5#0] -- register_copy - //SEG90 doplasma::@5 + //SEG91 [44] phi from doplasma::@7 to doplasma::@5 [phi:doplasma::@7->doplasma::@5] + //SEG92 [44] phi (byte) doplasma::i2#2 = (byte) doplasma::i2#1 [phi:doplasma::@7->doplasma::@5#0] -- register_copy + //SEG93 doplasma::@5 b5: - //SEG91 [42] (byte) doplasma::xval#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) -- vbuyy=pbuc1_derefidx_vbuxx - ldy xbuf,x - // Use experimental loop unrolling to increase the speed - //SEG92 doplasma::@6 - //SEG93 [43] (byte~) doplasma::$6 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG94 [45] (byte) doplasma::val#0 ← *((const byte[$28]) doplasma::xbuf#0 + (byte) doplasma::i2#2) + *((const byte[$19]) doplasma::ybuf#0) -- vbuaa=pbuc1_derefidx_vbuxx_plus__deref_pbuc2 + lda xbuf,x clc adc ybuf - //SEG94 [44] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte~) doplasma::$6 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG95 [46] *((const byte*) SCREEN1#0 + (byte) doplasma::i2#2) ← (byte) doplasma::val#0 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1,x - //SEG95 doplasma::@6_1 - //SEG96 [45] (byte~) doplasma::$11 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + // Calculate the next values as sums of diffs + // Use experimental loop unrolling to increase the speed + //SEG96 doplasma::@6 + //SEG97 [47] (byte) doplasma::val#1 ← (byte) doplasma::val#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 1) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+1 - //SEG97 [46] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$11 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG98 [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 1*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#1 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+1*$28,x - //SEG98 doplasma::@6_2 - //SEG99 [47] (byte~) doplasma::$14 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG99 doplasma::@6_1 + //SEG100 [49] (byte) doplasma::val#4 ← (byte) doplasma::val#1 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 2) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+2 - //SEG100 [48] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$14 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG101 [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 2*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#4 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+2*$28,x - //SEG101 doplasma::@6_3 - //SEG102 [49] (byte~) doplasma::$17 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG102 doplasma::@6_2 + //SEG103 [51] (byte) doplasma::val#6 ← (byte) doplasma::val#4 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 3) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+3 - //SEG103 [50] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$17 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG104 [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 3*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#6 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+3*$28,x - //SEG104 doplasma::@6_4 - //SEG105 [51] (byte~) doplasma::$20 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG105 doplasma::@6_3 + //SEG106 [53] (byte) doplasma::val#8 ← (byte) doplasma::val#6 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 4) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+4 - //SEG106 [52] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$20 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG107 [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 4*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#8 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+4*$28,x - //SEG107 doplasma::@6_5 - //SEG108 [53] (byte~) doplasma::$23 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG108 doplasma::@6_4 + //SEG109 [55] (byte) doplasma::val#10 ← (byte) doplasma::val#8 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 5) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+5 - //SEG109 [54] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$23 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG110 [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 5*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#10 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+5*$28,x - //SEG110 doplasma::@6_6 - //SEG111 [55] (byte~) doplasma::$26 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG111 doplasma::@6_5 + //SEG112 [57] (byte) doplasma::val#12 ← (byte) doplasma::val#10 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 6) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+6 - //SEG112 [56] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$26 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG113 [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 6*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#12 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+6*$28,x - //SEG113 doplasma::@6_7 - //SEG114 [57] (byte~) doplasma::$29 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG114 doplasma::@6_6 + //SEG115 [59] (byte) doplasma::val#14 ← (byte) doplasma::val#12 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 7) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+7 - //SEG115 [58] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$29 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG116 [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 7*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#14 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+7*$28,x - //SEG116 doplasma::@6_8 - //SEG117 [59] (byte~) doplasma::$32 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG117 doplasma::@6_7 + //SEG118 [61] (byte) doplasma::val#16 ← (byte) doplasma::val#14 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 8) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+8 - //SEG118 [60] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$32 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG119 [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 8*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#16 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+8*$28,x - //SEG119 doplasma::@6_9 - //SEG120 [61] (byte~) doplasma::$35 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG120 doplasma::@6_8 + //SEG121 [63] (byte) doplasma::val#18 ← (byte) doplasma::val#16 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) 9) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+9 - //SEG121 [62] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$35 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG122 [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) 9*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#18 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+9*$28,x - //SEG122 doplasma::@6_10 - //SEG123 [63] (byte~) doplasma::$38 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG123 doplasma::@6_9 + //SEG124 [65] (byte) doplasma::val#20 ← (byte) doplasma::val#18 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $a) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$a - //SEG124 [64] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$38 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG125 [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $a*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#20 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$a*$28,x - //SEG125 doplasma::@6_11 - //SEG126 [65] (byte~) doplasma::$41 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG126 doplasma::@6_10 + //SEG127 [67] (byte) doplasma::val#22 ← (byte) doplasma::val#20 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $b) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$b - //SEG127 [66] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$41 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG128 [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $b*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#22 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$b*$28,x - //SEG128 doplasma::@6_12 - //SEG129 [67] (byte~) doplasma::$44 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG129 doplasma::@6_11 + //SEG130 [69] (byte) doplasma::val#24 ← (byte) doplasma::val#22 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $c) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$c - //SEG130 [68] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$44 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG131 [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $c*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#24 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$c*$28,x - //SEG131 doplasma::@6_13 - //SEG132 [69] (byte~) doplasma::$47 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG132 doplasma::@6_12 + //SEG133 [71] (byte) doplasma::val#26 ← (byte) doplasma::val#24 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $d) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$d - //SEG133 [70] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$47 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG134 [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $d*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#26 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$d*$28,x - //SEG134 doplasma::@6_14 - //SEG135 [71] (byte~) doplasma::$50 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG135 doplasma::@6_13 + //SEG136 [73] (byte) doplasma::val#28 ← (byte) doplasma::val#26 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $e) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$e - //SEG136 [72] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$50 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG137 [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $e*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#28 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$e*$28,x - //SEG137 doplasma::@6_15 - //SEG138 [73] (byte~) doplasma::$53 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG138 doplasma::@6_14 + //SEG139 [75] (byte) doplasma::val#30 ← (byte) doplasma::val#28 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $f) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$f - //SEG139 [74] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$53 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG140 [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $f*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#30 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$f*$28,x - //SEG140 doplasma::@6_16 - //SEG141 [75] (byte~) doplasma::$56 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG141 doplasma::@6_15 + //SEG142 [77] (byte) doplasma::val#32 ← (byte) doplasma::val#30 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $10) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$10 - //SEG142 [76] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$56 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG143 [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $10*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#32 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$10*$28,x - //SEG143 doplasma::@6_17 - //SEG144 [77] (byte~) doplasma::$59 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG144 doplasma::@6_16 + //SEG145 [79] (byte) doplasma::val#34 ← (byte) doplasma::val#32 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $11) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$11 - //SEG145 [78] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$59 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG146 [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $11*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#34 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$11*$28,x - //SEG146 doplasma::@6_18 - //SEG147 [79] (byte~) doplasma::$62 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG147 doplasma::@6_17 + //SEG148 [81] (byte) doplasma::val#36 ← (byte) doplasma::val#34 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $12) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$12 - //SEG148 [80] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$62 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG149 [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $12*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#36 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$12*$28,x - //SEG149 doplasma::@6_19 - //SEG150 [81] (byte~) doplasma::$65 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG150 doplasma::@6_18 + //SEG151 [83] (byte) doplasma::val#38 ← (byte) doplasma::val#36 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $13) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$13 - //SEG151 [82] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$65 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG152 [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $13*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#38 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$13*$28,x - //SEG152 doplasma::@6_20 - //SEG153 [83] (byte~) doplasma::$68 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG153 doplasma::@6_19 + //SEG154 [85] (byte) doplasma::val#40 ← (byte) doplasma::val#38 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $14) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$14 - //SEG154 [84] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$68 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG155 [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $14*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#40 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$14*$28,x - //SEG155 doplasma::@6_21 - //SEG156 [85] (byte~) doplasma::$71 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG156 doplasma::@6_20 + //SEG157 [87] (byte) doplasma::val#42 ← (byte) doplasma::val#40 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $15) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$15 - //SEG157 [86] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$71 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG158 [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $15*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#42 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$15*$28,x - //SEG158 doplasma::@6_22 - //SEG159 [87] (byte~) doplasma::$74 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG159 doplasma::@6_21 + //SEG160 [89] (byte) doplasma::val#44 ← (byte) doplasma::val#42 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $16) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$16 - //SEG160 [88] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$74 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG161 [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $16*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#44 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$16*$28,x - //SEG161 doplasma::@6_23 - //SEG162 [89] (byte~) doplasma::$77 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG162 doplasma::@6_22 + //SEG163 [91] (byte) doplasma::val#46 ← (byte) doplasma::val#44 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $17) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$17 - //SEG163 [90] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$77 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG164 [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $17*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#46 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$17*$28,x - //SEG164 doplasma::@6_24 - //SEG165 [91] (byte~) doplasma::$80 ← (byte) doplasma::xval#0 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) -- vbuaa=vbuyy_plus__deref_pbuc1 - tya + //SEG165 doplasma::@6_23 + //SEG166 [93] (byte) doplasma::val#48 ← (byte) doplasma::val#46 + *((const byte[$19]) doplasma::ybuf#0+(byte/signed byte/word/signed word/dword/signed dword) $18) -- vbuaa=vbuaa_plus__deref_pbuc1 clc adc ybuf+$18 - //SEG166 [92] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte~) doplasma::$80 -- pbuc1_derefidx_vbuxx=vbuaa + //SEG167 [94] *((const byte*) SCREEN1#0+(byte/signed byte/word/signed word/dword/signed dword) $18*(byte/signed byte/word/signed word/dword/signed dword) $28 + (byte) doplasma::i2#2) ← (byte) doplasma::val#48 -- pbuc1_derefidx_vbuxx=vbuaa sta SCREEN1+$18*$28,x - //SEG167 doplasma::@7 - //SEG168 [93] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 -- vbuxx=_inc_vbuxx + //SEG168 doplasma::@7 + //SEG169 [95] (byte) doplasma::i2#1 ← ++ (byte) doplasma::i2#2 -- vbuxx=_inc_vbuxx inx - //SEG169 [94] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 -- vbuxx_lt_vbuc1_then_la1 + //SEG170 [96] if((byte) doplasma::i2#1<(byte/signed byte/word/signed word/dword/signed dword) $28) goto doplasma::@5 -- vbuxx_lt_vbuc1_then_la1 cpx #$28 bcs !b5+ jmp b5 !b5: - //SEG170 doplasma::@return - //SEG171 [95] return + //SEG171 doplasma::@return + //SEG172 [97] return rts xbuf: .fill $28, 0 ybuf: .fill $19, 0 } -//SEG172 makecharset +//SEG173 makecharset // Make a plasma-friendly charset where the chars are randomly filled makecharset: { .label _4 = 6 @@ -5976,80 +6022,80 @@ makecharset: { .label s = 5 .label i = 4 .label c = 2 - //SEG173 [97] call sid_rnd_init + //SEG174 [99] call sid_rnd_init jsr sid_rnd_init - //SEG174 [98] phi from makecharset to makecharset::@10 [phi:makecharset->makecharset::@10] - //SEG175 makecharset::@10 - //SEG176 [99] call print_cls - //SEG177 [132] phi from makecharset::@10 to print_cls [phi:makecharset::@10->print_cls] + //SEG175 [100] phi from makecharset to makecharset::@10 [phi:makecharset->makecharset::@10] + //SEG176 makecharset::@10 + //SEG177 [101] call print_cls + //SEG178 [134] phi from makecharset::@10 to print_cls [phi:makecharset::@10->print_cls] jsr print_cls - //SEG178 [100] phi from makecharset::@10 to makecharset::@1 [phi:makecharset::@10->makecharset::@1] - //SEG179 [100] phi (byte*) print_char_cursor#45 = (const byte*) print_line_cursor#0 [phi:makecharset::@10->makecharset::@1#0] -- pbuz1=pbuc1 + //SEG179 [102] phi from makecharset::@10 to makecharset::@1 [phi:makecharset::@10->makecharset::@1] + //SEG180 [102] phi (byte*) print_char_cursor#45 = (const byte*) print_line_cursor#0 [phi:makecharset::@10->makecharset::@1#0] -- pbuz1=pbuc1 lda #print_line_cursor sta print_char_cursor+1 - //SEG180 [100] phi (word) makecharset::c#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@10->makecharset::@1#1] -- vwuz1=vbuc1 + //SEG181 [102] phi (word) makecharset::c#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@10->makecharset::@1#1] -- vwuz1=vbuc1 lda #0 sta c sta c+1 - //SEG181 [100] phi from makecharset::@9 to makecharset::@1 [phi:makecharset::@9->makecharset::@1] - //SEG182 [100] phi (byte*) print_char_cursor#45 = (byte*) print_char_cursor#18 [phi:makecharset::@9->makecharset::@1#0] -- register_copy - //SEG183 [100] phi (word) makecharset::c#2 = (word) makecharset::c#1 [phi:makecharset::@9->makecharset::@1#1] -- register_copy - //SEG184 makecharset::@1 + //SEG182 [102] phi from makecharset::@9 to makecharset::@1 [phi:makecharset::@9->makecharset::@1] + //SEG183 [102] phi (byte*) print_char_cursor#45 = (byte*) print_char_cursor#18 [phi:makecharset::@9->makecharset::@1#0] -- register_copy + //SEG184 [102] phi (word) makecharset::c#2 = (word) makecharset::c#1 [phi:makecharset::@9->makecharset::@1#1] -- register_copy + //SEG185 makecharset::@1 b1: - //SEG185 [101] (byte~) makecharset::$2 ← < (word) makecharset::c#2 -- vbuaa=_lo_vwuz1 + //SEG186 [103] (byte~) makecharset::$2 ← < (word) makecharset::c#2 -- vbuaa=_lo_vwuz1 lda c - //SEG186 [102] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) -- vbuz1=pbuc1_derefidx_vbuaa + //SEG187 [104] (byte) makecharset::s#0 ← *((const byte*) SINTABLE#0 + (byte~) makecharset::$2) -- vbuz1=pbuc1_derefidx_vbuaa tay lda SINTABLE,y sta s - //SEG187 [103] phi from makecharset::@1 to makecharset::@2 [phi:makecharset::@1->makecharset::@2] - //SEG188 [103] phi (byte) makecharset::i#7 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@1->makecharset::@2#0] -- vbuz1=vbuc1 + //SEG188 [105] phi from makecharset::@1 to makecharset::@2 [phi:makecharset::@1->makecharset::@2] + //SEG189 [105] phi (byte) makecharset::i#7 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@1->makecharset::@2#0] -- vbuz1=vbuc1 lda #0 sta i - //SEG189 [103] phi from makecharset::@6 to makecharset::@2 [phi:makecharset::@6->makecharset::@2] - //SEG190 [103] phi (byte) makecharset::i#7 = (byte) makecharset::i#1 [phi:makecharset::@6->makecharset::@2#0] -- register_copy - //SEG191 makecharset::@2 + //SEG190 [105] phi from makecharset::@6 to makecharset::@2 [phi:makecharset::@6->makecharset::@2] + //SEG191 [105] phi (byte) makecharset::i#7 = (byte) makecharset::i#1 [phi:makecharset::@6->makecharset::@2#0] -- register_copy + //SEG192 makecharset::@2 b2: - //SEG192 [104] phi from makecharset::@2 to makecharset::@3 [phi:makecharset::@2->makecharset::@3] - //SEG193 [104] phi (byte) makecharset::b#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#0] -- vbuyy=vbuc1 + //SEG193 [106] phi from makecharset::@2 to makecharset::@3 [phi:makecharset::@2->makecharset::@3] + //SEG194 [106] phi (byte) makecharset::b#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#0] -- vbuyy=vbuc1 ldy #0 - //SEG194 [104] phi (byte) makecharset::ii#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#1] -- vbuxx=vbuc1 + //SEG195 [106] phi (byte) makecharset::ii#2 = (byte/signed byte/word/signed word/dword/signed dword) 0 [phi:makecharset::@2->makecharset::@3#1] -- vbuxx=vbuc1 ldx #0 - //SEG195 [104] phi from makecharset::@4 to makecharset::@3 [phi:makecharset::@4->makecharset::@3] - //SEG196 [104] phi (byte) makecharset::b#2 = (byte) makecharset::b#3 [phi:makecharset::@4->makecharset::@3#0] -- register_copy - //SEG197 [104] phi (byte) makecharset::ii#2 = (byte) makecharset::ii#1 [phi:makecharset::@4->makecharset::@3#1] -- register_copy - //SEG198 makecharset::@3 + //SEG196 [106] phi from makecharset::@4 to makecharset::@3 [phi:makecharset::@4->makecharset::@3] + //SEG197 [106] phi (byte) makecharset::b#2 = (byte) makecharset::b#3 [phi:makecharset::@4->makecharset::@3#0] -- register_copy + //SEG198 [106] phi (byte) makecharset::ii#2 = (byte) makecharset::ii#1 [phi:makecharset::@4->makecharset::@3#1] -- register_copy + //SEG199 makecharset::@3 b3: - //SEG199 [105] call sid_rnd + //SEG200 [107] call sid_rnd jsr sid_rnd - //SEG200 [106] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 - //SEG201 makecharset::@11 - //SEG202 [107] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 - //SEG203 [108] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff -- vbuz1=vbuaa_band_vbuc1 + //SEG201 [108] (byte) sid_rnd::return#2 ← (byte) sid_rnd::return#0 + //SEG202 makecharset::@11 + //SEG203 [109] (byte~) makecharset::$3 ← (byte) sid_rnd::return#2 + //SEG204 [110] (byte~) makecharset::$4 ← (byte~) makecharset::$3 & (byte/word/signed word/dword/signed dword) $ff -- vbuz1=vbuaa_band_vbuc1 and #$ff sta _4 - //SEG204 [109] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 -- vbuz1_le_vbuz2_then_la1 + //SEG205 [111] if((byte~) makecharset::$4<=(byte) makecharset::s#0) goto makecharset::@4 -- vbuz1_le_vbuz2_then_la1 lda s cmp _4 bcs b4 - //SEG205 makecharset::@5 - //SEG206 [110] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) -- vbuyy=vbuyy_bor_pbuc1_derefidx_vbuxx + //SEG206 makecharset::@5 + //SEG207 [112] (byte) makecharset::b#1 ← (byte) makecharset::b#2 | *((const byte[8]) makecharset::bittab#0 + (byte) makecharset::ii#2) -- vbuyy=vbuyy_bor_pbuc1_derefidx_vbuxx tya ora bittab,x tay - //SEG207 [111] phi from makecharset::@11 makecharset::@5 to makecharset::@4 [phi:makecharset::@11/makecharset::@5->makecharset::@4] - //SEG208 [111] phi (byte) makecharset::b#3 = (byte) makecharset::b#2 [phi:makecharset::@11/makecharset::@5->makecharset::@4#0] -- register_copy - //SEG209 makecharset::@4 + //SEG208 [113] phi from makecharset::@11 makecharset::@5 to makecharset::@4 [phi:makecharset::@11/makecharset::@5->makecharset::@4] + //SEG209 [113] phi (byte) makecharset::b#3 = (byte) makecharset::b#2 [phi:makecharset::@11/makecharset::@5->makecharset::@4#0] -- register_copy + //SEG210 makecharset::@4 b4: - //SEG210 [112] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 -- vbuxx=_inc_vbuxx + //SEG211 [114] (byte) makecharset::ii#1 ← ++ (byte) makecharset::ii#2 -- vbuxx=_inc_vbuxx inx - //SEG211 [113] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 -- vbuxx_lt_vbuc1_then_la1 + //SEG212 [115] if((byte) makecharset::ii#1<(byte/signed byte/word/signed word/dword/signed dword) 8) goto makecharset::@3 -- vbuxx_lt_vbuc1_then_la1 cpx #8 bcc b3 - //SEG212 makecharset::@6 - //SEG213 [114] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 -- vwuz1=vwuz2_rol_3 + //SEG213 makecharset::@6 + //SEG214 [116] (word~) makecharset::$8 ← (word) makecharset::c#2 << (byte/signed byte/word/signed word/dword/signed dword) 3 -- vwuz1=vwuz2_rol_3 lda c asl sta _8 @@ -6060,7 +6106,7 @@ makecharset: { rol _8+1 asl _8 rol _8+1 - //SEG214 [115] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 -- vwuz1=vwuz1_plus_vbuz2 + //SEG215 [117] (word~) makecharset::$9 ← (word~) makecharset::$8 + (byte) makecharset::i#7 -- vwuz1=vwuz1_plus_vbuz2 lda i clc adc _9 @@ -6068,7 +6114,7 @@ makecharset: { bcc !+ inc _9+1 !: - //SEG215 [116] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 -- pbuc1_derefidx_vwuz1=vbuyy + //SEG216 [118] *((const byte*) CHARSET#0 + (word~) makecharset::$9) ← (byte) makecharset::b#3 -- pbuc1_derefidx_vwuz1=vbuyy tya sta !v++1 lda #makecharset::@8] - //SEG222 makecharset::@8 - //SEG223 [122] call print_char + //SEG222 [123] phi from makecharset::@7 to makecharset::@8 [phi:makecharset::@7->makecharset::@8] + //SEG223 makecharset::@8 + //SEG224 [124] call print_char jsr print_char - //SEG224 [123] phi from makecharset::@7 makecharset::@8 to makecharset::@9 [phi:makecharset::@7/makecharset::@8->makecharset::@9] - //SEG225 [123] phi (byte*) print_char_cursor#18 = (byte*) print_char_cursor#45 [phi:makecharset::@7/makecharset::@8->makecharset::@9#0] -- register_copy - //SEG226 makecharset::@9 + //SEG225 [125] phi from makecharset::@7 makecharset::@8 to makecharset::@9 [phi:makecharset::@7/makecharset::@8->makecharset::@9] + //SEG226 [125] phi (byte*) print_char_cursor#18 = (byte*) print_char_cursor#45 [phi:makecharset::@7/makecharset::@8->makecharset::@9#0] -- register_copy + //SEG227 makecharset::@9 b9: - //SEG227 [124] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 -- vwuz1=_inc_vwuz1 + //SEG228 [126] (word) makecharset::c#1 ← ++ (word) makecharset::c#2 -- vwuz1=_inc_vwuz1 inc c bne !+ inc c+1 !: - //SEG228 [125] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 -- vwuz1_lt_vwuc1_then_la1 + //SEG229 [127] if((word) makecharset::c#1<(word/signed word/dword/signed dword) $100) goto makecharset::@1 -- vwuz1_lt_vwuc1_then_la1 lda c+1 cmp #>$100 bcc b1 @@ -6119,85 +6165,85 @@ makecharset: { jmp b1 !b1: !: - //SEG229 makecharset::@return - //SEG230 [126] return + //SEG230 makecharset::@return + //SEG231 [128] return rts bittab: .byte 1, 2, 4, 8, $10, $20, $40, $80 } -//SEG231 print_char +//SEG232 print_char // Print a single char print_char: { .const ch = '.' - //SEG232 [127] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 -- _deref_pbuz1=vbuc1 + //SEG233 [129] *((byte*) print_char_cursor#45) ← (const byte) print_char::ch#0 -- _deref_pbuz1=vbuc1 lda #ch ldy #0 sta (print_char_cursor),y - //SEG233 [128] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 -- pbuz1=_inc_pbuz1 + //SEG234 [130] (byte*) print_char_cursor#1 ← ++ (byte*) print_char_cursor#45 -- pbuz1=_inc_pbuz1 inc print_char_cursor bne !+ inc print_char_cursor+1 !: - //SEG234 print_char::@return - //SEG235 [129] return + //SEG235 print_char::@return + //SEG236 [131] return rts } -//SEG236 sid_rnd +//SEG237 sid_rnd // Get a random number from the SID voice 3, // Must be initialized with sid_rnd_init() sid_rnd: { - //SEG237 [130] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) -- vbuaa=_deref_pbuc1 + //SEG238 [132] (byte) sid_rnd::return#0 ← *((const byte*) SID_VOICE3_OSC#0) -- vbuaa=_deref_pbuc1 lda SID_VOICE3_OSC - //SEG238 sid_rnd::@return - //SEG239 [131] return + //SEG239 sid_rnd::@return + //SEG240 [133] return rts } -//SEG240 print_cls +//SEG241 print_cls // Clear the screen. Also resets current line/char cursor. print_cls: { .label sc = 2 - //SEG241 [133] phi from print_cls to print_cls::@1 [phi:print_cls->print_cls::@1] - //SEG242 [133] phi (byte*) print_cls::sc#2 = (const byte*) print_line_cursor#0 [phi:print_cls->print_cls::@1#0] -- pbuz1=pbuc1 + //SEG242 [135] phi from print_cls to print_cls::@1 [phi:print_cls->print_cls::@1] + //SEG243 [135] phi (byte*) print_cls::sc#2 = (const byte*) print_line_cursor#0 [phi:print_cls->print_cls::@1#0] -- pbuz1=pbuc1 lda #print_line_cursor sta sc+1 - //SEG243 [133] phi from print_cls::@1 to print_cls::@1 [phi:print_cls::@1->print_cls::@1] - //SEG244 [133] phi (byte*) print_cls::sc#2 = (byte*) print_cls::sc#1 [phi:print_cls::@1->print_cls::@1#0] -- register_copy - //SEG245 print_cls::@1 + //SEG244 [135] phi from print_cls::@1 to print_cls::@1 [phi:print_cls::@1->print_cls::@1] + //SEG245 [135] phi (byte*) print_cls::sc#2 = (byte*) print_cls::sc#1 [phi:print_cls::@1->print_cls::@1#0] -- register_copy + //SEG246 print_cls::@1 b1: - //SEG246 [134] *((byte*) print_cls::sc#2) ← (byte) ' ' -- _deref_pbuz1=vbuc1 + //SEG247 [136] *((byte*) print_cls::sc#2) ← (byte) ' ' -- _deref_pbuz1=vbuc1 lda #' ' ldy #0 sta (sc),y - //SEG247 [135] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 -- pbuz1=_inc_pbuz1 + //SEG248 [137] (byte*) print_cls::sc#1 ← ++ (byte*) print_cls::sc#2 -- pbuz1=_inc_pbuz1 inc sc bne !+ inc sc+1 !: - //SEG248 [136] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 -- pbuz1_neq_pbuc1_then_la1 + //SEG249 [138] if((byte*) print_cls::sc#1!=(const byte*) print_line_cursor#0+(word/signed word/dword/signed dword) $3e8) goto print_cls::@1 -- pbuz1_neq_pbuc1_then_la1 lda sc+1 cmp #>print_line_cursor+$3e8 bne b1 lda sc cmp #$ffff sta SID_VOICE3_FREQ+1 - //SEG253 [139] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 -- _deref_pbuc1=vbuc2 + //SEG254 [141] *((const byte*) SID_VOICE3_CONTROL#0) ← (const byte) SID_CONTROL_NOISE#0 -- _deref_pbuc1=vbuc2 lda #SID_CONTROL_NOISE sta SID_VOICE3_CONTROL - //SEG254 sid_rnd_init::@return - //SEG255 [140] return + //SEG255 sid_rnd_init::@return + //SEG256 [142] return rts } .pc = SINTABLE "SINTABLE" diff --git a/src/test/ref/examples/plasma/plasma-unroll.sym b/src/test/ref/examples/plasma/plasma-unroll.sym index 6873ccd55..6da6c88bb 100644 --- a/src/test/ref/examples/plasma/plasma-unroll.sym +++ b/src/test/ref/examples/plasma/plasma-unroll.sym @@ -111,45 +111,22 @@ (byte) WHITE (byte) YELLOW (byte) c1A -(byte) c1A#1 c1A zp ZP_BYTE:4 1.3636363636363638 -(byte) c1A#3 c1A zp ZP_BYTE:4 0.18840579710144925 +(byte) c1A#1 c1A zp ZP_BYTE:4 1.0714285714285714 +(byte) c1A#3 c1A zp ZP_BYTE:4 0.1911764705882353 (byte) c1B -(byte) c1B#1 c1B zp ZP_BYTE:5 1.25 -(byte) c1B#3 c1B zp ZP_BYTE:5 0.1911764705882353 +(byte) c1B#1 c1B zp ZP_BYTE:5 0.9999999999999999 +(byte) c1B#3 c1B zp ZP_BYTE:5 0.19402985074626866 (byte) c2A -(byte) c2A#1 c2A zp ZP_BYTE:6 0.6818181818181819 -(byte) c2A#3 c2A zp ZP_BYTE:6 0.22413793103448276 +(byte) c2A#1 c2A zp ZP_BYTE:6 0.6 +(byte) c2A#3 c2A zp ZP_BYTE:6 0.22807017543859648 (byte) c2B -(byte) c2B#1 c2B zp ZP_BYTE:7 0.6521739130434783 -(byte) c2B#3 c2B zp ZP_BYTE:7 0.22807017543859648 +(byte) c2B#1 c2B zp ZP_BYTE:7 0.5769230769230769 +(byte) c2B#3 c2B zp ZP_BYTE:7 0.23214285714285715 (void()) doplasma((byte*) doplasma::screen) -(byte~) doplasma::$0 reg byte a 202.0 -(byte~) doplasma::$11 reg byte a 202.0 -(byte~) doplasma::$14 reg byte a 202.0 -(byte~) doplasma::$17 reg byte a 202.0 -(byte~) doplasma::$2 reg byte a 202.0 -(byte~) doplasma::$20 reg byte a 202.0 -(byte~) doplasma::$23 reg byte a 202.0 -(byte~) doplasma::$26 reg byte a 202.0 -(byte~) doplasma::$29 reg byte a 202.0 -(byte~) doplasma::$32 reg byte a 202.0 -(byte~) doplasma::$35 reg byte a 202.0 -(byte~) doplasma::$38 reg byte a 202.0 -(byte~) doplasma::$41 reg byte a 202.0 -(byte~) doplasma::$44 reg byte a 202.0 -(byte~) doplasma::$47 reg byte a 202.0 -(byte~) doplasma::$50 reg byte a 202.0 -(byte~) doplasma::$53 reg byte a 202.0 -(byte~) doplasma::$56 reg byte a 202.0 -(byte~) doplasma::$59 reg byte a 202.0 -(byte~) doplasma::$6 reg byte a 202.0 -(byte~) doplasma::$62 reg byte a 202.0 -(byte~) doplasma::$65 reg byte a 202.0 -(byte~) doplasma::$68 reg byte a 202.0 -(byte~) doplasma::$71 reg byte a 202.0 -(byte~) doplasma::$74 reg byte a 202.0 -(byte~) doplasma::$77 reg byte a 202.0 -(byte~) doplasma::$80 reg byte a 202.0 +(byte~) doplasma::$0 reg byte a 4.0 +(byte~) doplasma::$1 reg byte a 202.0 +(byte~) doplasma::$3 reg byte a 202.0 +(byte~) doplasma::$5 reg byte a 202.0 (label) doplasma::@1 (label) doplasma::@2 (label) doplasma::@3 @@ -172,7 +149,6 @@ (label) doplasma::@6_21 (label) doplasma::@6_22 (label) doplasma::@6_23 -(label) doplasma::@6_24 (label) doplasma::@6_3 (label) doplasma::@6_4 (label) doplasma::@6_5 @@ -183,13 +159,13 @@ (label) doplasma::@7 (label) doplasma::@return (byte) doplasma::c1a -(byte) doplasma::c1a#0 c1a zp ZP_BYTE:8 2.0 -(byte) doplasma::c1a#1 c1a zp ZP_BYTE:8 50.5 -(byte) doplasma::c1a#2 c1a zp ZP_BYTE:8 101.66666666666666 +(byte) doplasma::c1a#0 c1a zp ZP_BYTE:8 1.5 +(byte) doplasma::c1a#1 c1a zp ZP_BYTE:8 43.285714285714285 +(byte) doplasma::c1a#2 c1a zp ZP_BYTE:8 204.0 (byte) doplasma::c1b -(byte) doplasma::c1b#0 c1b zp ZP_BYTE:9 4.0 -(byte) doplasma::c1b#1 c1b zp ZP_BYTE:9 67.33333333333333 -(byte) doplasma::c1b#2 c1b zp ZP_BYTE:9 76.25 +(byte) doplasma::c1b#0 c1b zp ZP_BYTE:9 2.0 +(byte) doplasma::c1b#1 c1b zp ZP_BYTE:9 50.5 +(byte) doplasma::c1b#2 c1b zp ZP_BYTE:9 102.0 (byte) doplasma::c2a (byte) doplasma::c2a#0 c2a zp ZP_BYTE:8 2.0 (byte) doplasma::c2a#1 c2a zp ZP_BYTE:8 50.5 @@ -200,19 +176,43 @@ (byte) doplasma::c2b#2 c2b zp ZP_BYTE:9 76.25 (byte) doplasma::i (byte) doplasma::i#1 i zp ZP_BYTE:10 151.5 -(byte) doplasma::i#2 i zp ZP_BYTE:10 60.599999999999994 +(byte) doplasma::i#2 i zp ZP_BYTE:10 67.33333333333333 (byte) doplasma::i1 (byte) doplasma::i1#1 i1 zp ZP_BYTE:10 151.5 (byte) doplasma::i1#2 i1 zp ZP_BYTE:10 60.599999999999994 (byte) doplasma::i2 (byte) doplasma::i2#1 reg byte x 151.5 -(byte) doplasma::i2#2 reg byte x 54.3846153846154 +(byte) doplasma::i2#2 reg byte x 55.45098039215691 (byte) doplasma::ii (byte*) doplasma::screen +(byte) doplasma::val +(byte) doplasma::val#0 reg byte a 151.5 +(byte) doplasma::val#1 reg byte a 151.5 +(byte) doplasma::val#10 reg byte a 151.5 +(byte) doplasma::val#12 reg byte a 151.5 +(byte) doplasma::val#14 reg byte a 151.5 +(byte) doplasma::val#16 reg byte a 151.5 +(byte) doplasma::val#18 reg byte a 151.5 +(byte) doplasma::val#20 reg byte a 151.5 +(byte) doplasma::val#22 reg byte a 151.5 +(byte) doplasma::val#24 reg byte a 151.5 +(byte) doplasma::val#26 reg byte a 151.5 +(byte) doplasma::val#28 reg byte a 151.5 +(byte) doplasma::val#30 reg byte a 151.5 +(byte) doplasma::val#32 reg byte a 151.5 +(byte) doplasma::val#34 reg byte a 151.5 +(byte) doplasma::val#36 reg byte a 151.5 +(byte) doplasma::val#38 reg byte a 151.5 +(byte) doplasma::val#4 reg byte a 151.5 +(byte) doplasma::val#40 reg byte a 151.5 +(byte) doplasma::val#42 reg byte a 151.5 +(byte) doplasma::val#44 reg byte a 151.5 +(byte) doplasma::val#46 reg byte a 151.5 +(byte) doplasma::val#48 reg byte a 202.0 +(byte) doplasma::val#6 reg byte a 151.5 +(byte) doplasma::val#8 reg byte a 151.5 (byte[$28]) doplasma::xbuf (const byte[$28]) doplasma::xbuf#0 xbuf = { fill( $28, 0) } -(byte) doplasma::xval -(byte) doplasma::xval#0 reg byte y 53.59183673469388 (byte[$19]) doplasma::ybuf (const byte[$19]) doplasma::ybuf#0 ybuf = { fill( $19, 0) } (void()) main() @@ -314,33 +314,34 @@ zp ZP_WORD:11 [ print_char_cursor#45 print_char_cursor#18 print_char_cursor#1 ] reg byte x [ makecharset::ii#2 makecharset::ii#1 ] reg byte y [ makecharset::b#2 makecharset::b#3 makecharset::b#1 ] reg byte a [ doplasma::$0 ] -reg byte a [ doplasma::$2 ] -reg byte y [ doplasma::xval#0 ] -reg byte a [ doplasma::$6 ] -reg byte a [ doplasma::$11 ] -reg byte a [ doplasma::$14 ] -reg byte a [ doplasma::$17 ] -reg byte a [ doplasma::$20 ] -reg byte a [ doplasma::$23 ] -reg byte a [ doplasma::$26 ] -reg byte a [ doplasma::$29 ] -reg byte a [ doplasma::$32 ] -reg byte a [ doplasma::$35 ] -reg byte a [ doplasma::$38 ] -reg byte a [ doplasma::$41 ] -reg byte a [ doplasma::$44 ] -reg byte a [ doplasma::$47 ] -reg byte a [ doplasma::$50 ] -reg byte a [ doplasma::$53 ] -reg byte a [ doplasma::$56 ] -reg byte a [ doplasma::$59 ] -reg byte a [ doplasma::$62 ] -reg byte a [ doplasma::$65 ] -reg byte a [ doplasma::$68 ] -reg byte a [ doplasma::$71 ] -reg byte a [ doplasma::$74 ] -reg byte a [ doplasma::$77 ] -reg byte a [ doplasma::$80 ] +reg byte a [ doplasma::$1 ] +reg byte a [ doplasma::$3 ] +reg byte a [ doplasma::$5 ] +reg byte a [ doplasma::val#0 ] +reg byte a [ doplasma::val#1 ] +reg byte a [ doplasma::val#4 ] +reg byte a [ doplasma::val#6 ] +reg byte a [ doplasma::val#8 ] +reg byte a [ doplasma::val#10 ] +reg byte a [ doplasma::val#12 ] +reg byte a [ doplasma::val#14 ] +reg byte a [ doplasma::val#16 ] +reg byte a [ doplasma::val#18 ] +reg byte a [ doplasma::val#20 ] +reg byte a [ doplasma::val#22 ] +reg byte a [ doplasma::val#24 ] +reg byte a [ doplasma::val#26 ] +reg byte a [ doplasma::val#28 ] +reg byte a [ doplasma::val#30 ] +reg byte a [ doplasma::val#32 ] +reg byte a [ doplasma::val#34 ] +reg byte a [ doplasma::val#36 ] +reg byte a [ doplasma::val#38 ] +reg byte a [ doplasma::val#40 ] +reg byte a [ doplasma::val#42 ] +reg byte a [ doplasma::val#44 ] +reg byte a [ doplasma::val#46 ] +reg byte a [ doplasma::val#48 ] reg byte a [ makecharset::$2 ] reg byte a [ sid_rnd::return#2 ] reg byte a [ makecharset::$3 ]