diff --git a/src/main/fragment/pwsc1_derefidx_vbuxx=vwsz1_plus_pwsc1_derefidx_vbuxx.asm b/src/main/fragment/pwsc1_derefidx_vbuxx=vwsz1_plus_pwsc1_derefidx_vbuxx.asm new file mode 100644 index 000000000..2755cd46c --- /dev/null +++ b/src/main/fragment/pwsc1_derefidx_vbuxx=vwsz1_plus_pwsc1_derefidx_vbuxx.asm @@ -0,0 +1,7 @@ +clc +lda {z1} +adc {c1},x +sta {c1},x +lda {z1}+1 +adc {c1}+1,x +sta {c1}+1,x diff --git a/src/main/fragment/pwsc1_derefidx_vbuyy=vwsz1_plus_pwsc1_derefidx_vbuyy.asm b/src/main/fragment/pwsc1_derefidx_vbuyy=vwsz1_plus_pwsc1_derefidx_vbuyy.asm new file mode 100644 index 000000000..493991b7d --- /dev/null +++ b/src/main/fragment/pwsc1_derefidx_vbuyy=vwsz1_plus_pwsc1_derefidx_vbuyy.asm @@ -0,0 +1,7 @@ +clc +lda {z1} +adc {c1},y +sta {c1},y +lda {z1}+1 +adc {c1}+1,y +sta {c1}+1,y diff --git a/src/main/fragment/vbuaa=_hi_pwsc1_derefidx_vbuxx.asm b/src/main/fragment/vbuaa=_hi_pwsc1_derefidx_vbuxx.asm new file mode 100644 index 000000000..66ef35236 --- /dev/null +++ b/src/main/fragment/vbuaa=_hi_pwsc1_derefidx_vbuxx.asm @@ -0,0 +1 @@ +lda {c1}+1,x \ No newline at end of file diff --git a/src/main/fragment/vbuaa=_hi_pwsc1_derefidx_vbuyy.asm b/src/main/fragment/vbuaa=_hi_pwsc1_derefidx_vbuyy.asm new file mode 100644 index 000000000..5c24499d4 --- /dev/null +++ b/src/main/fragment/vbuaa=_hi_pwsc1_derefidx_vbuyy.asm @@ -0,0 +1 @@ +lda {c1}+1,y \ No newline at end of file diff --git a/src/main/fragment/vwsz1=_sword_vdsz2.asm b/src/main/fragment/vwsz1=_sword_vdsz2.asm new file mode 100644 index 000000000..113613e13 --- /dev/null +++ b/src/main/fragment/vwsz1=_sword_vdsz2.asm @@ -0,0 +1,4 @@ +lda {z2} +sta {z1} +lda {z2}+1 +sta {z1}+1 \ No newline at end of file diff --git a/src/main/fragment/vwsz1=_sword_vwuz1.asm b/src/main/fragment/vwsz1=_sword_vwuz1.asm deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/main/fragment/vwsz1=pwsc1_derefidx_vbuxx_rol_1.asm b/src/main/fragment/vwsz1=pwsc1_derefidx_vbuxx_rol_1.asm new file mode 100644 index 000000000..e9feb8031 --- /dev/null +++ b/src/main/fragment/vwsz1=pwsc1_derefidx_vbuxx_rol_1.asm @@ -0,0 +1,8 @@ +clc +lda {c1},x +asl +sta {z1} +lda {c1}+1,x +rol +sta {z1}+1 + diff --git a/src/main/fragment/vwsz1=pwsc1_derefidx_vbuyy_rol_1.asm b/src/main/fragment/vwsz1=pwsc1_derefidx_vbuyy_rol_1.asm new file mode 100644 index 000000000..d124a2226 --- /dev/null +++ b/src/main/fragment/vwsz1=pwsc1_derefidx_vbuyy_rol_1.asm @@ -0,0 +1,8 @@ +clc +lda {c1},y +asl +sta {z1} +lda {c1}+1,y +rol +sta {z1}+1 + diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index 9c38ce72e..25e29af0b 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -75,8 +75,8 @@ public class TestPrograms { @Test - public void testSplines() throws IOException, URISyntaxException { - compileAndCompare("complex/splines/simple-splines"); + public void testTrueTypeSplines() throws IOException, URISyntaxException { + compileAndCompare("complex/splines/truetype-splines"); } @Test diff --git a/src/test/kc/complex/splines/simple-splines.kc b/src/test/kc/complex/splines/truetype-splines.kc similarity index 57% rename from src/test/kc/complex/splines/simple-splines.kc rename to src/test/kc/complex/splines/truetype-splines.kc index f25693a0d..2d6dc2c27 100644 --- a/src/test/kc/complex/splines/simple-splines.kc +++ b/src/test/kc/complex/splines/truetype-splines.kc @@ -4,6 +4,7 @@ import "splines" import "bitmap2" import "time" import "print" +import "fastmultiply" import "c64" const char* PRINT_SCREEN = 0x0400; @@ -17,7 +18,7 @@ struct Segment { }; // True type letter c -struct Segment[21] letter_c; +struct Segment[22] letter_c; void main() { letter_c[0] = { MOVE_TO, {108,146}, {0,0} }; @@ -43,30 +44,56 @@ void main() { letter_c[20] = { SPLINE_TO, {104,144}, {98,160} }; letter_c[21] = { LINE_TO, {108,146}, {0,0} }; + mulf_init(); bitmap_init(BITMAP_GRAPHICS, BITMAP_SCREEN); bitmap_clear(BLACK, WHITE); vicSelectGfxBank(BITMAP_SCREEN); *D018 = toD018(BITMAP_SCREEN, BITMAP_GRAPHICS); *D011 = VIC_BMM|VIC_DEN|VIC_RSEL|3; + char angle = 0; + while(true) { + bitmap_clear(BLACK, WHITE); + show_letter(angle); + for ( byte w: 0..60) { + do {} while(*RASTER!=0xfe); + do {} while(*RASTER!=0xff); + } + angle += 9; + } + + while(true) { (*(PRINT_SCREEN+999))++; } +} + +void show_letter(char angle) { struct SplineVector16 current = {0,0}; - for( byte i: 0..sizeof(letter_c)/sizeof(struct Segment)) { - struct Segment segment = letter_c[i]; + for( byte i: 0..21) { + struct SplineVector16 to = { letter_c[i].to.x, letter_c[i].to.y }; + to = { to.x - 50, to.y - 150}; + to = rotate(to, angle); + to = { to.x + 100, to.y + 100}; + struct SplineVector16 via = { letter_c[i].via.x, letter_c[i].via.y }; + via = { via.x - 50, via.y - 150}; + via = rotate(via, angle); + via = { via.x + 100, via.y + 100}; + struct Segment segment = { letter_c[i].type, to, via}; if(segment.type==MOVE_TO) { + //bitmap_plot((unsigned int)segment.to.x, (unsigned char)segment.to.y); current = segment.to; } else if(segment.type==SPLINE_TO) { spline_8segB(current, segment.via, segment.to); bitmap_plot_spline_8seg(); + //bitmap_plot((unsigned int)segment.to.x, (unsigned char)segment.to.y); + //bitmap_plot((unsigned int)segment.via.x, (unsigned char)segment.via.y); current = segment.to; } else { bitmap_line((unsigned int)current.x, (unsigned int)current.y, (unsigned int)segment.to.x, (unsigned int)segment.to.y); current = segment.to; } } - - while(true) { (*(PRINT_SCREEN+999))++; } } + // Plot the spline in the SPLINE_8SEG array void bitmap_plot_spline_8seg() { struct SplineVector16 current = SPLINE_8SEG[0]; @@ -76,3 +103,25 @@ void bitmap_plot_spline_8seg() { current = SPLINE_8SEG[n]; } } + +// Sine and Cosine tables +// Angles: $00=0, $80=PI,$100=2*PI +// Sine/Cosine: signed fixed [-$7f,$7f] +signed char[0x140] align(0x40) SIN = kickasm {{ + .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) +}}; + +signed char* COS = SIN+$40; // sin(x) = cos(x+PI/2) + +// 2D-rotate a vector by an angle +struct SplineVector16 rotate(struct SplineVector16 vector, char angle) { + signed int cos_a = (signed int) COS[angle]; // signed fixed[0.7] + signed int xr = (signed int )mulf16s(cos_a, vector.x)*2; // signed fixed[8.8] + signed int yr = (signed int )mulf16s(cos_a, vector.y)*2; // signed fixed[8.8] + signed int sin_a = (signed int) SIN[angle]; // signed fixed[0.7] + xr -= (signed int)mulf16s(sin_a, vector.y)*2; // signed fixed[8.8] + yr += (signed int)mulf16s(sin_a, vector.x)*2; // signed fixed[8.8] + struct SplineVector16 rotated = { (signed int)(signed char)>xr, (signed int)(signed char)>yr }; + return rotated; +} diff --git a/src/test/kc/examples/rotate/rotate.kc b/src/test/kc/examples/rotate/rotate.kc index 48f28dc28..3ef721522 100644 --- a/src/test/kc/examples/rotate/rotate.kc +++ b/src/test/kc/examples/rotate/rotate.kc @@ -2,25 +2,20 @@ import "c64" import "fastmultiply" +import "time" +import "print" byte* SCREEN = $0400; // Sine and Cosine tables // Angles: $00=0, $80=PI,$100=2*PI // Sine/Cosine: signed fixed [-$7f,$7f] -byte[0x140] align(0x40) COS = kickasm {{ - { - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } +byte[0x140] align(0x40) SIN = kickasm {{ + .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) }}; -byte* SIN = COS+$40; // sin(x) = cos(x+PI/2) +byte* COS = SIN+$40; // sin(x) = cos(x+PI/2) void main() { asm { sei } @@ -46,11 +41,12 @@ void anim() { byte angle = 0; while(true) { while(*RASTER!=$ff) {} - (*BORDERCOL)++; + (*BORDERCOL)++; + clock_start(); signed byte cos_a = (signed byte) COS[angle]; // signed fixed[0.7] signed byte sin_a = (signed byte) SIN[angle]; // signed fixed[0.7] byte sprite_msb = 0; - for(byte i: 0..7) { + for(byte i: 0..7) { signed byte x = xs[i]; // signed fixed[7.0] signed byte y = ys[i]; // signed fixed[7.0] mulf8s_prepare(cos_a); @@ -64,13 +60,17 @@ void anim() { if(>xpos!=0) { sprite_msb |= $80; } - byte ypos = (>yr) + 89 /*center*/+ 51 /*border*/; + byte ypos = (>yr) + 89 /*center*/+ 51 /*border*/; byte i2 = i*2; SPRITES_XPOS[i2] = BITMAP_SCREEN)/$40 + .const toD0181_return = (>(BITMAP_SCREEN&$3fff)*4)|(>BITMAP_GRAPHICS)/4&$f + .label angle = 2 + lda #MOVE_TO + sta letter_c + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + lda #SPLINE_TO + sta letter_c+1*SIZEOF_STRUCT_SEGMENT + lda #<$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT + lda #>$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT+1 + lda #<$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT+1 + lda #<$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+2*SIZEOF_STRUCT_SEGMENT + lda #<$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT + lda #>$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT+1 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + lda #<$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT + lda #>$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT+1 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+3*SIZEOF_STRUCT_SEGMENT + lda #<$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT + lda #>$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT+1 + lda #<$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + lda #<$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT + lda #>$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT+1 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+4*SIZEOF_STRUCT_SEGMENT + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT+1 + lda #<$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT+1 + lda #<$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+5*SIZEOF_STRUCT_SEGMENT + lda #<$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT + lda #>$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT+1 + lda #<$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT+1 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+6*SIZEOF_STRUCT_SEGMENT + lda #<$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT + lda #>$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT+1 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + lda #<$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT + lda #>$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT+1 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+7*SIZEOF_STRUCT_SEGMENT + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT+1 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT+1 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+8*SIZEOF_STRUCT_SEGMENT + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT+1 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT+1 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+9*SIZEOF_STRUCT_SEGMENT + lda #<$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT + lda #>$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT+1 + lda #<$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT+1 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$a*SIZEOF_STRUCT_SEGMENT + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT+1 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT+1 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$b*SIZEOF_STRUCT_SEGMENT + lda #<$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT + lda #>$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT+1 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + lda #<$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT + lda #>$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT+1 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$c*SIZEOF_STRUCT_SEGMENT + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT+1 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT+1 + lda #<$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$d*SIZEOF_STRUCT_SEGMENT + lda #<$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT + lda #>$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT+1 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT+1 + lda #<$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$e*SIZEOF_STRUCT_SEGMENT + lda #<$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT + lda #>$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT+1 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT+1 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$f*SIZEOF_STRUCT_SEGMENT + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT+1 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + lda #<$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT + lda #>$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT+1 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$10*SIZEOF_STRUCT_SEGMENT + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT+1 + lda #<$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT+1 + lda #<$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$11*SIZEOF_STRUCT_SEGMENT + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT+1 + lda #<$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT+1 + lda #<$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$12*SIZEOF_STRUCT_SEGMENT + lda #<$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT + lda #>$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT+1 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + lda #<$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT + lda #>$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT+1 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$13*SIZEOF_STRUCT_SEGMENT + lda #<$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT + lda #>$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT+1 + lda #<$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + lda #<$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT + lda #>$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT+1 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + lda #SPLINE_TO + sta letter_c+$14*SIZEOF_STRUCT_SEGMENT + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT+1 + lda #<$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT+1 + lda #<$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + lda #LINE_TO + sta letter_c+$15*SIZEOF_STRUCT_SEGMENT + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT+1 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT+1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + jsr mulf_init + jsr bitmap_init + jsr bitmap_clear + lda #3 + sta CIA2_PORT_A_DDR + lda #vicSelectGfxBank1_toDd001_return + sta CIA2_PORT_A + lda #toD0181_return + sta D018 + lda #VIC_BMM|VIC_DEN|VIC_RSEL|3 + sta D011 + lda #0 + sta angle + b2: + jsr bitmap_clear + jsr show_letter + ldx #0 + b3: + lda #$fe + cmp RASTER + bne b3 + b4: + lda #$ff + cmp RASTER + bne b4 + inx + cpx #$3d + bne b3 + lax angle + axs #-[9] + stx angle + jmp b2 +} +// show_letter(byte zeropage(2) angle) +show_letter: { + .label angle = 2 + .label to_x = $1b + .label to_y = $1d + .label to_x_2 = $17 + .label to_y_2 = $19 + .label via_x = $1b + .label via_y = $1d + .label via_x_2 = $17 + .label via_y_2 = $19 + .label segment_via_x = $17 + .label segment_via_y = $19 + .label i = 3 + .label current_x = 4 + .label current_y = 6 + .label current_x_10 = $39 + .label current_y_10 = $3b + lda #<0 + sta current_y + sta current_y+1 + sta current_x + sta current_x+1 + sta i + b1: + lda i + asl + asl + asl + clc + adc i + tax + lda letter_c+OFFSET_STRUCT_SEGMENT_TO,x + sta to_x + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+1,x + sta to_x+1 + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta to_y + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta to_y+1 + lda to_x + sec + sbc #$32 + sta to_x + lda to_x+1 + sbc #>$32 + sta to_x+1 + lda to_y + sec + sbc #<$96 + sta to_y + lda to_y+1 + sbc #>$96 + sta to_y+1 + ldy angle + jsr rotate + lda to_x_2 + clc + adc #<$64 + sta current_x_10 + lda to_x_2+1 + adc #>$64 + sta current_x_10+1 + lda to_y_2 + clc + adc #<$64 + sta current_y_10 + lda to_y_2+1 + adc #>$64 + sta current_y_10+1 + lda i + asl + asl + asl + clc + adc i + tax + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA,x + sta via_x + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+1,x + sta via_x+1 + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta via_y + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta via_y+1 + lda via_x + sec + sbc #$32 + sta via_x + lda via_x+1 + sbc #>$32 + sta via_x+1 + lda via_y + sec + sbc #<$96 + sta via_y + lda via_y+1 + sbc #>$96 + sta via_y+1 + ldy angle + jsr rotate + lda segment_via_x + clc + adc #<$64 + sta segment_via_x + lda segment_via_x+1 + adc #>$64 + sta segment_via_x+1 + lda segment_via_y + clc + adc #<$64 + sta segment_via_y + lda segment_via_y+1 + adc #>$64 + sta segment_via_y+1 + lda i + asl + asl + asl + clc + adc i + tay + lda letter_c,y + cmp #MOVE_TO + beq b3 + cmp #SPLINE_TO + beq b2 + lda current_x_10 + sta bitmap_line.x2 + lda current_x_10+1 + sta bitmap_line.x2+1 + lda current_y_10 + sta bitmap_line.y2 + lda current_y_10+1 + sta bitmap_line.y2+1 + jsr bitmap_line + b3: + inc i + lda #$16 + cmp i + bne b9 + rts + b9: + lda current_x_10 + sta current_x + lda current_x_10+1 + sta current_x+1 + lda current_y_10 + sta current_y + lda current_y_10+1 + sta current_y+1 + jmp b1 + b2: + jsr spline_8segB + jsr bitmap_plot_spline_8seg + jmp b3 +} +// Plot the spline in the SPLINE_8SEG array +bitmap_plot_spline_8seg: { + .label current_x = 4 + .label current_y = 6 + .label n = 8 + lda SPLINE_8SEG + sta current_x + lda SPLINE_8SEG+1 + sta current_x+1 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + sta current_y+1 + lda #1 + sta n + b1: + lda n + asl + asl + tax + lda SPLINE_8SEG,x + sta bitmap_line.x2 + lda SPLINE_8SEG+1,x + sta bitmap_line.x2+1 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta bitmap_line.y2 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta bitmap_line.y2+1 + jsr bitmap_line + lda n + asl + asl + tax + lda SPLINE_8SEG,x + sta current_x + lda SPLINE_8SEG+1,x + sta current_x+1 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta current_y+1 + inc n + lda #9 + cmp n + bne b1 + rts +} +// Draw a line on the bitmap using bresenhams algorithm +// bitmap_line(word zeropage(4) x1, word zeropage(6) y1, word zeropage(9) x2, word zeropage($b) y2) +bitmap_line: { + .label x = 4 + .label y = 6 + .label dx = $3d + .label dy = $15 + .label sx = $3f + .label sy = $13 + .label e1 = $f + .label e = $d + .label x1 = 4 + .label y1 = 6 + .label x2 = 9 + .label y2 = $b + lda x2 + sec + sbc x + sta abs_u16.w + lda x2+1 + sbc x+1 + sta abs_u16.w+1 + jsr abs_u16 + lda abs_u16.return + sta dx + lda abs_u16.return+1 + sta dx+1 + lda y2 + sec + sbc y + sta abs_u16.w + lda y2+1 + sbc y+1 + sta abs_u16.w+1 + jsr abs_u16 + lda dx + bne b1 + lda dx+1 + bne b1 + lda dy + bne !+ + lda dy+1 + bne !b4+ + jmp b4 + !b4: + !: + b1: + lda x2 + sec + sbc x + sta sgn_u16.w + lda x2+1 + sbc x+1 + sta sgn_u16.w+1 + jsr sgn_u16 + lda sgn_u16.return + sta sx + lda sgn_u16.return+1 + sta sx+1 + lda y2 + sec + sbc y + sta sgn_u16.w + lda y2+1 + sbc y+1 + sta sgn_u16.w+1 + jsr sgn_u16 + lda dy+1 + cmp dx+1 + bcc b2 + bne !+ + lda dy + cmp dx + bcc b2 + !: + lda dx+1 + lsr + sta e+1 + lda dx + ror + sta e + b6: + lda y + tax + jsr bitmap_plot + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + lda e + clc + adc dx + sta e + lda e+1 + adc dx+1 + sta e+1 + cmp dy+1 + bne !+ + lda e + cmp dy + beq b7 + !: + bcc b7 + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + lda e + sec + sbc dy + sta e + lda e+1 + sbc dy+1 + sta e+1 + b7: + lda y+1 + cmp y2+1 + bne b6 + lda y + cmp y2 + bne b6 + b3: + lda y + tax + jsr bitmap_plot + rts + b2: + lda dy+1 + lsr + sta e1+1 + lda dy + ror + sta e1 + b9: + lda y + tax + jsr bitmap_plot + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + lda e1 + clc + adc dy + sta e1 + lda e1+1 + adc dy+1 + sta e1+1 + cmp dx+1 + bne !+ + lda e1 + cmp dx + beq b10 + !: + bcc b10 + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + lda e1 + sec + sbc dx + sta e1 + lda e1+1 + sbc dx+1 + sta e1+1 + b10: + lda x+1 + cmp x2+1 + bne b9 + lda x + cmp x2 + bne b9 + jmp b3 + b4: + lda y + tax + jsr bitmap_plot + rts +} +// Plot a single dot in the bitmap +// bitmap_plot(word zeropage(4) x, byte register(X) y) +bitmap_plot: { + .label _1 = $43 + .label plotter = $41 + .label x = 4 + lda bitmap_plot_yhi,x + sta plotter+1 + lda bitmap_plot_ylo,x + sta plotter + lda x + and #<$fff8 + sta _1 + lda x+1 + and #>$fff8 + sta _1+1 + lda plotter + clc + adc _1 + sta plotter + lda plotter+1 + adc _1+1 + sta plotter+1 + lda x + tay + lda bitmap_plot_bit,y + ldy #0 + ora (plotter),y + sta (plotter),y + rts +} +// Get the sign of a 16-bit unsigned number treated as a signed number. +// Returns unsigned -1 if the number is +// sgn_u16(word zeropage($11) w) +sgn_u16: { + .label w = $11 + .label return = $13 + lda w+1 + and #$80 + cmp #0 + bne b1 + lda #<1 + sta return + lda #>1 + sta return+1 + rts + b1: + lda #<-1 + sta return + lda #>-1 + sta return+1 + rts +} +// Get the absolute value of a 16-bit unsigned number treated as a signed number. +// abs_u16(word zeropage($15) w) +abs_u16: { + .label w = $15 + .label return = $15 + lda w+1 + and #$80 + cmp #0 + bne b1 + rts + b1: + sec + lda #0 + sbc return + sta return + lda #0 + sbc return+1 + sta return+1 + rts +} +// Generate a 8-segment quadratic spline using 16-bit fixed point 1/64-format math (6 decimal bits). +// The resulting spline segment points are returned in SPLINE_8SEG[] +// Point values must be within [-200 ; 1ff] for the calculation to not overflow. +// A quadratic spline is a curve defined by 3 points: P0, P1 and P2. +// The curve connects P0 to P2 through a smooth curve that moves towards P1, but does usually not touch it. +// spline_8segB(signed word zeropage(4) p0_x, signed word zeropage(6) p0_y, signed word zeropage($17) p1_x, signed word zeropage($19) p1_y, signed word zeropage($39) p2_x, signed word zeropage($3b) p2_y) +spline_8segB: { + .label _0 = $45 + .label _1 = $45 + .label _3 = $47 + .label _4 = $47 + .label _6 = $17 + .label _8 = $19 + .label _10 = $17 + .label _12 = $19 + .label _18 = 4 + .label _19 = 4 + .label _20 = 6 + .label _21 = 6 + .label _22 = $49 + .label _23 = $49 + .label _24 = $4b + .label _25 = $4b + .label a_x = $45 + .label a_y = $47 + .label b_x = $17 + .label b_y = $19 + .label i_x = $17 + .label i_y = $19 + .label j_x = $45 + .label j_y = $47 + .label p_x = 4 + .label p_y = 6 + .label p0_x = 4 + .label p0_y = 6 + .label p1_x = $17 + .label p1_y = $19 + .label p2_x = $39 + .label p2_y = $3b + lda p1_x + asl + sta _0 + lda p1_x+1 + rol + sta _0+1 + lda p2_x + sec + sbc _1 + sta _1 + lda p2_x+1 + sbc _1+1 + sta _1+1 + lda a_x + clc + adc p0_x + sta a_x + lda a_x+1 + adc p0_x+1 + sta a_x+1 + lda p1_y + asl + sta _3 + lda p1_y+1 + rol + sta _3+1 + lda p2_y + sec + sbc _4 + sta _4 + lda p2_y+1 + sbc _4+1 + sta _4+1 + lda a_y + clc + adc p0_y + sta a_y + lda a_y+1 + adc p0_y+1 + sta a_y+1 + lda _6 + sec + sbc p0_x + sta _6 + lda _6+1 + sbc p0_x+1 + sta _6+1 + asl b_x + rol b_x+1 + lda _8 + sec + sbc p0_y + sta _8 + lda _8+1 + sbc p0_y+1 + sta _8+1 + asl b_y + rol b_y+1 + asl _10 + rol _10+1 + asl _10 + rol _10+1 + asl _10 + rol _10+1 + lda i_x + clc + adc a_x + sta i_x + lda i_x+1 + adc a_x+1 + sta i_x+1 + asl _12 + rol _12+1 + asl _12 + rol _12+1 + asl _12 + rol _12+1 + lda i_y + clc + adc a_y + sta i_y + lda i_y+1 + adc a_y+1 + sta i_y+1 + asl j_x + rol j_x+1 + asl j_y + rol j_y+1 + lda p_x+1 + sta $ff + lda p_x + sta p_x+1 + lda #0 + sta p_x + lsr $ff + ror p_x+1 + ror p_x + lsr $ff + ror p_x+1 + ror p_x + lda p_y+1 + sta $ff + lda p_y + sta p_y+1 + lda #0 + sta p_y + lsr $ff + ror p_y+1 + ror p_y + lsr $ff + ror p_y+1 + ror p_y + tay + b1: + lda p_x + clc + adc #<$20 + sta _22 + lda p_x+1 + adc #>$20 + sta _22+1 + lda _23 + sta $ff + lda _23+1 + sta _23 + lda #0 + bit _23+1 + bpl !+ + lda #$ff + !: + sta _23+1 + rol $ff + rol _23 + rol _23+1 + rol $ff + rol _23 + rol _23+1 + lda p_y + clc + adc #<$20 + sta _24 + lda p_y+1 + adc #>$20 + sta _24+1 + lda _25 + sta $ff + lda _25+1 + sta _25 + lda #0 + bit _25+1 + bpl !+ + lda #$ff + !: + sta _25+1 + rol $ff + rol _25 + rol _25+1 + rol $ff + rol _25 + rol _25+1 + tya + asl + asl + tax + lda _23 + sta SPLINE_8SEG,x + lda _23+1 + sta SPLINE_8SEG+1,x + lda _25 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + lda _25+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + lda p_x + clc + adc i_x + sta p_x + lda p_x+1 + adc i_x+1 + sta p_x+1 + lda p_y + clc + adc i_y + sta p_y + lda p_y+1 + adc i_y+1 + sta p_y+1 + lda i_x + clc + adc j_x + sta i_x + lda i_x+1 + adc j_x+1 + sta i_x+1 + lda i_y + clc + adc j_y + sta i_y + lda i_y+1 + adc j_y+1 + sta i_y+1 + iny + cpy #8 + beq !b1+ + jmp b1 + !b1: + lda _18 + clc + adc #<$20 + sta _18 + lda _18+1 + adc #>$20 + sta _18+1 + lda _19 + sta $ff + lda _19+1 + sta _19 + lda #0 + bit _19+1 + bpl !+ + lda #$ff + !: + sta _19+1 + rol $ff + rol _19 + rol _19+1 + rol $ff + rol _19 + rol _19+1 + lda _20 + clc + adc #<$20 + sta _20 + lda _20+1 + adc #>$20 + sta _20+1 + lda _21 + sta $ff + lda _21+1 + sta _21 + lda #0 + bit _21+1 + bpl !+ + lda #$ff + !: + sta _21+1 + rol $ff + rol _21 + rol _21+1 + rol $ff + rol _21 + rol _21+1 + lda _19 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _19+1 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + lda _21 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _21+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + rts +} +// 2D-rotate a vector by an angle +// rotate(signed word zeropage($1b) vector_x, signed word zeropage($1d) vector_y, byte register(Y) angle) +rotate: { + .label _1 = $23 + .label _2 = $4d + .label _4 = $23 + .label _5 = $4f + .label _8 = $23 + .label _9 = $51 + .label _10 = $51 + .label _11 = $23 + .label _12 = $53 + .label _13 = $53 + .label vector_x = $1b + .label vector_y = $1d + .label return_x = $17 + .label return_y = $19 + .label cos_a = $1f + .label xr = $4d + .label yr = $4f + .label sin_a = $1f + lda COS,y + sta cos_a + ora #$7f + bmi !+ + lda #0 + !: + sta cos_a+1 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + jsr mulf16s + lda _1 + sta _2 + lda _1+1 + sta _2+1 + asl xr + rol xr+1 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + jsr mulf16s + lda _4 + sta _5 + lda _4+1 + sta _5+1 + asl yr + rol yr+1 + lda SIN,y + sta sin_a + ora #$7f + bmi !+ + lda #0 + !: + sta sin_a+1 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + jsr mulf16s + lda _8 + sta _9 + lda _8+1 + sta _9+1 + asl _10 + rol _10+1 + // signed fixed[0.7] + lda xr + sec + sbc _10 + sta xr + lda xr+1 + sbc _10+1 + sta xr+1 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + jsr mulf16s + lda _11 + sta _12 + lda _11+1 + sta _12+1 + asl _13 + rol _13+1 + // signed fixed[8.8] + lda yr + clc + adc _13 + sta yr + lda yr+1 + adc _13+1 + sta yr+1 + lda xr+1 + sta return_x + ora #$7f + bmi !+ + lda #0 + !: + sta return_x+1 + lda yr+1 + sta return_y + ora #$7f + bmi !+ + lda #0 + !: + sta return_y+1 + rts +} +// Fast multiply two signed words to a signed double word result +// Fixes offsets introduced by using unsigned multiplication +// mulf16s(signed word zeropage($1f) a, signed word zeropage($21) b) +mulf16s: { + .label _9 = $59 + .label _13 = $5b + .label _16 = $59 + .label _17 = $5b + .label m = $23 + .label return = $23 + .label a = $1f + .label b = $21 + lda a + sta mulf16u.a + lda a+1 + sta mulf16u.a+1 + lda b + sta mulf16u.b + lda b+1 + sta mulf16u.b+1 + jsr mulf16u + lda a+1 + bpl b1 + lda m+2 + sta _9 + lda m+3 + sta _9+1 + lda _16 + sec + sbc b + sta _16 + lda _16+1 + sbc b+1 + sta _16+1 + lda _16 + sta m+2 + lda _16+1 + sta m+3 + b1: + lda b+1 + bpl b2 + lda m+2 + sta _13 + lda m+3 + sta _13+1 + lda _17 + sec + sbc a + sta _17 + lda _17+1 + sbc a+1 + sta _17+1 + lda _17 + sta m+2 + lda _17+1 + sta m+3 + b2: + rts +} +// Fast multiply two unsigned words to a double word result +// Done in assembler to utilize fast addition A+X +// mulf16u(word zeropage($55) a, word zeropage($57) b) +mulf16u: { + .label memA = $f8 + .label memB = $fa + .label memR = $fc + .label return = $23 + .label a = $55 + .label b = $57 + lda a + sta memA + lda a+1 + sta memA+1 + lda b + sta memB + lda b+1 + sta memB+1 + lda memA + sta sm1a+1 + sta sm3a+1 + sta sm5a+1 + sta sm7a+1 + eor #$ff + sta sm2a+1 + sta sm4a+1 + sta sm6a+1 + sta sm8a+1 + lda memA+1 + sta sm1b+1 + sta sm3b+1 + sta sm5b+1 + sta sm7b+1 + eor #$ff + sta sm2b+1 + sta sm4b+1 + sta sm6b+1 + sta sm8b+1 + ldx memB + sec + sm1a: + lda mulf_sqr1_lo,x + sm2a: + sbc mulf_sqr2_lo,x + sta memR+0 + sm3a: + lda mulf_sqr1_hi,x + sm4a: + sbc mulf_sqr2_hi,x + sta _AA+1 + sec + sm1b: + lda mulf_sqr1_lo,x + sm2b: + sbc mulf_sqr2_lo,x + sta _cc+1 + sm3b: + lda mulf_sqr1_hi,x + sm4b: + sbc mulf_sqr2_hi,x + sta _CC+1 + ldx memB+1 + sec + sm5a: + lda mulf_sqr1_lo,x + sm6a: + sbc mulf_sqr2_lo,x + sta _bb+1 + sm7a: + lda mulf_sqr1_hi,x + sm8a: + sbc mulf_sqr2_hi,x + sta _BB+1 + sec + sm5b: + lda mulf_sqr1_lo,x + sm6b: + sbc mulf_sqr2_lo,x + sta _dd+1 + sm7b: + lda mulf_sqr1_hi,x + sm8b: + sbc mulf_sqr2_hi,x + sta memR+3 + clc + _AA: + lda #0 + _bb: + adc #0 + sta memR+1 + _BB: + lda #0 + _CC: + adc #0 + sta memR+2 + bcc !+ + inc memR+3 + clc + !: + _cc: + lda #0 + adc memR+1 + sta memR+1 + _dd: + lda #0 + adc memR+2 + sta memR+2 + bcc !+ + inc memR+3 + !: + lda memR + sta return + lda memR+1 + sta return+1 + lda memR+2 + sta return+2 + lda memR+3 + sta return+3 + rts +} +// Clear all graphics on the bitmap +// bgcol - the background color to fill the screen with +// fgcol - the foreground color to fill the screen with +bitmap_clear: { + .const col = WHITE<<4 + ldx #col + lda #BITMAP_SCREEN + sta memset.str+1 + lda #<$3e8 + sta memset.num + lda #>$3e8 + sta memset.num+1 + jsr memset + ldx #0 + lda #BITMAP_GRAPHICS + sta memset.str+1 + lda #<$1f40 + sta memset.num + lda #>$1f40 + sta memset.num+1 + jsr memset + rts +} +// Copies the character c (an unsigned char) to the first num characters of the object pointed to by the argument str. +// memset(void* zeropage($29) str, byte register(X) c, word zeropage($27) num) +memset: { + .label end = $27 + .label dst = $29 + .label num = $27 + .label str = $29 + lda num + bne !+ + lda num+1 + beq breturn + !: + lda end + clc + adc str + sta end + lda end+1 + adc str+1 + sta end+1 + b2: + txa + ldy #0 + sta (dst),y + inc dst + bne !+ + inc dst+1 + !: + lda dst+1 + cmp end+1 + bne b2 + lda dst + cmp end + bne b2 + breturn: + rts +} +// Initialize bitmap plotting tables +bitmap_init: { + .label _7 = $5d + .label yoffs = $2b + ldx #0 + lda #$80 + b1: + sta bitmap_plot_bit,x + lsr + cmp #0 + bne b2 + lda #$80 + b2: + inx + cpx #0 + bne b1 + lda #BITMAP_GRAPHICS + sta yoffs+1 + ldx #0 + b3: + lda #7 + sax _7 + lda yoffs + ora _7 + sta bitmap_plot_ylo,x + lda yoffs+1 + sta bitmap_plot_yhi,x + lda #7 + cmp _7 + bne b4 + clc + lda yoffs + adc #<$28*8 + sta yoffs + lda yoffs+1 + adc #>$28*8 + sta yoffs+1 + b4: + inx + cpx #0 + bne b3 + rts +} +// Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) +mulf_init: { + .label sqr1_hi = $2f + .label sqr = $32 + .label sqr1_lo = $2d + .label x_2 = $31 + .label sqr2_hi = $36 + .label sqr2_lo = $34 + .label dir = $38 + lda #0 + sta x_2 + lda #mulf_sqr1_hi+1 + sta sqr1_hi+1 + lda #mulf_sqr1_lo+1 + sta sqr1_lo+1 + lda #<0 + sta sqr + sta sqr+1 + tax + b1: + inx + txa + and #1 + cmp #0 + bne b2 + inc x_2 + inc sqr + bne !+ + inc sqr+1 + !: + b2: + lda sqr + ldy #0 + sta (sqr1_lo),y + lda sqr+1 + sta (sqr1_hi),y + inc sqr1_hi + bne !+ + inc sqr1_hi+1 + !: + lda x_2 + clc + adc sqr + sta sqr + bcc !+ + inc sqr+1 + !: + inc sqr1_lo + bne !+ + inc sqr1_lo+1 + !: + lda sqr1_lo+1 + cmp #>mulf_sqr1_lo+$200 + bne b1 + lda sqr1_lo + cmp #mulf_sqr2_hi + sta sqr2_hi+1 + lda #mulf_sqr2_lo + sta sqr2_lo+1 + ldx #-1 + b4: + lda mulf_sqr1_lo,x + ldy #0 + sta (sqr2_lo),y + lda mulf_sqr1_hi,x + sta (sqr2_hi),y + inc sqr2_hi + bne !+ + inc sqr2_hi+1 + !: + txa + clc + adc dir + tax + cpx #0 + bne b5 + lda #1 + sta dir + b5: + inc sqr2_lo + bne !+ + inc sqr2_lo+1 + !: + lda sqr2_lo+1 + cmp #>mulf_sqr2_lo+$1ff + bne b4 + lda sqr2_lo + cmp #f(x) = >(( x * x )/4) + .align $100 + mulf_sqr1_hi: .fill $200, 0 + // g(x) = >((( x - 255) * ( x - 255 ))/4) + .align $100 + mulf_sqr2_hi: .fill $200, 0 + // True type letter c + letter_c: .fill 9*$16, 0 + // Sine and Cosine tables + // Angles: $00=0, $80=PI,$100=2*PI + // Sine/Cosine: signed fixed [-$7f,$7f] + .align $40 +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + diff --git a/src/test/ref/complex/splines/truetype-splines.cfg b/src/test/ref/complex/splines/truetype-splines.cfg new file mode 100644 index 000000000..6180ae8c7 --- /dev/null +++ b/src/test/ref/complex/splines/truetype-splines.cfg @@ -0,0 +1,688 @@ +@begin: scope:[] from + [0] phi() + to:@1 +@1: scope:[] from @begin + [1] phi() + [2] call main + to:@end +@end: scope:[] from @1 + [3] phi() +main: scope:[main] from @1 + [4] *((byte*)(const struct Segment[$16]) letter_c#0) ← (const byte) MOVE_TO + [5] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO) ← (signed byte) $6c + [6] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed word) $92 + [7] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA) ← (signed byte) 0 + [8] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed byte) 0 + [9] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [10] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $59 + [11] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b6 + [12] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 + [13] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a9 + [14] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [15] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3b + [16] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 + [17] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4b + [18] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 + [19] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [20] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $17 + [21] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b2 + [22] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $26 + [23] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 + [24] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [25] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 + [26] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $84 + [27] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 + [28] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a1 + [29] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [30] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $19 + [31] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $57 + [32] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 + [33] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 + [34] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [35] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $41 + [36] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [37] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $2a + [38] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [39] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [40] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d + [41] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f + [42] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 + [43] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [44] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [45] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 + [46] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 + [47] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 + [48] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 + [49] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [50] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $66 + [51] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6a + [52] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 + [53] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 + [54] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [55] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d + [56] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d + [57] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 + [58] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d + [59] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [60] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $51 + [61] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 + [62] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $55 + [63] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d + [64] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [65] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [66] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d + [67] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f + [68] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $65 + [69] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [70] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $49 + [71] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 + [72] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [73] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $56 + [74] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [75] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3d + [76] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [77] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [78] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [79] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [80] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 + [81] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 + [82] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $30 + [83] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [84] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [85] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d + [86] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $79 + [87] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d + [88] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $64 + [89] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [90] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 + [91] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $9e + [92] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d + [93] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $8e + [94] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [95] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $44 + [96] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae + [97] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $32 + [98] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae + [99] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [100] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5b + [101] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a6 + [102] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $50 + [103] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae + [104] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [105] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 + [106] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $90 + [107] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 + [108] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a0 + [109] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) LINE_TO + [110] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6c + [111] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $92 + [112] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 + [113] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 + [114] call mulf_init + to:main::@8 +main::@8: scope:[main] from main + [115] phi() + [116] call bitmap_init + to:main::@9 +main::@9: scope:[main] from main::@8 + [117] phi() + [118] call bitmap_clear + to:main::vicSelectGfxBank1 +main::vicSelectGfxBank1: scope:[main] from main::@9 + [119] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte) 3 + to:main::vicSelectGfxBank1_toDd001 +main::vicSelectGfxBank1_toDd001: scope:[main] from main::vicSelectGfxBank1 + [120] phi() + to:main::vicSelectGfxBank1_@1 +main::vicSelectGfxBank1_@1: scope:[main] from main::vicSelectGfxBank1_toDd001 + [121] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 + to:main::toD0181 +main::toD0181: scope:[main] from main::vicSelectGfxBank1_@1 + [122] phi() + to:main::@7 +main::@7: scope:[main] from main::toD0181 + [123] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 + [124] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 + to:main::@1 +main::@1: scope:[main] from main::@6 main::@7 + [125] (byte) main::angle#2 ← phi( main::@7/(byte) 0 main::@6/(byte) main::angle#1 ) + to:main::@2 +main::@2: scope:[main] from main::@1 + [126] phi() + [127] call bitmap_clear + to:main::@10 +main::@10: scope:[main] from main::@2 + [128] (byte) show_letter::angle#0 ← (byte) main::angle#2 + [129] call show_letter + to:main::@3 +main::@3: scope:[main] from main::@10 main::@3 main::@5 + [130] (byte) main::w#4 ← phi( main::@10/(byte) 0 main::@5/(byte) main::w#1 ) + [131] if(*((const byte*) RASTER#0)!=(byte) $fe) goto main::@3 + to:main::@4 +main::@4: scope:[main] from main::@3 main::@4 + [132] if(*((const byte*) RASTER#0)!=(byte) $ff) goto main::@4 + to:main::@5 +main::@5: scope:[main] from main::@4 + [133] (byte) main::w#1 ← ++ (byte) main::w#4 + [134] if((byte) main::w#1!=(byte) $3d) goto main::@3 + to:main::@6 +main::@6: scope:[main] from main::@5 + [135] (byte) main::angle#1 ← (byte) main::angle#2 + (byte) 9 + to:main::@1 +show_letter: scope:[show_letter] from main::@10 + [136] phi() + to:show_letter::@1 +show_letter::@1: scope:[show_letter] from show_letter show_letter::@9 + [137] (signed word) show_letter::current_y#4 ← phi( show_letter/(signed byte) 0 show_letter::@9/(signed word~) show_letter::current_y#11 ) + [137] (signed word) show_letter::current_x#4 ← phi( show_letter/(signed byte) 0 show_letter::@9/(signed word~) show_letter::current_x#11 ) + [137] (byte) show_letter::i#10 ← phi( show_letter/(byte) 0 show_letter::@9/(byte) show_letter::i#1 ) + [138] (byte) show_letter::$32 ← (byte) show_letter::i#10 << (byte) 3 + [139] (byte~) show_letter::$20 ← (byte) show_letter::$32 + (byte) show_letter::i#10 + [140] (signed word) show_letter::to_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO + (byte~) show_letter::$20) + [141] (signed word) show_letter::to_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$20) + [142] (signed word) show_letter::to_x#1 ← (signed word) show_letter::to_x#0 - (signed byte) $32 + [143] (signed word) show_letter::to_y#1 ← (signed word) show_letter::to_y#0 - (signed word) $96 + [144] (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 + [145] (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 + [146] (byte) rotate::angle#0 ← (byte) show_letter::angle#0 + [147] call rotate + [148] (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#2 + [149] (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#2 + to:show_letter::@6 +show_letter::@6: scope:[show_letter] from show_letter::@1 + [150] (signed word) show_letter::to_x#2 ← (signed word) rotate::return_x#0 + [151] (signed word) show_letter::to_y#2 ← (signed word) rotate::return_y#0 + [152] (signed word) show_letter::current_x#10 ← (signed word) show_letter::to_x#2 + (signed byte) $64 + [153] (signed word) show_letter::current_y#10 ← (signed word) show_letter::to_y#2 + (signed byte) $64 + [154] (byte) show_letter::$34 ← (byte) show_letter::i#10 << (byte) 3 + [155] (byte~) show_letter::$21 ← (byte) show_letter::$34 + (byte) show_letter::i#10 + [156] (signed word) show_letter::via_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA + (byte~) show_letter::$21) + [157] (signed word) show_letter::via_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$21) + [158] (signed word) show_letter::via_x#1 ← (signed word) show_letter::via_x#0 - (signed byte) $32 + [159] (signed word) show_letter::via_y#1 ← (signed word) show_letter::via_y#0 - (signed word) $96 + [160] (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 + [161] (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 + [162] (byte) rotate::angle#1 ← (byte) show_letter::angle#0 + [163] call rotate + [164] (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#2 + [165] (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#2 + to:show_letter::@7 +show_letter::@7: scope:[show_letter] from show_letter::@6 + [166] (signed word) show_letter::via_x#2 ← (signed word) rotate::return_x#1 + [167] (signed word) show_letter::via_y#2 ← (signed word) rotate::return_y#1 + [168] (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#2 + (signed byte) $64 + [169] (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#2 + (signed byte) $64 + [170] (byte) show_letter::$36 ← (byte) show_letter::i#10 << (byte) 3 + [171] (byte~) show_letter::$22 ← (byte) show_letter::$36 + (byte) show_letter::i#10 + [172] (byte) show_letter::segment_type#0 ← *((byte*)(const struct Segment[$16]) letter_c#0 + (byte~) show_letter::$22) + [173] if((byte) show_letter::segment_type#0==(const byte) MOVE_TO) goto show_letter::@3 + to:show_letter::@4 +show_letter::@4: scope:[show_letter] from show_letter::@7 + [174] if((byte) show_letter::segment_type#0==(const byte) SPLINE_TO) goto show_letter::@2 + to:show_letter::@5 +show_letter::@5: scope:[show_letter] from show_letter::@4 + [175] (word) bitmap_line::x1#0 ← (word)(signed word) show_letter::current_x#4 + [176] (word) bitmap_line::y1#0 ← (word)(signed word) show_letter::current_y#4 + [177] (word) bitmap_line::x2#0 ← (word)(signed word) show_letter::current_x#10 + [178] (word) bitmap_line::y2#0 ← (word)(signed word) show_letter::current_y#10 + [179] call bitmap_line + to:show_letter::@3 +show_letter::@3: scope:[show_letter] from show_letter::@5 show_letter::@7 show_letter::@8 + [180] (byte) show_letter::i#1 ← ++ (byte) show_letter::i#10 + [181] if((byte) show_letter::i#1!=(byte) $16) goto show_letter::@9 + to:show_letter::@return +show_letter::@return: scope:[show_letter] from show_letter::@3 + [182] return + to:@return +show_letter::@9: scope:[show_letter] from show_letter::@3 + [183] (signed word~) show_letter::current_x#11 ← (signed word) show_letter::current_x#10 + [184] (signed word~) show_letter::current_y#11 ← (signed word) show_letter::current_y#10 + to:show_letter::@1 +show_letter::@2: scope:[show_letter] from show_letter::@4 + [185] (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 + [186] (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 + [187] (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#0 + [188] (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#0 + [189] (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::current_x#10 + [190] (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::current_y#10 + [191] call spline_8segB + to:show_letter::@8 +show_letter::@8: scope:[show_letter] from show_letter::@2 + [192] phi() + [193] call bitmap_plot_spline_8seg + to:show_letter::@3 +bitmap_plot_spline_8seg: scope:[bitmap_plot_spline_8seg] from show_letter::@8 + [194] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0) + [195] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) + to:bitmap_plot_spline_8seg::@1 +bitmap_plot_spline_8seg::@1: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg bitmap_plot_spline_8seg::@2 + [196] (byte) bitmap_plot_spline_8seg::n#2 ← phi( bitmap_plot_spline_8seg/(byte) 1 bitmap_plot_spline_8seg::@2/(byte) bitmap_plot_spline_8seg::n#1 ) + [196] (signed word) bitmap_plot_spline_8seg::current_y#2 ← phi( bitmap_plot_spline_8seg/(signed word) bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::@2/(signed word) bitmap_plot_spline_8seg::current_y#1 ) + [196] (signed word) bitmap_plot_spline_8seg::current_x#2 ← phi( bitmap_plot_spline_8seg/(signed word) bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::@2/(signed word) bitmap_plot_spline_8seg::current_x#1 ) + [197] (word) bitmap_line::x1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 + [198] (word) bitmap_line::y1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 + [199] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 + [200] (word~) bitmap_line::x2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$8) + [201] (word~) bitmap_line::y2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$8) + [202] call bitmap_line + to:bitmap_plot_spline_8seg::@2 +bitmap_plot_spline_8seg::@2: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg::@1 + [203] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 + [204] (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$9) + [205] (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$9) + [206] (byte) bitmap_plot_spline_8seg::n#1 ← ++ (byte) bitmap_plot_spline_8seg::n#2 + [207] if((byte) bitmap_plot_spline_8seg::n#1!=(byte) 9) goto bitmap_plot_spline_8seg::@1 + to:bitmap_plot_spline_8seg::@return +bitmap_plot_spline_8seg::@return: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg::@2 + [208] return + to:@return +bitmap_line: scope:[bitmap_line] from bitmap_plot_spline_8seg::@1 show_letter::@5 + [209] (word) bitmap_line::y2#11 ← phi( bitmap_plot_spline_8seg::@1/(word~) bitmap_line::y2#13 show_letter::@5/(word) bitmap_line::y2#0 ) + [209] (word) bitmap_line::x2#10 ← phi( bitmap_plot_spline_8seg::@1/(word~) bitmap_line::x2#13 show_letter::@5/(word) bitmap_line::x2#0 ) + [209] (word) bitmap_line::y#0 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::y1#1 show_letter::@5/(word) bitmap_line::y1#0 ) + [209] (word) bitmap_line::x#0 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::x1#1 show_letter::@5/(word) bitmap_line::x1#0 ) + [210] (word) abs_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 + [211] call abs_u16 + [212] (word) abs_u16::return#0 ← (word) abs_u16::return#4 + to:bitmap_line::@12 +bitmap_line::@12: scope:[bitmap_line] from bitmap_line + [213] (word) bitmap_line::dx#0 ← (word) abs_u16::return#0 + [214] (word) abs_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 + [215] call abs_u16 + [216] (word) abs_u16::return#1 ← (word) abs_u16::return#4 + to:bitmap_line::@13 +bitmap_line::@13: scope:[bitmap_line] from bitmap_line::@12 + [217] (word) bitmap_line::dy#0 ← (word) abs_u16::return#1 + [218] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 + to:bitmap_line::@18 +bitmap_line::@18: scope:[bitmap_line] from bitmap_line::@13 + [219] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 + to:bitmap_line::@1 +bitmap_line::@1: scope:[bitmap_line] from bitmap_line::@13 bitmap_line::@18 + [220] (word) sgn_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 + [221] call sgn_u16 + [222] (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 + to:bitmap_line::@14 +bitmap_line::@14: scope:[bitmap_line] from bitmap_line::@1 + [223] (word) bitmap_line::sx#0 ← (word) sgn_u16::return#0 + [224] (word) sgn_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 + [225] call sgn_u16 + [226] (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 + to:bitmap_line::@15 +bitmap_line::@15: scope:[bitmap_line] from bitmap_line::@14 + [227] (word) bitmap_line::sy#0 ← (word) sgn_u16::return#1 + [228] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 + to:bitmap_line::@5 +bitmap_line::@5: scope:[bitmap_line] from bitmap_line::@15 + [229] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 >> (byte) 1 + to:bitmap_line::@6 +bitmap_line::@6: scope:[bitmap_line] from bitmap_line::@5 bitmap_line::@7 + [230] (word) bitmap_line::e#3 ← phi( bitmap_line::@5/(word) bitmap_line::e#0 bitmap_line::@7/(word) bitmap_line::e#6 ) + [230] (word) bitmap_line::x#13 ← phi( bitmap_line::@5/(word) bitmap_line::x#0 bitmap_line::@7/(word) bitmap_line::x#12 ) + [230] (word) bitmap_line::y#4 ← phi( bitmap_line::@5/(word) bitmap_line::y#0 bitmap_line::@7/(word) bitmap_line::y#1 ) + [231] (byte) bitmap_plot::y#1 ← (byte)(word) bitmap_line::y#4 + [232] (word) bitmap_plot::x#1 ← (word) bitmap_line::x#13 + [233] call bitmap_plot + to:bitmap_line::@16 +bitmap_line::@16: scope:[bitmap_line] from bitmap_line::@6 + [234] (word) bitmap_line::y#1 ← (word) bitmap_line::y#4 + (word) bitmap_line::sy#0 + [235] (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#0 + [236] if((word) bitmap_line::dy#0>=(word) bitmap_line::e#1) goto bitmap_line::@7 + to:bitmap_line::@8 +bitmap_line::@8: scope:[bitmap_line] from bitmap_line::@16 + [237] (word) bitmap_line::x#1 ← (word) bitmap_line::x#13 + (word) bitmap_line::sx#0 + [238] (word) bitmap_line::e#2 ← (word) bitmap_line::e#1 - (word) bitmap_line::dy#0 + to:bitmap_line::@7 +bitmap_line::@7: scope:[bitmap_line] from bitmap_line::@16 bitmap_line::@8 + [239] (word) bitmap_line::e#6 ← phi( bitmap_line::@16/(word) bitmap_line::e#1 bitmap_line::@8/(word) bitmap_line::e#2 ) + [239] (word) bitmap_line::x#12 ← phi( bitmap_line::@16/(word) bitmap_line::x#13 bitmap_line::@8/(word) bitmap_line::x#1 ) + [240] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@6 + to:bitmap_line::@3 +bitmap_line::@3: scope:[bitmap_line] from bitmap_line::@10 bitmap_line::@7 + [241] (word) bitmap_line::x#6 ← phi( bitmap_line::@10/(word) bitmap_line::x#15 bitmap_line::@7/(word) bitmap_line::x#12 ) + [241] (word) bitmap_line::y#7 ← phi( bitmap_line::@10/(word) bitmap_line::y#13 bitmap_line::@7/(word) bitmap_line::y#1 ) + [242] (byte) bitmap_plot::y#2 ← (byte)(word) bitmap_line::y#7 + [243] (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 + [244] call bitmap_plot + to:bitmap_line::@return +bitmap_line::@return: scope:[bitmap_line] from bitmap_line::@3 bitmap_line::@4 + [245] return + to:@return +bitmap_line::@2: scope:[bitmap_line] from bitmap_line::@15 + [246] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 >> (byte) 1 + to:bitmap_line::@9 +bitmap_line::@9: scope:[bitmap_line] from bitmap_line::@10 bitmap_line::@2 + [247] (word) bitmap_line::e1#3 ← phi( bitmap_line::@10/(word) bitmap_line::e1#6 bitmap_line::@2/(word) bitmap_line::e1#0 ) + [247] (word) bitmap_line::x#7 ← phi( bitmap_line::@10/(word) bitmap_line::x#15 bitmap_line::@2/(word) bitmap_line::x#0 ) + [247] (word) bitmap_line::y#15 ← phi( bitmap_line::@10/(word) bitmap_line::y#13 bitmap_line::@2/(word) bitmap_line::y#0 ) + [248] (byte) bitmap_plot::y#3 ← (byte)(word) bitmap_line::y#15 + [249] (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 + [250] call bitmap_plot + to:bitmap_line::@17 +bitmap_line::@17: scope:[bitmap_line] from bitmap_line::@9 + [251] (word) bitmap_line::x#15 ← (word) bitmap_line::x#7 + (word) bitmap_line::sx#0 + [252] (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#0 + [253] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@10 + to:bitmap_line::@11 +bitmap_line::@11: scope:[bitmap_line] from bitmap_line::@17 + [254] (word) bitmap_line::y#2 ← (word) bitmap_line::y#15 + (word) bitmap_line::sy#0 + [255] (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#1 - (word) bitmap_line::dx#0 + to:bitmap_line::@10 +bitmap_line::@10: scope:[bitmap_line] from bitmap_line::@11 bitmap_line::@17 + [256] (word) bitmap_line::e1#6 ← phi( bitmap_line::@11/(word) bitmap_line::e1#2 bitmap_line::@17/(word) bitmap_line::e1#1 ) + [256] (word) bitmap_line::y#13 ← phi( bitmap_line::@11/(word) bitmap_line::y#2 bitmap_line::@17/(word) bitmap_line::y#15 ) + [257] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@9 + to:bitmap_line::@3 +bitmap_line::@4: scope:[bitmap_line] from bitmap_line::@18 + [258] (byte) bitmap_plot::y#0 ← (byte)(word) bitmap_line::y#0 + [259] (word) bitmap_plot::x#0 ← (word) bitmap_line::x#0 + [260] call bitmap_plot + to:bitmap_line::@return +bitmap_plot: scope:[bitmap_plot] from bitmap_line::@3 bitmap_line::@4 bitmap_line::@6 bitmap_line::@9 + [261] (word) bitmap_plot::x#4 ← phi( bitmap_line::@9/(word) bitmap_plot::x#3 bitmap_line::@3/(word) bitmap_plot::x#2 bitmap_line::@4/(word) bitmap_plot::x#0 bitmap_line::@6/(word) bitmap_plot::x#1 ) + [261] (byte) bitmap_plot::y#4 ← phi( bitmap_line::@9/(byte) bitmap_plot::y#3 bitmap_line::@3/(byte) bitmap_plot::y#2 bitmap_line::@4/(byte) bitmap_plot::y#0 bitmap_line::@6/(byte) bitmap_plot::y#1 ) + [262] (word) bitmap_plot::plotter#0 ← *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) w= *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) + [263] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 + [264] (byte*) bitmap_plot::plotter#1 ← (byte*)(word) bitmap_plot::plotter#0 + (word~) bitmap_plot::$1 + [265] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#4 + [266] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[$100]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) + to:bitmap_plot::@return +bitmap_plot::@return: scope:[bitmap_plot] from bitmap_plot + [267] return + to:@return +sgn_u16: scope:[sgn_u16] from bitmap_line::@1 bitmap_line::@14 + [268] (word) sgn_u16::w#2 ← phi( bitmap_line::@1/(word) sgn_u16::w#0 bitmap_line::@14/(word) sgn_u16::w#1 ) + [269] (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 + [270] (byte~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (byte) $80 + [271] if((byte) 0!=(byte~) sgn_u16::$1) goto sgn_u16::@1 + to:sgn_u16::@return +sgn_u16::@1: scope:[sgn_u16] from sgn_u16 + [272] phi() + to:sgn_u16::@return +sgn_u16::@return: scope:[sgn_u16] from sgn_u16 sgn_u16::@1 + [273] (word) sgn_u16::return#4 ← phi( sgn_u16::@1/(byte) -1 sgn_u16/(byte) 1 ) + [274] return + to:@return +abs_u16: scope:[abs_u16] from bitmap_line bitmap_line::@12 + [275] (word) abs_u16::w#2 ← phi( bitmap_line/(word) abs_u16::w#0 bitmap_line::@12/(word) abs_u16::w#1 ) + [276] (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 + [277] (byte~) abs_u16::$1 ← (byte~) abs_u16::$0 & (byte) $80 + [278] if((byte) 0!=(byte~) abs_u16::$1) goto abs_u16::@1 + to:abs_u16::@return +abs_u16::@1: scope:[abs_u16] from abs_u16 + [279] (word) abs_u16::return#2 ← - (word) abs_u16::w#2 + to:abs_u16::@return +abs_u16::@return: scope:[abs_u16] from abs_u16 abs_u16::@1 + [280] (word) abs_u16::return#4 ← phi( abs_u16::@1/(word) abs_u16::return#2 abs_u16/(word) abs_u16::w#2 ) + [281] return + to:@return +spline_8segB: scope:[spline_8segB] from show_letter::@2 + [282] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 << (byte) 1 + [283] (signed word~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#0 - (signed word~) spline_8segB::$0 + [284] (signed word) spline_8segB::a_x#0 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#0 + [285] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 << (byte) 1 + [286] (signed word~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#0 - (signed word~) spline_8segB::$3 + [287] (signed word) spline_8segB::a_y#0 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#0 + [288] (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#0 - (signed word) spline_8segB::p0_x#0 + [289] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 << (byte) 1 + [290] (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#0 - (signed word) spline_8segB::p0_y#0 + [291] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 << (byte) 1 + [292] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 << (byte) 3 + [293] (signed word) spline_8segB::i_x#0 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 + [294] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 << (byte) 3 + [295] (signed word) spline_8segB::i_y#0 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 + [296] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 << (byte) 1 + [297] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 << (byte) 1 + [298] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 << (byte) 6 + [299] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 << (byte) 6 + to:spline_8segB::@1 +spline_8segB::@1: scope:[spline_8segB] from spline_8segB spline_8segB::@1 + [300] (signed word) spline_8segB::i_y#2 ← phi( spline_8segB/(signed word) spline_8segB::i_y#0 spline_8segB::@1/(signed word) spline_8segB::i_y#1 ) + [300] (signed word) spline_8segB::i_x#2 ← phi( spline_8segB/(signed word) spline_8segB::i_x#0 spline_8segB::@1/(signed word) spline_8segB::i_x#1 ) + [300] (byte) spline_8segB::n#2 ← phi( spline_8segB/(byte) 0 spline_8segB::@1/(byte) spline_8segB::n#1 ) + [300] (signed word) spline_8segB::p_y#2 ← phi( spline_8segB/(signed word) spline_8segB::p_y#0 spline_8segB::@1/(signed word) spline_8segB::p_y#1 ) + [300] (signed word) spline_8segB::p_x#2 ← phi( spline_8segB/(signed word) spline_8segB::p_x#0 spline_8segB::@1/(signed word) spline_8segB::p_x#1 ) + [301] (signed word~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 + [302] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 >> (byte) 6 + [303] (signed word~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 + [304] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 >> (byte) 6 + [305] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 << (byte) 2 + [306] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$23 + [307] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$25 + [308] (signed word) spline_8segB::p_x#1 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 + [309] (signed word) spline_8segB::p_y#1 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 + [310] (signed word) spline_8segB::i_x#1 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#0 + [311] (signed word) spline_8segB::i_y#1 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#0 + [312] (byte) spline_8segB::n#1 ← ++ (byte) spline_8segB::n#2 + [313] if((byte) spline_8segB::n#1!=(byte) 8) goto spline_8segB::@1 + to:spline_8segB::@2 +spline_8segB::@2: scope:[spline_8segB] from spline_8segB::@1 + [314] (signed word~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#1 + (signed byte) $20 + [315] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 >> (byte) 6 + [316] (signed word~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#1 + (signed byte) $20 + [317] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 >> (byte) 6 + [318] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$19 + [319] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$21 + to:spline_8segB::@return +spline_8segB::@return: scope:[spline_8segB] from spline_8segB::@2 + [320] return + to:@return +rotate: scope:[rotate] from show_letter::@1 show_letter::@6 + [321] (signed word) rotate::vector_y#2 ← phi( show_letter::@1/(signed word) rotate::vector_y#0 show_letter::@6/(signed word) rotate::vector_y#1 ) + [321] (signed word) rotate::vector_x#2 ← phi( show_letter::@1/(signed word) rotate::vector_x#0 show_letter::@6/(signed word) rotate::vector_x#1 ) + [321] (byte) rotate::angle#2 ← phi( show_letter::@1/(byte) rotate::angle#0 show_letter::@6/(byte) rotate::angle#1 ) + [322] (signed word) rotate::cos_a#0 ← (signed word)*((const signed byte*) COS#0 + (byte) rotate::angle#2) + [323] (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 + [324] (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 + [325] call mulf16s + [326] (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#0 + to:rotate::@1 +rotate::@1: scope:[rotate] from rotate + [327] (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#2 + [328] (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 + [329] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 << (byte) 1 + [330] (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#0 + [331] (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 + [332] call mulf16s + [333] (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#0 + to:rotate::@2 +rotate::@2: scope:[rotate] from rotate::@1 + [334] (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#3 + [335] (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 + [336] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 << (byte) 1 + [337] (signed word) rotate::sin_a#0 ← (signed word)*((const signed byte[$140]) SIN#0 + (byte) rotate::angle#2) + [338] (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 + [339] (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#2 + [340] call mulf16s + [341] (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#0 + to:rotate::@3 +rotate::@3: scope:[rotate] from rotate::@2 + [342] (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#4 + [343] (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 + [344] (signed word~) rotate::$10 ← (signed word~) rotate::$9 << (byte) 1 + [345] (signed word) rotate::xr#1 ← (signed word) rotate::xr#0 - (signed word~) rotate::$10 + [346] (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#0 + [347] (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#2 + [348] call mulf16s + [349] (signed dword) mulf16s::return#10 ← (signed dword) mulf16s::return#0 + to:rotate::@4 +rotate::@4: scope:[rotate] from rotate::@3 + [350] (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 + [351] (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 + [352] (signed word~) rotate::$13 ← (signed word~) rotate::$12 << (byte) 1 + [353] (signed word) rotate::yr#1 ← (signed word) rotate::yr#0 + (signed word~) rotate::$13 + [354] (byte~) rotate::$15 ← > (signed word) rotate::xr#1 + [355] (signed word) rotate::return_x#2 ← (signed word)(signed byte)(byte~) rotate::$15 + [356] (byte~) rotate::$18 ← > (signed word) rotate::yr#1 + [357] (signed word) rotate::return_y#2 ← (signed word)(signed byte)(byte~) rotate::$18 + to:rotate::@return +rotate::@return: scope:[rotate] from rotate::@4 + [358] return + to:@return +mulf16s: scope:[mulf16s] from rotate rotate::@1 rotate::@2 rotate::@3 + [359] (signed word) mulf16s::b#4 ← phi( rotate/(signed word) mulf16s::b#0 rotate::@1/(signed word) mulf16s::b#1 rotate::@2/(signed word) mulf16s::b#2 rotate::@3/(signed word) mulf16s::b#3 ) + [359] (signed word) mulf16s::a#4 ← phi( rotate/(signed word) mulf16s::a#0 rotate::@1/(signed word) mulf16s::a#1 rotate::@2/(signed word) mulf16s::a#2 rotate::@3/(signed word) mulf16s::a#3 ) + [360] (word) mulf16u::a#0 ← (word)(signed word) mulf16s::a#4 + [361] (word) mulf16u::b#0 ← (word)(signed word) mulf16s::b#4 + [362] call mulf16u + [363] (dword) mulf16u::return#2 ← (dword) mulf16u::return#0 + to:mulf16s::@5 +mulf16s::@5: scope:[mulf16s] from mulf16s + [364] (dword) mulf16s::m#0 ← (dword) mulf16u::return#2 + [365] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 + to:mulf16s::@3 +mulf16s::@3: scope:[mulf16s] from mulf16s::@5 + [366] (word~) mulf16s::$9 ← > (dword) mulf16s::m#0 + [367] (word~) mulf16s::$16 ← (word~) mulf16s::$9 - (word)(signed word) mulf16s::b#4 + [368] (dword) mulf16s::m#1 ← (dword) mulf16s::m#0 hi= (word~) mulf16s::$16 + to:mulf16s::@1 +mulf16s::@1: scope:[mulf16s] from mulf16s::@3 mulf16s::@5 + [369] (dword) mulf16s::m#5 ← phi( mulf16s::@3/(dword) mulf16s::m#1 mulf16s::@5/(dword) mulf16s::m#0 ) + [370] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 + to:mulf16s::@4 +mulf16s::@4: scope:[mulf16s] from mulf16s::@1 + [371] (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 + [372] (word~) mulf16s::$17 ← (word~) mulf16s::$13 - (word)(signed word) mulf16s::a#4 + [373] (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 + to:mulf16s::@2 +mulf16s::@2: scope:[mulf16s] from mulf16s::@1 mulf16s::@4 + [374] (dword) mulf16s::m#4 ← phi( mulf16s::@1/(dword) mulf16s::m#5 mulf16s::@4/(dword) mulf16s::m#2 ) + [375] (signed dword) mulf16s::return#0 ← (signed dword)(dword) mulf16s::m#4 + to:mulf16s::@return +mulf16s::@return: scope:[mulf16s] from mulf16s::@2 + [376] return + to:@return +mulf16u: scope:[mulf16u] from mulf16s + [377] *((const word*) mulf16u::memA#0) ← (word) mulf16u::a#0 + [378] *((const word*) mulf16u::memB#0) ← (word) mulf16u::b#0 + asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } + [380] (dword) mulf16u::return#0 ← *((const dword*) mulf16u::memR#0) + to:mulf16u::@return +mulf16u::@return: scope:[mulf16u] from mulf16u + [381] return + to:@return +bitmap_clear: scope:[bitmap_clear] from main::@2 main::@9 + [382] phi() + [383] call memset + to:bitmap_clear::@1 +bitmap_clear::@1: scope:[bitmap_clear] from bitmap_clear + [384] phi() + [385] call memset + to:bitmap_clear::@return +bitmap_clear::@return: scope:[bitmap_clear] from bitmap_clear::@1 + [386] return + to:@return +memset: scope:[memset] from bitmap_clear bitmap_clear::@1 + [387] (byte) memset::c#3 ← phi( bitmap_clear/(const byte) bitmap_clear::col#0 bitmap_clear::@1/(byte) 0 ) + [387] (void*) memset::str#3 ← phi( bitmap_clear/(void*)(const byte*) BITMAP_SCREEN#0 bitmap_clear::@1/(void*)(const byte*) BITMAP_GRAPHICS#0 ) + [387] (word) memset::num#2 ← phi( bitmap_clear/(word) $3e8 bitmap_clear::@1/(word) $1f40 ) + [388] if((word) memset::num#2<=(byte) 0) goto memset::@return + to:memset::@1 +memset::@1: scope:[memset] from memset + [389] (byte*) memset::end#0 ← (byte*)(void*) memset::str#3 + (word) memset::num#2 + [390] (byte*~) memset::dst#3 ← (byte*)(void*) memset::str#3 + to:memset::@2 +memset::@2: scope:[memset] from memset::@1 memset::@2 + [391] (byte*) memset::dst#2 ← phi( memset::@1/(byte*~) memset::dst#3 memset::@2/(byte*) memset::dst#1 ) + [392] *((byte*) memset::dst#2) ← (byte) memset::c#3 + [393] (byte*) memset::dst#1 ← ++ (byte*) memset::dst#2 + [394] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@2 + to:memset::@return +memset::@return: scope:[memset] from memset memset::@2 + [395] return + to:@return +bitmap_init: scope:[bitmap_init] from main::@8 + [396] phi() + to:bitmap_init::@1 +bitmap_init::@1: scope:[bitmap_init] from bitmap_init bitmap_init::@2 + [397] (byte) bitmap_init::x#2 ← phi( bitmap_init/(byte) 0 bitmap_init::@2/(byte) bitmap_init::x#1 ) + [397] (byte) bitmap_init::bits#3 ← phi( bitmap_init/(byte) $80 bitmap_init::@2/(byte) bitmap_init::bits#4 ) + [398] *((const byte[$100]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 + [399] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte) 1 + [400] if((byte) bitmap_init::bits#1!=(byte) 0) goto bitmap_init::@6 + to:bitmap_init::@2 +bitmap_init::@6: scope:[bitmap_init] from bitmap_init::@1 + [401] phi() + to:bitmap_init::@2 +bitmap_init::@2: scope:[bitmap_init] from bitmap_init::@1 bitmap_init::@6 + [402] (byte) bitmap_init::bits#4 ← phi( bitmap_init::@6/(byte) bitmap_init::bits#1 bitmap_init::@1/(byte) $80 ) + [403] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 + [404] if((byte) bitmap_init::x#1!=(byte) 0) goto bitmap_init::@1 + to:bitmap_init::@3 +bitmap_init::@3: scope:[bitmap_init] from bitmap_init::@2 bitmap_init::@4 + [405] (byte*) bitmap_init::yoffs#2 ← phi( bitmap_init::@2/(const byte*) BITMAP_GRAPHICS#0 bitmap_init::@4/(byte*) bitmap_init::yoffs#4 ) + [405] (byte) bitmap_init::y#2 ← phi( bitmap_init::@2/(byte) 0 bitmap_init::@4/(byte) bitmap_init::y#1 ) + [406] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 + [407] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 + [408] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$7 | (byte~) bitmap_init::$4 + [409] *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 + [410] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 + [411] *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 + [412] if((byte~) bitmap_init::$7!=(byte) 7) goto bitmap_init::@4 + to:bitmap_init::@5 +bitmap_init::@5: scope:[bitmap_init] from bitmap_init::@3 + [413] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (word)(number) $28*(number) 8 + to:bitmap_init::@4 +bitmap_init::@4: scope:[bitmap_init] from bitmap_init::@3 bitmap_init::@5 + [414] (byte*) bitmap_init::yoffs#4 ← phi( bitmap_init::@3/(byte*) bitmap_init::yoffs#2 bitmap_init::@5/(byte*) bitmap_init::yoffs#1 ) + [415] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 + [416] if((byte) bitmap_init::y#1!=(byte) 0) goto bitmap_init::@3 + to:bitmap_init::@return +bitmap_init::@return: scope:[bitmap_init] from bitmap_init::@4 + [417] return + to:@return +mulf_init: scope:[mulf_init] from main + [418] phi() + to:mulf_init::@1 +mulf_init::@1: scope:[mulf_init] from mulf_init mulf_init::@2 + [419] (byte) mulf_init::x_2#3 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::x_2#2 ) + [419] (byte*) mulf_init::sqr1_hi#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_hi#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_hi#1 ) + [419] (byte*) mulf_init::sqr1_lo#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_lo#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_lo#1 ) + [419] (word) mulf_init::sqr#4 ← phi( mulf_init/(byte) 0 mulf_init::@2/(word) mulf_init::sqr#1 ) + [419] (byte) mulf_init::c#2 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::c#1 ) + [420] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 + [421] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 + [422] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 + to:mulf_init::@3 +mulf_init::@3: scope:[mulf_init] from mulf_init::@1 + [423] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 + [424] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 + to:mulf_init::@2 +mulf_init::@2: scope:[mulf_init] from mulf_init::@1 mulf_init::@3 + [425] (byte) mulf_init::x_2#2 ← phi( mulf_init::@1/(byte) mulf_init::x_2#3 mulf_init::@3/(byte) mulf_init::x_2#1 ) + [425] (word) mulf_init::sqr#3 ← phi( mulf_init::@1/(word) mulf_init::sqr#4 mulf_init::@3/(word) mulf_init::sqr#2 ) + [426] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 + [427] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 + [428] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 + [429] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 + [430] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 + [431] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 + [432] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 + [433] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 + to:mulf_init::@4 +mulf_init::@4: scope:[mulf_init] from mulf_init::@2 mulf_init::@5 + [434] (byte) mulf_init::dir#2 ← phi( mulf_init::@2/(byte) $ff mulf_init::@5/(byte) mulf_init::dir#3 ) + [434] (byte*) mulf_init::sqr2_hi#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_hi#0 mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 ) + [434] (byte*) mulf_init::sqr2_lo#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_lo#0 mulf_init::@5/(byte*) mulf_init::sqr2_lo#1 ) + [434] (byte) mulf_init::x_255#2 ← phi( mulf_init::@2/(byte) -1 mulf_init::@5/(byte) mulf_init::x_255#1 ) + [435] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) + [436] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) + [437] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 + [438] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 + [439] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 + to:mulf_init::@5 +mulf_init::@7: scope:[mulf_init] from mulf_init::@4 + [440] phi() + to:mulf_init::@5 +mulf_init::@5: scope:[mulf_init] from mulf_init::@4 mulf_init::@7 + [441] (byte) mulf_init::dir#3 ← phi( mulf_init::@7/(byte) mulf_init::dir#2 mulf_init::@4/(byte) 1 ) + [442] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 + [443] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 + to:mulf_init::@6 +mulf_init::@6: scope:[mulf_init] from mulf_init::@5 + [444] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) + [445] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) + to:mulf_init::@return +mulf_init::@return: scope:[mulf_init] from mulf_init::@6 + [446] return + to:@return diff --git a/src/test/ref/complex/splines/truetype-splines.log b/src/test/ref/complex/splines/truetype-splines.log new file mode 100644 index 000000000..54bcfc032 --- /dev/null +++ b/src/test/ref/complex/splines/truetype-splines.log @@ -0,0 +1,18568 @@ +Fixing pointer addition (word*~) bsearch16u::$7 ← (word*) bsearch16u::items + (byte~) bsearch16u::$6 +Fixing pointer addition (word*~) bsearch16u::$15 ← (word*) bsearch16u::pivot + (number) 1 +Fixing pointer addition (word*~) bsearch16u::$1 ← (word*) bsearch16u::items - (number) 1 +Fixing pointer array-indexing *((struct SplineVector16[$11]) SPLINE_16SEG + (byte) spline_16seg::n) +Fixing pointer array-indexing *((struct SplineVector16[$11]) SPLINE_16SEG + (number) $10) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (byte) spline_8seg::n) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (number) 8) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (byte) spline_8segB::n) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (number) 8) +Fixing pointer array-indexing *((word*) utoa::digit_values + (byte) utoa::digit) +Fixing pointer array-indexing *((dword*) ultoa::digit_values + (byte) ultoa::digit) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 0) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 1) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 2) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 3) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 4) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 5) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 6) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 7) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 8) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) 9) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $a) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $b) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $c) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $d) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $e) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $f) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $10) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $11) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $12) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $13) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $14) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (number) $15) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (byte) show_letter::i) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (byte) show_letter::i) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (byte) show_letter::i) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (byte) show_letter::i) +Fixing pointer array-indexing *((struct Segment[$16]) letter_c + (byte) show_letter::i) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (number) 0) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (byte) bitmap_plot_spline_8seg::n) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (byte) bitmap_plot_spline_8seg::n) +Fixing pointer array-indexing *((struct SplineVector16[9]) SPLINE_8SEG + (byte) bitmap_plot_spline_8seg::n) +Created struct value member variable (signed word) spline_16seg::p0_x +Created struct value member variable (signed word) spline_16seg::p0_y +Converted struct value to member variables (struct SplineVector16) spline_16seg::p0 +Created struct value member variable (signed word) spline_16seg::p1_x +Created struct value member variable (signed word) spline_16seg::p1_y +Converted struct value to member variables (struct SplineVector16) spline_16seg::p1 +Created struct value member variable (signed word) spline_16seg::p2_x +Created struct value member variable (signed word) spline_16seg::p2_y +Converted struct value to member variables (struct SplineVector16) spline_16seg::p2 +Created struct value member variable (signed word) spline_16seg::a_x +Created struct value member variable (signed word) spline_16seg::a_y +Converted struct value to member variables (struct SplineVector16) spline_16seg::a +Created struct value member variable (signed word) spline_16seg::b_x +Created struct value member variable (signed word) spline_16seg::b_y +Converted struct value to member variables (struct SplineVector16) spline_16seg::b +Created struct value member variable (signed dword) spline_16seg::i_x +Created struct value member variable (signed dword) spline_16seg::i_y +Converted struct value to member variables (struct SplineVector32) spline_16seg::i +Created struct value member variable (signed dword) spline_16seg::j_x +Created struct value member variable (signed dword) spline_16seg::j_y +Converted struct value to member variables (struct SplineVector32) spline_16seg::j +Created struct value member variable (signed dword) spline_16seg::p_x +Created struct value member variable (signed dword) spline_16seg::p_y +Converted struct value to member variables (struct SplineVector32) spline_16seg::p +Created struct value member variable (signed word) spline_8seg::p0_x +Created struct value member variable (signed word) spline_8seg::p0_y +Converted struct value to member variables (struct SplineVector16) spline_8seg::p0 +Created struct value member variable (signed word) spline_8seg::p1_x +Created struct value member variable (signed word) spline_8seg::p1_y +Converted struct value to member variables (struct SplineVector16) spline_8seg::p1 +Created struct value member variable (signed word) spline_8seg::p2_x +Created struct value member variable (signed word) spline_8seg::p2_y +Converted struct value to member variables (struct SplineVector16) spline_8seg::p2 +Created struct value member variable (signed word) spline_8seg::a_x +Created struct value member variable (signed word) spline_8seg::a_y +Converted struct value to member variables (struct SplineVector16) spline_8seg::a +Created struct value member variable (signed word) spline_8seg::b_x +Created struct value member variable (signed word) spline_8seg::b_y +Converted struct value to member variables (struct SplineVector16) spline_8seg::b +Created struct value member variable (signed dword) spline_8seg::i_x +Created struct value member variable (signed dword) spline_8seg::i_y +Converted struct value to member variables (struct SplineVector32) spline_8seg::i +Created struct value member variable (signed dword) spline_8seg::j_x +Created struct value member variable (signed dword) spline_8seg::j_y +Converted struct value to member variables (struct SplineVector32) spline_8seg::j +Created struct value member variable (signed dword) spline_8seg::p_x +Created struct value member variable (signed dword) spline_8seg::p_y +Converted struct value to member variables (struct SplineVector32) spline_8seg::p +Created struct value member variable (signed word) spline_8segB::p0_x +Created struct value member variable (signed word) spline_8segB::p0_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::p0 +Created struct value member variable (signed word) spline_8segB::p1_x +Created struct value member variable (signed word) spline_8segB::p1_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::p1 +Created struct value member variable (signed word) spline_8segB::p2_x +Created struct value member variable (signed word) spline_8segB::p2_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::p2 +Created struct value member variable (signed word) spline_8segB::a_x +Created struct value member variable (signed word) spline_8segB::a_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::a +Created struct value member variable (signed word) spline_8segB::b_x +Created struct value member variable (signed word) spline_8segB::b_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::b +Created struct value member variable (signed word) spline_8segB::i_x +Created struct value member variable (signed word) spline_8segB::i_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::i +Created struct value member variable (signed word) spline_8segB::j_x +Created struct value member variable (signed word) spline_8segB::j_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::j +Created struct value member variable (signed word) spline_8segB::p_x +Created struct value member variable (signed word) spline_8segB::p_y +Converted struct value to member variables (struct SplineVector16) spline_8segB::p +Created struct value member variable (signed word) show_letter::current_x +Created struct value member variable (signed word) show_letter::current_y +Converted struct value to member variables (struct SplineVector16) show_letter::current +Created struct value member variable (signed word) show_letter::to_x +Created struct value member variable (signed word) show_letter::to_y +Converted struct value to member variables (struct SplineVector16) show_letter::to +Created struct value member variable (signed word) show_letter::$2_x +Created struct value member variable (signed word) show_letter::$2_y +Converted struct value to member variables (struct SplineVector16~) show_letter::$2 +Created struct value member variable (signed word) show_letter::via_x +Created struct value member variable (signed word) show_letter::via_y +Converted struct value to member variables (struct SplineVector16) show_letter::via +Created struct value member variable (signed word) show_letter::$7_x +Created struct value member variable (signed word) show_letter::$7_y +Converted struct value to member variables (struct SplineVector16~) show_letter::$7 +Created struct value member variable (byte) show_letter::segment_type +Created struct value member variable (struct SplineVector16) show_letter::segment_to +Created struct value member variable (struct SplineVector16) show_letter::segment_via +Converted struct value to member variables (struct Segment) show_letter::segment +Created struct value member variable (signed word) bitmap_plot_spline_8seg::current_x +Created struct value member variable (signed word) bitmap_plot_spline_8seg::current_y +Converted struct value to member variables (struct SplineVector16) bitmap_plot_spline_8seg::current +Created struct value member variable (signed word) rotate::return_x +Created struct value member variable (signed word) rotate::return_y +Converted struct value to member variables (struct SplineVector16) rotate::return +Created struct value member variable (signed word) rotate::vector_x +Created struct value member variable (signed word) rotate::vector_y +Converted struct value to member variables (struct SplineVector16) rotate::vector +Created struct value member variable (signed word) rotate::rotated_x +Created struct value member variable (signed word) rotate::rotated_y +Converted struct value to member variables (struct SplineVector16) rotate::rotated +Converted procedure struct value parameter to member variables (void()) spline_16seg((signed word) spline_16seg::p0_x , (signed word) spline_16seg::p0_y , (signed word) spline_16seg::p1_x , (signed word) spline_16seg::p1_y , (signed word) spline_16seg::p2_x , (signed word) spline_16seg::p2_y) +Converted procedure struct value parameter to member variables (void()) spline_8seg((signed word) spline_8seg::p0_x , (signed word) spline_8seg::p0_y , (signed word) spline_8seg::p1_x , (signed word) spline_8seg::p1_y , (signed word) spline_8seg::p2_x , (signed word) spline_8seg::p2_y) +Converted procedure struct value parameter to member variables (void()) spline_8segB((signed word) spline_8segB::p0_x , (signed word) spline_8segB::p0_y , (signed word) spline_8segB::p1_x , (signed word) spline_8segB::p1_y , (signed word) spline_8segB::p2_x , (signed word) spline_8segB::p2_y) +Converted procedure struct value parameter to member variables (struct SplineVector16()) rotate((signed word) rotate::vector_x , (signed word) rotate::vector_y , (byte) rotate::angle) +Adding struct value list initializer (signed word) spline_16seg::a_x ← (number~) spline_16seg::$2 +Adding struct value list initializer (signed word) spline_16seg::a_y ← (number~) spline_16seg::$5 +Adding struct value list initializer (signed word) spline_16seg::b_x ← (number~) spline_16seg::$7 +Adding struct value list initializer (signed word) spline_16seg::b_y ← (number~) spline_16seg::$9 +Adding struct value list initializer (signed dword) spline_16seg::i_x ← (number~) spline_16seg::$15 +Adding struct value list initializer (signed dword) spline_16seg::i_y ← (number~) spline_16seg::$21 +Adding struct value list initializer (signed dword) spline_16seg::j_x ← (number~) spline_16seg::$24 +Adding struct value list initializer (signed dword) spline_16seg::j_y ← (number~) spline_16seg::$27 +Adding struct value list initializer (signed dword) spline_16seg::p_x ← (number~) spline_16seg::$29 +Adding struct value list initializer (signed dword) spline_16seg::p_y ← (number~) spline_16seg::$31 +Adding struct value list initializer *((signed word*) spline_16seg::$51 + (byte~) spline_16seg::$49) ← (signed word~) spline_16seg::$40 +Adding struct value list initializer *((signed word*) spline_16seg::$52 + (byte~) spline_16seg::$49) ← (signed word~) spline_16seg::$43 +Adding struct value list initializer (signed dword) spline_16seg::p_x ← (signed dword~) spline_16seg::$44 +Adding struct value list initializer (signed dword) spline_16seg::p_y ← (signed dword~) spline_16seg::$45 +Adding struct value list initializer (signed dword) spline_16seg::i_x ← (signed dword~) spline_16seg::$46 +Adding struct value list initializer (signed dword) spline_16seg::i_y ← (signed dword~) spline_16seg::$47 +Adding struct value list initializer *((signed word*) spline_16seg::$53 + (number~) spline_16seg::$50) ← (signed word~) spline_16seg::$34 +Adding struct value list initializer *((signed word*) spline_16seg::$54 + (number~) spline_16seg::$50) ← (signed word~) spline_16seg::$37 +Adding struct value list initializer (signed word) spline_8seg::a_x ← (number~) spline_8seg::$2 +Adding struct value list initializer (signed word) spline_8seg::a_y ← (number~) spline_8seg::$5 +Adding struct value list initializer (signed word) spline_8seg::b_x ← (number~) spline_8seg::$7 +Adding struct value list initializer (signed word) spline_8seg::b_y ← (number~) spline_8seg::$9 +Adding struct value list initializer (signed dword) spline_8seg::i_x ← (number~) spline_8seg::$16 +Adding struct value list initializer (signed dword) spline_8seg::i_y ← (number~) spline_8seg::$23 +Adding struct value list initializer (signed dword) spline_8seg::j_x ← (number~) spline_8seg::$26 +Adding struct value list initializer (signed dword) spline_8seg::j_y ← (number~) spline_8seg::$29 +Adding struct value list initializer (signed dword) spline_8seg::p_x ← (number~) spline_8seg::$31 +Adding struct value list initializer (signed dword) spline_8seg::p_y ← (number~) spline_8seg::$33 +Adding struct value list initializer *((signed word*) spline_8seg::$53 + (byte~) spline_8seg::$51) ← (signed word~) spline_8seg::$42 +Adding struct value list initializer *((signed word*) spline_8seg::$54 + (byte~) spline_8seg::$51) ← (signed word~) spline_8seg::$45 +Adding struct value list initializer (signed dword) spline_8seg::p_x ← (signed dword~) spline_8seg::$46 +Adding struct value list initializer (signed dword) spline_8seg::p_y ← (signed dword~) spline_8seg::$47 +Adding struct value list initializer (signed dword) spline_8seg::i_x ← (signed dword~) spline_8seg::$48 +Adding struct value list initializer (signed dword) spline_8seg::i_y ← (signed dword~) spline_8seg::$49 +Adding struct value list initializer *((signed word*) spline_8seg::$55 + (number~) spline_8seg::$52) ← (signed word~) spline_8seg::$36 +Adding struct value list initializer *((signed word*) spline_8seg::$56 + (number~) spline_8seg::$52) ← (signed word~) spline_8seg::$39 +Adding struct value list initializer (signed word) spline_8segB::a_x ← (number~) spline_8segB::$2 +Adding struct value list initializer (signed word) spline_8segB::a_y ← (number~) spline_8segB::$5 +Adding struct value list initializer (signed word) spline_8segB::b_x ← (number~) spline_8segB::$7 +Adding struct value list initializer (signed word) spline_8segB::b_y ← (number~) spline_8segB::$9 +Adding struct value list initializer (signed word) spline_8segB::i_x ← (number~) spline_8segB::$11 +Adding struct value list initializer (signed word) spline_8segB::i_y ← (number~) spline_8segB::$13 +Adding struct value list initializer (signed word) spline_8segB::j_x ← (number~) spline_8segB::$14 +Adding struct value list initializer (signed word) spline_8segB::j_y ← (number~) spline_8segB::$15 +Adding struct value list initializer (signed word) spline_8segB::p_x ← (number~) spline_8segB::$16 +Adding struct value list initializer (signed word) spline_8segB::p_y ← (number~) spline_8segB::$17 +Adding struct value list initializer *((signed word*) spline_8segB::$33 + (byte~) spline_8segB::$31) ← (number~) spline_8segB::$23 +Adding struct value list initializer *((signed word*) spline_8segB::$34 + (byte~) spline_8segB::$31) ← (number~) spline_8segB::$25 +Adding struct value list initializer (signed word) spline_8segB::p_x ← (signed word~) spline_8segB::$26 +Adding struct value list initializer (signed word) spline_8segB::p_y ← (signed word~) spline_8segB::$27 +Adding struct value list initializer (signed word) spline_8segB::i_x ← (signed word~) spline_8segB::$28 +Adding struct value list initializer (signed word) spline_8segB::i_y ← (signed word~) spline_8segB::$29 +Adding struct value list initializer *((signed word*) spline_8segB::$35 + (number~) spline_8segB::$32) ← (number~) spline_8segB::$19 +Adding struct value list initializer *((signed word*) spline_8segB::$36 + (number~) spline_8segB::$32) ← (number~) spline_8segB::$21 +Adding struct value list initializer *((byte*) main::$38 + (number~) main::$16) ← (const byte) MOVE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$39 + (number~) main::$16) ← { (number) $6c, (number) $92 } +Adding struct value list initializer *((struct SplineVector16*) main::$40 + (number~) main::$16) ← { (number) 0, (number) 0 } +Adding struct value list initializer *((byte*) main::$41 + (number~) main::$17) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$42 + (number~) main::$17) ← { (number) $59, (number) $b6 } +Adding struct value list initializer *((struct SplineVector16*) main::$43 + (number~) main::$17) ← { (number) $67, (number) $a9 } +Adding struct value list initializer *((byte*) main::$44 + (number~) main::$18) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$45 + (number~) main::$18) ← { (number) $3b, (number) $c3 } +Adding struct value list initializer *((struct SplineVector16*) main::$46 + (number~) main::$18) ← { (number) $4b, (number) $c3 } +Adding struct value list initializer *((byte*) main::$47 + (number~) main::$19) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$48 + (number~) main::$19) ← { (number) $17, (number) $b2 } +Adding struct value list initializer *((struct SplineVector16*) main::$49 + (number~) main::$19) ← { (number) $26, (number) $c3 } +Adding struct value list initializer *((byte*) main::$50 + (number~) main::$20) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$51 + (number~) main::$20) ← { (number) 9, (number) $84 } +Adding struct value list initializer *((struct SplineVector16*) main::$52 + (number~) main::$20) ← { (number) 9, (number) $a1 } +Adding struct value list initializer *((byte*) main::$53 + (number~) main::$21) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$54 + (number~) main::$21) ← { (number) $19, (number) $57 } +Adding struct value list initializer *((struct SplineVector16*) main::$55 + (number~) main::$21) ← { (number) 9, (number) $68 } +Adding struct value list initializer *((byte*) main::$56 + (number~) main::$22) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$57 + (number~) main::$22) ← { (number) $41, (number) $45 } +Adding struct value list initializer *((struct SplineVector16*) main::$58 + (number~) main::$22) ← { (number) $2a, (number) $45 } +Adding struct value list initializer *((byte*) main::$59 + (number~) main::$23) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$60 + (number~) main::$23) ← { (number) $5d, (number) $4f } +Adding struct value list initializer *((struct SplineVector16*) main::$61 + (number~) main::$23) ← { (number) $52, (number) $45 } +Adding struct value list initializer *((byte*) main::$62 + (number~) main::$24) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$63 + (number~) main::$24) ← { (number) $69, (number) $62 } +Adding struct value list initializer *((struct SplineVector16*) main::$64 + (number~) main::$24) ← { (number) $69, (number) $58 } +Adding struct value list initializer *((byte*) main::$65 + (number~) main::$25) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$66 + (number~) main::$25) ← { (number) $66, (number) $6a } +Adding struct value list initializer *((struct SplineVector16*) main::$67 + (number~) main::$25) ← { (number) $69, (number) $67 } +Adding struct value list initializer *((byte*) main::$68 + (number~) main::$26) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$69 + (number~) main::$26) ← { (number) $5d, (number) $6d } +Adding struct value list initializer *((struct SplineVector16*) main::$70 + (number~) main::$26) ← { (number) $62, (number) $6d } +Adding struct value list initializer *((byte*) main::$71 + (number~) main::$27) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$72 + (number~) main::$27) ← { (number) $51, (number) $68 } +Adding struct value list initializer *((struct SplineVector16*) main::$73 + (number~) main::$27) ← { (number) $55, (number) $6d } +Adding struct value list initializer *((byte*) main::$74 + (number~) main::$28) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$75 + (number~) main::$28) ← { (number) $4e, (number) $5d } +Adding struct value list initializer *((struct SplineVector16*) main::$76 + (number~) main::$28) ← { (number) $4f, (number) $65 } +Adding struct value list initializer *((byte*) main::$77 + (number~) main::$29) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$78 + (number~) main::$29) ← { (number) $49, (number) $52 } +Adding struct value list initializer *((struct SplineVector16*) main::$79 + (number~) main::$29) ← { (number) $4e, (number) $56 } +Adding struct value list initializer *((byte*) main::$80 + (number~) main::$30) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$81 + (number~) main::$30) ← { (number) $3d, (number) $4e } +Adding struct value list initializer *((struct SplineVector16*) main::$82 + (number~) main::$30) ← { (number) $45, (number) $4e } +Adding struct value list initializer *((byte*) main::$83 + (number~) main::$31) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$84 + (number~) main::$31) ← { (number) $28, (number) $58 } +Adding struct value list initializer *((struct SplineVector16*) main::$85 + (number~) main::$31) ← { (number) $30, (number) $4e } +Adding struct value list initializer *((byte*) main::$86 + (number~) main::$32) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$87 + (number~) main::$32) ← { (number) $1d, (number) $79 } +Adding struct value list initializer *((struct SplineVector16*) main::$88 + (number~) main::$32) ← { (number) $1d, (number) $64 } +Adding struct value list initializer *((byte*) main::$89 + (number~) main::$33) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$90 + (number~) main::$33) ← { (number) $28, (number) $9e } +Adding struct value list initializer *((struct SplineVector16*) main::$91 + (number~) main::$33) ← { (number) $1d, (number) $8e } +Adding struct value list initializer *((byte*) main::$92 + (number~) main::$34) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$93 + (number~) main::$34) ← { (number) $44, (number) $ae } +Adding struct value list initializer *((struct SplineVector16*) main::$94 + (number~) main::$34) ← { (number) $32, (number) $ae } +Adding struct value list initializer *((byte*) main::$95 + (number~) main::$35) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$96 + (number~) main::$35) ← { (number) $5b, (number) $a6 } +Adding struct value list initializer *((struct SplineVector16*) main::$97 + (number~) main::$35) ← { (number) $50, (number) $ae } +Adding struct value list initializer *((byte*) main::$98 + (number~) main::$36) ← (const byte) SPLINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$99 + (number~) main::$36) ← { (number) $68, (number) $90 } +Adding struct value list initializer *((struct SplineVector16*) main::$100 + (number~) main::$36) ← { (number) $62, (number) $a0 } +Adding struct value list initializer *((byte*) main::$101 + (number~) main::$37) ← (const byte) LINE_TO +Adding struct value list initializer *((struct SplineVector16*) main::$102 + (number~) main::$37) ← { (number) $6c, (number) $92 } +Adding struct value list initializer *((struct SplineVector16*) main::$103 + (number~) main::$37) ← { (number) 0, (number) 0 } +Adding struct value list initializer (signed word) show_letter::current_x ← (number) 0 +Adding struct value list initializer (signed word) show_letter::current_y ← (number) 0 +Adding struct value list initializer (signed word) show_letter::to_x ← *((struct Segment[$16]) letter_c + (byte~) show_letter::$20).to.x +Adding struct value list initializer (signed word) show_letter::to_y ← *((struct Segment[$16]) letter_c + (byte~) show_letter::$20).to.y +Adding struct value list initializer (signed word) show_letter::to_x ← (number~) show_letter::$0 +Adding struct value list initializer (signed word) show_letter::to_y ← (number~) show_letter::$1 +Converted procedure call LValue to member variables { (signed word) show_letter::$2_x, (signed word) show_letter::$2_y } ← call rotate (struct SplineVector16) show_letter::to (byte) show_letter::angle +Converted procedure struct value parameter to member variables in call { (signed word) show_letter::$2_x, (signed word) show_letter::$2_y } ← call rotate (signed word) show_letter::to_x (signed word) show_letter::to_y (byte) show_letter::angle +Adding struct value member variable copy (signed word) show_letter::to_x ← (signed word) show_letter::$2_x +Adding struct value member variable copy (signed word) show_letter::to_y ← (signed word) show_letter::$2_y +Adding struct value list initializer (signed word) show_letter::to_x ← (number~) show_letter::$3 +Adding struct value list initializer (signed word) show_letter::to_y ← (number~) show_letter::$4 +Adding struct value list initializer (signed word) show_letter::via_x ← *((struct Segment[$16]) letter_c + (byte~) show_letter::$21).via.x +Adding struct value list initializer (signed word) show_letter::via_y ← *((struct Segment[$16]) letter_c + (byte~) show_letter::$21).via.y +Adding struct value list initializer (signed word) show_letter::via_x ← (number~) show_letter::$5 +Adding struct value list initializer (signed word) show_letter::via_y ← (number~) show_letter::$6 +Converted procedure call LValue to member variables { (signed word) show_letter::$7_x, (signed word) show_letter::$7_y } ← call rotate (struct SplineVector16) show_letter::via (byte) show_letter::angle +Converted procedure struct value parameter to member variables in call { (signed word) show_letter::$7_x, (signed word) show_letter::$7_y } ← call rotate (signed word) show_letter::via_x (signed word) show_letter::via_y (byte) show_letter::angle +Adding struct value member variable copy (signed word) show_letter::via_x ← (signed word) show_letter::$7_x +Adding struct value member variable copy (signed word) show_letter::via_y ← (signed word) show_letter::$7_y +Adding struct value list initializer (signed word) show_letter::via_x ← (number~) show_letter::$8 +Adding struct value list initializer (signed word) show_letter::via_y ← (number~) show_letter::$9 +Adding struct value list initializer (byte) show_letter::segment_type ← *((struct Segment[$16]) letter_c + (byte~) show_letter::$22).type +Adding struct value list initializer (struct SplineVector16) show_letter::segment_to ← (struct SplineVector16) show_letter::to +Adding struct value list initializer (struct SplineVector16) show_letter::segment_via ← (struct SplineVector16) show_letter::via +Converted procedure struct value parameter to member variables in call (void~) show_letter::$17 ← call spline_8segB (signed word) show_letter::current_x (signed word) show_letter::current_y (struct Segment) show_letter::segment.via (struct Segment) show_letter::segment.to +Adding struct value member variable copy (signed word) bitmap_plot_spline_8seg::current_x ← *((signed word*) bitmap_plot_spline_8seg::$10 + (number~) bitmap_plot_spline_8seg::$6) +Adding struct value member variable copy (signed word) bitmap_plot_spline_8seg::current_y ← *((signed word*) bitmap_plot_spline_8seg::$11 + (number~) bitmap_plot_spline_8seg::$6) +Adding struct value member variable copy (signed word) bitmap_plot_spline_8seg::current_x ← *((signed word*) bitmap_plot_spline_8seg::$12 + (byte~) bitmap_plot_spline_8seg::$9) +Adding struct value member variable copy (signed word) bitmap_plot_spline_8seg::current_y ← *((signed word*) bitmap_plot_spline_8seg::$13 + (byte~) bitmap_plot_spline_8seg::$9) +Adding struct value list initializer (signed word) rotate::rotated_x ← (signed word~) rotate::$16 +Adding struct value list initializer (signed word) rotate::rotated_y ← (signed word~) rotate::$19 +Adding struct value member variable copy (signed word) rotate::return_x ← (signed word) rotate::rotated_x +Adding struct value member variable copy (signed word) rotate::return_y ← (signed word) rotate::rotated_y +Adding struct value member variable copy (signed word) rotate::return_x ← (signed word) rotate::return_x +Adding struct value member variable copy (signed word) rotate::return_y ← (signed word) rotate::return_y +Converted procedure struct return value to member variables return { (signed word) rotate::return_x, (signed word) rotate::return_y } +Replacing struct member reference (struct SplineVector16) spline_16seg::p1.x with member variable reference (signed word) spline_16seg::p1_x +Replacing struct member reference (struct SplineVector16) spline_16seg::p2.x with member variable reference (signed word) spline_16seg::p2_x +Replacing struct member reference (struct SplineVector16) spline_16seg::p0.x with member variable reference (signed word) spline_16seg::p0_x +Replacing struct member reference (struct SplineVector16) spline_16seg::p1.y with member variable reference (signed word) spline_16seg::p1_y +Replacing struct member reference (struct SplineVector16) spline_16seg::p2.y with member variable reference (signed word) spline_16seg::p2_y +Replacing struct member reference (struct SplineVector16) spline_16seg::p0.y with member variable reference (signed word) spline_16seg::p0_y +Replacing struct member reference (struct SplineVector16) spline_16seg::p1.x with member variable reference (signed word) spline_16seg::p1_x +Replacing struct member reference (struct SplineVector16) spline_16seg::p0.x with member variable reference (signed word) spline_16seg::p0_x +Replacing struct member reference (struct SplineVector16) spline_16seg::p1.y with member variable reference (signed word) spline_16seg::p1_y +Replacing struct member reference (struct SplineVector16) spline_16seg::p0.y with member variable reference (signed word) spline_16seg::p0_y +Replacing struct member reference (struct SplineVector16) spline_16seg::a.x with member variable reference (signed word) spline_16seg::a_x +Replacing struct member reference (struct SplineVector16) spline_16seg::b.x with member variable reference (signed word) spline_16seg::b_x +Replacing struct member reference (struct SplineVector16) spline_16seg::a.y with member variable reference (signed word) spline_16seg::a_y +Replacing struct member reference (struct SplineVector16) spline_16seg::b.y with member variable reference (signed word) spline_16seg::b_y +Replacing struct member reference (struct SplineVector16) spline_16seg::a.x with member variable reference (signed word) spline_16seg::a_x +Replacing struct member reference (struct SplineVector16) spline_16seg::a.y with member variable reference (signed word) spline_16seg::a_y +Replacing struct member reference (struct SplineVector16) spline_16seg::p0.x with member variable reference (signed word) spline_16seg::p0_x +Replacing struct member reference (struct SplineVector16) spline_16seg::p0.y with member variable reference (signed word) spline_16seg::p0_y +Replacing struct member reference (struct SplineVector32) spline_16seg::p.x with member variable reference (signed dword) spline_16seg::p_x +Replacing struct member reference (struct SplineVector32) spline_16seg::p.y with member variable reference (signed dword) spline_16seg::p_y +Replacing struct member reference (struct SplineVector32) spline_16seg::p.x with member variable reference (signed dword) spline_16seg::p_x +Replacing struct member reference (struct SplineVector32) spline_16seg::i.x with member variable reference (signed dword) spline_16seg::i_x +Replacing struct member reference (struct SplineVector32) spline_16seg::p.y with member variable reference (signed dword) spline_16seg::p_y +Replacing struct member reference (struct SplineVector32) spline_16seg::i.y with member variable reference (signed dword) spline_16seg::i_y +Replacing struct member reference (struct SplineVector32) spline_16seg::i.x with member variable reference (signed dword) spline_16seg::i_x +Replacing struct member reference (struct SplineVector32) spline_16seg::j.x with member variable reference (signed dword) spline_16seg::j_x +Replacing struct member reference (struct SplineVector32) spline_16seg::i.y with member variable reference (signed dword) spline_16seg::i_y +Replacing struct member reference (struct SplineVector32) spline_16seg::j.y with member variable reference (signed dword) spline_16seg::j_y +Replacing struct member reference (struct SplineVector32) spline_16seg::p.x with member variable reference (signed dword) spline_16seg::p_x +Replacing struct member reference (struct SplineVector32) spline_16seg::p.y with member variable reference (signed dword) spline_16seg::p_y +Replacing struct member reference (struct SplineVector16) spline_8seg::p1.x with member variable reference (signed word) spline_8seg::p1_x +Replacing struct member reference (struct SplineVector16) spline_8seg::p2.x with member variable reference (signed word) spline_8seg::p2_x +Replacing struct member reference (struct SplineVector16) spline_8seg::p0.x with member variable reference (signed word) spline_8seg::p0_x +Replacing struct member reference (struct SplineVector16) spline_8seg::p1.y with member variable reference (signed word) spline_8seg::p1_y +Replacing struct member reference (struct SplineVector16) spline_8seg::p2.y with member variable reference (signed word) spline_8seg::p2_y +Replacing struct member reference (struct SplineVector16) spline_8seg::p0.y with member variable reference (signed word) spline_8seg::p0_y +Replacing struct member reference (struct SplineVector16) spline_8seg::p1.x with member variable reference (signed word) spline_8seg::p1_x +Replacing struct member reference (struct SplineVector16) spline_8seg::p0.x with member variable reference (signed word) spline_8seg::p0_x +Replacing struct member reference (struct SplineVector16) spline_8seg::p1.y with member variable reference (signed word) spline_8seg::p1_y +Replacing struct member reference (struct SplineVector16) spline_8seg::p0.y with member variable reference (signed word) spline_8seg::p0_y +Replacing struct member reference (struct SplineVector16) spline_8seg::a.x with member variable reference (signed word) spline_8seg::a_x +Replacing struct member reference (struct SplineVector16) spline_8seg::b.x with member variable reference (signed word) spline_8seg::b_x +Replacing struct member reference (struct SplineVector16) spline_8seg::a.y with member variable reference (signed word) spline_8seg::a_y +Replacing struct member reference (struct SplineVector16) spline_8seg::b.y with member variable reference (signed word) spline_8seg::b_y +Replacing struct member reference (struct SplineVector16) spline_8seg::a.x with member variable reference (signed word) spline_8seg::a_x +Replacing struct member reference (struct SplineVector16) spline_8seg::a.y with member variable reference (signed word) spline_8seg::a_y +Replacing struct member reference (struct SplineVector16) spline_8seg::p0.x with member variable reference (signed word) spline_8seg::p0_x +Replacing struct member reference (struct SplineVector16) spline_8seg::p0.y with member variable reference (signed word) spline_8seg::p0_y +Replacing struct member reference (struct SplineVector32) spline_8seg::p.x with member variable reference (signed dword) spline_8seg::p_x +Replacing struct member reference (struct SplineVector32) spline_8seg::p.y with member variable reference (signed dword) spline_8seg::p_y +Replacing struct member reference (struct SplineVector32) spline_8seg::p.x with member variable reference (signed dword) spline_8seg::p_x +Replacing struct member reference (struct SplineVector32) spline_8seg::i.x with member variable reference (signed dword) spline_8seg::i_x +Replacing struct member reference (struct SplineVector32) spline_8seg::p.y with member variable reference (signed dword) spline_8seg::p_y +Replacing struct member reference (struct SplineVector32) spline_8seg::i.y with member variable reference (signed dword) spline_8seg::i_y +Replacing struct member reference (struct SplineVector32) spline_8seg::i.x with member variable reference (signed dword) spline_8seg::i_x +Replacing struct member reference (struct SplineVector32) spline_8seg::j.x with member variable reference (signed dword) spline_8seg::j_x +Replacing struct member reference (struct SplineVector32) spline_8seg::i.y with member variable reference (signed dword) spline_8seg::i_y +Replacing struct member reference (struct SplineVector32) spline_8seg::j.y with member variable reference (signed dword) spline_8seg::j_y +Replacing struct member reference (struct SplineVector32) spline_8seg::p.x with member variable reference (signed dword) spline_8seg::p_x +Replacing struct member reference (struct SplineVector32) spline_8seg::p.y with member variable reference (signed dword) spline_8seg::p_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p1.x with member variable reference (signed word) spline_8segB::p1_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p2.x with member variable reference (signed word) spline_8segB::p2_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p0.x with member variable reference (signed word) spline_8segB::p0_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p1.y with member variable reference (signed word) spline_8segB::p1_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p2.y with member variable reference (signed word) spline_8segB::p2_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p0.y with member variable reference (signed word) spline_8segB::p0_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p1.x with member variable reference (signed word) spline_8segB::p1_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p0.x with member variable reference (signed word) spline_8segB::p0_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p1.y with member variable reference (signed word) spline_8segB::p1_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p0.y with member variable reference (signed word) spline_8segB::p0_y +Replacing struct member reference (struct SplineVector16) spline_8segB::b.x with member variable reference (signed word) spline_8segB::b_x +Replacing struct member reference (struct SplineVector16) spline_8segB::a.x with member variable reference (signed word) spline_8segB::a_x +Replacing struct member reference (struct SplineVector16) spline_8segB::b.y with member variable reference (signed word) spline_8segB::b_y +Replacing struct member reference (struct SplineVector16) spline_8segB::a.y with member variable reference (signed word) spline_8segB::a_y +Replacing struct member reference (struct SplineVector16) spline_8segB::a.x with member variable reference (signed word) spline_8segB::a_x +Replacing struct member reference (struct SplineVector16) spline_8segB::a.y with member variable reference (signed word) spline_8segB::a_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p0.x with member variable reference (signed word) spline_8segB::p0_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p0.y with member variable reference (signed word) spline_8segB::p0_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p.x with member variable reference (signed word) spline_8segB::p_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p.y with member variable reference (signed word) spline_8segB::p_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p.x with member variable reference (signed word) spline_8segB::p_x +Replacing struct member reference (struct SplineVector16) spline_8segB::i.x with member variable reference (signed word) spline_8segB::i_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p.y with member variable reference (signed word) spline_8segB::p_y +Replacing struct member reference (struct SplineVector16) spline_8segB::i.y with member variable reference (signed word) spline_8segB::i_y +Replacing struct member reference (struct SplineVector16) spline_8segB::i.x with member variable reference (signed word) spline_8segB::i_x +Replacing struct member reference (struct SplineVector16) spline_8segB::j.x with member variable reference (signed word) spline_8segB::j_x +Replacing struct member reference (struct SplineVector16) spline_8segB::i.y with member variable reference (signed word) spline_8segB::i_y +Replacing struct member reference (struct SplineVector16) spline_8segB::j.y with member variable reference (signed word) spline_8segB::j_y +Replacing struct member reference (struct SplineVector16) spline_8segB::p.x with member variable reference (signed word) spline_8segB::p_x +Replacing struct member reference (struct SplineVector16) spline_8segB::p.y with member variable reference (signed word) spline_8segB::p_y +Replacing struct member reference (struct SplineVector16) show_letter::to.x with member variable reference (signed word) show_letter::to_x +Replacing struct member reference (struct SplineVector16) show_letter::to.y with member variable reference (signed word) show_letter::to_y +Replacing struct member reference (struct SplineVector16) show_letter::to.x with member variable reference (signed word) show_letter::to_x +Replacing struct member reference (struct SplineVector16) show_letter::to.y with member variable reference (signed word) show_letter::to_y +Replacing struct member reference (struct SplineVector16) show_letter::via.x with member variable reference (signed word) show_letter::via_x +Replacing struct member reference (struct SplineVector16) show_letter::via.y with member variable reference (signed word) show_letter::via_y +Replacing struct member reference (struct SplineVector16) show_letter::via.x with member variable reference (signed word) show_letter::via_x +Replacing struct member reference (struct SplineVector16) show_letter::via.y with member variable reference (signed word) show_letter::via_y +Replacing struct member reference (struct Segment) show_letter::segment.type with member variable reference (byte) show_letter::segment_type +Replacing struct member reference (struct Segment) show_letter::segment.to with member variable reference (struct SplineVector16) show_letter::segment_to +Replacing struct member reference (struct Segment) show_letter::segment.type with member variable reference (byte) show_letter::segment_type +Replacing struct member reference (struct Segment) show_letter::segment.via with member variable reference (struct SplineVector16) show_letter::segment_via +Replacing struct member reference (struct Segment) show_letter::segment.to with member variable reference (struct SplineVector16) show_letter::segment_to +Replacing struct member reference (struct Segment) show_letter::segment.to with member variable reference (struct SplineVector16) show_letter::segment_to +Replacing struct member reference (struct SplineVector16) show_letter::current.x with member variable reference (signed word) show_letter::current_x +Replacing struct member reference (struct SplineVector16) show_letter::current.y with member variable reference (signed word) show_letter::current_y +Replacing struct member reference (struct Segment) show_letter::segment.to with member variable reference (struct SplineVector16) show_letter::segment_to +Replacing struct member reference (struct Segment) show_letter::segment.to with member variable reference (struct SplineVector16) show_letter::segment_to +Replacing struct member reference (struct Segment) show_letter::segment.to with member variable reference (struct SplineVector16) show_letter::segment_to +Replacing struct member reference (struct SplineVector16) bitmap_plot_spline_8seg::current.x with member variable reference (signed word) bitmap_plot_spline_8seg::current_x +Replacing struct member reference (struct SplineVector16) bitmap_plot_spline_8seg::current.y with member variable reference (signed word) bitmap_plot_spline_8seg::current_y +Replacing struct member reference (struct SplineVector16) rotate::vector.x with member variable reference (signed word) rotate::vector_x +Replacing struct member reference (struct SplineVector16) rotate::vector.y with member variable reference (signed word) rotate::vector_y +Replacing struct member reference (struct SplineVector16) rotate::vector.y with member variable reference (signed word) rotate::vector_y +Replacing struct member reference (struct SplineVector16) rotate::vector.x with member variable reference (signed word) rotate::vector_x +Created struct value member variable (signed word) show_letter::segment_to_x +Created struct value member variable (signed word) show_letter::segment_to_y +Converted struct value to member variables (struct SplineVector16) show_letter::segment_to +Created struct value member variable (signed word) show_letter::segment_via_x +Created struct value member variable (signed word) show_letter::segment_via_y +Converted struct value to member variables (struct SplineVector16) show_letter::segment_via +Adding struct value list initializer *((signed word*) main::$104 + (number~) main::$16) ← (number) $6c +Adding struct value list initializer *((signed word*) main::$105 + (number~) main::$16) ← (number) $92 +Adding struct value list initializer *((signed word*) main::$106 + (number~) main::$16) ← (number) 0 +Adding struct value list initializer *((signed word*) main::$107 + (number~) main::$16) ← (number) 0 +Adding struct value list initializer *((signed word*) main::$108 + (number~) main::$17) ← (number) $59 +Adding struct value list initializer *((signed word*) main::$109 + (number~) main::$17) ← (number) $b6 +Adding struct value list initializer *((signed word*) main::$110 + (number~) main::$17) ← (number) $67 +Adding struct value list initializer *((signed word*) main::$111 + (number~) main::$17) ← (number) $a9 +Adding struct value list initializer *((signed word*) main::$112 + (number~) main::$18) ← (number) $3b +Adding struct value list initializer *((signed word*) main::$113 + (number~) main::$18) ← (number) $c3 +Adding struct value list initializer *((signed word*) main::$114 + (number~) main::$18) ← (number) $4b +Adding struct value list initializer *((signed word*) main::$115 + (number~) main::$18) ← (number) $c3 +Adding struct value list initializer *((signed word*) main::$116 + (number~) main::$19) ← (number) $17 +Adding struct value list initializer *((signed word*) main::$117 + (number~) main::$19) ← (number) $b2 +Adding struct value list initializer *((signed word*) main::$118 + (number~) main::$19) ← (number) $26 +Adding struct value list initializer *((signed word*) main::$119 + (number~) main::$19) ← (number) $c3 +Adding struct value list initializer *((signed word*) main::$120 + (number~) main::$20) ← (number) 9 +Adding struct value list initializer *((signed word*) main::$121 + (number~) main::$20) ← (number) $84 +Adding struct value list initializer *((signed word*) main::$122 + (number~) main::$20) ← (number) 9 +Adding struct value list initializer *((signed word*) main::$123 + (number~) main::$20) ← (number) $a1 +Adding struct value list initializer *((signed word*) main::$124 + (number~) main::$21) ← (number) $19 +Adding struct value list initializer *((signed word*) main::$125 + (number~) main::$21) ← (number) $57 +Adding struct value list initializer *((signed word*) main::$126 + (number~) main::$21) ← (number) 9 +Adding struct value list initializer *((signed word*) main::$127 + (number~) main::$21) ← (number) $68 +Adding struct value list initializer *((signed word*) main::$128 + (number~) main::$22) ← (number) $41 +Adding struct value list initializer *((signed word*) main::$129 + (number~) main::$22) ← (number) $45 +Adding struct value list initializer *((signed word*) main::$130 + (number~) main::$22) ← (number) $2a +Adding struct value list initializer *((signed word*) main::$131 + (number~) main::$22) ← (number) $45 +Adding struct value list initializer *((signed word*) main::$132 + (number~) main::$23) ← (number) $5d +Adding struct value list initializer *((signed word*) main::$133 + (number~) main::$23) ← (number) $4f +Adding struct value list initializer *((signed word*) main::$134 + (number~) main::$23) ← (number) $52 +Adding struct value list initializer *((signed word*) main::$135 + (number~) main::$23) ← (number) $45 +Adding struct value list initializer *((signed word*) main::$136 + (number~) main::$24) ← (number) $69 +Adding struct value list initializer *((signed word*) main::$137 + (number~) main::$24) ← (number) $62 +Adding struct value list initializer *((signed word*) main::$138 + (number~) main::$24) ← (number) $69 +Adding struct value list initializer *((signed word*) main::$139 + (number~) main::$24) ← (number) $58 +Adding struct value list initializer *((signed word*) main::$140 + (number~) main::$25) ← (number) $66 +Adding struct value list initializer *((signed word*) main::$141 + (number~) main::$25) ← (number) $6a +Adding struct value list initializer *((signed word*) main::$142 + (number~) main::$25) ← (number) $69 +Adding struct value list initializer *((signed word*) main::$143 + (number~) main::$25) ← (number) $67 +Adding struct value list initializer *((signed word*) main::$144 + (number~) main::$26) ← (number) $5d +Adding struct value list initializer *((signed word*) main::$145 + (number~) main::$26) ← (number) $6d +Adding struct value list initializer *((signed word*) main::$146 + (number~) main::$26) ← (number) $62 +Adding struct value list initializer *((signed word*) main::$147 + (number~) main::$26) ← (number) $6d +Adding struct value list initializer *((signed word*) main::$148 + (number~) main::$27) ← (number) $51 +Adding struct value list initializer *((signed word*) main::$149 + (number~) main::$27) ← (number) $68 +Adding struct value list initializer *((signed word*) main::$150 + (number~) main::$27) ← (number) $55 +Adding struct value list initializer *((signed word*) main::$151 + (number~) main::$27) ← (number) $6d +Adding struct value list initializer *((signed word*) main::$152 + (number~) main::$28) ← (number) $4e +Adding struct value list initializer *((signed word*) main::$153 + (number~) main::$28) ← (number) $5d +Adding struct value list initializer *((signed word*) main::$154 + (number~) main::$28) ← (number) $4f +Adding struct value list initializer *((signed word*) main::$155 + (number~) main::$28) ← (number) $65 +Adding struct value list initializer *((signed word*) main::$156 + (number~) main::$29) ← (number) $49 +Adding struct value list initializer *((signed word*) main::$157 + (number~) main::$29) ← (number) $52 +Adding struct value list initializer *((signed word*) main::$158 + (number~) main::$29) ← (number) $4e +Adding struct value list initializer *((signed word*) main::$159 + (number~) main::$29) ← (number) $56 +Adding struct value list initializer *((signed word*) main::$160 + (number~) main::$30) ← (number) $3d +Adding struct value list initializer *((signed word*) main::$161 + (number~) main::$30) ← (number) $4e +Adding struct value list initializer *((signed word*) main::$162 + (number~) main::$30) ← (number) $45 +Adding struct value list initializer *((signed word*) main::$163 + (number~) main::$30) ← (number) $4e +Adding struct value list initializer *((signed word*) main::$164 + (number~) main::$31) ← (number) $28 +Adding struct value list initializer *((signed word*) main::$165 + (number~) main::$31) ← (number) $58 +Adding struct value list initializer *((signed word*) main::$166 + (number~) main::$31) ← (number) $30 +Adding struct value list initializer *((signed word*) main::$167 + (number~) main::$31) ← (number) $4e +Adding struct value list initializer *((signed word*) main::$168 + (number~) main::$32) ← (number) $1d +Adding struct value list initializer *((signed word*) main::$169 + (number~) main::$32) ← (number) $79 +Adding struct value list initializer *((signed word*) main::$170 + (number~) main::$32) ← (number) $1d +Adding struct value list initializer *((signed word*) main::$171 + (number~) main::$32) ← (number) $64 +Adding struct value list initializer *((signed word*) main::$172 + (number~) main::$33) ← (number) $28 +Adding struct value list initializer *((signed word*) main::$173 + (number~) main::$33) ← (number) $9e +Adding struct value list initializer *((signed word*) main::$174 + (number~) main::$33) ← (number) $1d +Adding struct value list initializer *((signed word*) main::$175 + (number~) main::$33) ← (number) $8e +Adding struct value list initializer *((signed word*) main::$176 + (number~) main::$34) ← (number) $44 +Adding struct value list initializer *((signed word*) main::$177 + (number~) main::$34) ← (number) $ae +Adding struct value list initializer *((signed word*) main::$178 + (number~) main::$34) ← (number) $32 +Adding struct value list initializer *((signed word*) main::$179 + (number~) main::$34) ← (number) $ae +Adding struct value list initializer *((signed word*) main::$180 + (number~) main::$35) ← (number) $5b +Adding struct value list initializer *((signed word*) main::$181 + (number~) main::$35) ← (number) $a6 +Adding struct value list initializer *((signed word*) main::$182 + (number~) main::$35) ← (number) $50 +Adding struct value list initializer *((signed word*) main::$183 + (number~) main::$35) ← (number) $ae +Adding struct value list initializer *((signed word*) main::$184 + (number~) main::$36) ← (number) $68 +Adding struct value list initializer *((signed word*) main::$185 + (number~) main::$36) ← (number) $90 +Adding struct value list initializer *((signed word*) main::$186 + (number~) main::$36) ← (number) $62 +Adding struct value list initializer *((signed word*) main::$187 + (number~) main::$36) ← (number) $a0 +Adding struct value list initializer *((signed word*) main::$188 + (number~) main::$37) ← (number) $6c +Adding struct value list initializer *((signed word*) main::$189 + (number~) main::$37) ← (number) $92 +Adding struct value list initializer *((signed word*) main::$190 + (number~) main::$37) ← (number) 0 +Adding struct value list initializer *((signed word*) main::$191 + (number~) main::$37) ← (number) 0 +Adding struct value member variable copy (signed word) show_letter::segment_to_x ← (signed word) show_letter::to_x +Adding struct value member variable copy (signed word) show_letter::segment_to_y ← (signed word) show_letter::to_y +Adding struct value member variable copy (signed word) show_letter::segment_via_x ← (signed word) show_letter::via_x +Adding struct value member variable copy (signed word) show_letter::segment_via_y ← (signed word) show_letter::via_y +Adding struct value member variable copy (signed word) show_letter::current_x ← (signed word) show_letter::segment_to_x +Adding struct value member variable copy (signed word) show_letter::current_y ← (signed word) show_letter::segment_to_y +Converted procedure struct value parameter to member variables in call (void~) show_letter::$17 ← call spline_8segB (signed word) show_letter::current_x (signed word) show_letter::current_y (signed word) show_letter::segment_via_x (signed word) show_letter::segment_via_y (signed word) show_letter::segment_to_x (signed word) show_letter::segment_to_y +Adding struct value member variable copy (signed word) show_letter::current_x ← (signed word) show_letter::segment_to_x +Adding struct value member variable copy (signed word) show_letter::current_y ← (signed word) show_letter::segment_to_y +Adding struct value member variable copy (signed word) show_letter::current_x ← (signed word) show_letter::segment_to_x +Adding struct value member variable copy (signed word) show_letter::current_y ← (signed word) show_letter::segment_to_y +Replacing struct member reference (struct SplineVector16) show_letter::segment_to.x with member variable reference (signed word) show_letter::segment_to_x +Replacing struct member reference (struct SplineVector16) show_letter::segment_to.y with member variable reference (signed word) show_letter::segment_to_y +Rewriting struct pointer member access *((struct Segment[$16]) letter_c + (byte~) show_letter::$20).to +Rewriting struct pointer member access *((struct Segment[$16]) letter_c + (byte~) show_letter::$20).to +Rewriting struct pointer member access *((struct Segment[$16]) letter_c + (byte~) show_letter::$21).via +Rewriting struct pointer member access *((struct Segment[$16]) letter_c + (byte~) show_letter::$21).via +Rewriting struct pointer member access *((struct Segment[$16]) letter_c + (byte~) show_letter::$22).type +Rewriting struct pointer member access *((struct SplineVector16[9]) SPLINE_8SEG + (byte~) bitmap_plot_spline_8seg::$7).x +Rewriting struct pointer member access *((struct SplineVector16[9]) SPLINE_8SEG + (byte~) bitmap_plot_spline_8seg::$8).y +Rewriting struct pointer member access *((struct SplineVector16*) show_letter::$23 + (byte~) show_letter::$20).x +Rewriting struct pointer member access *((struct SplineVector16*) show_letter::$24 + (byte~) show_letter::$20).y +Rewriting struct pointer member access *((struct SplineVector16*) show_letter::$25 + (byte~) show_letter::$21).x +Rewriting struct pointer member access *((struct SplineVector16*) show_letter::$26 + (byte~) show_letter::$21).y +Warning! Adding boolean cast to non-boolean condition *((byte*) strcpy::src) +Warning! Adding boolean cast to non-boolean condition (number~) abs_u16::$1 +Warning! Adding boolean cast to non-boolean condition (number~) sgn_u16::$1 +Identified constant variable (byte*) HEAP_TOP +Inlined call (byte~) vicSelectGfxBank::$0 ← call toDd00 (byte*) vicSelectGfxBank::gfx +Inlined call call mulf8s_prepare (signed byte) mulf8s::a +Inlined call call vicSelectGfxBank (byte*) BITMAP_SCREEN +Inlined call (byte~) main::$4 ← call toD018 (byte*) BITMAP_SCREEN (byte*) BITMAP_GRAPHICS +Culled Empty Block (label) @2 +Culled Empty Block (label) @3 +Culled Empty Block (label) @4 +Culled Empty Block (label) @5 +Culled Empty Block (label) memset::@5 +Culled Empty Block (label) memset::@3 +Culled Empty Block (label) @6 +Culled Empty Block (label) bitmap_init::@8 +Culled Empty Block (label) @8 +Culled Empty Block (label) @9 +Culled Empty Block (label) @10 +Culled Empty Block (label) bitmap_line::@5 +Culled Empty Block (label) bitmap_line::@10 +Culled Empty Block (label) bitmap_line::@11 +Culled Empty Block (label) bitmap_line::@15 +Culled Empty Block (label) @11 +Culled Empty Block (label) abs_u16::@4 +Culled Empty Block (label) abs_u16::@2 +Culled Empty Block (label) abs_u16::@5 +Culled Empty Block (label) abs_u16::@6 +Culled Empty Block (label) @12 +Culled Empty Block (label) sgn_u16::@4 +Culled Empty Block (label) sgn_u16::@2 +Culled Empty Block (label) sgn_u16::@5 +Culled Empty Block (label) sgn_u16::@6 +Culled Empty Block (label) @14 +Culled Empty Block (label) @15 +Culled Empty Block (label) @16 +Culled Empty Block (label) @17 +Culled Empty Block (label) @18 +Culled Empty Block (label) @19 +Culled Empty Block (label) @20 +Culled Empty Block (label) @21 +Culled Empty Block (label) @22 +Culled Empty Block (label) @23 +Culled Empty Block (label) @24 +Culled Empty Block (label) @25 +Culled Empty Block (label) @26 +Culled Empty Block (label) @27 +Culled Empty Block (label) @28 +Culled Empty Block (label) @29 +Culled Empty Block (label) @30 +Culled Empty Block (label) @31 +Culled Empty Block (label) @32 +Culled Empty Block (label) @33 +Culled Empty Block (label) @34 +Culled Empty Block (label) @35 +Culled Empty Block (label) @36 +Culled Empty Block (label) @37 +Culled Empty Block (label) @38 +Culled Empty Block (label) @39 +Culled Empty Block (label) @40 +Culled Empty Block (label) @41 +Culled Empty Block (label) @42 +Culled Empty Block (label) @43 +Culled Empty Block (label) @44 +Culled Empty Block (label) @45 +Culled Empty Block (label) @46 +Culled Empty Block (label) @47 +Culled Empty Block (label) @48 +Culled Empty Block (label) @49 +Culled Empty Block (label) @51 +Culled Empty Block (label) @52 +Culled Empty Block (label) @53 +Culled Empty Block (label) @54 +Culled Empty Block (label) @55 +Culled Empty Block (label) @56 +Culled Empty Block (label) @57 +Culled Empty Block (label) mulf16u::@1 +Culled Empty Block (label) @58 +Culled Empty Block (label) mulf16s::@5 +Culled Empty Block (label) main::vicSelectGfxBank1_toDd001_@1 +Culled Empty Block (label) main::vicSelectGfxBank1_@return +Culled Empty Block (label) main::toD0181_@1 +Culled Empty Block (label) main::@11 +Culled Empty Block (label) main::@3 +Culled Empty Block (label) main::@12 +Culled Empty Block (label) main::@4 +Culled Empty Block (label) main::@6 +Culled Empty Block (label) main::@10 +Culled Empty Block (label) main::@16 +Culled Empty Block (label) main::@15 +Culled Empty Block (label) main::@17 +Culled Empty Block (label) main::@18 +Culled Empty Block (label) @60 +Culled Empty Block (label) show_letter::@4 +Culled Empty Block (label) show_letter::@8 +Culled Empty Block (label) show_letter::@9 +Culled Empty Block (label) show_letter::@10 +Culled Empty Block (label) @61 +Culled Empty Block (label) bitmap_plot_spline_8seg::@2 +Culled Empty Block (label) rotate::@1 +Unwinding list assignment { (signed word) show_letter::$2_x, (signed word) show_letter::$2_y } ← { (signed word) rotate::return_x, (signed word) rotate::return_y } +Unwinding list assignment { (signed word) show_letter::$7_x, (signed word) show_letter::$7_y } ← { (signed word) rotate::return_x, (signed word) rotate::return_y } +Unwinding list assignment { (signed word) rotate::return_x#0, (signed word) rotate::return_y#0 } ← { (signed word) rotate::return_x#3, (signed word) rotate::return_y#3 } +Unwinding list assignment { (signed word) rotate::return_x#1, (signed word) rotate::return_y#1 } ← { (signed word) rotate::return_x#3, (signed word) rotate::return_y#3 } +Adding versioned struct unwinding for (struct SplineVector16) rotate::return#0 +Adding versioned struct unwinding for (struct SplineVector16) rotate::return#1 + +CONTROL FLOW GRAPH SSA +@begin: scope:[] from + to:@1 +@1: scope:[] from @begin + (struct SplineVector16[9]) SPLINE_8SEG#0 ← { fill( 9, 0) } + to:@7 +spline_8segB: scope:[spline_8segB] from show_letter::@3 + (signed word) spline_8segB::p0_y#1 ← phi( show_letter::@3/(signed word) spline_8segB::p0_y#0 ) + (signed word) spline_8segB::p2_y#1 ← phi( show_letter::@3/(signed word) spline_8segB::p2_y#0 ) + (signed word) spline_8segB::p1_y#1 ← phi( show_letter::@3/(signed word) spline_8segB::p1_y#0 ) + (signed word) spline_8segB::p0_x#1 ← phi( show_letter::@3/(signed word) spline_8segB::p0_x#0 ) + (signed word) spline_8segB::p2_x#1 ← phi( show_letter::@3/(signed word) spline_8segB::p2_x#0 ) + (signed word) spline_8segB::p1_x#1 ← phi( show_letter::@3/(signed word) spline_8segB::p1_x#0 ) + (number~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#1 * (number) 2 + (number~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#1 - (number~) spline_8segB::$0 + (number~) spline_8segB::$2 ← (number~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#1 + (number~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#1 * (number) 2 + (number~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#1 - (number~) spline_8segB::$3 + (number~) spline_8segB::$5 ← (number~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#1 + (signed word) spline_8segB::a_x#0 ← (number~) spline_8segB::$2 + (signed word) spline_8segB::a_y#0 ← (number~) spline_8segB::$5 + (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#1 - (signed word) spline_8segB::p0_x#1 + (number~) spline_8segB::$7 ← (signed word~) spline_8segB::$6 * (number) 2 + (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#1 - (signed word) spline_8segB::p0_y#1 + (number~) spline_8segB::$9 ← (signed word~) spline_8segB::$8 * (number) 2 + (signed word) spline_8segB::b_x#0 ← (number~) spline_8segB::$7 + (signed word) spline_8segB::b_y#0 ← (number~) spline_8segB::$9 + (number~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 * (number) 8 + (number~) spline_8segB::$11 ← (signed word) spline_8segB::a_x#0 + (number~) spline_8segB::$10 + (number~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 * (number) 8 + (number~) spline_8segB::$13 ← (signed word) spline_8segB::a_y#0 + (number~) spline_8segB::$12 + (signed word) spline_8segB::i_x#0 ← (number~) spline_8segB::$11 + (signed word) spline_8segB::i_y#0 ← (number~) spline_8segB::$13 + (number~) spline_8segB::$14 ← (signed word) spline_8segB::a_x#0 * (number) 2 + (number~) spline_8segB::$15 ← (signed word) spline_8segB::a_y#0 * (number) 2 + (signed word) spline_8segB::j_x#0 ← (number~) spline_8segB::$14 + (signed word) spline_8segB::j_y#0 ← (number~) spline_8segB::$15 + (number~) spline_8segB::$16 ← (signed word) spline_8segB::p0_x#1 * (number) $40 + (number~) spline_8segB::$17 ← (signed word) spline_8segB::p0_y#1 * (number) $40 + (signed word) spline_8segB::p_x#0 ← (number~) spline_8segB::$16 + (signed word) spline_8segB::p_y#0 ← (number~) spline_8segB::$17 + (byte) spline_8segB::n#0 ← (byte) 0 + to:spline_8segB::@1 +spline_8segB::@1: scope:[spline_8segB] from spline_8segB spline_8segB::@1 + (signed word) spline_8segB::j_y#1 ← phi( spline_8segB/(signed word) spline_8segB::j_y#0 spline_8segB::@1/(signed word) spline_8segB::j_y#1 ) + (signed word) spline_8segB::j_x#1 ← phi( spline_8segB/(signed word) spline_8segB::j_x#0 spline_8segB::@1/(signed word) spline_8segB::j_x#1 ) + (signed word) spline_8segB::i_y#2 ← phi( spline_8segB/(signed word) spline_8segB::i_y#0 spline_8segB::@1/(signed word) spline_8segB::i_y#1 ) + (signed word) spline_8segB::i_x#2 ← phi( spline_8segB/(signed word) spline_8segB::i_x#0 spline_8segB::@1/(signed word) spline_8segB::i_x#1 ) + (byte) spline_8segB::n#2 ← phi( spline_8segB/(byte) spline_8segB::n#0 spline_8segB::@1/(byte) spline_8segB::n#1 ) + (signed word) spline_8segB::p_y#2 ← phi( spline_8segB/(signed word) spline_8segB::p_y#0 spline_8segB::@1/(signed word) spline_8segB::p_y#1 ) + (signed word) spline_8segB::p_x#2 ← phi( spline_8segB/(signed word) spline_8segB::p_x#0 spline_8segB::@1/(signed word) spline_8segB::p_x#1 ) + (number~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (number) $20 + (number~) spline_8segB::$23 ← (number~) spline_8segB::$22 / (number) $40 + (number~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (number) $20 + (number~) spline_8segB::$25 ← (number~) spline_8segB::$24 / (number) $40 + (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 + (signed word*) spline_8segB::$33 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) spline_8segB::$33 + (byte~) spline_8segB::$31) ← (number~) spline_8segB::$23 + (signed word*) spline_8segB::$34 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) spline_8segB::$34 + (byte~) spline_8segB::$31) ← (number~) spline_8segB::$25 + (signed word~) spline_8segB::$26 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 + (signed word~) spline_8segB::$27 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::p_x#1 ← (signed word~) spline_8segB::$26 + (signed word) spline_8segB::p_y#1 ← (signed word~) spline_8segB::$27 + (signed word~) spline_8segB::$28 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#1 + (signed word~) spline_8segB::$29 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#1 + (signed word) spline_8segB::i_x#1 ← (signed word~) spline_8segB::$28 + (signed word) spline_8segB::i_y#1 ← (signed word~) spline_8segB::$29 + (byte) spline_8segB::n#1 ← (byte) spline_8segB::n#2 + rangenext(0,7) + (bool~) spline_8segB::$30 ← (byte) spline_8segB::n#1 != rangelast(0,7) + if((bool~) spline_8segB::$30) goto spline_8segB::@1 + to:spline_8segB::@2 +spline_8segB::@2: scope:[spline_8segB] from spline_8segB::@1 + (signed word) spline_8segB::p_y#3 ← phi( spline_8segB::@1/(signed word) spline_8segB::p_y#1 ) + (signed word) spline_8segB::p_x#3 ← phi( spline_8segB::@1/(signed word) spline_8segB::p_x#1 ) + (number~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#3 + (number) $20 + (number~) spline_8segB::$19 ← (number~) spline_8segB::$18 / (number) $40 + (number~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#3 + (number) $20 + (number~) spline_8segB::$21 ← (number~) spline_8segB::$20 / (number) $40 + (number~) spline_8segB::$32 ← (number) 8 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 + (signed word*) spline_8segB::$35 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) spline_8segB::$35 + (number~) spline_8segB::$32) ← (number~) spline_8segB::$19 + (signed word*) spline_8segB::$36 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) spline_8segB::$36 + (number~) spline_8segB::$32) ← (number~) spline_8segB::$21 + to:spline_8segB::@return +spline_8segB::@return: scope:[spline_8segB] from spline_8segB::@2 + return + to:@return +memset: scope:[memset] from bitmap_clear bitmap_clear::@1 + (byte) memset::c#4 ← phi( bitmap_clear/(byte) memset::c#0 bitmap_clear::@1/(byte) memset::c#1 ) + (void*) memset::str#4 ← phi( bitmap_clear/(void*) memset::str#0 bitmap_clear::@1/(void*) memset::str#1 ) + (word) memset::num#2 ← phi( bitmap_clear/(word) memset::num#0 bitmap_clear::@1/(word) memset::num#1 ) + (bool~) memset::$0 ← (word) memset::num#2 > (number) 0 + (bool~) memset::$1 ← ! (bool~) memset::$0 + if((bool~) memset::$1) goto memset::@1 + to:memset::@2 +memset::@1: scope:[memset] from memset memset::@4 + (void*) memset::str#2 ← phi( memset/(void*) memset::str#4 memset::@4/(void*) memset::str#5 ) + (void*) memset::return#0 ← (void*) memset::str#2 + to:memset::@return +memset::@2: scope:[memset] from memset + (byte) memset::c#3 ← phi( memset/(byte) memset::c#4 ) + (word) memset::num#3 ← phi( memset/(word) memset::num#2 ) + (void*) memset::str#3 ← phi( memset/(void*) memset::str#4 ) + (byte*~) memset::$2 ← ((byte*)) (void*) memset::str#3 + (byte*~) memset::$3 ← (byte*~) memset::$2 + (word) memset::num#3 + (byte*) memset::end#0 ← (byte*~) memset::$3 + (byte*) memset::dst#0 ← ((byte*)) (void*) memset::str#3 + to:memset::@4 +memset::@4: scope:[memset] from memset::@2 memset::@4 + (void*) memset::str#5 ← phi( memset::@2/(void*) memset::str#3 memset::@4/(void*) memset::str#5 ) + (byte*) memset::end#1 ← phi( memset::@2/(byte*) memset::end#0 memset::@4/(byte*) memset::end#1 ) + (byte*) memset::dst#2 ← phi( memset::@2/(byte*) memset::dst#0 memset::@4/(byte*) memset::dst#1 ) + (byte) memset::c#2 ← phi( memset::@2/(byte) memset::c#3 memset::@4/(byte) memset::c#2 ) + *((byte*) memset::dst#2) ← (byte) memset::c#2 + (byte*) memset::dst#1 ← ++ (byte*) memset::dst#2 + (bool~) memset::$4 ← (byte*) memset::dst#1 != (byte*) memset::end#1 + if((bool~) memset::$4) goto memset::@4 + to:memset::@1 +memset::@return: scope:[memset] from memset::@1 + (void*) memset::return#4 ← phi( memset::@1/(void*) memset::return#0 ) + (void*) memset::return#1 ← (void*) memset::return#4 + return + to:@return +@7: scope:[] from @1 + (byte*) bitmap_screen#0 ← (byte*) 0 + (byte*) bitmap_gfx#0 ← (byte*) 0 + (byte[$100]) bitmap_plot_ylo#0 ← { fill( $100, 0) } + (byte[$100]) bitmap_plot_yhi#0 ← { fill( $100, 0) } + (byte[$100]) bitmap_plot_bit#0 ← { fill( $100, 0) } + to:@13 +bitmap_init: scope:[bitmap_init] from main::@21 + (byte*) bitmap_init::screen#1 ← phi( main::@21/(byte*) bitmap_init::screen#0 ) + (byte*) bitmap_init::gfx#1 ← phi( main::@21/(byte*) bitmap_init::gfx#0 ) + (byte*) bitmap_gfx#1 ← (byte*) bitmap_init::gfx#1 + (byte*) bitmap_screen#1 ← (byte*) bitmap_init::screen#1 + (byte) bitmap_init::bits#0 ← (number) $80 + (byte) bitmap_init::x#0 ← (byte) 0 + to:bitmap_init::@1 +bitmap_init::@1: scope:[bitmap_init] from bitmap_init bitmap_init::@2 + (byte*) bitmap_screen#30 ← phi( bitmap_init/(byte*) bitmap_screen#1 bitmap_init::@2/(byte*) bitmap_screen#26 ) + (byte*) bitmap_gfx#31 ← phi( bitmap_init/(byte*) bitmap_gfx#1 bitmap_init::@2/(byte*) bitmap_gfx#27 ) + (byte*) bitmap_init::gfx#4 ← phi( bitmap_init/(byte*) bitmap_init::gfx#1 bitmap_init::@2/(byte*) bitmap_init::gfx#3 ) + (byte) bitmap_init::x#2 ← phi( bitmap_init/(byte) bitmap_init::x#0 bitmap_init::@2/(byte) bitmap_init::x#1 ) + (byte) bitmap_init::bits#3 ← phi( bitmap_init/(byte) bitmap_init::bits#0 bitmap_init::@2/(byte) bitmap_init::bits#4 ) + *((byte[$100]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 + (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (number) 1 + (bool~) bitmap_init::$0 ← (byte) bitmap_init::bits#1 == (number) 0 + (bool~) bitmap_init::$1 ← ! (bool~) bitmap_init::$0 + if((bool~) bitmap_init::$1) goto bitmap_init::@2 + to:bitmap_init::@3 +bitmap_init::@2: scope:[bitmap_init] from bitmap_init::@1 bitmap_init::@3 + (byte*) bitmap_screen#26 ← phi( bitmap_init::@1/(byte*) bitmap_screen#30 bitmap_init::@3/(byte*) bitmap_screen#31 ) + (byte*) bitmap_gfx#27 ← phi( bitmap_init::@1/(byte*) bitmap_gfx#31 bitmap_init::@3/(byte*) bitmap_gfx#32 ) + (byte*) bitmap_init::gfx#3 ← phi( bitmap_init::@1/(byte*) bitmap_init::gfx#4 bitmap_init::@3/(byte*) bitmap_init::gfx#5 ) + (byte) bitmap_init::bits#4 ← phi( bitmap_init::@1/(byte) bitmap_init::bits#1 bitmap_init::@3/(byte) bitmap_init::bits#2 ) + (byte) bitmap_init::x#3 ← phi( bitmap_init::@1/(byte) bitmap_init::x#2 bitmap_init::@3/(byte) bitmap_init::x#4 ) + (byte) bitmap_init::x#1 ← (byte) bitmap_init::x#3 + rangenext(0,$ff) + (bool~) bitmap_init::$2 ← (byte) bitmap_init::x#1 != rangelast(0,$ff) + if((bool~) bitmap_init::$2) goto bitmap_init::@1 + to:bitmap_init::@4 +bitmap_init::@3: scope:[bitmap_init] from bitmap_init::@1 + (byte*) bitmap_screen#31 ← phi( bitmap_init::@1/(byte*) bitmap_screen#30 ) + (byte*) bitmap_gfx#32 ← phi( bitmap_init::@1/(byte*) bitmap_gfx#31 ) + (byte*) bitmap_init::gfx#5 ← phi( bitmap_init::@1/(byte*) bitmap_init::gfx#4 ) + (byte) bitmap_init::x#4 ← phi( bitmap_init::@1/(byte) bitmap_init::x#2 ) + (byte) bitmap_init::bits#2 ← (number) $80 + to:bitmap_init::@2 +bitmap_init::@4: scope:[bitmap_init] from bitmap_init::@2 + (byte*) bitmap_screen#22 ← phi( bitmap_init::@2/(byte*) bitmap_screen#26 ) + (byte*) bitmap_gfx#23 ← phi( bitmap_init::@2/(byte*) bitmap_gfx#27 ) + (byte*) bitmap_init::gfx#2 ← phi( bitmap_init::@2/(byte*) bitmap_init::gfx#3 ) + (byte*) bitmap_init::yoffs#0 ← (byte*) bitmap_init::gfx#2 + (byte) bitmap_init::y#0 ← (byte) 0 + to:bitmap_init::@5 +bitmap_init::@5: scope:[bitmap_init] from bitmap_init::@4 bitmap_init::@6 + (byte*) bitmap_screen#16 ← phi( bitmap_init::@4/(byte*) bitmap_screen#22 bitmap_init::@6/(byte*) bitmap_screen#11 ) + (byte*) bitmap_gfx#16 ← phi( bitmap_init::@4/(byte*) bitmap_gfx#23 bitmap_init::@6/(byte*) bitmap_gfx#11 ) + (byte*) bitmap_init::yoffs#2 ← phi( bitmap_init::@4/(byte*) bitmap_init::yoffs#0 bitmap_init::@6/(byte*) bitmap_init::yoffs#4 ) + (byte) bitmap_init::y#2 ← phi( bitmap_init::@4/(byte) bitmap_init::y#0 bitmap_init::@6/(byte) bitmap_init::y#1 ) + (number~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (number) 7 + (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 + (number~) bitmap_init::$5 ← (number~) bitmap_init::$3 | (byte~) bitmap_init::$4 + *((byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (number~) bitmap_init::$5 + (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 + *((byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 + (number~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (number) 7 + (bool~) bitmap_init::$8 ← (number~) bitmap_init::$7 == (number) 7 + (bool~) bitmap_init::$9 ← ! (bool~) bitmap_init::$8 + if((bool~) bitmap_init::$9) goto bitmap_init::@6 + to:bitmap_init::@7 +bitmap_init::@6: scope:[bitmap_init] from bitmap_init::@5 bitmap_init::@7 + (byte*) bitmap_screen#11 ← phi( bitmap_init::@5/(byte*) bitmap_screen#16 bitmap_init::@7/(byte*) bitmap_screen#17 ) + (byte*) bitmap_gfx#11 ← phi( bitmap_init::@5/(byte*) bitmap_gfx#16 bitmap_init::@7/(byte*) bitmap_gfx#17 ) + (byte*) bitmap_init::yoffs#4 ← phi( bitmap_init::@5/(byte*) bitmap_init::yoffs#2 bitmap_init::@7/(byte*) bitmap_init::yoffs#1 ) + (byte) bitmap_init::y#3 ← phi( bitmap_init::@5/(byte) bitmap_init::y#2 bitmap_init::@7/(byte) bitmap_init::y#4 ) + (byte) bitmap_init::y#1 ← (byte) bitmap_init::y#3 + rangenext(0,$ff) + (bool~) bitmap_init::$11 ← (byte) bitmap_init::y#1 != rangelast(0,$ff) + if((bool~) bitmap_init::$11) goto bitmap_init::@5 + to:bitmap_init::@return +bitmap_init::@7: scope:[bitmap_init] from bitmap_init::@5 + (byte*) bitmap_screen#17 ← phi( bitmap_init::@5/(byte*) bitmap_screen#16 ) + (byte*) bitmap_gfx#17 ← phi( bitmap_init::@5/(byte*) bitmap_gfx#16 ) + (byte) bitmap_init::y#4 ← phi( bitmap_init::@5/(byte) bitmap_init::y#2 ) + (byte*) bitmap_init::yoffs#3 ← phi( bitmap_init::@5/(byte*) bitmap_init::yoffs#2 ) + (byte*~) bitmap_init::$10 ← (byte*) bitmap_init::yoffs#3 + (number) $28*(number) 8 + (byte*) bitmap_init::yoffs#1 ← (byte*~) bitmap_init::$10 + to:bitmap_init::@6 +bitmap_init::@return: scope:[bitmap_init] from bitmap_init::@6 + (byte*) bitmap_screen#6 ← phi( bitmap_init::@6/(byte*) bitmap_screen#11 ) + (byte*) bitmap_gfx#6 ← phi( bitmap_init::@6/(byte*) bitmap_gfx#11 ) + (byte*) bitmap_gfx#2 ← (byte*) bitmap_gfx#6 + (byte*) bitmap_screen#2 ← (byte*) bitmap_screen#6 + return + to:@return +bitmap_clear: scope:[bitmap_clear] from main::@2 main::@22 + (byte*) bitmap_gfx#12 ← phi( main::@2/(byte*) bitmap_gfx#18 main::@22/(byte*) bitmap_gfx#3 ) + (byte*) bitmap_screen#7 ← phi( main::@2/(byte*) bitmap_screen#12 main::@22/(byte*) bitmap_screen#3 ) + (byte) bitmap_clear::bgcol#2 ← phi( main::@2/(byte) bitmap_clear::bgcol#1 main::@22/(byte) bitmap_clear::bgcol#0 ) + (byte) bitmap_clear::fgcol#2 ← phi( main::@2/(byte) bitmap_clear::fgcol#1 main::@22/(byte) bitmap_clear::fgcol#0 ) + (number~) bitmap_clear::$0 ← (byte) bitmap_clear::fgcol#2 * (number) $10 + (number~) bitmap_clear::$1 ← (number~) bitmap_clear::$0 + (byte) bitmap_clear::bgcol#2 + (byte) bitmap_clear::col#0 ← (number~) bitmap_clear::$1 + (void*) memset::str#0 ← (void*)(byte*) bitmap_screen#7 + (byte) memset::c#0 ← (byte) bitmap_clear::col#0 + (word) memset::num#0 ← (word) $3e8 + call memset + (void*) memset::return#2 ← (void*) memset::return#1 + to:bitmap_clear::@1 +bitmap_clear::@1: scope:[bitmap_clear] from bitmap_clear + (byte*) bitmap_gfx#7 ← phi( bitmap_clear/(byte*) bitmap_gfx#12 ) + (void*) memset::str#1 ← (void*)(byte*) bitmap_gfx#7 + (byte) memset::c#1 ← (number) 0 + (word) memset::num#1 ← (word) $1f40 + call memset + (void*) memset::return#3 ← (void*) memset::return#1 + to:bitmap_clear::@2 +bitmap_clear::@2: scope:[bitmap_clear] from bitmap_clear::@1 + to:bitmap_clear::@return +bitmap_clear::@return: scope:[bitmap_clear] from bitmap_clear::@2 + return + to:@return +bitmap_plot: scope:[bitmap_plot] from bitmap_line::@12 bitmap_line::@3 bitmap_line::@4 bitmap_line::@7 + (word) bitmap_plot::x#4 ← phi( bitmap_line::@12/(word) bitmap_plot::x#3 bitmap_line::@3/(word) bitmap_plot::x#2 bitmap_line::@4/(word) bitmap_plot::x#0 bitmap_line::@7/(word) bitmap_plot::x#1 ) + (byte) bitmap_plot::y#4 ← phi( bitmap_line::@12/(byte) bitmap_plot::y#3 bitmap_line::@3/(byte) bitmap_plot::y#2 bitmap_line::@4/(byte) bitmap_plot::y#0 bitmap_line::@7/(byte) bitmap_plot::y#1 ) + (byte*~) bitmap_plot::$0 ← ((byte*)) { *((byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4), *((byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) } + (byte*) bitmap_plot::plotter#0 ← (byte*~) bitmap_plot::$0 + (number~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (number) $fff8 + (byte*) bitmap_plot::plotter#1 ← (byte*) bitmap_plot::plotter#0 + (number~) bitmap_plot::$1 + (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#4 + *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((byte[$100]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) + to:bitmap_plot::@return +bitmap_plot::@return: scope:[bitmap_plot] from bitmap_plot + return + to:@return +bitmap_line: scope:[bitmap_line] from bitmap_plot_spline_8seg::@1 show_letter::@7 + (word) bitmap_line::y2#5 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::y2#1 show_letter::@7/(word) bitmap_line::y2#0 ) + (word) bitmap_line::x2#2 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::x2#1 show_letter::@7/(word) bitmap_line::x2#0 ) + (word) bitmap_line::y1#2 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::y1#1 show_letter::@7/(word) bitmap_line::y1#0 ) + (word) bitmap_line::x1#2 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::x1#1 show_letter::@7/(word) bitmap_line::x1#0 ) + (word) bitmap_line::x#0 ← (word) bitmap_line::x1#2 + (word) bitmap_line::y#0 ← (word) bitmap_line::y1#2 + (word~) bitmap_line::$0 ← (word) bitmap_line::x2#2 - (word) bitmap_line::x1#2 + (word) abs_u16::w#0 ← (word~) bitmap_line::$0 + call abs_u16 + (word) abs_u16::return#0 ← (word) abs_u16::return#4 + to:bitmap_line::@16 +bitmap_line::@16: scope:[bitmap_line] from bitmap_line + (word) bitmap_line::x#16 ← phi( bitmap_line/(word) bitmap_line::x#0 ) + (word) bitmap_line::y#16 ← phi( bitmap_line/(word) bitmap_line::y#0 ) + (word) bitmap_line::x1#5 ← phi( bitmap_line/(word) bitmap_line::x1#2 ) + (word) bitmap_line::x2#8 ← phi( bitmap_line/(word) bitmap_line::x2#2 ) + (word) bitmap_line::y1#3 ← phi( bitmap_line/(word) bitmap_line::y1#2 ) + (word) bitmap_line::y2#2 ← phi( bitmap_line/(word) bitmap_line::y2#5 ) + (word) abs_u16::return#5 ← phi( bitmap_line/(word) abs_u16::return#0 ) + (word~) bitmap_line::$1 ← (word) abs_u16::return#5 + (word) bitmap_line::dx#0 ← (word~) bitmap_line::$1 + (word~) bitmap_line::$2 ← (word) bitmap_line::y2#2 - (word) bitmap_line::y1#3 + (word) abs_u16::w#1 ← (word~) bitmap_line::$2 + call abs_u16 + (word) abs_u16::return#1 ← (word) abs_u16::return#4 + to:bitmap_line::@17 +bitmap_line::@17: scope:[bitmap_line] from bitmap_line::@16 + (word) bitmap_line::y1#6 ← phi( bitmap_line::@16/(word) bitmap_line::y1#3 ) + (word) bitmap_line::y2#9 ← phi( bitmap_line::@16/(word) bitmap_line::y2#2 ) + (word) bitmap_line::x#10 ← phi( bitmap_line::@16/(word) bitmap_line::x#16 ) + (word) bitmap_line::y#10 ← phi( bitmap_line::@16/(word) bitmap_line::y#16 ) + (word) bitmap_line::x1#4 ← phi( bitmap_line::@16/(word) bitmap_line::x1#5 ) + (word) bitmap_line::x2#5 ← phi( bitmap_line::@16/(word) bitmap_line::x2#8 ) + (word) bitmap_line::dx#1 ← phi( bitmap_line::@16/(word) bitmap_line::dx#0 ) + (word) abs_u16::return#6 ← phi( bitmap_line::@16/(word) abs_u16::return#1 ) + (word~) bitmap_line::$3 ← (word) abs_u16::return#6 + (word) bitmap_line::dy#0 ← (word~) bitmap_line::$3 + (bool~) bitmap_line::$4 ← (word) bitmap_line::dx#1 == (number) 0 + (bool~) bitmap_line::$5 ← (word) bitmap_line::dy#0 == (number) 0 + (bool~) bitmap_line::$6 ← (bool~) bitmap_line::$4 && (bool~) bitmap_line::$5 + (bool~) bitmap_line::$7 ← ! (bool~) bitmap_line::$6 + if((bool~) bitmap_line::$7) goto bitmap_line::@1 + to:bitmap_line::@4 +bitmap_line::@1: scope:[bitmap_line] from bitmap_line::@17 + (word) bitmap_line::x#19 ← phi( bitmap_line::@17/(word) bitmap_line::x#10 ) + (word) bitmap_line::y#19 ← phi( bitmap_line::@17/(word) bitmap_line::y#10 ) + (word) bitmap_line::dy#9 ← phi( bitmap_line::@17/(word) bitmap_line::dy#0 ) + (word) bitmap_line::dx#10 ← phi( bitmap_line::@17/(word) bitmap_line::dx#1 ) + (word) bitmap_line::y1#5 ← phi( bitmap_line::@17/(word) bitmap_line::y1#6 ) + (word) bitmap_line::y2#6 ← phi( bitmap_line::@17/(word) bitmap_line::y2#9 ) + (word) bitmap_line::x1#3 ← phi( bitmap_line::@17/(word) bitmap_line::x1#4 ) + (word) bitmap_line::x2#3 ← phi( bitmap_line::@17/(word) bitmap_line::x2#5 ) + (word~) bitmap_line::$8 ← (word) bitmap_line::x2#3 - (word) bitmap_line::x1#3 + (word) sgn_u16::w#0 ← (word~) bitmap_line::$8 + call sgn_u16 + (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 + to:bitmap_line::@18 +bitmap_line::@18: scope:[bitmap_line] from bitmap_line::@1 + (word) bitmap_line::x2#12 ← phi( bitmap_line::@1/(word) bitmap_line::x2#3 ) + (word) bitmap_line::x#18 ← phi( bitmap_line::@1/(word) bitmap_line::x#19 ) + (word) bitmap_line::y#18 ← phi( bitmap_line::@1/(word) bitmap_line::y#19 ) + (word) bitmap_line::dy#6 ← phi( bitmap_line::@1/(word) bitmap_line::dy#9 ) + (word) bitmap_line::dx#7 ← phi( bitmap_line::@1/(word) bitmap_line::dx#10 ) + (word) bitmap_line::y1#4 ← phi( bitmap_line::@1/(word) bitmap_line::y1#5 ) + (word) bitmap_line::y2#3 ← phi( bitmap_line::@1/(word) bitmap_line::y2#6 ) + (word) sgn_u16::return#5 ← phi( bitmap_line::@1/(word) sgn_u16::return#0 ) + (word~) bitmap_line::$9 ← (word) sgn_u16::return#5 + (word) bitmap_line::sx#0 ← (word~) bitmap_line::$9 + (word~) bitmap_line::$10 ← (word) bitmap_line::y2#3 - (word) bitmap_line::y1#4 + (word) sgn_u16::w#1 ← (word~) bitmap_line::$10 + call sgn_u16 + (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 + to:bitmap_line::@19 +bitmap_line::@19: scope:[bitmap_line] from bitmap_line::@18 + (word) bitmap_line::y2#12 ← phi( bitmap_line::@18/(word) bitmap_line::y2#3 ) + (word) bitmap_line::x2#11 ← phi( bitmap_line::@18/(word) bitmap_line::x2#12 ) + (word) bitmap_line::sx#8 ← phi( bitmap_line::@18/(word) bitmap_line::sx#0 ) + (word) bitmap_line::x#17 ← phi( bitmap_line::@18/(word) bitmap_line::x#18 ) + (word) bitmap_line::y#17 ← phi( bitmap_line::@18/(word) bitmap_line::y#18 ) + (word) bitmap_line::dy#1 ← phi( bitmap_line::@18/(word) bitmap_line::dy#6 ) + (word) bitmap_line::dx#2 ← phi( bitmap_line::@18/(word) bitmap_line::dx#7 ) + (word) sgn_u16::return#6 ← phi( bitmap_line::@18/(word) sgn_u16::return#1 ) + (word~) bitmap_line::$11 ← (word) sgn_u16::return#6 + (word) bitmap_line::sy#0 ← (word~) bitmap_line::$11 + (bool~) bitmap_line::$12 ← (word) bitmap_line::dx#2 > (word) bitmap_line::dy#1 + if((bool~) bitmap_line::$12) goto bitmap_line::@2 + to:bitmap_line::@6 +bitmap_line::@4: scope:[bitmap_line] from bitmap_line::@17 + (word) bitmap_line::x#3 ← phi( bitmap_line::@17/(word) bitmap_line::x#10 ) + (word) bitmap_line::y#3 ← phi( bitmap_line::@17/(word) bitmap_line::y#10 ) + (byte~) bitmap_line::$15 ← ((byte)) (word) bitmap_line::y#3 + (word) bitmap_plot::x#0 ← (word) bitmap_line::x#3 + (byte) bitmap_plot::y#0 ← (byte~) bitmap_line::$15 + call bitmap_plot + to:bitmap_line::@20 +bitmap_line::@20: scope:[bitmap_line] from bitmap_line::@4 + to:bitmap_line::@return +bitmap_line::@return: scope:[bitmap_line] from bitmap_line::@20 bitmap_line::@22 + return + to:@return +bitmap_line::@2: scope:[bitmap_line] from bitmap_line::@19 + (word) bitmap_line::sy#10 ← phi( bitmap_line::@19/(word) bitmap_line::sy#0 ) + (word) bitmap_line::x2#10 ← phi( bitmap_line::@19/(word) bitmap_line::x2#11 ) + (word) bitmap_line::dx#13 ← phi( bitmap_line::@19/(word) bitmap_line::dx#2 ) + (word) bitmap_line::sx#7 ← phi( bitmap_line::@19/(word) bitmap_line::sx#8 ) + (word) bitmap_line::x#14 ← phi( bitmap_line::@19/(word) bitmap_line::x#17 ) + (word) bitmap_line::y#14 ← phi( bitmap_line::@19/(word) bitmap_line::y#17 ) + (word) bitmap_line::dy#2 ← phi( bitmap_line::@19/(word) bitmap_line::dy#1 ) + (number~) bitmap_line::$23 ← (word) bitmap_line::dy#2 / (number) 2 + (word) bitmap_line::e1#0 ← (number~) bitmap_line::$23 + to:bitmap_line::@12 +bitmap_line::@6: scope:[bitmap_line] from bitmap_line::@19 + (word) bitmap_line::sx#9 ← phi( bitmap_line::@19/(word) bitmap_line::sx#8 ) + (word) bitmap_line::y2#11 ← phi( bitmap_line::@19/(word) bitmap_line::y2#12 ) + (word) bitmap_line::dy#10 ← phi( bitmap_line::@19/(word) bitmap_line::dy#1 ) + (word) bitmap_line::sy#5 ← phi( bitmap_line::@19/(word) bitmap_line::sy#0 ) + (word) bitmap_line::x#11 ← phi( bitmap_line::@19/(word) bitmap_line::x#17 ) + (word) bitmap_line::y#11 ← phi( bitmap_line::@19/(word) bitmap_line::y#17 ) + (word) bitmap_line::dx#3 ← phi( bitmap_line::@19/(word) bitmap_line::dx#2 ) + (number~) bitmap_line::$17 ← (word) bitmap_line::dx#3 / (number) 2 + (word) bitmap_line::e#0 ← (number~) bitmap_line::$17 + to:bitmap_line::@7 +bitmap_line::@7: scope:[bitmap_line] from bitmap_line::@6 bitmap_line::@8 + (word) bitmap_line::sx#5 ← phi( bitmap_line::@6/(word) bitmap_line::sx#9 bitmap_line::@8/(word) bitmap_line::sx#10 ) + (word) bitmap_line::y2#10 ← phi( bitmap_line::@6/(word) bitmap_line::y2#11 bitmap_line::@8/(word) bitmap_line::y2#4 ) + (word) bitmap_line::dy#7 ← phi( bitmap_line::@6/(word) bitmap_line::dy#10 bitmap_line::@8/(word) bitmap_line::dy#11 ) + (word) bitmap_line::dx#8 ← phi( bitmap_line::@6/(word) bitmap_line::dx#3 bitmap_line::@8/(word) bitmap_line::dx#11 ) + (word) bitmap_line::e#5 ← phi( bitmap_line::@6/(word) bitmap_line::e#0 bitmap_line::@8/(word) bitmap_line::e#6 ) + (word) bitmap_line::sy#3 ← phi( bitmap_line::@6/(word) bitmap_line::sy#5 bitmap_line::@8/(word) bitmap_line::sy#6 ) + (word) bitmap_line::x#4 ← phi( bitmap_line::@6/(word) bitmap_line::x#11 bitmap_line::@8/(word) bitmap_line::x#12 ) + (word) bitmap_line::y#4 ← phi( bitmap_line::@6/(word) bitmap_line::y#11 bitmap_line::@8/(word) bitmap_line::y#6 ) + (byte~) bitmap_line::$18 ← ((byte)) (word) bitmap_line::y#4 + (word) bitmap_plot::x#1 ← (word) bitmap_line::x#4 + (byte) bitmap_plot::y#1 ← (byte~) bitmap_line::$18 + call bitmap_plot + to:bitmap_line::@21 +bitmap_line::@21: scope:[bitmap_line] from bitmap_line::@7 + (word) bitmap_line::sx#3 ← phi( bitmap_line::@7/(word) bitmap_line::sx#5 ) + (word) bitmap_line::x#13 ← phi( bitmap_line::@7/(word) bitmap_line::x#4 ) + (word) bitmap_line::y2#7 ← phi( bitmap_line::@7/(word) bitmap_line::y2#10 ) + (word) bitmap_line::dy#3 ← phi( bitmap_line::@7/(word) bitmap_line::dy#7 ) + (word) bitmap_line::dx#4 ← phi( bitmap_line::@7/(word) bitmap_line::dx#8 ) + (word) bitmap_line::e#3 ← phi( bitmap_line::@7/(word) bitmap_line::e#5 ) + (word) bitmap_line::sy#1 ← phi( bitmap_line::@7/(word) bitmap_line::sy#3 ) + (word) bitmap_line::y#5 ← phi( bitmap_line::@7/(word) bitmap_line::y#4 ) + (word) bitmap_line::y#1 ← (word) bitmap_line::y#5 + (word) bitmap_line::sy#1 + (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#4 + (bool~) bitmap_line::$20 ← (word) bitmap_line::dy#3 < (word) bitmap_line::e#1 + (bool~) bitmap_line::$21 ← ! (bool~) bitmap_line::$20 + if((bool~) bitmap_line::$21) goto bitmap_line::@8 + to:bitmap_line::@9 +bitmap_line::@8: scope:[bitmap_line] from bitmap_line::@21 bitmap_line::@9 + (word) bitmap_line::sx#10 ← phi( bitmap_line::@21/(word) bitmap_line::sx#3 bitmap_line::@9/(word) bitmap_line::sx#1 ) + (word) bitmap_line::dy#11 ← phi( bitmap_line::@21/(word) bitmap_line::dy#3 bitmap_line::@9/(word) bitmap_line::dy#4 ) + (word) bitmap_line::dx#11 ← phi( bitmap_line::@21/(word) bitmap_line::dx#4 bitmap_line::@9/(word) bitmap_line::dx#14 ) + (word) bitmap_line::e#6 ← phi( bitmap_line::@21/(word) bitmap_line::e#1 bitmap_line::@9/(word) bitmap_line::e#2 ) + (word) bitmap_line::sy#6 ← phi( bitmap_line::@21/(word) bitmap_line::sy#1 bitmap_line::@9/(word) bitmap_line::sy#8 ) + (word) bitmap_line::x#12 ← phi( bitmap_line::@21/(word) bitmap_line::x#13 bitmap_line::@9/(word) bitmap_line::x#1 ) + (word) bitmap_line::y2#4 ← phi( bitmap_line::@21/(word) bitmap_line::y2#7 bitmap_line::@9/(word) bitmap_line::y2#8 ) + (word) bitmap_line::y#6 ← phi( bitmap_line::@21/(word) bitmap_line::y#1 bitmap_line::@9/(word) bitmap_line::y#12 ) + (bool~) bitmap_line::$22 ← (word) bitmap_line::y#6 != (word) bitmap_line::y2#4 + if((bool~) bitmap_line::$22) goto bitmap_line::@7 + to:bitmap_line::@3 +bitmap_line::@9: scope:[bitmap_line] from bitmap_line::@21 + (word) bitmap_line::dx#14 ← phi( bitmap_line::@21/(word) bitmap_line::dx#4 ) + (word) bitmap_line::sy#8 ← phi( bitmap_line::@21/(word) bitmap_line::sy#1 ) + (word) bitmap_line::y2#8 ← phi( bitmap_line::@21/(word) bitmap_line::y2#7 ) + (word) bitmap_line::y#12 ← phi( bitmap_line::@21/(word) bitmap_line::y#1 ) + (word) bitmap_line::dy#4 ← phi( bitmap_line::@21/(word) bitmap_line::dy#3 ) + (word) bitmap_line::e#4 ← phi( bitmap_line::@21/(word) bitmap_line::e#1 ) + (word) bitmap_line::sx#1 ← phi( bitmap_line::@21/(word) bitmap_line::sx#3 ) + (word) bitmap_line::x#5 ← phi( bitmap_line::@21/(word) bitmap_line::x#13 ) + (word) bitmap_line::x#1 ← (word) bitmap_line::x#5 + (word) bitmap_line::sx#1 + (word) bitmap_line::e#2 ← (word) bitmap_line::e#4 - (word) bitmap_line::dy#4 + to:bitmap_line::@8 +bitmap_line::@3: scope:[bitmap_line] from bitmap_line::@13 bitmap_line::@8 + (word) bitmap_line::x#6 ← phi( bitmap_line::@13/(word) bitmap_line::x#9 bitmap_line::@8/(word) bitmap_line::x#12 ) + (word) bitmap_line::y#7 ← phi( bitmap_line::@13/(word) bitmap_line::y#13 bitmap_line::@8/(word) bitmap_line::y#6 ) + (byte~) bitmap_line::$13 ← ((byte)) (word) bitmap_line::y#7 + (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 + (byte) bitmap_plot::y#2 ← (byte~) bitmap_line::$13 + call bitmap_plot + to:bitmap_line::@22 +bitmap_line::@22: scope:[bitmap_line] from bitmap_line::@3 + to:bitmap_line::@return +bitmap_line::@12: scope:[bitmap_line] from bitmap_line::@13 bitmap_line::@2 + (word) bitmap_line::sy#7 ← phi( bitmap_line::@13/(word) bitmap_line::sy#9 bitmap_line::@2/(word) bitmap_line::sy#10 ) + (word) bitmap_line::x2#9 ← phi( bitmap_line::@13/(word) bitmap_line::x2#4 bitmap_line::@2/(word) bitmap_line::x2#10 ) + (word) bitmap_line::dx#9 ← phi( bitmap_line::@13/(word) bitmap_line::dx#12 bitmap_line::@2/(word) bitmap_line::dx#13 ) + (word) bitmap_line::dy#8 ← phi( bitmap_line::@13/(word) bitmap_line::dy#12 bitmap_line::@2/(word) bitmap_line::dy#2 ) + (word) bitmap_line::e1#5 ← phi( bitmap_line::@13/(word) bitmap_line::e1#6 bitmap_line::@2/(word) bitmap_line::e1#0 ) + (word) bitmap_line::sx#4 ← phi( bitmap_line::@13/(word) bitmap_line::sx#6 bitmap_line::@2/(word) bitmap_line::sx#7 ) + (word) bitmap_line::x#7 ← phi( bitmap_line::@13/(word) bitmap_line::x#9 bitmap_line::@2/(word) bitmap_line::x#14 ) + (word) bitmap_line::y#8 ← phi( bitmap_line::@13/(word) bitmap_line::y#13 bitmap_line::@2/(word) bitmap_line::y#14 ) + (byte~) bitmap_line::$24 ← ((byte)) (word) bitmap_line::y#8 + (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 + (byte) bitmap_plot::y#3 ← (byte~) bitmap_line::$24 + call bitmap_plot + to:bitmap_line::@23 +bitmap_line::@23: scope:[bitmap_line] from bitmap_line::@12 + (word) bitmap_line::sy#4 ← phi( bitmap_line::@12/(word) bitmap_line::sy#7 ) + (word) bitmap_line::y#15 ← phi( bitmap_line::@12/(word) bitmap_line::y#8 ) + (word) bitmap_line::x2#7 ← phi( bitmap_line::@12/(word) bitmap_line::x2#9 ) + (word) bitmap_line::dx#5 ← phi( bitmap_line::@12/(word) bitmap_line::dx#9 ) + (word) bitmap_line::dy#5 ← phi( bitmap_line::@12/(word) bitmap_line::dy#8 ) + (word) bitmap_line::e1#3 ← phi( bitmap_line::@12/(word) bitmap_line::e1#5 ) + (word) bitmap_line::sx#2 ← phi( bitmap_line::@12/(word) bitmap_line::sx#4 ) + (word) bitmap_line::x#8 ← phi( bitmap_line::@12/(word) bitmap_line::x#7 ) + (word) bitmap_line::x#2 ← (word) bitmap_line::x#8 + (word) bitmap_line::sx#2 + (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#5 + (bool~) bitmap_line::$26 ← (word) bitmap_line::dx#5 < (word) bitmap_line::e1#1 + (bool~) bitmap_line::$27 ← ! (bool~) bitmap_line::$26 + if((bool~) bitmap_line::$27) goto bitmap_line::@13 + to:bitmap_line::@14 +bitmap_line::@13: scope:[bitmap_line] from bitmap_line::@14 bitmap_line::@23 + (word) bitmap_line::sy#9 ← phi( bitmap_line::@14/(word) bitmap_line::sy#2 bitmap_line::@23/(word) bitmap_line::sy#4 ) + (word) bitmap_line::dx#12 ← phi( bitmap_line::@14/(word) bitmap_line::dx#6 bitmap_line::@23/(word) bitmap_line::dx#5 ) + (word) bitmap_line::dy#12 ← phi( bitmap_line::@14/(word) bitmap_line::dy#13 bitmap_line::@23/(word) bitmap_line::dy#5 ) + (word) bitmap_line::e1#6 ← phi( bitmap_line::@14/(word) bitmap_line::e1#2 bitmap_line::@23/(word) bitmap_line::e1#1 ) + (word) bitmap_line::sx#6 ← phi( bitmap_line::@14/(word) bitmap_line::sx#11 bitmap_line::@23/(word) bitmap_line::sx#2 ) + (word) bitmap_line::y#13 ← phi( bitmap_line::@14/(word) bitmap_line::y#2 bitmap_line::@23/(word) bitmap_line::y#15 ) + (word) bitmap_line::x2#4 ← phi( bitmap_line::@14/(word) bitmap_line::x2#6 bitmap_line::@23/(word) bitmap_line::x2#7 ) + (word) bitmap_line::x#9 ← phi( bitmap_line::@14/(word) bitmap_line::x#15 bitmap_line::@23/(word) bitmap_line::x#2 ) + (bool~) bitmap_line::$28 ← (word) bitmap_line::x#9 != (word) bitmap_line::x2#4 + if((bool~) bitmap_line::$28) goto bitmap_line::@12 + to:bitmap_line::@3 +bitmap_line::@14: scope:[bitmap_line] from bitmap_line::@23 + (word) bitmap_line::dy#13 ← phi( bitmap_line::@23/(word) bitmap_line::dy#5 ) + (word) bitmap_line::sx#11 ← phi( bitmap_line::@23/(word) bitmap_line::sx#2 ) + (word) bitmap_line::x2#6 ← phi( bitmap_line::@23/(word) bitmap_line::x2#7 ) + (word) bitmap_line::x#15 ← phi( bitmap_line::@23/(word) bitmap_line::x#2 ) + (word) bitmap_line::dx#6 ← phi( bitmap_line::@23/(word) bitmap_line::dx#5 ) + (word) bitmap_line::e1#4 ← phi( bitmap_line::@23/(word) bitmap_line::e1#1 ) + (word) bitmap_line::sy#2 ← phi( bitmap_line::@23/(word) bitmap_line::sy#4 ) + (word) bitmap_line::y#9 ← phi( bitmap_line::@23/(word) bitmap_line::y#15 ) + (word) bitmap_line::y#2 ← (word) bitmap_line::y#9 + (word) bitmap_line::sy#2 + (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#4 - (word) bitmap_line::dx#6 + to:bitmap_line::@13 +abs_u16: scope:[abs_u16] from bitmap_line bitmap_line::@16 + (word) abs_u16::w#2 ← phi( bitmap_line/(word) abs_u16::w#0 bitmap_line::@16/(word) abs_u16::w#1 ) + (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 + (number~) abs_u16::$1 ← (byte~) abs_u16::$0 & (number) $80 + (bool~) abs_u16::$3 ← (number) 0 != (number~) abs_u16::$1 + if((bool~) abs_u16::$3) goto abs_u16::@1 + to:abs_u16::@3 +abs_u16::@1: scope:[abs_u16] from abs_u16 + (word) abs_u16::w#3 ← phi( abs_u16/(word) abs_u16::w#2 ) + (word~) abs_u16::$2 ← - (word) abs_u16::w#3 + (word) abs_u16::return#2 ← (word~) abs_u16::$2 + to:abs_u16::@return +abs_u16::@3: scope:[abs_u16] from abs_u16 + (word) abs_u16::w#4 ← phi( abs_u16/(word) abs_u16::w#2 ) + (word) abs_u16::return#3 ← (word) abs_u16::w#4 + to:abs_u16::@return +abs_u16::@return: scope:[abs_u16] from abs_u16::@1 abs_u16::@3 + (word) abs_u16::return#7 ← phi( abs_u16::@1/(word) abs_u16::return#2 abs_u16::@3/(word) abs_u16::return#3 ) + (word) abs_u16::return#4 ← (word) abs_u16::return#7 + return + to:@return +sgn_u16: scope:[sgn_u16] from bitmap_line::@1 bitmap_line::@18 + (word) sgn_u16::w#2 ← phi( bitmap_line::@1/(word) sgn_u16::w#0 bitmap_line::@18/(word) sgn_u16::w#1 ) + (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 + (number~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (number) $80 + (bool~) sgn_u16::$2 ← (number) 0 != (number~) sgn_u16::$1 + if((bool~) sgn_u16::$2) goto sgn_u16::@1 + to:sgn_u16::@3 +sgn_u16::@1: scope:[sgn_u16] from sgn_u16 + (word) sgn_u16::return#2 ← (number) -1 + to:sgn_u16::@return +sgn_u16::@3: scope:[sgn_u16] from sgn_u16 + (word) sgn_u16::return#3 ← (number) 1 + to:sgn_u16::@return +sgn_u16::@return: scope:[sgn_u16] from sgn_u16::@1 sgn_u16::@3 + (word) sgn_u16::return#7 ← phi( sgn_u16::@1/(word) sgn_u16::return#2 sgn_u16::@3/(word) sgn_u16::return#3 ) + (word) sgn_u16::return#4 ← (word) sgn_u16::return#7 + return + to:@return +@13: scope:[] from @7 + (byte*) bitmap_screen#32 ← phi( @7/(byte*) bitmap_screen#0 ) + (byte*) bitmap_gfx#33 ← phi( @7/(byte*) bitmap_gfx#0 ) + (byte*) RASTER#0 ← ((byte*)) (number) $d012 + (byte*) D011#0 ← ((byte*)) (number) $d011 + (byte) VIC_BMM#0 ← (number) $20 + (byte) VIC_DEN#0 ← (number) $10 + (byte) VIC_RSEL#0 ← (number) 8 + (byte*) D018#0 ← ((byte*)) (number) $d018 + (byte*) CIA2_PORT_A#0 ← ((byte*)) (number) $dd00 + (byte*) CIA2_PORT_A_DDR#0 ← ((byte*)) (number) $dd02 + (byte) BLACK#0 ← (number) 0 + (byte) WHITE#0 ← (number) 1 + to:@50 +@50: scope:[] from @13 + (byte*) bitmap_screen#27 ← phi( @13/(byte*) bitmap_screen#32 ) + (byte*) bitmap_gfx#28 ← phi( @13/(byte*) bitmap_gfx#33 ) + (byte[$200]) mulf_sqr1_lo#0 ← { fill( $200, 0) } + (byte[$200]) mulf_sqr1_hi#0 ← { fill( $200, 0) } + (byte[$200]) mulf_sqr2_lo#0 ← { fill( $200, 0) } + (byte[$200]) mulf_sqr2_hi#0 ← { fill( $200, 0) } + to:@59 +mulf_init: scope:[mulf_init] from main + (word) mulf_init::sqr#0 ← (number) 0 + (byte) mulf_init::x_2#0 ← (number) 0 + (byte) mulf_init::c#0 ← (number) 0 + (byte*~) mulf_init::$0 ← (byte[$200]) mulf_sqr1_hi#0 + (number) 1 + (byte*) mulf_init::sqr1_hi#0 ← (byte*~) mulf_init::$0 + (byte*~) mulf_init::$6 ← (byte[$200]) mulf_sqr1_lo#0 + (number) 1 + (byte*) mulf_init::sqr1_lo#0 ← (byte*~) mulf_init::$6 + to:mulf_init::@1 +mulf_init::@1: scope:[mulf_init] from mulf_init mulf_init::@2 + (byte) mulf_init::x_2#4 ← phi( mulf_init/(byte) mulf_init::x_2#0 mulf_init::@2/(byte) mulf_init::x_2#2 ) + (byte*) mulf_init::sqr1_hi#3 ← phi( mulf_init/(byte*) mulf_init::sqr1_hi#0 mulf_init::@2/(byte*) mulf_init::sqr1_hi#1 ) + (byte*) mulf_init::sqr1_lo#3 ← phi( mulf_init/(byte*) mulf_init::sqr1_lo#0 mulf_init::@2/(byte*) mulf_init::sqr1_lo#1 ) + (word) mulf_init::sqr#5 ← phi( mulf_init/(word) mulf_init::sqr#0 mulf_init::@2/(word) mulf_init::sqr#1 ) + (byte) mulf_init::c#2 ← phi( mulf_init/(byte) mulf_init::c#0 mulf_init::@2/(byte) mulf_init::c#3 ) + (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 + (number~) mulf_init::$7 ← (byte) mulf_init::c#1 & (number) 1 + (bool~) mulf_init::$8 ← (number~) mulf_init::$7 == (number) 0 + (bool~) mulf_init::$9 ← ! (bool~) mulf_init::$8 + if((bool~) mulf_init::$9) goto mulf_init::@2 + to:mulf_init::@3 +mulf_init::@2: scope:[mulf_init] from mulf_init::@1 mulf_init::@3 + (byte) mulf_init::c#3 ← phi( mulf_init::@1/(byte) mulf_init::c#1 mulf_init::@3/(byte) mulf_init::c#4 ) + (byte) mulf_init::x_2#2 ← phi( mulf_init::@1/(byte) mulf_init::x_2#4 mulf_init::@3/(byte) mulf_init::x_2#1 ) + (byte*) mulf_init::sqr1_hi#2 ← phi( mulf_init::@1/(byte*) mulf_init::sqr1_hi#3 mulf_init::@3/(byte*) mulf_init::sqr1_hi#4 ) + (byte*) mulf_init::sqr1_lo#2 ← phi( mulf_init::@1/(byte*) mulf_init::sqr1_lo#3 mulf_init::@3/(byte*) mulf_init::sqr1_lo#4 ) + (word) mulf_init::sqr#3 ← phi( mulf_init::@1/(word) mulf_init::sqr#5 mulf_init::@3/(word) mulf_init::sqr#2 ) + (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 + *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 + (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 + *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 + (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 + (word~) mulf_init::$12 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 + (word) mulf_init::sqr#1 ← (word~) mulf_init::$12 + (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 + (byte*~) mulf_init::$13 ← (byte[$200]) mulf_sqr1_lo#0 + (number) $200 + (bool~) mulf_init::$14 ← (byte*) mulf_init::sqr1_lo#1 != (byte*~) mulf_init::$13 + if((bool~) mulf_init::$14) goto mulf_init::@1 + to:mulf_init::@4 +mulf_init::@3: scope:[mulf_init] from mulf_init::@1 + (byte) mulf_init::c#4 ← phi( mulf_init::@1/(byte) mulf_init::c#1 ) + (byte*) mulf_init::sqr1_hi#4 ← phi( mulf_init::@1/(byte*) mulf_init::sqr1_hi#3 ) + (byte*) mulf_init::sqr1_lo#4 ← phi( mulf_init::@1/(byte*) mulf_init::sqr1_lo#3 ) + (word) mulf_init::sqr#4 ← phi( mulf_init::@1/(word) mulf_init::sqr#5 ) + (byte) mulf_init::x_2#3 ← phi( mulf_init::@1/(byte) mulf_init::x_2#4 ) + (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 + (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 + to:mulf_init::@2 +mulf_init::@4: scope:[mulf_init] from mulf_init::@2 + (byte~) mulf_init::$1 ← ((byte)) (number) -1 + (byte) mulf_init::x_255#0 ← (byte~) mulf_init::$1 + (byte) mulf_init::dir#0 ← (number) $ff + (byte*) mulf_init::sqr2_hi#0 ← (byte[$200]) mulf_sqr2_hi#0 + (byte*) mulf_init::sqr2_lo#0 ← (byte[$200]) mulf_sqr2_lo#0 + to:mulf_init::@5 +mulf_init::@5: scope:[mulf_init] from mulf_init::@4 mulf_init::@6 + (byte) mulf_init::dir#2 ← phi( mulf_init::@4/(byte) mulf_init::dir#0 mulf_init::@6/(byte) mulf_init::dir#3 ) + (byte*) mulf_init::sqr2_hi#2 ← phi( mulf_init::@4/(byte*) mulf_init::sqr2_hi#0 mulf_init::@6/(byte*) mulf_init::sqr2_hi#3 ) + (byte*) mulf_init::sqr2_lo#2 ← phi( mulf_init::@4/(byte*) mulf_init::sqr2_lo#0 mulf_init::@6/(byte*) mulf_init::sqr2_lo#1 ) + (byte) mulf_init::x_255#2 ← phi( mulf_init::@4/(byte) mulf_init::x_255#0 mulf_init::@6/(byte) mulf_init::x_255#3 ) + *((byte*) mulf_init::sqr2_lo#2) ← *((byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) + *((byte*) mulf_init::sqr2_hi#2) ← *((byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) + (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 + (byte~) mulf_init::$15 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 + (byte) mulf_init::x_255#1 ← (byte~) mulf_init::$15 + (bool~) mulf_init::$16 ← (byte) mulf_init::x_255#1 == (number) 0 + (bool~) mulf_init::$17 ← ! (bool~) mulf_init::$16 + if((bool~) mulf_init::$17) goto mulf_init::@6 + to:mulf_init::@7 +mulf_init::@6: scope:[mulf_init] from mulf_init::@5 mulf_init::@7 + (byte) mulf_init::dir#3 ← phi( mulf_init::@5/(byte) mulf_init::dir#2 mulf_init::@7/(byte) mulf_init::dir#1 ) + (byte*) mulf_init::sqr2_hi#3 ← phi( mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 mulf_init::@7/(byte*) mulf_init::sqr2_hi#4 ) + (byte) mulf_init::x_255#3 ← phi( mulf_init::@5/(byte) mulf_init::x_255#1 mulf_init::@7/(byte) mulf_init::x_255#4 ) + (byte*) mulf_init::sqr2_lo#3 ← phi( mulf_init::@5/(byte*) mulf_init::sqr2_lo#2 mulf_init::@7/(byte*) mulf_init::sqr2_lo#4 ) + (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#3 + (byte*~) mulf_init::$18 ← (byte[$200]) mulf_sqr2_lo#0 + (number) $1ff + (bool~) mulf_init::$19 ← (byte*) mulf_init::sqr2_lo#1 != (byte*~) mulf_init::$18 + if((bool~) mulf_init::$19) goto mulf_init::@5 + to:mulf_init::@8 +mulf_init::@7: scope:[mulf_init] from mulf_init::@5 + (byte*) mulf_init::sqr2_hi#4 ← phi( mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 ) + (byte) mulf_init::x_255#4 ← phi( mulf_init::@5/(byte) mulf_init::x_255#1 ) + (byte*) mulf_init::sqr2_lo#4 ← phi( mulf_init::@5/(byte*) mulf_init::sqr2_lo#2 ) + (byte) mulf_init::dir#1 ← (number) 1 + to:mulf_init::@6 +mulf_init::@8: scope:[mulf_init] from mulf_init::@6 + (byte*~) mulf_init::$2 ← (byte[$200]) mulf_sqr2_lo#0 + (number) $1ff + (byte*~) mulf_init::$3 ← (byte[$200]) mulf_sqr1_lo#0 + (number) $100 + *((byte*~) mulf_init::$2) ← *((byte*~) mulf_init::$3) + (byte*~) mulf_init::$4 ← (byte[$200]) mulf_sqr2_hi#0 + (number) $1ff + (byte*~) mulf_init::$5 ← (byte[$200]) mulf_sqr1_hi#0 + (number) $100 + *((byte*~) mulf_init::$4) ← *((byte*~) mulf_init::$5) + to:mulf_init::@return +mulf_init::@return: scope:[mulf_init] from mulf_init::@8 + return + to:@return +mulf16u: scope:[mulf16u] from mulf16s + (word) mulf16u::b#1 ← phi( mulf16s/(word) mulf16u::b#0 ) + (word) mulf16u::a#1 ← phi( mulf16s/(word) mulf16u::a#0 ) + (word*) mulf16u::memA#0 ← ((word*)) (number) $f8 + (word*) mulf16u::memB#0 ← ((word*)) (number) $fa + (dword*) mulf16u::memR#0 ← ((dword*)) (number) $fc + *((word*) mulf16u::memA#0) ← (word) mulf16u::a#1 + *((word*) mulf16u::memB#0) ← (word) mulf16u::b#1 + asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } + (dword) mulf16u::return#0 ← *((dword*) mulf16u::memR#0) + to:mulf16u::@return +mulf16u::@return: scope:[mulf16u] from mulf16u + (dword) mulf16u::return#3 ← phi( mulf16u/(dword) mulf16u::return#0 ) + (dword) mulf16u::return#1 ← (dword) mulf16u::return#3 + return + to:@return +mulf16s: scope:[mulf16s] from rotate rotate::@2 rotate::@3 rotate::@4 + (signed word) mulf16s::b#4 ← phi( rotate/(signed word) mulf16s::b#0 rotate::@2/(signed word) mulf16s::b#1 rotate::@3/(signed word) mulf16s::b#2 rotate::@4/(signed word) mulf16s::b#3 ) + (signed word) mulf16s::a#4 ← phi( rotate/(signed word) mulf16s::a#0 rotate::@2/(signed word) mulf16s::a#1 rotate::@3/(signed word) mulf16s::a#2 rotate::@4/(signed word) mulf16s::a#3 ) + (word~) mulf16s::$0 ← ((word)) (signed word) mulf16s::a#4 + (word~) mulf16s::$1 ← ((word)) (signed word) mulf16s::b#4 + (word) mulf16u::a#0 ← (word~) mulf16s::$0 + (word) mulf16u::b#0 ← (word~) mulf16s::$1 + call mulf16u + (dword) mulf16u::return#2 ← (dword) mulf16u::return#1 + to:mulf16s::@6 +mulf16s::@6: scope:[mulf16s] from mulf16s + (signed word) mulf16s::b#7 ← phi( mulf16s/(signed word) mulf16s::b#4 ) + (signed word) mulf16s::a#5 ← phi( mulf16s/(signed word) mulf16s::a#4 ) + (dword) mulf16u::return#4 ← phi( mulf16s/(dword) mulf16u::return#2 ) + (dword~) mulf16s::$2 ← (dword) mulf16u::return#4 + (dword) mulf16s::m#0 ← (dword~) mulf16s::$2 + (bool~) mulf16s::$3 ← (signed word) mulf16s::a#5 < (number) 0 + (bool~) mulf16s::$4 ← ! (bool~) mulf16s::$3 + if((bool~) mulf16s::$4) goto mulf16s::@1 + to:mulf16s::@3 +mulf16s::@1: scope:[mulf16s] from mulf16s::@3 mulf16s::@6 + (signed word) mulf16s::a#7 ← phi( mulf16s::@3/(signed word) mulf16s::a#8 mulf16s::@6/(signed word) mulf16s::a#5 ) + (dword) mulf16s::m#6 ← phi( mulf16s::@3/(dword) mulf16s::m#1 mulf16s::@6/(dword) mulf16s::m#0 ) + (signed word) mulf16s::b#5 ← phi( mulf16s::@3/(signed word) mulf16s::b#6 mulf16s::@6/(signed word) mulf16s::b#7 ) + (bool~) mulf16s::$5 ← (signed word) mulf16s::b#5 < (number) 0 + (bool~) mulf16s::$6 ← ! (bool~) mulf16s::$5 + if((bool~) mulf16s::$6) goto mulf16s::@2 + to:mulf16s::@4 +mulf16s::@3: scope:[mulf16s] from mulf16s::@6 + (signed word) mulf16s::a#8 ← phi( mulf16s::@6/(signed word) mulf16s::a#5 ) + (signed word) mulf16s::b#6 ← phi( mulf16s::@6/(signed word) mulf16s::b#7 ) + (dword) mulf16s::m#3 ← phi( mulf16s::@6/(dword) mulf16s::m#0 ) + (word~) mulf16s::$9 ← > (dword) mulf16s::m#3 + (word~) mulf16s::$10 ← ((word)) (signed word) mulf16s::b#6 + (word~) mulf16s::$11 ← (word~) mulf16s::$9 - (word~) mulf16s::$10 + (word~) mulf16s::$16 ← (word~) mulf16s::$11 + (dword) mulf16s::m#1 ← (dword) mulf16s::m#3 hi= (word~) mulf16s::$16 + to:mulf16s::@1 +mulf16s::@2: scope:[mulf16s] from mulf16s::@1 mulf16s::@4 + (dword) mulf16s::m#4 ← phi( mulf16s::@1/(dword) mulf16s::m#6 mulf16s::@4/(dword) mulf16s::m#2 ) + (signed dword~) mulf16s::$7 ← ((signed dword)) (dword) mulf16s::m#4 + (signed dword) mulf16s::return#0 ← (signed dword~) mulf16s::$7 + to:mulf16s::@return +mulf16s::@4: scope:[mulf16s] from mulf16s::@1 + (signed word) mulf16s::a#6 ← phi( mulf16s::@1/(signed word) mulf16s::a#7 ) + (dword) mulf16s::m#5 ← phi( mulf16s::@1/(dword) mulf16s::m#6 ) + (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 + (word~) mulf16s::$14 ← ((word)) (signed word) mulf16s::a#6 + (word~) mulf16s::$15 ← (word~) mulf16s::$13 - (word~) mulf16s::$14 + (word~) mulf16s::$17 ← (word~) mulf16s::$15 + (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 + to:mulf16s::@2 +mulf16s::@return: scope:[mulf16s] from mulf16s::@2 + (signed dword) mulf16s::return#6 ← phi( mulf16s::@2/(signed dword) mulf16s::return#0 ) + (signed dword) mulf16s::return#1 ← (signed dword) mulf16s::return#6 + return + to:@return +@59: scope:[] from @50 + (byte*) bitmap_screen#25 ← phi( @50/(byte*) bitmap_screen#27 ) + (byte*) bitmap_gfx#26 ← phi( @50/(byte*) bitmap_gfx#28 ) + (byte*) PRINT_SCREEN#0 ← ((byte*)) (number) $400 + (byte*) BITMAP_SCREEN#0 ← ((byte*)) (number) $5c00 + (byte*) BITMAP_GRAPHICS#0 ← ((byte*)) (number) $6000 + (struct Segment[$16]) letter_c#0 ← { fill( $16, 0) } + to:@62 +main: scope:[main] from @63 + (signed byte*) COS#33 ← phi( @63/(signed byte*) COS#34 ) + (byte*) bitmap_screen#18 ← phi( @63/(byte*) bitmap_screen#15 ) + (byte*) bitmap_gfx#19 ← phi( @63/(byte*) bitmap_gfx#15 ) + (number~) main::$16 ← (number) 0 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$38 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$38 + (number~) main::$16) ← (const byte) MOVE_TO + (struct SplineVector16*) main::$39 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$104 ← (signed word*)(struct SplineVector16*) main::$39 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$104 + (number~) main::$16) ← (number) $6c + (signed word*) main::$105 ← (signed word*)(struct SplineVector16*) main::$39 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$105 + (number~) main::$16) ← (number) $92 + (struct SplineVector16*) main::$40 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$106 ← (signed word*)(struct SplineVector16*) main::$40 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$106 + (number~) main::$16) ← (number) 0 + (signed word*) main::$107 ← (signed word*)(struct SplineVector16*) main::$40 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$107 + (number~) main::$16) ← (number) 0 + (number~) main::$17 ← (number) 1 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$41 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$41 + (number~) main::$17) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$42 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$108 ← (signed word*)(struct SplineVector16*) main::$42 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$108 + (number~) main::$17) ← (number) $59 + (signed word*) main::$109 ← (signed word*)(struct SplineVector16*) main::$42 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$109 + (number~) main::$17) ← (number) $b6 + (struct SplineVector16*) main::$43 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$110 ← (signed word*)(struct SplineVector16*) main::$43 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$110 + (number~) main::$17) ← (number) $67 + (signed word*) main::$111 ← (signed word*)(struct SplineVector16*) main::$43 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$111 + (number~) main::$17) ← (number) $a9 + (number~) main::$18 ← (number) 2 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$44 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$44 + (number~) main::$18) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$45 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$112 ← (signed word*)(struct SplineVector16*) main::$45 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$112 + (number~) main::$18) ← (number) $3b + (signed word*) main::$113 ← (signed word*)(struct SplineVector16*) main::$45 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$113 + (number~) main::$18) ← (number) $c3 + (struct SplineVector16*) main::$46 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$114 ← (signed word*)(struct SplineVector16*) main::$46 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$114 + (number~) main::$18) ← (number) $4b + (signed word*) main::$115 ← (signed word*)(struct SplineVector16*) main::$46 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$115 + (number~) main::$18) ← (number) $c3 + (number~) main::$19 ← (number) 3 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$47 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$47 + (number~) main::$19) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$48 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$116 ← (signed word*)(struct SplineVector16*) main::$48 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$116 + (number~) main::$19) ← (number) $17 + (signed word*) main::$117 ← (signed word*)(struct SplineVector16*) main::$48 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$117 + (number~) main::$19) ← (number) $b2 + (struct SplineVector16*) main::$49 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$118 ← (signed word*)(struct SplineVector16*) main::$49 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$118 + (number~) main::$19) ← (number) $26 + (signed word*) main::$119 ← (signed word*)(struct SplineVector16*) main::$49 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$119 + (number~) main::$19) ← (number) $c3 + (number~) main::$20 ← (number) 4 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$50 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$50 + (number~) main::$20) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$51 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$120 ← (signed word*)(struct SplineVector16*) main::$51 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$120 + (number~) main::$20) ← (number) 9 + (signed word*) main::$121 ← (signed word*)(struct SplineVector16*) main::$51 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$121 + (number~) main::$20) ← (number) $84 + (struct SplineVector16*) main::$52 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$122 ← (signed word*)(struct SplineVector16*) main::$52 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$122 + (number~) main::$20) ← (number) 9 + (signed word*) main::$123 ← (signed word*)(struct SplineVector16*) main::$52 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$123 + (number~) main::$20) ← (number) $a1 + (number~) main::$21 ← (number) 5 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$53 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$53 + (number~) main::$21) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$54 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$124 ← (signed word*)(struct SplineVector16*) main::$54 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$124 + (number~) main::$21) ← (number) $19 + (signed word*) main::$125 ← (signed word*)(struct SplineVector16*) main::$54 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$125 + (number~) main::$21) ← (number) $57 + (struct SplineVector16*) main::$55 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$126 ← (signed word*)(struct SplineVector16*) main::$55 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$126 + (number~) main::$21) ← (number) 9 + (signed word*) main::$127 ← (signed word*)(struct SplineVector16*) main::$55 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$127 + (number~) main::$21) ← (number) $68 + (number~) main::$22 ← (number) 6 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$56 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$56 + (number~) main::$22) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$57 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$128 ← (signed word*)(struct SplineVector16*) main::$57 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$128 + (number~) main::$22) ← (number) $41 + (signed word*) main::$129 ← (signed word*)(struct SplineVector16*) main::$57 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$129 + (number~) main::$22) ← (number) $45 + (struct SplineVector16*) main::$58 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$130 ← (signed word*)(struct SplineVector16*) main::$58 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$130 + (number~) main::$22) ← (number) $2a + (signed word*) main::$131 ← (signed word*)(struct SplineVector16*) main::$58 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$131 + (number~) main::$22) ← (number) $45 + (number~) main::$23 ← (number) 7 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$59 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$59 + (number~) main::$23) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$60 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$132 ← (signed word*)(struct SplineVector16*) main::$60 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$132 + (number~) main::$23) ← (number) $5d + (signed word*) main::$133 ← (signed word*)(struct SplineVector16*) main::$60 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$133 + (number~) main::$23) ← (number) $4f + (struct SplineVector16*) main::$61 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$134 ← (signed word*)(struct SplineVector16*) main::$61 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$134 + (number~) main::$23) ← (number) $52 + (signed word*) main::$135 ← (signed word*)(struct SplineVector16*) main::$61 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$135 + (number~) main::$23) ← (number) $45 + (number~) main::$24 ← (number) 8 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$62 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$62 + (number~) main::$24) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$63 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$136 ← (signed word*)(struct SplineVector16*) main::$63 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$136 + (number~) main::$24) ← (number) $69 + (signed word*) main::$137 ← (signed word*)(struct SplineVector16*) main::$63 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$137 + (number~) main::$24) ← (number) $62 + (struct SplineVector16*) main::$64 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$138 ← (signed word*)(struct SplineVector16*) main::$64 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$138 + (number~) main::$24) ← (number) $69 + (signed word*) main::$139 ← (signed word*)(struct SplineVector16*) main::$64 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$139 + (number~) main::$24) ← (number) $58 + (number~) main::$25 ← (number) 9 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$65 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$65 + (number~) main::$25) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$66 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$140 ← (signed word*)(struct SplineVector16*) main::$66 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$140 + (number~) main::$25) ← (number) $66 + (signed word*) main::$141 ← (signed word*)(struct SplineVector16*) main::$66 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$141 + (number~) main::$25) ← (number) $6a + (struct SplineVector16*) main::$67 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$142 ← (signed word*)(struct SplineVector16*) main::$67 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$142 + (number~) main::$25) ← (number) $69 + (signed word*) main::$143 ← (signed word*)(struct SplineVector16*) main::$67 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$143 + (number~) main::$25) ← (number) $67 + (number~) main::$26 ← (number) $a * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$68 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$68 + (number~) main::$26) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$69 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$144 ← (signed word*)(struct SplineVector16*) main::$69 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$144 + (number~) main::$26) ← (number) $5d + (signed word*) main::$145 ← (signed word*)(struct SplineVector16*) main::$69 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$145 + (number~) main::$26) ← (number) $6d + (struct SplineVector16*) main::$70 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$146 ← (signed word*)(struct SplineVector16*) main::$70 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$146 + (number~) main::$26) ← (number) $62 + (signed word*) main::$147 ← (signed word*)(struct SplineVector16*) main::$70 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$147 + (number~) main::$26) ← (number) $6d + (number~) main::$27 ← (number) $b * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$71 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$71 + (number~) main::$27) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$72 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$148 ← (signed word*)(struct SplineVector16*) main::$72 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$148 + (number~) main::$27) ← (number) $51 + (signed word*) main::$149 ← (signed word*)(struct SplineVector16*) main::$72 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$149 + (number~) main::$27) ← (number) $68 + (struct SplineVector16*) main::$73 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$150 ← (signed word*)(struct SplineVector16*) main::$73 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$150 + (number~) main::$27) ← (number) $55 + (signed word*) main::$151 ← (signed word*)(struct SplineVector16*) main::$73 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$151 + (number~) main::$27) ← (number) $6d + (number~) main::$28 ← (number) $c * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$74 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$74 + (number~) main::$28) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$75 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$152 ← (signed word*)(struct SplineVector16*) main::$75 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$152 + (number~) main::$28) ← (number) $4e + (signed word*) main::$153 ← (signed word*)(struct SplineVector16*) main::$75 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$153 + (number~) main::$28) ← (number) $5d + (struct SplineVector16*) main::$76 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$154 ← (signed word*)(struct SplineVector16*) main::$76 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$154 + (number~) main::$28) ← (number) $4f + (signed word*) main::$155 ← (signed word*)(struct SplineVector16*) main::$76 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$155 + (number~) main::$28) ← (number) $65 + (number~) main::$29 ← (number) $d * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$77 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$77 + (number~) main::$29) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$78 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$156 ← (signed word*)(struct SplineVector16*) main::$78 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$156 + (number~) main::$29) ← (number) $49 + (signed word*) main::$157 ← (signed word*)(struct SplineVector16*) main::$78 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$157 + (number~) main::$29) ← (number) $52 + (struct SplineVector16*) main::$79 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$158 ← (signed word*)(struct SplineVector16*) main::$79 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$158 + (number~) main::$29) ← (number) $4e + (signed word*) main::$159 ← (signed word*)(struct SplineVector16*) main::$79 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$159 + (number~) main::$29) ← (number) $56 + (number~) main::$30 ← (number) $e * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$80 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$80 + (number~) main::$30) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$81 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$160 ← (signed word*)(struct SplineVector16*) main::$81 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$160 + (number~) main::$30) ← (number) $3d + (signed word*) main::$161 ← (signed word*)(struct SplineVector16*) main::$81 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$161 + (number~) main::$30) ← (number) $4e + (struct SplineVector16*) main::$82 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$162 ← (signed word*)(struct SplineVector16*) main::$82 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$162 + (number~) main::$30) ← (number) $45 + (signed word*) main::$163 ← (signed word*)(struct SplineVector16*) main::$82 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$163 + (number~) main::$30) ← (number) $4e + (number~) main::$31 ← (number) $f * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$83 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$83 + (number~) main::$31) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$84 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$164 ← (signed word*)(struct SplineVector16*) main::$84 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$164 + (number~) main::$31) ← (number) $28 + (signed word*) main::$165 ← (signed word*)(struct SplineVector16*) main::$84 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$165 + (number~) main::$31) ← (number) $58 + (struct SplineVector16*) main::$85 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$166 ← (signed word*)(struct SplineVector16*) main::$85 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$166 + (number~) main::$31) ← (number) $30 + (signed word*) main::$167 ← (signed word*)(struct SplineVector16*) main::$85 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$167 + (number~) main::$31) ← (number) $4e + (number~) main::$32 ← (number) $10 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$86 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$86 + (number~) main::$32) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$87 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$168 ← (signed word*)(struct SplineVector16*) main::$87 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$168 + (number~) main::$32) ← (number) $1d + (signed word*) main::$169 ← (signed word*)(struct SplineVector16*) main::$87 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$169 + (number~) main::$32) ← (number) $79 + (struct SplineVector16*) main::$88 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$170 ← (signed word*)(struct SplineVector16*) main::$88 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$170 + (number~) main::$32) ← (number) $1d + (signed word*) main::$171 ← (signed word*)(struct SplineVector16*) main::$88 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$171 + (number~) main::$32) ← (number) $64 + (number~) main::$33 ← (number) $11 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$89 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$89 + (number~) main::$33) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$90 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$172 ← (signed word*)(struct SplineVector16*) main::$90 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$172 + (number~) main::$33) ← (number) $28 + (signed word*) main::$173 ← (signed word*)(struct SplineVector16*) main::$90 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$173 + (number~) main::$33) ← (number) $9e + (struct SplineVector16*) main::$91 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$174 ← (signed word*)(struct SplineVector16*) main::$91 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$174 + (number~) main::$33) ← (number) $1d + (signed word*) main::$175 ← (signed word*)(struct SplineVector16*) main::$91 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$175 + (number~) main::$33) ← (number) $8e + (number~) main::$34 ← (number) $12 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$92 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$92 + (number~) main::$34) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$93 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$176 ← (signed word*)(struct SplineVector16*) main::$93 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$176 + (number~) main::$34) ← (number) $44 + (signed word*) main::$177 ← (signed word*)(struct SplineVector16*) main::$93 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$177 + (number~) main::$34) ← (number) $ae + (struct SplineVector16*) main::$94 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$178 ← (signed word*)(struct SplineVector16*) main::$94 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$178 + (number~) main::$34) ← (number) $32 + (signed word*) main::$179 ← (signed word*)(struct SplineVector16*) main::$94 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$179 + (number~) main::$34) ← (number) $ae + (number~) main::$35 ← (number) $13 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$95 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$95 + (number~) main::$35) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$96 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$180 ← (signed word*)(struct SplineVector16*) main::$96 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$180 + (number~) main::$35) ← (number) $5b + (signed word*) main::$181 ← (signed word*)(struct SplineVector16*) main::$96 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$181 + (number~) main::$35) ← (number) $a6 + (struct SplineVector16*) main::$97 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$182 ← (signed word*)(struct SplineVector16*) main::$97 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$182 + (number~) main::$35) ← (number) $50 + (signed word*) main::$183 ← (signed word*)(struct SplineVector16*) main::$97 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$183 + (number~) main::$35) ← (number) $ae + (number~) main::$36 ← (number) $14 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$98 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$98 + (number~) main::$36) ← (const byte) SPLINE_TO + (struct SplineVector16*) main::$99 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$184 ← (signed word*)(struct SplineVector16*) main::$99 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$184 + (number~) main::$36) ← (number) $68 + (signed word*) main::$185 ← (signed word*)(struct SplineVector16*) main::$99 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$185 + (number~) main::$36) ← (number) $90 + (struct SplineVector16*) main::$100 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$186 ← (signed word*)(struct SplineVector16*) main::$100 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$186 + (number~) main::$36) ← (number) $62 + (signed word*) main::$187 ← (signed word*)(struct SplineVector16*) main::$100 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$187 + (number~) main::$36) ← (number) $a0 + (number~) main::$37 ← (number) $15 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) main::$101 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + *((byte*) main::$101 + (number~) main::$37) ← (const byte) LINE_TO + (struct SplineVector16*) main::$102 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) main::$188 ← (signed word*)(struct SplineVector16*) main::$102 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$188 + (number~) main::$37) ← (number) $6c + (signed word*) main::$189 ← (signed word*)(struct SplineVector16*) main::$102 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$189 + (number~) main::$37) ← (number) $92 + (struct SplineVector16*) main::$103 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) main::$190 ← (signed word*)(struct SplineVector16*) main::$103 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + *((signed word*) main::$190 + (number~) main::$37) ← (number) 0 + (signed word*) main::$191 ← (signed word*)(struct SplineVector16*) main::$103 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + *((signed word*) main::$191 + (number~) main::$37) ← (number) 0 + call mulf_init + to:main::@21 +main::@21: scope:[main] from main + (signed byte*) COS#32 ← phi( main/(signed byte*) COS#33 ) + (byte*) bitmap_screen#13 ← phi( main/(byte*) bitmap_screen#18 ) + (byte*) bitmap_gfx#13 ← phi( main/(byte*) bitmap_gfx#19 ) + (byte*) bitmap_init::gfx#0 ← (byte*) BITMAP_GRAPHICS#0 + (byte*) bitmap_init::screen#0 ← (byte*) BITMAP_SCREEN#0 + call bitmap_init + to:main::@22 +main::@22: scope:[main] from main::@21 + (signed byte*) COS#31 ← phi( main::@21/(signed byte*) COS#32 ) + (byte*) bitmap_screen#8 ← phi( main::@21/(byte*) bitmap_screen#2 ) + (byte*) bitmap_gfx#8 ← phi( main::@21/(byte*) bitmap_gfx#2 ) + (byte*) bitmap_gfx#3 ← (byte*) bitmap_gfx#8 + (byte*) bitmap_screen#3 ← (byte*) bitmap_screen#8 + (byte) bitmap_clear::bgcol#0 ← (byte) BLACK#0 + (byte) bitmap_clear::fgcol#0 ← (byte) WHITE#0 + call bitmap_clear + to:main::@23 +main::@23: scope:[main] from main::@22 + (signed byte*) COS#30 ← phi( main::@22/(signed byte*) COS#31 ) + (byte*) bitmap_gfx#44 ← phi( main::@22/(byte*) bitmap_gfx#3 ) + (byte*) bitmap_screen#43 ← phi( main::@22/(byte*) bitmap_screen#3 ) + (byte*) main::vicSelectGfxBank1_gfx#0 ← (byte*) BITMAP_SCREEN#0 + to:main::vicSelectGfxBank1 +main::vicSelectGfxBank1: scope:[main] from main::@23 + (signed byte*) COS#29 ← phi( main::@23/(signed byte*) COS#30 ) + (byte*) bitmap_gfx#43 ← phi( main::@23/(byte*) bitmap_gfx#44 ) + (byte*) bitmap_screen#42 ← phi( main::@23/(byte*) bitmap_screen#43 ) + (byte*) main::vicSelectGfxBank1_gfx#1 ← phi( main::@23/(byte*) main::vicSelectGfxBank1_gfx#0 ) + *((byte*) CIA2_PORT_A_DDR#0) ← (number) 3 + (byte*) main::vicSelectGfxBank1_toDd001_gfx#0 ← (byte*) main::vicSelectGfxBank1_gfx#1 + to:main::vicSelectGfxBank1_toDd001 +main::vicSelectGfxBank1_toDd001: scope:[main] from main::vicSelectGfxBank1 + (signed byte*) COS#28 ← phi( main::vicSelectGfxBank1/(signed byte*) COS#29 ) + (byte*) bitmap_gfx#42 ← phi( main::vicSelectGfxBank1/(byte*) bitmap_gfx#43 ) + (byte*) bitmap_screen#41 ← phi( main::vicSelectGfxBank1/(byte*) bitmap_screen#42 ) + (byte*) main::vicSelectGfxBank1_toDd001_gfx#1 ← phi( main::vicSelectGfxBank1/(byte*) main::vicSelectGfxBank1_toDd001_gfx#0 ) + (word~) main::vicSelectGfxBank1_toDd001_$0#0 ← ((word)) (byte*) main::vicSelectGfxBank1_toDd001_gfx#1 + (byte~) main::vicSelectGfxBank1_toDd001_$1#0 ← > (word~) main::vicSelectGfxBank1_toDd001_$0#0 + (number~) main::vicSelectGfxBank1_toDd001_$2#0 ← (byte~) main::vicSelectGfxBank1_toDd001_$1#0 / (number) $40 + (number~) main::vicSelectGfxBank1_toDd001_$3#0 ← (number) 3 ^ (number~) main::vicSelectGfxBank1_toDd001_$2#0 + (byte) main::vicSelectGfxBank1_toDd001_return#0 ← (number~) main::vicSelectGfxBank1_toDd001_$3#0 + to:main::vicSelectGfxBank1_toDd001_@return +main::vicSelectGfxBank1_toDd001_@return: scope:[main] from main::vicSelectGfxBank1_toDd001 + (signed byte*) COS#27 ← phi( main::vicSelectGfxBank1_toDd001/(signed byte*) COS#28 ) + (byte*) bitmap_gfx#40 ← phi( main::vicSelectGfxBank1_toDd001/(byte*) bitmap_gfx#42 ) + (byte*) bitmap_screen#39 ← phi( main::vicSelectGfxBank1_toDd001/(byte*) bitmap_screen#41 ) + (byte) main::vicSelectGfxBank1_toDd001_return#2 ← phi( main::vicSelectGfxBank1_toDd001/(byte) main::vicSelectGfxBank1_toDd001_return#0 ) + (byte) main::vicSelectGfxBank1_toDd001_return#1 ← (byte) main::vicSelectGfxBank1_toDd001_return#2 + to:main::vicSelectGfxBank1_@1 +main::vicSelectGfxBank1_@1: scope:[main] from main::vicSelectGfxBank1_toDd001_@return + (signed byte*) COS#25 ← phi( main::vicSelectGfxBank1_toDd001_@return/(signed byte*) COS#27 ) + (byte*) bitmap_gfx#38 ← phi( main::vicSelectGfxBank1_toDd001_@return/(byte*) bitmap_gfx#40 ) + (byte*) bitmap_screen#37 ← phi( main::vicSelectGfxBank1_toDd001_@return/(byte*) bitmap_screen#39 ) + (byte) main::vicSelectGfxBank1_toDd001_return#3 ← phi( main::vicSelectGfxBank1_toDd001_@return/(byte) main::vicSelectGfxBank1_toDd001_return#1 ) + (byte~) main::vicSelectGfxBank1_$0#0 ← (byte) main::vicSelectGfxBank1_toDd001_return#3 + *((byte*) CIA2_PORT_A#0) ← (byte~) main::vicSelectGfxBank1_$0#0 + to:main::@19 +main::@19: scope:[main] from main::vicSelectGfxBank1_@1 + (signed byte*) COS#23 ← phi( main::vicSelectGfxBank1_@1/(signed byte*) COS#25 ) + (byte*) bitmap_gfx#36 ← phi( main::vicSelectGfxBank1_@1/(byte*) bitmap_gfx#38 ) + (byte*) bitmap_screen#35 ← phi( main::vicSelectGfxBank1_@1/(byte*) bitmap_screen#37 ) + (byte*) main::toD0181_screen#0 ← (byte*) BITMAP_SCREEN#0 + (byte*) main::toD0181_gfx#0 ← (byte*) BITMAP_GRAPHICS#0 + to:main::toD0181 +main::toD0181: scope:[main] from main::@19 + (signed byte*) COS#21 ← phi( main::@19/(signed byte*) COS#23 ) + (byte*) bitmap_gfx#34 ← phi( main::@19/(byte*) bitmap_gfx#36 ) + (byte*) bitmap_screen#33 ← phi( main::@19/(byte*) bitmap_screen#35 ) + (byte*) main::toD0181_gfx#1 ← phi( main::@19/(byte*) main::toD0181_gfx#0 ) + (byte*) main::toD0181_screen#1 ← phi( main::@19/(byte*) main::toD0181_screen#0 ) + (word~) main::toD0181_$0#0 ← ((word)) (byte*) main::toD0181_screen#1 + (number~) main::toD0181_$1#0 ← (word~) main::toD0181_$0#0 & (number) $3fff + (number~) main::toD0181_$2#0 ← (number~) main::toD0181_$1#0 * (number) 4 + (number~) main::toD0181_$3#0 ← > (number~) main::toD0181_$2#0 + (word~) main::toD0181_$4#0 ← ((word)) (byte*) main::toD0181_gfx#1 + (byte~) main::toD0181_$5#0 ← > (word~) main::toD0181_$4#0 + (number~) main::toD0181_$6#0 ← (byte~) main::toD0181_$5#0 / (number) 4 + (number~) main::toD0181_$7#0 ← (number~) main::toD0181_$6#0 & (number) $f + (number~) main::toD0181_$8#0 ← (number~) main::toD0181_$3#0 | (number~) main::toD0181_$7#0 + (byte) main::toD0181_return#0 ← (number~) main::toD0181_$8#0 + to:main::toD0181_@return +main::toD0181_@return: scope:[main] from main::toD0181 + (signed byte*) COS#19 ← phi( main::toD0181/(signed byte*) COS#21 ) + (byte*) bitmap_gfx#29 ← phi( main::toD0181/(byte*) bitmap_gfx#34 ) + (byte*) bitmap_screen#28 ← phi( main::toD0181/(byte*) bitmap_screen#33 ) + (byte) main::toD0181_return#2 ← phi( main::toD0181/(byte) main::toD0181_return#0 ) + (byte) main::toD0181_return#1 ← (byte) main::toD0181_return#2 + to:main::@20 +main::@20: scope:[main] from main::toD0181_@return + (signed byte*) COS#17 ← phi( main::toD0181_@return/(signed byte*) COS#19 ) + (byte*) bitmap_gfx#24 ← phi( main::toD0181_@return/(byte*) bitmap_gfx#29 ) + (byte*) bitmap_screen#23 ← phi( main::toD0181_@return/(byte*) bitmap_screen#28 ) + (byte) main::toD0181_return#3 ← phi( main::toD0181_@return/(byte) main::toD0181_return#1 ) + (byte~) main::$4 ← (byte) main::toD0181_return#3 + *((byte*) D018#0) ← (byte~) main::$4 + (byte~) main::$5 ← (byte) VIC_BMM#0 | (byte) VIC_DEN#0 + (byte~) main::$6 ← (byte~) main::$5 | (byte) VIC_RSEL#0 + (number~) main::$7 ← (byte~) main::$6 | (number) 3 + *((byte*) D011#0) ← (number~) main::$7 + (byte) main::angle#0 ← (number) 0 + to:main::@1 +main::@1: scope:[main] from main::@20 main::@9 + (signed byte*) COS#14 ← phi( main::@20/(signed byte*) COS#17 main::@9/(signed byte*) COS#18 ) + (byte*) bitmap_gfx#20 ← phi( main::@20/(byte*) bitmap_gfx#24 main::@9/(byte*) bitmap_gfx#25 ) + (byte) main::angle#6 ← phi( main::@20/(byte) main::angle#0 main::@9/(byte) main::angle#1 ) + (byte*) bitmap_screen#19 ← phi( main::@20/(byte*) bitmap_screen#23 main::@9/(byte*) bitmap_screen#24 ) + if(true) goto main::@2 + to:main::@13 +main::@2: scope:[main] from main::@1 + (signed byte*) COS#10 ← phi( main::@1/(signed byte*) COS#14 ) + (byte*) bitmap_gfx#18 ← phi( main::@1/(byte*) bitmap_gfx#20 ) + (byte) main::angle#4 ← phi( main::@1/(byte) main::angle#6 ) + (byte*) bitmap_screen#12 ← phi( main::@1/(byte*) bitmap_screen#19 ) + (byte) bitmap_clear::bgcol#1 ← (byte) BLACK#0 + (byte) bitmap_clear::fgcol#1 ← (byte) WHITE#0 + call bitmap_clear + to:main::@24 +main::@24: scope:[main] from main::@2 + (byte*) bitmap_gfx#41 ← phi( main::@2/(byte*) bitmap_gfx#18 ) + (byte*) bitmap_screen#40 ← phi( main::@2/(byte*) bitmap_screen#12 ) + (signed byte*) COS#6 ← phi( main::@2/(signed byte*) COS#10 ) + (byte) main::angle#2 ← phi( main::@2/(byte) main::angle#4 ) + (byte) show_letter::angle#0 ← (byte) main::angle#2 + call show_letter + to:main::@25 +main::@25: scope:[main] from main::@24 + (signed byte*) COS#26 ← phi( main::@24/(signed byte*) COS#6 ) + (byte*) bitmap_gfx#39 ← phi( main::@24/(byte*) bitmap_gfx#41 ) + (byte*) bitmap_screen#38 ← phi( main::@24/(byte*) bitmap_screen#40 ) + (byte) main::angle#9 ← phi( main::@24/(byte) main::angle#2 ) + (byte) main::w#0 ← (byte) 0 + to:main::@5 +main::@5: scope:[main] from main::@25 main::@5 main::@8 + (signed byte*) COS#24 ← phi( main::@25/(signed byte*) COS#26 main::@5/(signed byte*) COS#24 main::@8/(signed byte*) COS#20 ) + (byte*) bitmap_gfx#37 ← phi( main::@25/(byte*) bitmap_gfx#39 main::@5/(byte*) bitmap_gfx#37 main::@8/(byte*) bitmap_gfx#30 ) + (byte*) bitmap_screen#36 ← phi( main::@25/(byte*) bitmap_screen#38 main::@5/(byte*) bitmap_screen#36 main::@8/(byte*) bitmap_screen#29 ) + (byte) main::angle#8 ← phi( main::@25/(byte) main::angle#9 main::@5/(byte) main::angle#8 main::@8/(byte) main::angle#5 ) + (byte) main::w#4 ← phi( main::@25/(byte) main::w#0 main::@5/(byte) main::w#4 main::@8/(byte) main::w#1 ) + (bool~) main::$10 ← *((byte*) RASTER#0) != (number) $fe + if((bool~) main::$10) goto main::@5 + to:main::@7 +main::@7: scope:[main] from main::@5 main::@7 + (signed byte*) COS#22 ← phi( main::@5/(signed byte*) COS#24 main::@7/(signed byte*) COS#22 ) + (byte*) bitmap_gfx#35 ← phi( main::@5/(byte*) bitmap_gfx#37 main::@7/(byte*) bitmap_gfx#35 ) + (byte*) bitmap_screen#34 ← phi( main::@5/(byte*) bitmap_screen#36 main::@7/(byte*) bitmap_screen#34 ) + (byte) main::angle#7 ← phi( main::@5/(byte) main::angle#8 main::@7/(byte) main::angle#7 ) + (byte) main::w#3 ← phi( main::@5/(byte) main::w#4 main::@7/(byte) main::w#3 ) + (bool~) main::$11 ← *((byte*) RASTER#0) != (number) $ff + if((bool~) main::$11) goto main::@7 + to:main::@8 +main::@8: scope:[main] from main::@7 + (signed byte*) COS#20 ← phi( main::@7/(signed byte*) COS#22 ) + (byte*) bitmap_gfx#30 ← phi( main::@7/(byte*) bitmap_gfx#35 ) + (byte*) bitmap_screen#29 ← phi( main::@7/(byte*) bitmap_screen#34 ) + (byte) main::angle#5 ← phi( main::@7/(byte) main::angle#7 ) + (byte) main::w#2 ← phi( main::@7/(byte) main::w#3 ) + (byte) main::w#1 ← (byte) main::w#2 + rangenext(0,$3c) + (bool~) main::$12 ← (byte) main::w#1 != rangelast(0,$3c) + if((bool~) main::$12) goto main::@5 + to:main::@9 +main::@9: scope:[main] from main::@8 + (signed byte*) COS#18 ← phi( main::@8/(signed byte*) COS#20 ) + (byte*) bitmap_gfx#25 ← phi( main::@8/(byte*) bitmap_gfx#30 ) + (byte*) bitmap_screen#24 ← phi( main::@8/(byte*) bitmap_screen#29 ) + (byte) main::angle#3 ← phi( main::@8/(byte) main::angle#5 ) + (byte) main::angle#1 ← (byte) main::angle#3 + (number) 9 + to:main::@1 +main::@13: scope:[main] from main::@1 main::@14 + (byte*) bitmap_screen#14 ← phi( main::@1/(byte*) bitmap_screen#19 main::@14/(byte*) bitmap_screen#20 ) + (byte*) bitmap_gfx#14 ← phi( main::@1/(byte*) bitmap_gfx#20 main::@14/(byte*) bitmap_gfx#21 ) + if(true) goto main::@14 + to:main::@return +main::@14: scope:[main] from main::@13 + (byte*) bitmap_screen#20 ← phi( main::@13/(byte*) bitmap_screen#14 ) + (byte*) bitmap_gfx#21 ← phi( main::@13/(byte*) bitmap_gfx#14 ) + (byte*~) main::$15 ← (byte*) PRINT_SCREEN#0 + (number) $3e7 + *((byte*~) main::$15) ← ++ *((byte*~) main::$15) + to:main::@13 +main::@return: scope:[main] from main::@13 + (byte*) bitmap_screen#9 ← phi( main::@13/(byte*) bitmap_screen#14 ) + (byte*) bitmap_gfx#9 ← phi( main::@13/(byte*) bitmap_gfx#14 ) + (byte*) bitmap_gfx#4 ← (byte*) bitmap_gfx#9 + (byte*) bitmap_screen#4 ← (byte*) bitmap_screen#9 + return + to:@return +show_letter: scope:[show_letter] from main::@24 + (signed byte*) COS#4 ← phi( main::@24/(signed byte*) COS#6 ) + (byte) show_letter::angle#3 ← phi( main::@24/(byte) show_letter::angle#0 ) + (signed word) show_letter::current_x#0 ← (number) 0 + (signed word) show_letter::current_y#0 ← (number) 0 + (byte) show_letter::i#0 ← (byte) 0 + to:show_letter::@1 +show_letter::@1: scope:[show_letter] from show_letter show_letter::@5 + (signed word) show_letter::current_y#9 ← phi( show_letter/(signed word) show_letter::current_y#0 show_letter::@5/(signed word) show_letter::current_y#10 ) + (signed word) show_letter::current_x#9 ← phi( show_letter/(signed word) show_letter::current_x#0 show_letter::@5/(signed word) show_letter::current_x#10 ) + (signed byte*) COS#2 ← phi( show_letter/(signed byte*) COS#4 show_letter::@5/(signed byte*) COS#5 ) + (byte) show_letter::angle#1 ← phi( show_letter/(byte) show_letter::angle#3 show_letter::@5/(byte) show_letter::angle#4 ) + (byte) show_letter::i#2 ← phi( show_letter/(byte) show_letter::i#0 show_letter::@5/(byte) show_letter::i#1 ) + (byte~) show_letter::$20 ← (byte) show_letter::i#2 * (const byte) SIZEOF_STRUCT_SEGMENT + (struct SplineVector16*) show_letter::$23 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) show_letter::$28 ← (signed word*)(struct SplineVector16*) show_letter::$23 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + (signed word) show_letter::to_x#0 ← *((signed word*) show_letter::$28 + (byte~) show_letter::$20) + (struct SplineVector16*) show_letter::$24 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO + (signed word*) show_letter::$29 ← (signed word*)(struct SplineVector16*) show_letter::$24 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (signed word) show_letter::to_y#0 ← *((signed word*) show_letter::$29 + (byte~) show_letter::$20) + (number~) show_letter::$0 ← (signed word) show_letter::to_x#0 - (number) $32 + (number~) show_letter::$1 ← (signed word) show_letter::to_y#0 - (number) $96 + (signed word) show_letter::to_x#1 ← (number~) show_letter::$0 + (signed word) show_letter::to_y#1 ← (number~) show_letter::$1 + (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 + (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 + (byte) rotate::angle#0 ← (byte) show_letter::angle#1 + call rotate + (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#3 + (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#3 + to:show_letter::@11 +show_letter::@11: scope:[show_letter] from show_letter::@1 + (signed word) show_letter::current_y#8 ← phi( show_letter::@1/(signed word) show_letter::current_y#9 ) + (signed word) show_letter::current_x#8 ← phi( show_letter::@1/(signed word) show_letter::current_x#9 ) + (signed byte*) COS#3 ← phi( show_letter::@1/(signed byte*) COS#2 ) + (byte) show_letter::angle#2 ← phi( show_letter::@1/(byte) show_letter::angle#1 ) + (byte) show_letter::i#3 ← phi( show_letter::@1/(byte) show_letter::i#2 ) + (signed word) rotate::return_y#4 ← phi( show_letter::@1/(signed word) rotate::return_y#0 ) + (signed word) rotate::return_x#4 ← phi( show_letter::@1/(signed word) rotate::return_x#0 ) + (signed word) show_letter::$2_x ← (signed word) rotate::return_x#4 + (signed word) show_letter::$2_y ← (signed word) rotate::return_y#4 + (signed word) show_letter::to_x#2 ← (signed word) show_letter::$2_x + (signed word) show_letter::to_y#2 ← (signed word) show_letter::$2_y + (number~) show_letter::$3 ← (signed word) show_letter::to_x#2 + (number) $64 + (number~) show_letter::$4 ← (signed word) show_letter::to_y#2 + (number) $64 + (signed word) show_letter::to_x#3 ← (number~) show_letter::$3 + (signed word) show_letter::to_y#3 ← (number~) show_letter::$4 + (byte~) show_letter::$21 ← (byte) show_letter::i#3 * (const byte) SIZEOF_STRUCT_SEGMENT + (struct SplineVector16*) show_letter::$25 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) show_letter::$30 ← (signed word*)(struct SplineVector16*) show_letter::$25 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + (signed word) show_letter::via_x#0 ← *((signed word*) show_letter::$30 + (byte~) show_letter::$21) + (struct SplineVector16*) show_letter::$26 ← (struct SplineVector16*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA + (signed word*) show_letter::$31 ← (signed word*)(struct SplineVector16*) show_letter::$26 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (signed word) show_letter::via_y#0 ← *((signed word*) show_letter::$31 + (byte~) show_letter::$21) + (number~) show_letter::$5 ← (signed word) show_letter::via_x#0 - (number) $32 + (number~) show_letter::$6 ← (signed word) show_letter::via_y#0 - (number) $96 + (signed word) show_letter::via_x#1 ← (number~) show_letter::$5 + (signed word) show_letter::via_y#1 ← (number~) show_letter::$6 + (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 + (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 + (byte) rotate::angle#1 ← (byte) show_letter::angle#2 + call rotate + (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#3 + (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#3 + to:show_letter::@12 +show_letter::@12: scope:[show_letter] from show_letter::@11 + (signed byte*) COS#11 ← phi( show_letter::@11/(signed byte*) COS#3 ) + (byte) show_letter::angle#8 ← phi( show_letter::@11/(byte) show_letter::angle#2 ) + (signed word) show_letter::current_y#7 ← phi( show_letter::@11/(signed word) show_letter::current_y#8 ) + (signed word) show_letter::current_x#7 ← phi( show_letter::@11/(signed word) show_letter::current_x#8 ) + (signed word) show_letter::to_y#4 ← phi( show_letter::@11/(signed word) show_letter::to_y#3 ) + (signed word) show_letter::to_x#4 ← phi( show_letter::@11/(signed word) show_letter::to_x#3 ) + (byte) show_letter::i#4 ← phi( show_letter::@11/(byte) show_letter::i#3 ) + (signed word) rotate::return_y#5 ← phi( show_letter::@11/(signed word) rotate::return_y#1 ) + (signed word) rotate::return_x#5 ← phi( show_letter::@11/(signed word) rotate::return_x#1 ) + (signed word) show_letter::$7_x ← (signed word) rotate::return_x#5 + (signed word) show_letter::$7_y ← (signed word) rotate::return_y#5 + (signed word) show_letter::via_x#2 ← (signed word) show_letter::$7_x + (signed word) show_letter::via_y#2 ← (signed word) show_letter::$7_y + (number~) show_letter::$8 ← (signed word) show_letter::via_x#2 + (number) $64 + (number~) show_letter::$9 ← (signed word) show_letter::via_y#2 + (number) $64 + (signed word) show_letter::via_x#3 ← (number~) show_letter::$8 + (signed word) show_letter::via_y#3 ← (number~) show_letter::$9 + (byte~) show_letter::$22 ← (byte) show_letter::i#4 * (const byte) SIZEOF_STRUCT_SEGMENT + (byte*) show_letter::$27 ← (byte*)(struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE + (byte) show_letter::segment_type#0 ← *((byte*) show_letter::$27 + (byte~) show_letter::$22) + (signed word) show_letter::segment_to_x#0 ← (signed word) show_letter::to_x#4 + (signed word) show_letter::segment_to_y#0 ← (signed word) show_letter::to_y#4 + (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#3 + (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#3 + (bool~) show_letter::$10 ← (byte) show_letter::segment_type#0 == (const byte) MOVE_TO + if((bool~) show_letter::$10) goto show_letter::@2 + to:show_letter::@6 +show_letter::@2: scope:[show_letter] from show_letter::@12 + (signed byte*) COS#9 ← phi( show_letter::@12/(signed byte*) COS#11 ) + (byte) show_letter::angle#7 ← phi( show_letter::@12/(byte) show_letter::angle#8 ) + (byte) show_letter::i#8 ← phi( show_letter::@12/(byte) show_letter::i#4 ) + (signed word) show_letter::segment_to_y#1 ← phi( show_letter::@12/(signed word) show_letter::segment_to_y#0 ) + (signed word) show_letter::segment_to_x#1 ← phi( show_letter::@12/(signed word) show_letter::segment_to_x#0 ) + (signed word) show_letter::current_x#1 ← (signed word) show_letter::segment_to_x#1 + (signed word) show_letter::current_y#1 ← (signed word) show_letter::segment_to_y#1 + to:show_letter::@5 +show_letter::@6: scope:[show_letter] from show_letter::@12 + (signed byte*) COS#16 ← phi( show_letter::@12/(signed byte*) COS#11 ) + (byte) show_letter::angle#12 ← phi( show_letter::@12/(byte) show_letter::angle#8 ) + (byte) show_letter::i#12 ← phi( show_letter::@12/(byte) show_letter::i#4 ) + (signed word) show_letter::segment_to_y#6 ← phi( show_letter::@12/(signed word) show_letter::segment_to_y#0 ) + (signed word) show_letter::segment_to_x#6 ← phi( show_letter::@12/(signed word) show_letter::segment_to_x#0 ) + (signed word) show_letter::segment_via_y#2 ← phi( show_letter::@12/(signed word) show_letter::segment_via_y#0 ) + (signed word) show_letter::segment_via_x#2 ← phi( show_letter::@12/(signed word) show_letter::segment_via_x#0 ) + (signed word) show_letter::current_y#6 ← phi( show_letter::@12/(signed word) show_letter::current_y#7 ) + (signed word) show_letter::current_x#6 ← phi( show_letter::@12/(signed word) show_letter::current_x#7 ) + (byte) show_letter::segment_type#1 ← phi( show_letter::@12/(byte) show_letter::segment_type#0 ) + (bool~) show_letter::$11 ← (byte) show_letter::segment_type#1 == (const byte) SPLINE_TO + if((bool~) show_letter::$11) goto show_letter::@3 + to:show_letter::@7 +show_letter::@3: scope:[show_letter] from show_letter::@6 + (signed byte*) COS#15 ← phi( show_letter::@6/(signed byte*) COS#16 ) + (byte) show_letter::angle#11 ← phi( show_letter::@6/(byte) show_letter::angle#12 ) + (byte) show_letter::i#11 ← phi( show_letter::@6/(byte) show_letter::i#12 ) + (signed word) show_letter::segment_to_y#2 ← phi( show_letter::@6/(signed word) show_letter::segment_to_y#6 ) + (signed word) show_letter::segment_to_x#2 ← phi( show_letter::@6/(signed word) show_letter::segment_to_x#6 ) + (signed word) show_letter::segment_via_y#1 ← phi( show_letter::@6/(signed word) show_letter::segment_via_y#2 ) + (signed word) show_letter::segment_via_x#1 ← phi( show_letter::@6/(signed word) show_letter::segment_via_x#2 ) + (signed word) show_letter::current_y#4 ← phi( show_letter::@6/(signed word) show_letter::current_y#6 ) + (signed word) show_letter::current_x#4 ← phi( show_letter::@6/(signed word) show_letter::current_x#6 ) + (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 + (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 + (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#1 + (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#1 + (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::segment_to_x#2 + (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::segment_to_y#2 + call spline_8segB + to:show_letter::@13 +show_letter::@13: scope:[show_letter] from show_letter::@3 + (signed byte*) COS#12 ← phi( show_letter::@3/(signed byte*) COS#15 ) + (byte) show_letter::angle#9 ← phi( show_letter::@3/(byte) show_letter::angle#11 ) + (byte) show_letter::i#9 ← phi( show_letter::@3/(byte) show_letter::i#11 ) + (signed word) show_letter::segment_to_y#7 ← phi( show_letter::@3/(signed word) show_letter::segment_to_y#2 ) + (signed word) show_letter::segment_to_x#7 ← phi( show_letter::@3/(signed word) show_letter::segment_to_x#2 ) + call bitmap_plot_spline_8seg + to:show_letter::@14 +show_letter::@14: scope:[show_letter] from show_letter::@13 + (signed byte*) COS#7 ← phi( show_letter::@13/(signed byte*) COS#12 ) + (byte) show_letter::angle#5 ← phi( show_letter::@13/(byte) show_letter::angle#9 ) + (byte) show_letter::i#6 ← phi( show_letter::@13/(byte) show_letter::i#9 ) + (signed word) show_letter::segment_to_y#3 ← phi( show_letter::@13/(signed word) show_letter::segment_to_y#7 ) + (signed word) show_letter::segment_to_x#3 ← phi( show_letter::@13/(signed word) show_letter::segment_to_x#7 ) + (signed word) show_letter::current_x#2 ← (signed word) show_letter::segment_to_x#3 + (signed word) show_letter::current_y#2 ← (signed word) show_letter::segment_to_y#3 + to:show_letter::@5 +show_letter::@7: scope:[show_letter] from show_letter::@6 + (signed byte*) COS#13 ← phi( show_letter::@6/(signed byte*) COS#16 ) + (byte) show_letter::angle#10 ← phi( show_letter::@6/(byte) show_letter::angle#12 ) + (byte) show_letter::i#10 ← phi( show_letter::@6/(byte) show_letter::i#12 ) + (signed word) show_letter::segment_to_y#4 ← phi( show_letter::@6/(signed word) show_letter::segment_to_y#6 ) + (signed word) show_letter::segment_to_x#4 ← phi( show_letter::@6/(signed word) show_letter::segment_to_x#6 ) + (signed word) show_letter::current_y#5 ← phi( show_letter::@6/(signed word) show_letter::current_y#6 ) + (signed word) show_letter::current_x#5 ← phi( show_letter::@6/(signed word) show_letter::current_x#6 ) + (word~) show_letter::$12 ← ((word)) (signed word) show_letter::current_x#5 + (word~) show_letter::$13 ← ((word)) (signed word) show_letter::current_y#5 + (word~) show_letter::$14 ← ((word)) (signed word) show_letter::segment_to_x#4 + (word~) show_letter::$15 ← ((word)) (signed word) show_letter::segment_to_y#4 + (word) bitmap_line::x1#0 ← (word~) show_letter::$12 + (word) bitmap_line::y1#0 ← (word~) show_letter::$13 + (word) bitmap_line::x2#0 ← (word~) show_letter::$14 + (word) bitmap_line::y2#0 ← (word~) show_letter::$15 + call bitmap_line + to:show_letter::@15 +show_letter::@15: scope:[show_letter] from show_letter::@7 + (signed byte*) COS#8 ← phi( show_letter::@7/(signed byte*) COS#13 ) + (byte) show_letter::angle#6 ← phi( show_letter::@7/(byte) show_letter::angle#10 ) + (byte) show_letter::i#7 ← phi( show_letter::@7/(byte) show_letter::i#10 ) + (signed word) show_letter::segment_to_y#5 ← phi( show_letter::@7/(signed word) show_letter::segment_to_y#4 ) + (signed word) show_letter::segment_to_x#5 ← phi( show_letter::@7/(signed word) show_letter::segment_to_x#4 ) + (signed word) show_letter::current_x#3 ← (signed word) show_letter::segment_to_x#5 + (signed word) show_letter::current_y#3 ← (signed word) show_letter::segment_to_y#5 + to:show_letter::@5 +show_letter::@5: scope:[show_letter] from show_letter::@14 show_letter::@15 show_letter::@2 + (signed word) show_letter::current_y#10 ← phi( show_letter::@14/(signed word) show_letter::current_y#2 show_letter::@15/(signed word) show_letter::current_y#3 show_letter::@2/(signed word) show_letter::current_y#1 ) + (signed word) show_letter::current_x#10 ← phi( show_letter::@14/(signed word) show_letter::current_x#2 show_letter::@15/(signed word) show_letter::current_x#3 show_letter::@2/(signed word) show_letter::current_x#1 ) + (signed byte*) COS#5 ← phi( show_letter::@14/(signed byte*) COS#7 show_letter::@15/(signed byte*) COS#8 show_letter::@2/(signed byte*) COS#9 ) + (byte) show_letter::angle#4 ← phi( show_letter::@14/(byte) show_letter::angle#5 show_letter::@15/(byte) show_letter::angle#6 show_letter::@2/(byte) show_letter::angle#7 ) + (byte) show_letter::i#5 ← phi( show_letter::@14/(byte) show_letter::i#6 show_letter::@15/(byte) show_letter::i#7 show_letter::@2/(byte) show_letter::i#8 ) + (byte) show_letter::i#1 ← (byte) show_letter::i#5 + rangenext(0,$15) + (bool~) show_letter::$19 ← (byte) show_letter::i#1 != rangelast(0,$15) + if((bool~) show_letter::$19) goto show_letter::@1 + to:show_letter::@return +show_letter::@return: scope:[show_letter] from show_letter::@5 + return + to:@return +bitmap_plot_spline_8seg: scope:[bitmap_plot_spline_8seg] from show_letter::@13 + (number~) bitmap_plot_spline_8seg::$6 ← (number) 0 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 + (signed word*) bitmap_plot_spline_8seg::$10 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*) bitmap_plot_spline_8seg::$10 + (number~) bitmap_plot_spline_8seg::$6) + (signed word*) bitmap_plot_spline_8seg::$11 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*) bitmap_plot_spline_8seg::$11 + (number~) bitmap_plot_spline_8seg::$6) + (byte) bitmap_plot_spline_8seg::n#0 ← (byte) 1 + to:bitmap_plot_spline_8seg::@1 +bitmap_plot_spline_8seg::@1: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg bitmap_plot_spline_8seg::@3 + (byte) bitmap_plot_spline_8seg::n#2 ← phi( bitmap_plot_spline_8seg/(byte) bitmap_plot_spline_8seg::n#0 bitmap_plot_spline_8seg::@3/(byte) bitmap_plot_spline_8seg::n#1 ) + (signed word) bitmap_plot_spline_8seg::current_y#2 ← phi( bitmap_plot_spline_8seg/(signed word) bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::@3/(signed word) bitmap_plot_spline_8seg::current_y#1 ) + (signed word) bitmap_plot_spline_8seg::current_x#2 ← phi( bitmap_plot_spline_8seg/(signed word) bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::@3/(signed word) bitmap_plot_spline_8seg::current_x#1 ) + (word~) bitmap_plot_spline_8seg::$0 ← ((word)) (signed word) bitmap_plot_spline_8seg::current_x#2 + (word~) bitmap_plot_spline_8seg::$1 ← ((word)) (signed word) bitmap_plot_spline_8seg::current_y#2 + (byte~) bitmap_plot_spline_8seg::$7 ← (byte) bitmap_plot_spline_8seg::n#2 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 + (signed word*) bitmap_plot_spline_8seg::$14 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + (word~) bitmap_plot_spline_8seg::$2 ← ((word)) *((signed word*) bitmap_plot_spline_8seg::$14 + (byte~) bitmap_plot_spline_8seg::$7) + (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 + (signed word*) bitmap_plot_spline_8seg::$15 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (word~) bitmap_plot_spline_8seg::$3 ← ((word)) *((signed word*) bitmap_plot_spline_8seg::$15 + (byte~) bitmap_plot_spline_8seg::$8) + (word) bitmap_line::x1#1 ← (word~) bitmap_plot_spline_8seg::$0 + (word) bitmap_line::y1#1 ← (word~) bitmap_plot_spline_8seg::$1 + (word) bitmap_line::x2#1 ← (word~) bitmap_plot_spline_8seg::$2 + (word) bitmap_line::y2#1 ← (word~) bitmap_plot_spline_8seg::$3 + call bitmap_line + to:bitmap_plot_spline_8seg::@3 +bitmap_plot_spline_8seg::@3: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg::@1 + (byte) bitmap_plot_spline_8seg::n#3 ← phi( bitmap_plot_spline_8seg::@1/(byte) bitmap_plot_spline_8seg::n#2 ) + (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#3 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 + (signed word*) bitmap_plot_spline_8seg::$12 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X + (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*) bitmap_plot_spline_8seg::$12 + (byte~) bitmap_plot_spline_8seg::$9) + (signed word*) bitmap_plot_spline_8seg::$13 ← (signed word*)(struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*) bitmap_plot_spline_8seg::$13 + (byte~) bitmap_plot_spline_8seg::$9) + (byte) bitmap_plot_spline_8seg::n#1 ← (byte) bitmap_plot_spline_8seg::n#3 + rangenext(1,8) + (bool~) bitmap_plot_spline_8seg::$5 ← (byte) bitmap_plot_spline_8seg::n#1 != rangelast(1,8) + if((bool~) bitmap_plot_spline_8seg::$5) goto bitmap_plot_spline_8seg::@1 + to:bitmap_plot_spline_8seg::@return +bitmap_plot_spline_8seg::@return: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg::@3 + return + to:@return +@62: scope:[] from @59 + (byte*) bitmap_screen#21 ← phi( @59/(byte*) bitmap_screen#25 ) + (byte*) bitmap_gfx#22 ← phi( @59/(byte*) bitmap_gfx#26 ) + (signed byte[$140]) SIN#0 ← kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + }} + (signed byte*~) $1 ← (signed byte[$140]) SIN#0 + (number) $40 + (signed byte*) COS#0 ← (signed byte*~) $1 + to:@63 +rotate: scope:[rotate] from show_letter::@1 show_letter::@11 + (signed word) rotate::vector_y#4 ← phi( show_letter::@1/(signed word) rotate::vector_y#0 show_letter::@11/(signed word) rotate::vector_y#1 ) + (signed word) rotate::vector_x#2 ← phi( show_letter::@1/(signed word) rotate::vector_x#0 show_letter::@11/(signed word) rotate::vector_x#1 ) + (byte) rotate::angle#2 ← phi( show_letter::@1/(byte) rotate::angle#0 show_letter::@11/(byte) rotate::angle#1 ) + (signed byte*) COS#1 ← phi( show_letter::@1/(signed byte*) COS#2 show_letter::@11/(signed byte*) COS#3 ) + (signed word~) rotate::$0 ← ((signed word)) *((signed byte*) COS#1 + (byte) rotate::angle#2) + (signed word) rotate::cos_a#0 ← (signed word~) rotate::$0 + (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 + (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 + call mulf16s + (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#1 + to:rotate::@2 +rotate::@2: scope:[rotate] from rotate + (signed word) rotate::vector_x#5 ← phi( rotate/(signed word) rotate::vector_x#2 ) + (byte) rotate::angle#4 ← phi( rotate/(byte) rotate::angle#2 ) + (signed word) rotate::vector_y#2 ← phi( rotate/(signed word) rotate::vector_y#4 ) + (signed word) rotate::cos_a#1 ← phi( rotate/(signed word) rotate::cos_a#0 ) + (signed dword) mulf16s::return#7 ← phi( rotate/(signed dword) mulf16s::return#2 ) + (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#7 + (signed word~) rotate::$2 ← ((signed word)) (signed dword~) rotate::$1 + (number~) rotate::$3 ← (signed word~) rotate::$2 * (number) 2 + (signed word) rotate::xr#0 ← (number~) rotate::$3 + (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#1 + (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 + call mulf16s + (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#1 + to:rotate::@3 +rotate::@3: scope:[rotate] from rotate::@2 + (signed word) rotate::vector_x#4 ← phi( rotate::@2/(signed word) rotate::vector_x#5 ) + (signed word) rotate::xr#4 ← phi( rotate::@2/(signed word) rotate::xr#0 ) + (signed word) rotate::vector_y#3 ← phi( rotate::@2/(signed word) rotate::vector_y#2 ) + (byte) rotate::angle#3 ← phi( rotate::@2/(byte) rotate::angle#4 ) + (signed dword) mulf16s::return#8 ← phi( rotate::@2/(signed dword) mulf16s::return#3 ) + (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#8 + (signed word~) rotate::$5 ← ((signed word)) (signed dword~) rotate::$4 + (number~) rotate::$6 ← (signed word~) rotate::$5 * (number) 2 + (signed word) rotate::yr#0 ← (number~) rotate::$6 + (signed word~) rotate::$7 ← ((signed word)) *((signed byte[$140]) SIN#0 + (byte) rotate::angle#3) + (signed word) rotate::sin_a#0 ← (signed word~) rotate::$7 + (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 + (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#3 + call mulf16s + (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#1 + to:rotate::@4 +rotate::@4: scope:[rotate] from rotate::@3 + (signed word) rotate::yr#3 ← phi( rotate::@3/(signed word) rotate::yr#0 ) + (signed word) rotate::vector_x#3 ← phi( rotate::@3/(signed word) rotate::vector_x#4 ) + (signed word) rotate::sin_a#1 ← phi( rotate::@3/(signed word) rotate::sin_a#0 ) + (signed word) rotate::xr#2 ← phi( rotate::@3/(signed word) rotate::xr#4 ) + (signed dword) mulf16s::return#9 ← phi( rotate::@3/(signed dword) mulf16s::return#4 ) + (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#9 + (signed word~) rotate::$9 ← ((signed word)) (signed dword~) rotate::$8 + (number~) rotate::$10 ← (signed word~) rotate::$9 * (number) 2 + (signed word) rotate::xr#1 ← (signed word) rotate::xr#2 - (number~) rotate::$10 + (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#1 + (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#3 + call mulf16s + (signed dword) mulf16s::return#5 ← (signed dword) mulf16s::return#1 + to:rotate::@5 +rotate::@5: scope:[rotate] from rotate::@4 + (signed word) rotate::xr#3 ← phi( rotate::@4/(signed word) rotate::xr#1 ) + (signed word) rotate::yr#2 ← phi( rotate::@4/(signed word) rotate::yr#3 ) + (signed dword) mulf16s::return#10 ← phi( rotate::@4/(signed dword) mulf16s::return#5 ) + (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 + (signed word~) rotate::$12 ← ((signed word)) (signed dword~) rotate::$11 + (number~) rotate::$13 ← (signed word~) rotate::$12 * (number) 2 + (signed word) rotate::yr#1 ← (signed word) rotate::yr#2 + (number~) rotate::$13 + (byte~) rotate::$14 ← > (signed word) rotate::xr#3 + (signed byte~) rotate::$15 ← ((signed byte)) (byte~) rotate::$14 + (signed word~) rotate::$16 ← ((signed word)) (signed byte~) rotate::$15 + (byte~) rotate::$17 ← > (signed word) rotate::yr#1 + (signed byte~) rotate::$18 ← ((signed byte)) (byte~) rotate::$17 + (signed word~) rotate::$19 ← ((signed word)) (signed byte~) rotate::$18 + (signed word) rotate::rotated_x#0 ← (signed word~) rotate::$16 + (signed word) rotate::rotated_y#0 ← (signed word~) rotate::$19 + (signed word) rotate::return_x#2 ← (signed word) rotate::rotated_x#0 + (signed word) rotate::return_y#2 ← (signed word) rotate::rotated_y#0 + (struct SplineVector16) rotate::return#0 ← struct-unwound {(signed word) rotate::return_x#2, (signed word) rotate::return_y#2} + to:rotate::@return +rotate::@return: scope:[rotate] from rotate::@5 + (signed word) rotate::return_y#6 ← phi( rotate::@5/(signed word) rotate::return_y#2 ) + (signed word) rotate::return_x#6 ← phi( rotate::@5/(signed word) rotate::return_x#2 ) + (signed word) rotate::return_x#3 ← (signed word) rotate::return_x#6 + (signed word) rotate::return_y#3 ← (signed word) rotate::return_y#6 + (struct SplineVector16) rotate::return#1 ← struct-unwound {(signed word) rotate::return_x#3, (signed word) rotate::return_y#3} + return + to:@return +@63: scope:[] from @62 + (signed byte*) COS#34 ← phi( @62/(signed byte*) COS#0 ) + (byte*) bitmap_screen#15 ← phi( @62/(byte*) bitmap_screen#21 ) + (byte*) bitmap_gfx#15 ← phi( @62/(byte*) bitmap_gfx#22 ) + call main + to:@64 +@64: scope:[] from @63 + (byte*) bitmap_screen#10 ← phi( @63/(byte*) bitmap_screen#4 ) + (byte*) bitmap_gfx#10 ← phi( @63/(byte*) bitmap_gfx#4 ) + (byte*) bitmap_gfx#5 ← (byte*) bitmap_gfx#10 + (byte*) bitmap_screen#5 ← (byte*) bitmap_screen#10 + to:@end +@end: scope:[] from @64 + +SYMBOL TABLE SSA +(signed byte*~) $1 +(label) @1 +(label) @13 +(label) @50 +(label) @59 +(label) @62 +(label) @63 +(label) @64 +(label) @7 +(label) @begin +(label) @end +(byte*) BITMAP_GRAPHICS +(byte*) BITMAP_GRAPHICS#0 +(byte*) BITMAP_SCREEN +(byte*) BITMAP_SCREEN#0 +(byte) BLACK +(byte) BLACK#0 +(byte*) CIA2_PORT_A +(byte*) CIA2_PORT_A#0 +(byte*) CIA2_PORT_A_DDR +(byte*) CIA2_PORT_A_DDR#0 +(signed byte*) COS +(signed byte*) COS#0 +(signed byte*) COS#1 +(signed byte*) COS#10 +(signed byte*) COS#11 +(signed byte*) COS#12 +(signed byte*) COS#13 +(signed byte*) COS#14 +(signed byte*) COS#15 +(signed byte*) COS#16 +(signed byte*) COS#17 +(signed byte*) COS#18 +(signed byte*) COS#19 +(signed byte*) COS#2 +(signed byte*) COS#20 +(signed byte*) COS#21 +(signed byte*) COS#22 +(signed byte*) COS#23 +(signed byte*) COS#24 +(signed byte*) COS#25 +(signed byte*) COS#26 +(signed byte*) COS#27 +(signed byte*) COS#28 +(signed byte*) COS#29 +(signed byte*) COS#3 +(signed byte*) COS#30 +(signed byte*) COS#31 +(signed byte*) COS#32 +(signed byte*) COS#33 +(signed byte*) COS#34 +(signed byte*) COS#4 +(signed byte*) COS#5 +(signed byte*) COS#6 +(signed byte*) COS#7 +(signed byte*) COS#8 +(signed byte*) COS#9 +(byte*) D011 +(byte*) D011#0 +(byte*) D018 +(byte*) D018#0 +(const byte) LINE_TO = (byte) 2 +(const byte) MOVE_TO = (byte) 0 +(const byte) OFFSET_STRUCT_SEGMENT_TO = (byte) 1 +(const byte) OFFSET_STRUCT_SEGMENT_TYPE = (byte) 0 +(const byte) OFFSET_STRUCT_SEGMENT_VIA = (byte) 5 +(const byte) OFFSET_STRUCT_SPLINEVECTOR16_X = (byte) 0 +(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y = (byte) 2 +(byte*) PRINT_SCREEN +(byte*) PRINT_SCREEN#0 +(const byte) RADIX::BINARY = (number) 2 +(const byte) RADIX::DECIMAL = (number) $a +(const byte) RADIX::HEXADECIMAL = (number) $10 +(const byte) RADIX::OCTAL = (number) 8 +(byte*) RASTER +(byte*) RASTER#0 +(signed byte[$140]) SIN +(signed byte[$140]) SIN#0 +(const byte) SIZEOF_STRUCT_SEGMENT = (byte) 9 +(const byte) SIZEOF_STRUCT_SPLINEVECTOR16 = (byte) 4 +(struct SplineVector16[9]) SPLINE_8SEG +(struct SplineVector16[9]) SPLINE_8SEG#0 +(const byte) SPLINE_TO = (byte) 1 +(const byte) Segment::SegmentType::LINE_TO = (byte) 2 +(const byte) Segment::SegmentType::MOVE_TO = (byte) 0 +(const byte) Segment::SegmentType::SPLINE_TO = (byte) 1 +(struct SplineVector16) Segment::to +(byte) Segment::type +(struct SplineVector16) Segment::via +(signed word) SplineVector16::x +(signed word) SplineVector16::y +(signed dword) SplineVector32::x +(signed dword) SplineVector32::y +(byte) VIC_BMM +(byte) VIC_BMM#0 +(byte) VIC_DEN +(byte) VIC_DEN#0 +(byte) VIC_RSEL +(byte) VIC_RSEL#0 +(byte) WHITE +(byte) WHITE#0 +(word()) abs_u16((word) abs_u16::w) +(byte~) abs_u16::$0 +(number~) abs_u16::$1 +(word~) abs_u16::$2 +(bool~) abs_u16::$3 +(label) abs_u16::@1 +(label) abs_u16::@3 +(label) abs_u16::@return +(word) abs_u16::return +(word) abs_u16::return#0 +(word) abs_u16::return#1 +(word) abs_u16::return#2 +(word) abs_u16::return#3 +(word) abs_u16::return#4 +(word) abs_u16::return#5 +(word) abs_u16::return#6 +(word) abs_u16::return#7 +(word) abs_u16::w +(word) abs_u16::w#0 +(word) abs_u16::w#1 +(word) abs_u16::w#2 +(word) abs_u16::w#3 +(word) abs_u16::w#4 +(void()) bitmap_clear((byte) bitmap_clear::bgcol , (byte) bitmap_clear::fgcol) +(number~) bitmap_clear::$0 +(number~) bitmap_clear::$1 +(label) bitmap_clear::@1 +(label) bitmap_clear::@2 +(label) bitmap_clear::@return +(byte) bitmap_clear::bgcol +(byte) bitmap_clear::bgcol#0 +(byte) bitmap_clear::bgcol#1 +(byte) bitmap_clear::bgcol#2 +(byte) bitmap_clear::col +(byte) bitmap_clear::col#0 +(byte) bitmap_clear::fgcol +(byte) bitmap_clear::fgcol#0 +(byte) bitmap_clear::fgcol#1 +(byte) bitmap_clear::fgcol#2 +(byte*) bitmap_gfx +(byte*) bitmap_gfx#0 +(byte*) bitmap_gfx#1 +(byte*) bitmap_gfx#10 +(byte*) bitmap_gfx#11 +(byte*) bitmap_gfx#12 +(byte*) bitmap_gfx#13 +(byte*) bitmap_gfx#14 +(byte*) bitmap_gfx#15 +(byte*) bitmap_gfx#16 +(byte*) bitmap_gfx#17 +(byte*) bitmap_gfx#18 +(byte*) bitmap_gfx#19 +(byte*) bitmap_gfx#2 +(byte*) bitmap_gfx#20 +(byte*) bitmap_gfx#21 +(byte*) bitmap_gfx#22 +(byte*) bitmap_gfx#23 +(byte*) bitmap_gfx#24 +(byte*) bitmap_gfx#25 +(byte*) bitmap_gfx#26 +(byte*) bitmap_gfx#27 +(byte*) bitmap_gfx#28 +(byte*) bitmap_gfx#29 +(byte*) bitmap_gfx#3 +(byte*) bitmap_gfx#30 +(byte*) bitmap_gfx#31 +(byte*) bitmap_gfx#32 +(byte*) bitmap_gfx#33 +(byte*) bitmap_gfx#34 +(byte*) bitmap_gfx#35 +(byte*) bitmap_gfx#36 +(byte*) bitmap_gfx#37 +(byte*) bitmap_gfx#38 +(byte*) bitmap_gfx#39 +(byte*) bitmap_gfx#4 +(byte*) bitmap_gfx#40 +(byte*) bitmap_gfx#41 +(byte*) bitmap_gfx#42 +(byte*) bitmap_gfx#43 +(byte*) bitmap_gfx#44 +(byte*) bitmap_gfx#5 +(byte*) bitmap_gfx#6 +(byte*) bitmap_gfx#7 +(byte*) bitmap_gfx#8 +(byte*) bitmap_gfx#9 +(void()) bitmap_init((byte*) bitmap_init::gfx , (byte*) bitmap_init::screen) +(bool~) bitmap_init::$0 +(bool~) bitmap_init::$1 +(byte*~) bitmap_init::$10 +(bool~) bitmap_init::$11 +(bool~) bitmap_init::$2 +(number~) bitmap_init::$3 +(byte~) bitmap_init::$4 +(number~) bitmap_init::$5 +(byte~) bitmap_init::$6 +(number~) bitmap_init::$7 +(bool~) bitmap_init::$8 +(bool~) bitmap_init::$9 +(label) bitmap_init::@1 +(label) bitmap_init::@2 +(label) bitmap_init::@3 +(label) bitmap_init::@4 +(label) bitmap_init::@5 +(label) bitmap_init::@6 +(label) bitmap_init::@7 +(label) bitmap_init::@return +(byte) bitmap_init::bits +(byte) bitmap_init::bits#0 +(byte) bitmap_init::bits#1 +(byte) bitmap_init::bits#2 +(byte) bitmap_init::bits#3 +(byte) bitmap_init::bits#4 +(byte*) bitmap_init::gfx +(byte*) bitmap_init::gfx#0 +(byte*) bitmap_init::gfx#1 +(byte*) bitmap_init::gfx#2 +(byte*) bitmap_init::gfx#3 +(byte*) bitmap_init::gfx#4 +(byte*) bitmap_init::gfx#5 +(byte*) bitmap_init::screen +(byte*) bitmap_init::screen#0 +(byte*) bitmap_init::screen#1 +(byte) bitmap_init::x +(byte) bitmap_init::x#0 +(byte) bitmap_init::x#1 +(byte) bitmap_init::x#2 +(byte) bitmap_init::x#3 +(byte) bitmap_init::x#4 +(byte) bitmap_init::y +(byte) bitmap_init::y#0 +(byte) bitmap_init::y#1 +(byte) bitmap_init::y#2 +(byte) bitmap_init::y#3 +(byte) bitmap_init::y#4 +(byte*) bitmap_init::yoffs +(byte*) bitmap_init::yoffs#0 +(byte*) bitmap_init::yoffs#1 +(byte*) bitmap_init::yoffs#2 +(byte*) bitmap_init::yoffs#3 +(byte*) bitmap_init::yoffs#4 +(void()) bitmap_line((word) bitmap_line::x1 , (word) bitmap_line::y1 , (word) bitmap_line::x2 , (word) bitmap_line::y2) +(word~) bitmap_line::$0 +(word~) bitmap_line::$1 +(word~) bitmap_line::$10 +(word~) bitmap_line::$11 +(bool~) bitmap_line::$12 +(byte~) bitmap_line::$13 +(byte~) bitmap_line::$15 +(number~) bitmap_line::$17 +(byte~) bitmap_line::$18 +(word~) bitmap_line::$2 +(bool~) bitmap_line::$20 +(bool~) bitmap_line::$21 +(bool~) bitmap_line::$22 +(number~) bitmap_line::$23 +(byte~) bitmap_line::$24 +(bool~) bitmap_line::$26 +(bool~) bitmap_line::$27 +(bool~) bitmap_line::$28 +(word~) bitmap_line::$3 +(bool~) bitmap_line::$4 +(bool~) bitmap_line::$5 +(bool~) bitmap_line::$6 +(bool~) bitmap_line::$7 +(word~) bitmap_line::$8 +(word~) bitmap_line::$9 +(label) bitmap_line::@1 +(label) bitmap_line::@12 +(label) bitmap_line::@13 +(label) bitmap_line::@14 +(label) bitmap_line::@16 +(label) bitmap_line::@17 +(label) bitmap_line::@18 +(label) bitmap_line::@19 +(label) bitmap_line::@2 +(label) bitmap_line::@20 +(label) bitmap_line::@21 +(label) bitmap_line::@22 +(label) bitmap_line::@23 +(label) bitmap_line::@3 +(label) bitmap_line::@4 +(label) bitmap_line::@6 +(label) bitmap_line::@7 +(label) bitmap_line::@8 +(label) bitmap_line::@9 +(label) bitmap_line::@return +(word) bitmap_line::dx +(word) bitmap_line::dx#0 +(word) bitmap_line::dx#1 +(word) bitmap_line::dx#10 +(word) bitmap_line::dx#11 +(word) bitmap_line::dx#12 +(word) bitmap_line::dx#13 +(word) bitmap_line::dx#14 +(word) bitmap_line::dx#2 +(word) bitmap_line::dx#3 +(word) bitmap_line::dx#4 +(word) bitmap_line::dx#5 +(word) bitmap_line::dx#6 +(word) bitmap_line::dx#7 +(word) bitmap_line::dx#8 +(word) bitmap_line::dx#9 +(word) bitmap_line::dy +(word) bitmap_line::dy#0 +(word) bitmap_line::dy#1 +(word) bitmap_line::dy#10 +(word) bitmap_line::dy#11 +(word) bitmap_line::dy#12 +(word) bitmap_line::dy#13 +(word) bitmap_line::dy#2 +(word) bitmap_line::dy#3 +(word) bitmap_line::dy#4 +(word) bitmap_line::dy#5 +(word) bitmap_line::dy#6 +(word) bitmap_line::dy#7 +(word) bitmap_line::dy#8 +(word) bitmap_line::dy#9 +(word) bitmap_line::e +(word) bitmap_line::e#0 +(word) bitmap_line::e#1 +(word) bitmap_line::e#2 +(word) bitmap_line::e#3 +(word) bitmap_line::e#4 +(word) bitmap_line::e#5 +(word) bitmap_line::e#6 +(word) bitmap_line::e1 +(word) bitmap_line::e1#0 +(word) bitmap_line::e1#1 +(word) bitmap_line::e1#2 +(word) bitmap_line::e1#3 +(word) bitmap_line::e1#4 +(word) bitmap_line::e1#5 +(word) bitmap_line::e1#6 +(word) bitmap_line::sx +(word) bitmap_line::sx#0 +(word) bitmap_line::sx#1 +(word) bitmap_line::sx#10 +(word) bitmap_line::sx#11 +(word) bitmap_line::sx#2 +(word) bitmap_line::sx#3 +(word) bitmap_line::sx#4 +(word) bitmap_line::sx#5 +(word) bitmap_line::sx#6 +(word) bitmap_line::sx#7 +(word) bitmap_line::sx#8 +(word) bitmap_line::sx#9 +(word) bitmap_line::sy +(word) bitmap_line::sy#0 +(word) bitmap_line::sy#1 +(word) bitmap_line::sy#10 +(word) bitmap_line::sy#2 +(word) bitmap_line::sy#3 +(word) bitmap_line::sy#4 +(word) bitmap_line::sy#5 +(word) bitmap_line::sy#6 +(word) bitmap_line::sy#7 +(word) bitmap_line::sy#8 +(word) bitmap_line::sy#9 +(word) bitmap_line::x +(word) bitmap_line::x#0 +(word) bitmap_line::x#1 +(word) bitmap_line::x#10 +(word) bitmap_line::x#11 +(word) bitmap_line::x#12 +(word) bitmap_line::x#13 +(word) bitmap_line::x#14 +(word) bitmap_line::x#15 +(word) bitmap_line::x#16 +(word) bitmap_line::x#17 +(word) bitmap_line::x#18 +(word) bitmap_line::x#19 +(word) bitmap_line::x#2 +(word) bitmap_line::x#3 +(word) bitmap_line::x#4 +(word) bitmap_line::x#5 +(word) bitmap_line::x#6 +(word) bitmap_line::x#7 +(word) bitmap_line::x#8 +(word) bitmap_line::x#9 +(word) bitmap_line::x1 +(word) bitmap_line::x1#0 +(word) bitmap_line::x1#1 +(word) bitmap_line::x1#2 +(word) bitmap_line::x1#3 +(word) bitmap_line::x1#4 +(word) bitmap_line::x1#5 +(word) bitmap_line::x2 +(word) bitmap_line::x2#0 +(word) bitmap_line::x2#1 +(word) bitmap_line::x2#10 +(word) bitmap_line::x2#11 +(word) bitmap_line::x2#12 +(word) bitmap_line::x2#2 +(word) bitmap_line::x2#3 +(word) bitmap_line::x2#4 +(word) bitmap_line::x2#5 +(word) bitmap_line::x2#6 +(word) bitmap_line::x2#7 +(word) bitmap_line::x2#8 +(word) bitmap_line::x2#9 +(word) bitmap_line::y +(word) bitmap_line::y#0 +(word) bitmap_line::y#1 +(word) bitmap_line::y#10 +(word) bitmap_line::y#11 +(word) bitmap_line::y#12 +(word) bitmap_line::y#13 +(word) bitmap_line::y#14 +(word) bitmap_line::y#15 +(word) bitmap_line::y#16 +(word) bitmap_line::y#17 +(word) bitmap_line::y#18 +(word) bitmap_line::y#19 +(word) bitmap_line::y#2 +(word) bitmap_line::y#3 +(word) bitmap_line::y#4 +(word) bitmap_line::y#5 +(word) bitmap_line::y#6 +(word) bitmap_line::y#7 +(word) bitmap_line::y#8 +(word) bitmap_line::y#9 +(word) bitmap_line::y1 +(word) bitmap_line::y1#0 +(word) bitmap_line::y1#1 +(word) bitmap_line::y1#2 +(word) bitmap_line::y1#3 +(word) bitmap_line::y1#4 +(word) bitmap_line::y1#5 +(word) bitmap_line::y1#6 +(word) bitmap_line::y2 +(word) bitmap_line::y2#0 +(word) bitmap_line::y2#1 +(word) bitmap_line::y2#10 +(word) bitmap_line::y2#11 +(word) bitmap_line::y2#12 +(word) bitmap_line::y2#2 +(word) bitmap_line::y2#3 +(word) bitmap_line::y2#4 +(word) bitmap_line::y2#5 +(word) bitmap_line::y2#6 +(word) bitmap_line::y2#7 +(word) bitmap_line::y2#8 +(word) bitmap_line::y2#9 +(void()) bitmap_plot((word) bitmap_plot::x , (byte) bitmap_plot::y) +(byte*~) bitmap_plot::$0 +(number~) bitmap_plot::$1 +(byte~) bitmap_plot::$2 +(label) bitmap_plot::@return +(byte*) bitmap_plot::plotter +(byte*) bitmap_plot::plotter#0 +(byte*) bitmap_plot::plotter#1 +(word) bitmap_plot::x +(word) bitmap_plot::x#0 +(word) bitmap_plot::x#1 +(word) bitmap_plot::x#2 +(word) bitmap_plot::x#3 +(word) bitmap_plot::x#4 +(byte) bitmap_plot::y +(byte) bitmap_plot::y#0 +(byte) bitmap_plot::y#1 +(byte) bitmap_plot::y#2 +(byte) bitmap_plot::y#3 +(byte) bitmap_plot::y#4 +(byte[$100]) bitmap_plot_bit +(byte[$100]) bitmap_plot_bit#0 +(void()) bitmap_plot_spline_8seg() +(word~) bitmap_plot_spline_8seg::$0 +(word~) bitmap_plot_spline_8seg::$1 +(signed word*) bitmap_plot_spline_8seg::$10 +(signed word*) bitmap_plot_spline_8seg::$11 +(signed word*) bitmap_plot_spline_8seg::$12 +(signed word*) bitmap_plot_spline_8seg::$13 +(signed word*) bitmap_plot_spline_8seg::$14 +(signed word*) bitmap_plot_spline_8seg::$15 +(word~) bitmap_plot_spline_8seg::$2 +(word~) bitmap_plot_spline_8seg::$3 +(bool~) bitmap_plot_spline_8seg::$5 +(number~) bitmap_plot_spline_8seg::$6 +(byte~) bitmap_plot_spline_8seg::$7 +(byte~) bitmap_plot_spline_8seg::$8 +(byte~) bitmap_plot_spline_8seg::$9 +(label) bitmap_plot_spline_8seg::@1 +(label) bitmap_plot_spline_8seg::@3 +(label) bitmap_plot_spline_8seg::@return +(signed word) bitmap_plot_spline_8seg::current_x +(signed word) bitmap_plot_spline_8seg::current_x#0 +(signed word) bitmap_plot_spline_8seg::current_x#1 +(signed word) bitmap_plot_spline_8seg::current_x#2 +(signed word) bitmap_plot_spline_8seg::current_y +(signed word) bitmap_plot_spline_8seg::current_y#0 +(signed word) bitmap_plot_spline_8seg::current_y#1 +(signed word) bitmap_plot_spline_8seg::current_y#2 +(byte) bitmap_plot_spline_8seg::n +(byte) bitmap_plot_spline_8seg::n#0 +(byte) bitmap_plot_spline_8seg::n#1 +(byte) bitmap_plot_spline_8seg::n#2 +(byte) bitmap_plot_spline_8seg::n#3 +(byte[$100]) bitmap_plot_yhi +(byte[$100]) bitmap_plot_yhi#0 +(byte[$100]) bitmap_plot_ylo +(byte[$100]) bitmap_plot_ylo#0 +(byte*) bitmap_screen +(byte*) bitmap_screen#0 +(byte*) bitmap_screen#1 +(byte*) bitmap_screen#10 +(byte*) bitmap_screen#11 +(byte*) bitmap_screen#12 +(byte*) bitmap_screen#13 +(byte*) bitmap_screen#14 +(byte*) bitmap_screen#15 +(byte*) bitmap_screen#16 +(byte*) bitmap_screen#17 +(byte*) bitmap_screen#18 +(byte*) bitmap_screen#19 +(byte*) bitmap_screen#2 +(byte*) bitmap_screen#20 +(byte*) bitmap_screen#21 +(byte*) bitmap_screen#22 +(byte*) bitmap_screen#23 +(byte*) bitmap_screen#24 +(byte*) bitmap_screen#25 +(byte*) bitmap_screen#26 +(byte*) bitmap_screen#27 +(byte*) bitmap_screen#28 +(byte*) bitmap_screen#29 +(byte*) bitmap_screen#3 +(byte*) bitmap_screen#30 +(byte*) bitmap_screen#31 +(byte*) bitmap_screen#32 +(byte*) bitmap_screen#33 +(byte*) bitmap_screen#34 +(byte*) bitmap_screen#35 +(byte*) bitmap_screen#36 +(byte*) bitmap_screen#37 +(byte*) bitmap_screen#38 +(byte*) bitmap_screen#39 +(byte*) bitmap_screen#4 +(byte*) bitmap_screen#40 +(byte*) bitmap_screen#41 +(byte*) bitmap_screen#42 +(byte*) bitmap_screen#43 +(byte*) bitmap_screen#5 +(byte*) bitmap_screen#6 +(byte*) bitmap_screen#7 +(byte*) bitmap_screen#8 +(byte*) bitmap_screen#9 +(struct Segment[$16]) letter_c +(struct Segment[$16]) letter_c#0 +(void()) main() +(bool~) main::$10 +(struct SplineVector16*) main::$100 +(byte*) main::$101 +(struct SplineVector16*) main::$102 +(struct SplineVector16*) main::$103 +(signed word*) main::$104 +(signed word*) main::$105 +(signed word*) main::$106 +(signed word*) main::$107 +(signed word*) main::$108 +(signed word*) main::$109 +(bool~) main::$11 +(signed word*) main::$110 +(signed word*) main::$111 +(signed word*) main::$112 +(signed word*) main::$113 +(signed word*) main::$114 +(signed word*) main::$115 +(signed word*) main::$116 +(signed word*) main::$117 +(signed word*) main::$118 +(signed word*) main::$119 +(bool~) main::$12 +(signed word*) main::$120 +(signed word*) main::$121 +(signed word*) main::$122 +(signed word*) main::$123 +(signed word*) main::$124 +(signed word*) main::$125 +(signed word*) main::$126 +(signed word*) main::$127 +(signed word*) main::$128 +(signed word*) main::$129 +(signed word*) main::$130 +(signed word*) main::$131 +(signed word*) main::$132 +(signed word*) main::$133 +(signed word*) main::$134 +(signed word*) main::$135 +(signed word*) main::$136 +(signed word*) main::$137 +(signed word*) main::$138 +(signed word*) main::$139 +(signed word*) main::$140 +(signed word*) main::$141 +(signed word*) main::$142 +(signed word*) main::$143 +(signed word*) main::$144 +(signed word*) main::$145 +(signed word*) main::$146 +(signed word*) main::$147 +(signed word*) main::$148 +(signed word*) main::$149 +(byte*~) main::$15 +(signed word*) main::$150 +(signed word*) main::$151 +(signed word*) main::$152 +(signed word*) main::$153 +(signed word*) main::$154 +(signed word*) main::$155 +(signed word*) main::$156 +(signed word*) main::$157 +(signed word*) main::$158 +(signed word*) main::$159 +(number~) main::$16 +(signed word*) main::$160 +(signed word*) main::$161 +(signed word*) main::$162 +(signed word*) main::$163 +(signed word*) main::$164 +(signed word*) main::$165 +(signed word*) main::$166 +(signed word*) main::$167 +(signed word*) main::$168 +(signed word*) main::$169 +(number~) main::$17 +(signed word*) main::$170 +(signed word*) main::$171 +(signed word*) main::$172 +(signed word*) main::$173 +(signed word*) main::$174 +(signed word*) main::$175 +(signed word*) main::$176 +(signed word*) main::$177 +(signed word*) main::$178 +(signed word*) main::$179 +(number~) main::$18 +(signed word*) main::$180 +(signed word*) main::$181 +(signed word*) main::$182 +(signed word*) main::$183 +(signed word*) main::$184 +(signed word*) main::$185 +(signed word*) main::$186 +(signed word*) main::$187 +(signed word*) main::$188 +(signed word*) main::$189 +(number~) main::$19 +(signed word*) main::$190 +(signed word*) main::$191 +(number~) main::$20 +(number~) main::$21 +(number~) main::$22 +(number~) main::$23 +(number~) main::$24 +(number~) main::$25 +(number~) main::$26 +(number~) main::$27 +(number~) main::$28 +(number~) main::$29 +(number~) main::$30 +(number~) main::$31 +(number~) main::$32 +(number~) main::$33 +(number~) main::$34 +(number~) main::$35 +(number~) main::$36 +(number~) main::$37 +(byte*) main::$38 +(struct SplineVector16*) main::$39 +(byte~) main::$4 +(struct SplineVector16*) main::$40 +(byte*) main::$41 +(struct SplineVector16*) main::$42 +(struct SplineVector16*) main::$43 +(byte*) main::$44 +(struct SplineVector16*) main::$45 +(struct SplineVector16*) main::$46 +(byte*) main::$47 +(struct SplineVector16*) main::$48 +(struct SplineVector16*) main::$49 +(byte~) main::$5 +(byte*) main::$50 +(struct SplineVector16*) main::$51 +(struct SplineVector16*) main::$52 +(byte*) main::$53 +(struct SplineVector16*) main::$54 +(struct SplineVector16*) main::$55 +(byte*) main::$56 +(struct SplineVector16*) main::$57 +(struct SplineVector16*) main::$58 +(byte*) main::$59 +(byte~) main::$6 +(struct SplineVector16*) main::$60 +(struct SplineVector16*) main::$61 +(byte*) main::$62 +(struct SplineVector16*) main::$63 +(struct SplineVector16*) main::$64 +(byte*) main::$65 +(struct SplineVector16*) main::$66 +(struct SplineVector16*) main::$67 +(byte*) main::$68 +(struct SplineVector16*) main::$69 +(number~) main::$7 +(struct SplineVector16*) main::$70 +(byte*) main::$71 +(struct SplineVector16*) main::$72 +(struct SplineVector16*) main::$73 +(byte*) main::$74 +(struct SplineVector16*) main::$75 +(struct SplineVector16*) main::$76 +(byte*) main::$77 +(struct SplineVector16*) main::$78 +(struct SplineVector16*) main::$79 +(byte*) main::$80 +(struct SplineVector16*) main::$81 +(struct SplineVector16*) main::$82 +(byte*) main::$83 +(struct SplineVector16*) main::$84 +(struct SplineVector16*) main::$85 +(byte*) main::$86 +(struct SplineVector16*) main::$87 +(struct SplineVector16*) main::$88 +(byte*) main::$89 +(struct SplineVector16*) main::$90 +(struct SplineVector16*) main::$91 +(byte*) main::$92 +(struct SplineVector16*) main::$93 +(struct SplineVector16*) main::$94 +(byte*) main::$95 +(struct SplineVector16*) main::$96 +(struct SplineVector16*) main::$97 +(byte*) main::$98 +(struct SplineVector16*) main::$99 +(label) main::@1 +(label) main::@13 +(label) main::@14 +(label) main::@19 +(label) main::@2 +(label) main::@20 +(label) main::@21 +(label) main::@22 +(label) main::@23 +(label) main::@24 +(label) main::@25 +(label) main::@5 +(label) main::@7 +(label) main::@8 +(label) main::@9 +(label) main::@return +(byte) main::angle +(byte) main::angle#0 +(byte) main::angle#1 +(byte) main::angle#2 +(byte) main::angle#3 +(byte) main::angle#4 +(byte) main::angle#5 +(byte) main::angle#6 +(byte) main::angle#7 +(byte) main::angle#8 +(byte) main::angle#9 +(label) main::toD0181 +(word~) main::toD0181_$0 +(word~) main::toD0181_$0#0 +(number~) main::toD0181_$1 +(number~) main::toD0181_$1#0 +(number~) main::toD0181_$2 +(number~) main::toD0181_$2#0 +(number~) main::toD0181_$3 +(number~) main::toD0181_$3#0 +(word~) main::toD0181_$4 +(word~) main::toD0181_$4#0 +(byte~) main::toD0181_$5 +(byte~) main::toD0181_$5#0 +(number~) main::toD0181_$6 +(number~) main::toD0181_$6#0 +(number~) main::toD0181_$7 +(number~) main::toD0181_$7#0 +(number~) main::toD0181_$8 +(number~) main::toD0181_$8#0 +(label) main::toD0181_@return +(byte*) main::toD0181_gfx +(byte*) main::toD0181_gfx#0 +(byte*) main::toD0181_gfx#1 +(byte) main::toD0181_return +(byte) main::toD0181_return#0 +(byte) main::toD0181_return#1 +(byte) main::toD0181_return#2 +(byte) main::toD0181_return#3 +(byte*) main::toD0181_screen +(byte*) main::toD0181_screen#0 +(byte*) main::toD0181_screen#1 +(label) main::vicSelectGfxBank1 +(byte~) main::vicSelectGfxBank1_$0 +(byte~) main::vicSelectGfxBank1_$0#0 +(label) main::vicSelectGfxBank1_@1 +(byte*) main::vicSelectGfxBank1_gfx +(byte*) main::vicSelectGfxBank1_gfx#0 +(byte*) main::vicSelectGfxBank1_gfx#1 +(label) main::vicSelectGfxBank1_toDd001 +(word~) main::vicSelectGfxBank1_toDd001_$0 +(word~) main::vicSelectGfxBank1_toDd001_$0#0 +(byte~) main::vicSelectGfxBank1_toDd001_$1 +(byte~) main::vicSelectGfxBank1_toDd001_$1#0 +(number~) main::vicSelectGfxBank1_toDd001_$2 +(number~) main::vicSelectGfxBank1_toDd001_$2#0 +(number~) main::vicSelectGfxBank1_toDd001_$3 +(number~) main::vicSelectGfxBank1_toDd001_$3#0 +(label) main::vicSelectGfxBank1_toDd001_@return +(byte*) main::vicSelectGfxBank1_toDd001_gfx +(byte*) main::vicSelectGfxBank1_toDd001_gfx#0 +(byte*) main::vicSelectGfxBank1_toDd001_gfx#1 +(byte) main::vicSelectGfxBank1_toDd001_return +(byte) main::vicSelectGfxBank1_toDd001_return#0 +(byte) main::vicSelectGfxBank1_toDd001_return#1 +(byte) main::vicSelectGfxBank1_toDd001_return#2 +(byte) main::vicSelectGfxBank1_toDd001_return#3 +(byte) main::w +(byte) main::w#0 +(byte) main::w#1 +(byte) main::w#2 +(byte) main::w#3 +(byte) main::w#4 +(void*()) memset((void*) memset::str , (byte) memset::c , (word) memset::num) +(bool~) memset::$0 +(bool~) memset::$1 +(byte*~) memset::$2 +(byte*~) memset::$3 +(bool~) memset::$4 +(label) memset::@1 +(label) memset::@2 +(label) memset::@4 +(label) memset::@return +(byte) memset::c +(byte) memset::c#0 +(byte) memset::c#1 +(byte) memset::c#2 +(byte) memset::c#3 +(byte) memset::c#4 +(byte*) memset::dst +(byte*) memset::dst#0 +(byte*) memset::dst#1 +(byte*) memset::dst#2 +(byte*) memset::end +(byte*) memset::end#0 +(byte*) memset::end#1 +(word) memset::num +(word) memset::num#0 +(word) memset::num#1 +(word) memset::num#2 +(word) memset::num#3 +(void*) memset::return +(void*) memset::return#0 +(void*) memset::return#1 +(void*) memset::return#2 +(void*) memset::return#3 +(void*) memset::return#4 +(void*) memset::str +(void*) memset::str#0 +(void*) memset::str#1 +(void*) memset::str#2 +(void*) memset::str#3 +(void*) memset::str#4 +(void*) memset::str#5 +(signed dword()) mulf16s((signed word) mulf16s::a , (signed word) mulf16s::b) +(word~) mulf16s::$0 +(word~) mulf16s::$1 +(word~) mulf16s::$10 +(word~) mulf16s::$11 +(word~) mulf16s::$13 +(word~) mulf16s::$14 +(word~) mulf16s::$15 +(word~) mulf16s::$16 +(word~) mulf16s::$17 +(dword~) mulf16s::$2 +(bool~) mulf16s::$3 +(bool~) mulf16s::$4 +(bool~) mulf16s::$5 +(bool~) mulf16s::$6 +(signed dword~) mulf16s::$7 +(word~) mulf16s::$9 +(label) mulf16s::@1 +(label) mulf16s::@2 +(label) mulf16s::@3 +(label) mulf16s::@4 +(label) mulf16s::@6 +(label) mulf16s::@return +(signed word) mulf16s::a +(signed word) mulf16s::a#0 +(signed word) mulf16s::a#1 +(signed word) mulf16s::a#2 +(signed word) mulf16s::a#3 +(signed word) mulf16s::a#4 +(signed word) mulf16s::a#5 +(signed word) mulf16s::a#6 +(signed word) mulf16s::a#7 +(signed word) mulf16s::a#8 +(signed word) mulf16s::b +(signed word) mulf16s::b#0 +(signed word) mulf16s::b#1 +(signed word) mulf16s::b#2 +(signed word) mulf16s::b#3 +(signed word) mulf16s::b#4 +(signed word) mulf16s::b#5 +(signed word) mulf16s::b#6 +(signed word) mulf16s::b#7 +(dword) mulf16s::m +(dword) mulf16s::m#0 +(dword) mulf16s::m#1 +(dword) mulf16s::m#2 +(dword) mulf16s::m#3 +(dword) mulf16s::m#4 +(dword) mulf16s::m#5 +(dword) mulf16s::m#6 +(signed dword) mulf16s::return +(signed dword) mulf16s::return#0 +(signed dword) mulf16s::return#1 +(signed dword) mulf16s::return#10 +(signed dword) mulf16s::return#2 +(signed dword) mulf16s::return#3 +(signed dword) mulf16s::return#4 +(signed dword) mulf16s::return#5 +(signed dword) mulf16s::return#6 +(signed dword) mulf16s::return#7 +(signed dword) mulf16s::return#8 +(signed dword) mulf16s::return#9 +(dword()) mulf16u((word) mulf16u::a , (word) mulf16u::b) +(label) mulf16u::@return +(word) mulf16u::a +(word) mulf16u::a#0 +(word) mulf16u::a#1 +(word) mulf16u::b +(word) mulf16u::b#0 +(word) mulf16u::b#1 +(word*) mulf16u::memA +(word*) mulf16u::memA#0 +(word*) mulf16u::memB +(word*) mulf16u::memB#0 +(dword*) mulf16u::memR +(dword*) mulf16u::memR#0 +(dword) mulf16u::return +(dword) mulf16u::return#0 +(dword) mulf16u::return#1 +(dword) mulf16u::return#2 +(dword) mulf16u::return#3 +(dword) mulf16u::return#4 +(void()) mulf_init() +(byte*~) mulf_init::$0 +(byte~) mulf_init::$1 +(byte~) mulf_init::$10 +(byte~) mulf_init::$11 +(word~) mulf_init::$12 +(byte*~) mulf_init::$13 +(bool~) mulf_init::$14 +(byte~) mulf_init::$15 +(bool~) mulf_init::$16 +(bool~) mulf_init::$17 +(byte*~) mulf_init::$18 +(bool~) mulf_init::$19 +(byte*~) mulf_init::$2 +(byte*~) mulf_init::$3 +(byte*~) mulf_init::$4 +(byte*~) mulf_init::$5 +(byte*~) mulf_init::$6 +(number~) mulf_init::$7 +(bool~) mulf_init::$8 +(bool~) mulf_init::$9 +(label) mulf_init::@1 +(label) mulf_init::@2 +(label) mulf_init::@3 +(label) mulf_init::@4 +(label) mulf_init::@5 +(label) mulf_init::@6 +(label) mulf_init::@7 +(label) mulf_init::@8 +(label) mulf_init::@return +(byte) mulf_init::c +(byte) mulf_init::c#0 +(byte) mulf_init::c#1 +(byte) mulf_init::c#2 +(byte) mulf_init::c#3 +(byte) mulf_init::c#4 +(byte) mulf_init::dir +(byte) mulf_init::dir#0 +(byte) mulf_init::dir#1 +(byte) mulf_init::dir#2 +(byte) mulf_init::dir#3 +(word) mulf_init::sqr +(word) mulf_init::sqr#0 +(word) mulf_init::sqr#1 +(word) mulf_init::sqr#2 +(word) mulf_init::sqr#3 +(word) mulf_init::sqr#4 +(word) mulf_init::sqr#5 +(byte*) mulf_init::sqr1_hi +(byte*) mulf_init::sqr1_hi#0 +(byte*) mulf_init::sqr1_hi#1 +(byte*) mulf_init::sqr1_hi#2 +(byte*) mulf_init::sqr1_hi#3 +(byte*) mulf_init::sqr1_hi#4 +(byte*) mulf_init::sqr1_lo +(byte*) mulf_init::sqr1_lo#0 +(byte*) mulf_init::sqr1_lo#1 +(byte*) mulf_init::sqr1_lo#2 +(byte*) mulf_init::sqr1_lo#3 +(byte*) mulf_init::sqr1_lo#4 +(byte*) mulf_init::sqr2_hi +(byte*) mulf_init::sqr2_hi#0 +(byte*) mulf_init::sqr2_hi#1 +(byte*) mulf_init::sqr2_hi#2 +(byte*) mulf_init::sqr2_hi#3 +(byte*) mulf_init::sqr2_hi#4 +(byte*) mulf_init::sqr2_lo +(byte*) mulf_init::sqr2_lo#0 +(byte*) mulf_init::sqr2_lo#1 +(byte*) mulf_init::sqr2_lo#2 +(byte*) mulf_init::sqr2_lo#3 +(byte*) mulf_init::sqr2_lo#4 +(byte) mulf_init::x_2 +(byte) mulf_init::x_2#0 +(byte) mulf_init::x_2#1 +(byte) mulf_init::x_2#2 +(byte) mulf_init::x_2#3 +(byte) mulf_init::x_2#4 +(byte) mulf_init::x_255 +(byte) mulf_init::x_255#0 +(byte) mulf_init::x_255#1 +(byte) mulf_init::x_255#2 +(byte) mulf_init::x_255#3 +(byte) mulf_init::x_255#4 +(byte[$200]) mulf_sqr1_hi +(byte[$200]) mulf_sqr1_hi#0 +(byte[$200]) mulf_sqr1_lo +(byte[$200]) mulf_sqr1_lo#0 +(byte[$200]) mulf_sqr2_hi +(byte[$200]) mulf_sqr2_hi#0 +(byte[$200]) mulf_sqr2_lo +(byte[$200]) mulf_sqr2_lo#0 +(struct SplineVector16()) rotate((signed word) rotate::vector_x , (signed word) rotate::vector_y , (byte) rotate::angle) +(signed word~) rotate::$0 +(signed dword~) rotate::$1 +(number~) rotate::$10 +(signed dword~) rotate::$11 +(signed word~) rotate::$12 +(number~) rotate::$13 +(byte~) rotate::$14 +(signed byte~) rotate::$15 +(signed word~) rotate::$16 +(byte~) rotate::$17 +(signed byte~) rotate::$18 +(signed word~) rotate::$19 +(signed word~) rotate::$2 +(number~) rotate::$3 +(signed dword~) rotate::$4 +(signed word~) rotate::$5 +(number~) rotate::$6 +(signed word~) rotate::$7 +(signed dword~) rotate::$8 +(signed word~) rotate::$9 +(label) rotate::@2 +(label) rotate::@3 +(label) rotate::@4 +(label) rotate::@5 +(label) rotate::@return +(byte) rotate::angle +(byte) rotate::angle#0 +(byte) rotate::angle#1 +(byte) rotate::angle#2 +(byte) rotate::angle#3 +(byte) rotate::angle#4 +(signed word) rotate::cos_a +(signed word) rotate::cos_a#0 +(signed word) rotate::cos_a#1 +(struct SplineVector16) rotate::return +(struct SplineVector16) rotate::return#0 +(struct SplineVector16) rotate::return#1 +(signed word) rotate::return_x +(signed word) rotate::return_x#0 +(signed word) rotate::return_x#1 +(signed word) rotate::return_x#2 +(signed word) rotate::return_x#3 +(signed word) rotate::return_x#4 +(signed word) rotate::return_x#5 +(signed word) rotate::return_x#6 +(signed word) rotate::return_y +(signed word) rotate::return_y#0 +(signed word) rotate::return_y#1 +(signed word) rotate::return_y#2 +(signed word) rotate::return_y#3 +(signed word) rotate::return_y#4 +(signed word) rotate::return_y#5 +(signed word) rotate::return_y#6 +(signed word) rotate::rotated_x +(signed word) rotate::rotated_x#0 +(signed word) rotate::rotated_y +(signed word) rotate::rotated_y#0 +(signed word) rotate::sin_a +(signed word) rotate::sin_a#0 +(signed word) rotate::sin_a#1 +(struct SplineVector16) rotate::vector +(signed word) rotate::vector_x +(signed word) rotate::vector_x#0 +(signed word) rotate::vector_x#1 +(signed word) rotate::vector_x#2 +(signed word) rotate::vector_x#3 +(signed word) rotate::vector_x#4 +(signed word) rotate::vector_x#5 +(signed word) rotate::vector_y +(signed word) rotate::vector_y#0 +(signed word) rotate::vector_y#1 +(signed word) rotate::vector_y#2 +(signed word) rotate::vector_y#3 +(signed word) rotate::vector_y#4 +(signed word) rotate::xr +(signed word) rotate::xr#0 +(signed word) rotate::xr#1 +(signed word) rotate::xr#2 +(signed word) rotate::xr#3 +(signed word) rotate::xr#4 +(signed word) rotate::yr +(signed word) rotate::yr#0 +(signed word) rotate::yr#1 +(signed word) rotate::yr#2 +(signed word) rotate::yr#3 +(word()) sgn_u16((word) sgn_u16::w) +(byte~) sgn_u16::$0 +(number~) sgn_u16::$1 +(bool~) sgn_u16::$2 +(label) sgn_u16::@1 +(label) sgn_u16::@3 +(label) sgn_u16::@return +(word) sgn_u16::return +(word) sgn_u16::return#0 +(word) sgn_u16::return#1 +(word) sgn_u16::return#2 +(word) sgn_u16::return#3 +(word) sgn_u16::return#4 +(word) sgn_u16::return#5 +(word) sgn_u16::return#6 +(word) sgn_u16::return#7 +(word) sgn_u16::w +(word) sgn_u16::w#0 +(word) sgn_u16::w#1 +(word) sgn_u16::w#2 +(void()) show_letter((byte) show_letter::angle) +(number~) show_letter::$0 +(number~) show_letter::$1 +(bool~) show_letter::$10 +(bool~) show_letter::$11 +(word~) show_letter::$12 +(word~) show_letter::$13 +(word~) show_letter::$14 +(word~) show_letter::$15 +(bool~) show_letter::$19 +(struct SplineVector16~) show_letter::$2 +(byte~) show_letter::$20 +(byte~) show_letter::$21 +(byte~) show_letter::$22 +(struct SplineVector16*) show_letter::$23 +(struct SplineVector16*) show_letter::$24 +(struct SplineVector16*) show_letter::$25 +(struct SplineVector16*) show_letter::$26 +(byte*) show_letter::$27 +(signed word*) show_letter::$28 +(signed word*) show_letter::$29 +(signed word) show_letter::$2_x +(signed word) show_letter::$2_y +(number~) show_letter::$3 +(signed word*) show_letter::$30 +(signed word*) show_letter::$31 +(number~) show_letter::$4 +(number~) show_letter::$5 +(number~) show_letter::$6 +(struct SplineVector16~) show_letter::$7 +(signed word) show_letter::$7_x +(signed word) show_letter::$7_y +(number~) show_letter::$8 +(number~) show_letter::$9 +(label) show_letter::@1 +(label) show_letter::@11 +(label) show_letter::@12 +(label) show_letter::@13 +(label) show_letter::@14 +(label) show_letter::@15 +(label) show_letter::@2 +(label) show_letter::@3 +(label) show_letter::@5 +(label) show_letter::@6 +(label) show_letter::@7 +(label) show_letter::@return +(byte) show_letter::angle +(byte) show_letter::angle#0 +(byte) show_letter::angle#1 +(byte) show_letter::angle#10 +(byte) show_letter::angle#11 +(byte) show_letter::angle#12 +(byte) show_letter::angle#2 +(byte) show_letter::angle#3 +(byte) show_letter::angle#4 +(byte) show_letter::angle#5 +(byte) show_letter::angle#6 +(byte) show_letter::angle#7 +(byte) show_letter::angle#8 +(byte) show_letter::angle#9 +(signed word) show_letter::current_x +(signed word) show_letter::current_x#0 +(signed word) show_letter::current_x#1 +(signed word) show_letter::current_x#10 +(signed word) show_letter::current_x#2 +(signed word) show_letter::current_x#3 +(signed word) show_letter::current_x#4 +(signed word) show_letter::current_x#5 +(signed word) show_letter::current_x#6 +(signed word) show_letter::current_x#7 +(signed word) show_letter::current_x#8 +(signed word) show_letter::current_x#9 +(signed word) show_letter::current_y +(signed word) show_letter::current_y#0 +(signed word) show_letter::current_y#1 +(signed word) show_letter::current_y#10 +(signed word) show_letter::current_y#2 +(signed word) show_letter::current_y#3 +(signed word) show_letter::current_y#4 +(signed word) show_letter::current_y#5 +(signed word) show_letter::current_y#6 +(signed word) show_letter::current_y#7 +(signed word) show_letter::current_y#8 +(signed word) show_letter::current_y#9 +(byte) show_letter::i +(byte) show_letter::i#0 +(byte) show_letter::i#1 +(byte) show_letter::i#10 +(byte) show_letter::i#11 +(byte) show_letter::i#12 +(byte) show_letter::i#2 +(byte) show_letter::i#3 +(byte) show_letter::i#4 +(byte) show_letter::i#5 +(byte) show_letter::i#6 +(byte) show_letter::i#7 +(byte) show_letter::i#8 +(byte) show_letter::i#9 +(signed word) show_letter::segment_to_x +(signed word) show_letter::segment_to_x#0 +(signed word) show_letter::segment_to_x#1 +(signed word) show_letter::segment_to_x#2 +(signed word) show_letter::segment_to_x#3 +(signed word) show_letter::segment_to_x#4 +(signed word) show_letter::segment_to_x#5 +(signed word) show_letter::segment_to_x#6 +(signed word) show_letter::segment_to_x#7 +(signed word) show_letter::segment_to_y +(signed word) show_letter::segment_to_y#0 +(signed word) show_letter::segment_to_y#1 +(signed word) show_letter::segment_to_y#2 +(signed word) show_letter::segment_to_y#3 +(signed word) show_letter::segment_to_y#4 +(signed word) show_letter::segment_to_y#5 +(signed word) show_letter::segment_to_y#6 +(signed word) show_letter::segment_to_y#7 +(byte) show_letter::segment_type +(byte) show_letter::segment_type#0 +(byte) show_letter::segment_type#1 +(signed word) show_letter::segment_via_x +(signed word) show_letter::segment_via_x#0 +(signed word) show_letter::segment_via_x#1 +(signed word) show_letter::segment_via_x#2 +(signed word) show_letter::segment_via_y +(signed word) show_letter::segment_via_y#0 +(signed word) show_letter::segment_via_y#1 +(signed word) show_letter::segment_via_y#2 +(signed word) show_letter::to_x +(signed word) show_letter::to_x#0 +(signed word) show_letter::to_x#1 +(signed word) show_letter::to_x#2 +(signed word) show_letter::to_x#3 +(signed word) show_letter::to_x#4 +(signed word) show_letter::to_y +(signed word) show_letter::to_y#0 +(signed word) show_letter::to_y#1 +(signed word) show_letter::to_y#2 +(signed word) show_letter::to_y#3 +(signed word) show_letter::to_y#4 +(signed word) show_letter::via_x +(signed word) show_letter::via_x#0 +(signed word) show_letter::via_x#1 +(signed word) show_letter::via_x#2 +(signed word) show_letter::via_x#3 +(signed word) show_letter::via_y +(signed word) show_letter::via_y#0 +(signed word) show_letter::via_y#1 +(signed word) show_letter::via_y#2 +(signed word) show_letter::via_y#3 +(void()) spline_8segB((signed word) spline_8segB::p0_x , (signed word) spline_8segB::p0_y , (signed word) spline_8segB::p1_x , (signed word) spline_8segB::p1_y , (signed word) spline_8segB::p2_x , (signed word) spline_8segB::p2_y) +(number~) spline_8segB::$0 +(number~) spline_8segB::$1 +(number~) spline_8segB::$10 +(number~) spline_8segB::$11 +(number~) spline_8segB::$12 +(number~) spline_8segB::$13 +(number~) spline_8segB::$14 +(number~) spline_8segB::$15 +(number~) spline_8segB::$16 +(number~) spline_8segB::$17 +(number~) spline_8segB::$18 +(number~) spline_8segB::$19 +(number~) spline_8segB::$2 +(number~) spline_8segB::$20 +(number~) spline_8segB::$21 +(number~) spline_8segB::$22 +(number~) spline_8segB::$23 +(number~) spline_8segB::$24 +(number~) spline_8segB::$25 +(signed word~) spline_8segB::$26 +(signed word~) spline_8segB::$27 +(signed word~) spline_8segB::$28 +(signed word~) spline_8segB::$29 +(number~) spline_8segB::$3 +(bool~) spline_8segB::$30 +(byte~) spline_8segB::$31 +(number~) spline_8segB::$32 +(signed word*) spline_8segB::$33 +(signed word*) spline_8segB::$34 +(signed word*) spline_8segB::$35 +(signed word*) spline_8segB::$36 +(number~) spline_8segB::$4 +(number~) spline_8segB::$5 +(signed word~) spline_8segB::$6 +(number~) spline_8segB::$7 +(signed word~) spline_8segB::$8 +(number~) spline_8segB::$9 +(label) spline_8segB::@1 +(label) spline_8segB::@2 +(label) spline_8segB::@return +(signed word) spline_8segB::a_x +(signed word) spline_8segB::a_x#0 +(signed word) spline_8segB::a_y +(signed word) spline_8segB::a_y#0 +(signed word) spline_8segB::b_x +(signed word) spline_8segB::b_x#0 +(signed word) spline_8segB::b_y +(signed word) spline_8segB::b_y#0 +(signed word) spline_8segB::i_x +(signed word) spline_8segB::i_x#0 +(signed word) spline_8segB::i_x#1 +(signed word) spline_8segB::i_x#2 +(signed word) spline_8segB::i_y +(signed word) spline_8segB::i_y#0 +(signed word) spline_8segB::i_y#1 +(signed word) spline_8segB::i_y#2 +(signed word) spline_8segB::j_x +(signed word) spline_8segB::j_x#0 +(signed word) spline_8segB::j_x#1 +(signed word) spline_8segB::j_y +(signed word) spline_8segB::j_y#0 +(signed word) spline_8segB::j_y#1 +(byte) spline_8segB::n +(byte) spline_8segB::n#0 +(byte) spline_8segB::n#1 +(byte) spline_8segB::n#2 +(struct SplineVector16) spline_8segB::p0 +(signed word) spline_8segB::p0_x +(signed word) spline_8segB::p0_x#0 +(signed word) spline_8segB::p0_x#1 +(signed word) spline_8segB::p0_y +(signed word) spline_8segB::p0_y#0 +(signed word) spline_8segB::p0_y#1 +(struct SplineVector16) spline_8segB::p1 +(signed word) spline_8segB::p1_x +(signed word) spline_8segB::p1_x#0 +(signed word) spline_8segB::p1_x#1 +(signed word) spline_8segB::p1_y +(signed word) spline_8segB::p1_y#0 +(signed word) spline_8segB::p1_y#1 +(struct SplineVector16) spline_8segB::p2 +(signed word) spline_8segB::p2_x +(signed word) spline_8segB::p2_x#0 +(signed word) spline_8segB::p2_x#1 +(signed word) spline_8segB::p2_y +(signed word) spline_8segB::p2_y#0 +(signed word) spline_8segB::p2_y#1 +(signed word) spline_8segB::p_x +(signed word) spline_8segB::p_x#0 +(signed word) spline_8segB::p_x#1 +(signed word) spline_8segB::p_x#2 +(signed word) spline_8segB::p_x#3 +(signed word) spline_8segB::p_y +(signed word) spline_8segB::p_y#0 +(signed word) spline_8segB::p_y#1 +(signed word) spline_8segB::p_y#2 +(signed word) spline_8segB::p_y#3 + +Fixing inline constructor with bitmap_plot::$3 ← (byte)*(bitmap_plot_yhi#0 + bitmap_plot::y#4) w= (byte)*(bitmap_plot_ylo#0 + bitmap_plot::y#4) +Successful SSA optimization Pass2FixInlineConstructorsNew +Adding number conversion cast (snumber) 2 in (number~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#1 * (number) 2 +Adding number conversion cast (snumber) spline_8segB::$0 in (number~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#1 * (snumber)(number) 2 +Adding number conversion cast (snumber) spline_8segB::$1 in (number~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#1 - (snumber~) spline_8segB::$0 +Adding number conversion cast (snumber) spline_8segB::$2 in (number~) spline_8segB::$2 ← (snumber~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#1 +Adding number conversion cast (snumber) 2 in (number~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#1 * (number) 2 +Adding number conversion cast (snumber) spline_8segB::$3 in (number~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#1 * (snumber)(number) 2 +Adding number conversion cast (snumber) spline_8segB::$4 in (number~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#1 - (snumber~) spline_8segB::$3 +Adding number conversion cast (snumber) spline_8segB::$5 in (number~) spline_8segB::$5 ← (snumber~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#1 +Adding number conversion cast (snumber) 2 in (number~) spline_8segB::$7 ← (signed word~) spline_8segB::$6 * (number) 2 +Adding number conversion cast (snumber) spline_8segB::$7 in (number~) spline_8segB::$7 ← (signed word~) spline_8segB::$6 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) spline_8segB::$9 ← (signed word~) spline_8segB::$8 * (number) 2 +Adding number conversion cast (snumber) spline_8segB::$9 in (number~) spline_8segB::$9 ← (signed word~) spline_8segB::$8 * (snumber)(number) 2 +Adding number conversion cast (snumber) 8 in (number~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 * (number) 8 +Adding number conversion cast (snumber) spline_8segB::$10 in (number~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 * (snumber)(number) 8 +Adding number conversion cast (snumber) spline_8segB::$11 in (number~) spline_8segB::$11 ← (signed word) spline_8segB::a_x#0 + (snumber~) spline_8segB::$10 +Adding number conversion cast (snumber) 8 in (number~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 * (number) 8 +Adding number conversion cast (snumber) spline_8segB::$12 in (number~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 * (snumber)(number) 8 +Adding number conversion cast (snumber) spline_8segB::$13 in (number~) spline_8segB::$13 ← (signed word) spline_8segB::a_y#0 + (snumber~) spline_8segB::$12 +Adding number conversion cast (snumber) 2 in (number~) spline_8segB::$14 ← (signed word) spline_8segB::a_x#0 * (number) 2 +Adding number conversion cast (snumber) spline_8segB::$14 in (number~) spline_8segB::$14 ← (signed word) spline_8segB::a_x#0 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) spline_8segB::$15 ← (signed word) spline_8segB::a_y#0 * (number) 2 +Adding number conversion cast (snumber) spline_8segB::$15 in (number~) spline_8segB::$15 ← (signed word) spline_8segB::a_y#0 * (snumber)(number) 2 +Adding number conversion cast (snumber) $40 in (number~) spline_8segB::$16 ← (signed word) spline_8segB::p0_x#1 * (number) $40 +Adding number conversion cast (snumber) spline_8segB::$16 in (number~) spline_8segB::$16 ← (signed word) spline_8segB::p0_x#1 * (snumber)(number) $40 +Adding number conversion cast (snumber) $40 in (number~) spline_8segB::$17 ← (signed word) spline_8segB::p0_y#1 * (number) $40 +Adding number conversion cast (snumber) spline_8segB::$17 in (number~) spline_8segB::$17 ← (signed word) spline_8segB::p0_y#1 * (snumber)(number) $40 +Adding number conversion cast (snumber) $20 in (number~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (number) $20 +Adding number conversion cast (snumber) spline_8segB::$22 in (number~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (snumber)(number) $20 +Adding number conversion cast (snumber) $40 in (number~) spline_8segB::$23 ← (snumber~) spline_8segB::$22 / (number) $40 +Adding number conversion cast (snumber) spline_8segB::$23 in (number~) spline_8segB::$23 ← (snumber~) spline_8segB::$22 / (snumber)(number) $40 +Adding number conversion cast (snumber) $20 in (number~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (number) $20 +Adding number conversion cast (snumber) spline_8segB::$24 in (number~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (snumber)(number) $20 +Adding number conversion cast (snumber) $40 in (number~) spline_8segB::$25 ← (snumber~) spline_8segB::$24 / (number) $40 +Adding number conversion cast (snumber) spline_8segB::$25 in (number~) spline_8segB::$25 ← (snumber~) spline_8segB::$24 / (snumber)(number) $40 +Adding number conversion cast (snumber) $20 in (number~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#3 + (number) $20 +Adding number conversion cast (snumber) spline_8segB::$18 in (number~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#3 + (snumber)(number) $20 +Adding number conversion cast (snumber) $40 in (number~) spline_8segB::$19 ← (snumber~) spline_8segB::$18 / (number) $40 +Adding number conversion cast (snumber) spline_8segB::$19 in (number~) spline_8segB::$19 ← (snumber~) spline_8segB::$18 / (snumber)(number) $40 +Adding number conversion cast (snumber) $20 in (number~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#3 + (number) $20 +Adding number conversion cast (snumber) spline_8segB::$20 in (number~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#3 + (snumber)(number) $20 +Adding number conversion cast (snumber) $40 in (number~) spline_8segB::$21 ← (snumber~) spline_8segB::$20 / (number) $40 +Adding number conversion cast (snumber) spline_8segB::$21 in (number~) spline_8segB::$21 ← (snumber~) spline_8segB::$20 / (snumber)(number) $40 +Adding number conversion cast (unumber) 8 in (number~) spline_8segB::$32 ← (number) 8 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Adding number conversion cast (unumber) spline_8segB::$32 in (number~) spline_8segB::$32 ← (unumber)(number) 8 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Adding number conversion cast (unumber) 0 in (bool~) memset::$0 ← (word) memset::num#2 > (number) 0 +Adding number conversion cast (unumber) $80 in (byte) bitmap_init::bits#0 ← (number) $80 +Adding number conversion cast (unumber) 1 in (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (number) 1 +Adding number conversion cast (unumber) 0 in (bool~) bitmap_init::$0 ← (byte) bitmap_init::bits#1 == (number) 0 +Adding number conversion cast (unumber) $80 in (byte) bitmap_init::bits#2 ← (number) $80 +Adding number conversion cast (unumber) 7 in (number~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (number) 7 +Adding number conversion cast (unumber) bitmap_init::$3 in (number~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (unumber)(number) 7 +Adding number conversion cast (unumber) bitmap_init::$5 in (number~) bitmap_init::$5 ← (unumber~) bitmap_init::$3 | (byte~) bitmap_init::$4 +Adding number conversion cast (unumber) 7 in (number~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (number) 7 +Adding number conversion cast (unumber) bitmap_init::$7 in (number~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (unumber)(number) 7 +Adding number conversion cast (unumber) 7 in (bool~) bitmap_init::$8 ← (unumber~) bitmap_init::$7 == (number) 7 +Adding number conversion cast (unumber) $28*8 in (byte*~) bitmap_init::$10 ← (byte*) bitmap_init::yoffs#3 + (number) $28*(number) 8 +Adding number conversion cast (unumber) $10 in (number~) bitmap_clear::$0 ← (byte) bitmap_clear::fgcol#2 * (number) $10 +Adding number conversion cast (unumber) bitmap_clear::$0 in (number~) bitmap_clear::$0 ← (byte) bitmap_clear::fgcol#2 * (unumber)(number) $10 +Adding number conversion cast (unumber) bitmap_clear::$1 in (number~) bitmap_clear::$1 ← (unumber~) bitmap_clear::$0 + (byte) bitmap_clear::bgcol#2 +Adding number conversion cast (unumber) 0 in (byte) memset::c#1 ← (number) 0 +Adding number conversion cast (unumber) $fff8 in (number~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (number) $fff8 +Adding number conversion cast (unumber) bitmap_plot::$1 in (number~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (unumber)(number) $fff8 +Adding number conversion cast (unumber) 0 in (bool~) bitmap_line::$4 ← (word) bitmap_line::dx#1 == (number) 0 +Adding number conversion cast (unumber) 0 in (bool~) bitmap_line::$5 ← (word) bitmap_line::dy#0 == (number) 0 +Adding number conversion cast (unumber) 2 in (number~) bitmap_line::$23 ← (word) bitmap_line::dy#2 / (number) 2 +Adding number conversion cast (unumber) bitmap_line::$23 in (number~) bitmap_line::$23 ← (word) bitmap_line::dy#2 / (unumber)(number) 2 +Adding number conversion cast (unumber) 2 in (number~) bitmap_line::$17 ← (word) bitmap_line::dx#3 / (number) 2 +Adding number conversion cast (unumber) bitmap_line::$17 in (number~) bitmap_line::$17 ← (word) bitmap_line::dx#3 / (unumber)(number) 2 +Adding number conversion cast (unumber) $80 in (number~) abs_u16::$1 ← (byte~) abs_u16::$0 & (number) $80 +Adding number conversion cast (unumber) abs_u16::$1 in (number~) abs_u16::$1 ← (byte~) abs_u16::$0 & (unumber)(number) $80 +Adding number conversion cast (unumber) 0 in (bool~) abs_u16::$3 ← (number) 0 != (unumber~) abs_u16::$1 +Adding number conversion cast (unumber) $80 in (number~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (number) $80 +Adding number conversion cast (unumber) sgn_u16::$1 in (number~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (unumber)(number) $80 +Adding number conversion cast (unumber) 0 in (bool~) sgn_u16::$2 ← (number) 0 != (unumber~) sgn_u16::$1 +Adding number conversion cast (unumber) -1 in (word) sgn_u16::return#2 ← (number) -1 +Adding number conversion cast (unumber) 1 in (word) sgn_u16::return#3 ← (number) 1 +Adding number conversion cast (unumber) $20 in (byte) VIC_BMM#0 ← (number) $20 +Adding number conversion cast (unumber) $10 in (byte) VIC_DEN#0 ← (number) $10 +Adding number conversion cast (unumber) 8 in (byte) VIC_RSEL#0 ← (number) 8 +Adding number conversion cast (unumber) 0 in (byte) BLACK#0 ← (number) 0 +Adding number conversion cast (unumber) 1 in (byte) WHITE#0 ← (number) 1 +Adding number conversion cast (unumber) 0 in (word) mulf_init::sqr#0 ← (number) 0 +Adding number conversion cast (unumber) 0 in (byte) mulf_init::x_2#0 ← (number) 0 +Adding number conversion cast (unumber) 0 in (byte) mulf_init::c#0 ← (number) 0 +Adding number conversion cast (unumber) 1 in (byte*~) mulf_init::$0 ← (byte[$200]) mulf_sqr1_hi#0 + (number) 1 +Adding number conversion cast (unumber) 1 in (byte*~) mulf_init::$6 ← (byte[$200]) mulf_sqr1_lo#0 + (number) 1 +Adding number conversion cast (unumber) 1 in (number~) mulf_init::$7 ← (byte) mulf_init::c#1 & (number) 1 +Adding number conversion cast (unumber) mulf_init::$7 in (number~) mulf_init::$7 ← (byte) mulf_init::c#1 & (unumber)(number) 1 +Adding number conversion cast (unumber) 0 in (bool~) mulf_init::$8 ← (unumber~) mulf_init::$7 == (number) 0 +Adding number conversion cast (unumber) $200 in (byte*~) mulf_init::$13 ← (byte[$200]) mulf_sqr1_lo#0 + (number) $200 +Adding number conversion cast (unumber) $ff in (byte) mulf_init::dir#0 ← (number) $ff +Adding number conversion cast (unumber) 0 in (bool~) mulf_init::$16 ← (byte) mulf_init::x_255#1 == (number) 0 +Adding number conversion cast (unumber) $1ff in (byte*~) mulf_init::$18 ← (byte[$200]) mulf_sqr2_lo#0 + (number) $1ff +Adding number conversion cast (unumber) 1 in (byte) mulf_init::dir#1 ← (number) 1 +Adding number conversion cast (unumber) $1ff in (byte*~) mulf_init::$2 ← (byte[$200]) mulf_sqr2_lo#0 + (number) $1ff +Adding number conversion cast (unumber) $100 in (byte*~) mulf_init::$3 ← (byte[$200]) mulf_sqr1_lo#0 + (number) $100 +Adding number conversion cast (unumber) $1ff in (byte*~) mulf_init::$4 ← (byte[$200]) mulf_sqr2_hi#0 + (number) $1ff +Adding number conversion cast (unumber) $100 in (byte*~) mulf_init::$5 ← (byte[$200]) mulf_sqr1_hi#0 + (number) $100 +Adding number conversion cast (snumber) 0 in (bool~) mulf16s::$3 ← (signed word) mulf16s::a#5 < (number) 0 +Adding number conversion cast (snumber) 0 in (bool~) mulf16s::$5 ← (signed word) mulf16s::b#5 < (number) 0 +Adding number conversion cast (unumber) 0 in (number~) main::$16 ← (number) 0 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$16 in (number~) main::$16 ← (unumber)(number) 0 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $6c in *((signed word*) main::$104 + (unumber~) main::$16) ← (number) $6c +Adding number conversion cast (snumber) $92 in *((signed word*) main::$105 + (unumber~) main::$16) ← (number) $92 +Adding number conversion cast (snumber) 0 in *((signed word*) main::$106 + (unumber~) main::$16) ← (number) 0 +Adding number conversion cast (snumber) 0 in *((signed word*) main::$107 + (unumber~) main::$16) ← (number) 0 +Adding number conversion cast (unumber) 1 in (number~) main::$17 ← (number) 1 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$17 in (number~) main::$17 ← (unumber)(number) 1 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $59 in *((signed word*) main::$108 + (unumber~) main::$17) ← (number) $59 +Adding number conversion cast (snumber) $b6 in *((signed word*) main::$109 + (unumber~) main::$17) ← (number) $b6 +Adding number conversion cast (snumber) $67 in *((signed word*) main::$110 + (unumber~) main::$17) ← (number) $67 +Adding number conversion cast (snumber) $a9 in *((signed word*) main::$111 + (unumber~) main::$17) ← (number) $a9 +Adding number conversion cast (unumber) 2 in (number~) main::$18 ← (number) 2 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$18 in (number~) main::$18 ← (unumber)(number) 2 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $3b in *((signed word*) main::$112 + (unumber~) main::$18) ← (number) $3b +Adding number conversion cast (snumber) $c3 in *((signed word*) main::$113 + (unumber~) main::$18) ← (number) $c3 +Adding number conversion cast (snumber) $4b in *((signed word*) main::$114 + (unumber~) main::$18) ← (number) $4b +Adding number conversion cast (snumber) $c3 in *((signed word*) main::$115 + (unumber~) main::$18) ← (number) $c3 +Adding number conversion cast (unumber) 3 in (number~) main::$19 ← (number) 3 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$19 in (number~) main::$19 ← (unumber)(number) 3 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $17 in *((signed word*) main::$116 + (unumber~) main::$19) ← (number) $17 +Adding number conversion cast (snumber) $b2 in *((signed word*) main::$117 + (unumber~) main::$19) ← (number) $b2 +Adding number conversion cast (snumber) $26 in *((signed word*) main::$118 + (unumber~) main::$19) ← (number) $26 +Adding number conversion cast (snumber) $c3 in *((signed word*) main::$119 + (unumber~) main::$19) ← (number) $c3 +Adding number conversion cast (unumber) 4 in (number~) main::$20 ← (number) 4 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$20 in (number~) main::$20 ← (unumber)(number) 4 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) 9 in *((signed word*) main::$120 + (unumber~) main::$20) ← (number) 9 +Adding number conversion cast (snumber) $84 in *((signed word*) main::$121 + (unumber~) main::$20) ← (number) $84 +Adding number conversion cast (snumber) 9 in *((signed word*) main::$122 + (unumber~) main::$20) ← (number) 9 +Adding number conversion cast (snumber) $a1 in *((signed word*) main::$123 + (unumber~) main::$20) ← (number) $a1 +Adding number conversion cast (unumber) 5 in (number~) main::$21 ← (number) 5 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$21 in (number~) main::$21 ← (unumber)(number) 5 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $19 in *((signed word*) main::$124 + (unumber~) main::$21) ← (number) $19 +Adding number conversion cast (snumber) $57 in *((signed word*) main::$125 + (unumber~) main::$21) ← (number) $57 +Adding number conversion cast (snumber) 9 in *((signed word*) main::$126 + (unumber~) main::$21) ← (number) 9 +Adding number conversion cast (snumber) $68 in *((signed word*) main::$127 + (unumber~) main::$21) ← (number) $68 +Adding number conversion cast (unumber) 6 in (number~) main::$22 ← (number) 6 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$22 in (number~) main::$22 ← (unumber)(number) 6 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $41 in *((signed word*) main::$128 + (unumber~) main::$22) ← (number) $41 +Adding number conversion cast (snumber) $45 in *((signed word*) main::$129 + (unumber~) main::$22) ← (number) $45 +Adding number conversion cast (snumber) $2a in *((signed word*) main::$130 + (unumber~) main::$22) ← (number) $2a +Adding number conversion cast (snumber) $45 in *((signed word*) main::$131 + (unumber~) main::$22) ← (number) $45 +Adding number conversion cast (unumber) 7 in (number~) main::$23 ← (number) 7 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$23 in (number~) main::$23 ← (unumber)(number) 7 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $5d in *((signed word*) main::$132 + (unumber~) main::$23) ← (number) $5d +Adding number conversion cast (snumber) $4f in *((signed word*) main::$133 + (unumber~) main::$23) ← (number) $4f +Adding number conversion cast (snumber) $52 in *((signed word*) main::$134 + (unumber~) main::$23) ← (number) $52 +Adding number conversion cast (snumber) $45 in *((signed word*) main::$135 + (unumber~) main::$23) ← (number) $45 +Adding number conversion cast (unumber) 8 in (number~) main::$24 ← (number) 8 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$24 in (number~) main::$24 ← (unumber)(number) 8 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $69 in *((signed word*) main::$136 + (unumber~) main::$24) ← (number) $69 +Adding number conversion cast (snumber) $62 in *((signed word*) main::$137 + (unumber~) main::$24) ← (number) $62 +Adding number conversion cast (snumber) $69 in *((signed word*) main::$138 + (unumber~) main::$24) ← (number) $69 +Adding number conversion cast (snumber) $58 in *((signed word*) main::$139 + (unumber~) main::$24) ← (number) $58 +Adding number conversion cast (unumber) 9 in (number~) main::$25 ← (number) 9 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$25 in (number~) main::$25 ← (unumber)(number) 9 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $66 in *((signed word*) main::$140 + (unumber~) main::$25) ← (number) $66 +Adding number conversion cast (snumber) $6a in *((signed word*) main::$141 + (unumber~) main::$25) ← (number) $6a +Adding number conversion cast (snumber) $69 in *((signed word*) main::$142 + (unumber~) main::$25) ← (number) $69 +Adding number conversion cast (snumber) $67 in *((signed word*) main::$143 + (unumber~) main::$25) ← (number) $67 +Adding number conversion cast (unumber) $a in (number~) main::$26 ← (number) $a * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$26 in (number~) main::$26 ← (unumber)(number) $a * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $5d in *((signed word*) main::$144 + (unumber~) main::$26) ← (number) $5d +Adding number conversion cast (snumber) $6d in *((signed word*) main::$145 + (unumber~) main::$26) ← (number) $6d +Adding number conversion cast (snumber) $62 in *((signed word*) main::$146 + (unumber~) main::$26) ← (number) $62 +Adding number conversion cast (snumber) $6d in *((signed word*) main::$147 + (unumber~) main::$26) ← (number) $6d +Adding number conversion cast (unumber) $b in (number~) main::$27 ← (number) $b * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$27 in (number~) main::$27 ← (unumber)(number) $b * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $51 in *((signed word*) main::$148 + (unumber~) main::$27) ← (number) $51 +Adding number conversion cast (snumber) $68 in *((signed word*) main::$149 + (unumber~) main::$27) ← (number) $68 +Adding number conversion cast (snumber) $55 in *((signed word*) main::$150 + (unumber~) main::$27) ← (number) $55 +Adding number conversion cast (snumber) $6d in *((signed word*) main::$151 + (unumber~) main::$27) ← (number) $6d +Adding number conversion cast (unumber) $c in (number~) main::$28 ← (number) $c * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$28 in (number~) main::$28 ← (unumber)(number) $c * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $4e in *((signed word*) main::$152 + (unumber~) main::$28) ← (number) $4e +Adding number conversion cast (snumber) $5d in *((signed word*) main::$153 + (unumber~) main::$28) ← (number) $5d +Adding number conversion cast (snumber) $4f in *((signed word*) main::$154 + (unumber~) main::$28) ← (number) $4f +Adding number conversion cast (snumber) $65 in *((signed word*) main::$155 + (unumber~) main::$28) ← (number) $65 +Adding number conversion cast (unumber) $d in (number~) main::$29 ← (number) $d * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$29 in (number~) main::$29 ← (unumber)(number) $d * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $49 in *((signed word*) main::$156 + (unumber~) main::$29) ← (number) $49 +Adding number conversion cast (snumber) $52 in *((signed word*) main::$157 + (unumber~) main::$29) ← (number) $52 +Adding number conversion cast (snumber) $4e in *((signed word*) main::$158 + (unumber~) main::$29) ← (number) $4e +Adding number conversion cast (snumber) $56 in *((signed word*) main::$159 + (unumber~) main::$29) ← (number) $56 +Adding number conversion cast (unumber) $e in (number~) main::$30 ← (number) $e * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$30 in (number~) main::$30 ← (unumber)(number) $e * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $3d in *((signed word*) main::$160 + (unumber~) main::$30) ← (number) $3d +Adding number conversion cast (snumber) $4e in *((signed word*) main::$161 + (unumber~) main::$30) ← (number) $4e +Adding number conversion cast (snumber) $45 in *((signed word*) main::$162 + (unumber~) main::$30) ← (number) $45 +Adding number conversion cast (snumber) $4e in *((signed word*) main::$163 + (unumber~) main::$30) ← (number) $4e +Adding number conversion cast (unumber) $f in (number~) main::$31 ← (number) $f * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$31 in (number~) main::$31 ← (unumber)(number) $f * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $28 in *((signed word*) main::$164 + (unumber~) main::$31) ← (number) $28 +Adding number conversion cast (snumber) $58 in *((signed word*) main::$165 + (unumber~) main::$31) ← (number) $58 +Adding number conversion cast (snumber) $30 in *((signed word*) main::$166 + (unumber~) main::$31) ← (number) $30 +Adding number conversion cast (snumber) $4e in *((signed word*) main::$167 + (unumber~) main::$31) ← (number) $4e +Adding number conversion cast (unumber) $10 in (number~) main::$32 ← (number) $10 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$32 in (number~) main::$32 ← (unumber)(number) $10 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $1d in *((signed word*) main::$168 + (unumber~) main::$32) ← (number) $1d +Adding number conversion cast (snumber) $79 in *((signed word*) main::$169 + (unumber~) main::$32) ← (number) $79 +Adding number conversion cast (snumber) $1d in *((signed word*) main::$170 + (unumber~) main::$32) ← (number) $1d +Adding number conversion cast (snumber) $64 in *((signed word*) main::$171 + (unumber~) main::$32) ← (number) $64 +Adding number conversion cast (unumber) $11 in (number~) main::$33 ← (number) $11 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$33 in (number~) main::$33 ← (unumber)(number) $11 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $28 in *((signed word*) main::$172 + (unumber~) main::$33) ← (number) $28 +Adding number conversion cast (snumber) $9e in *((signed word*) main::$173 + (unumber~) main::$33) ← (number) $9e +Adding number conversion cast (snumber) $1d in *((signed word*) main::$174 + (unumber~) main::$33) ← (number) $1d +Adding number conversion cast (snumber) $8e in *((signed word*) main::$175 + (unumber~) main::$33) ← (number) $8e +Adding number conversion cast (unumber) $12 in (number~) main::$34 ← (number) $12 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$34 in (number~) main::$34 ← (unumber)(number) $12 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $44 in *((signed word*) main::$176 + (unumber~) main::$34) ← (number) $44 +Adding number conversion cast (snumber) $ae in *((signed word*) main::$177 + (unumber~) main::$34) ← (number) $ae +Adding number conversion cast (snumber) $32 in *((signed word*) main::$178 + (unumber~) main::$34) ← (number) $32 +Adding number conversion cast (snumber) $ae in *((signed word*) main::$179 + (unumber~) main::$34) ← (number) $ae +Adding number conversion cast (unumber) $13 in (number~) main::$35 ← (number) $13 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$35 in (number~) main::$35 ← (unumber)(number) $13 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $5b in *((signed word*) main::$180 + (unumber~) main::$35) ← (number) $5b +Adding number conversion cast (snumber) $a6 in *((signed word*) main::$181 + (unumber~) main::$35) ← (number) $a6 +Adding number conversion cast (snumber) $50 in *((signed word*) main::$182 + (unumber~) main::$35) ← (number) $50 +Adding number conversion cast (snumber) $ae in *((signed word*) main::$183 + (unumber~) main::$35) ← (number) $ae +Adding number conversion cast (unumber) $14 in (number~) main::$36 ← (number) $14 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$36 in (number~) main::$36 ← (unumber)(number) $14 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $68 in *((signed word*) main::$184 + (unumber~) main::$36) ← (number) $68 +Adding number conversion cast (snumber) $90 in *((signed word*) main::$185 + (unumber~) main::$36) ← (number) $90 +Adding number conversion cast (snumber) $62 in *((signed word*) main::$186 + (unumber~) main::$36) ← (number) $62 +Adding number conversion cast (snumber) $a0 in *((signed word*) main::$187 + (unumber~) main::$36) ← (number) $a0 +Adding number conversion cast (unumber) $15 in (number~) main::$37 ← (number) $15 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (unumber) main::$37 in (number~) main::$37 ← (unumber)(number) $15 * (const byte) SIZEOF_STRUCT_SEGMENT +Adding number conversion cast (snumber) $6c in *((signed word*) main::$188 + (unumber~) main::$37) ← (number) $6c +Adding number conversion cast (snumber) $92 in *((signed word*) main::$189 + (unumber~) main::$37) ← (number) $92 +Adding number conversion cast (snumber) 0 in *((signed word*) main::$190 + (unumber~) main::$37) ← (number) 0 +Adding number conversion cast (snumber) 0 in *((signed word*) main::$191 + (unumber~) main::$37) ← (number) 0 +Adding number conversion cast (unumber) 3 in *((byte*) CIA2_PORT_A_DDR#0) ← (number) 3 +Adding number conversion cast (unumber) $40 in (number~) main::vicSelectGfxBank1_toDd001_$2#0 ← (byte~) main::vicSelectGfxBank1_toDd001_$1#0 / (number) $40 +Adding number conversion cast (unumber) main::vicSelectGfxBank1_toDd001_$2#0 in (number~) main::vicSelectGfxBank1_toDd001_$2#0 ← (byte~) main::vicSelectGfxBank1_toDd001_$1#0 / (unumber)(number) $40 +Adding number conversion cast (unumber) 3 in (number~) main::vicSelectGfxBank1_toDd001_$3#0 ← (number) 3 ^ (unumber~) main::vicSelectGfxBank1_toDd001_$2#0 +Adding number conversion cast (unumber) main::vicSelectGfxBank1_toDd001_$3#0 in (number~) main::vicSelectGfxBank1_toDd001_$3#0 ← (unumber)(number) 3 ^ (unumber~) main::vicSelectGfxBank1_toDd001_$2#0 +Adding number conversion cast (unumber) $3fff in (number~) main::toD0181_$1#0 ← (word~) main::toD0181_$0#0 & (number) $3fff +Adding number conversion cast (unumber) main::toD0181_$1#0 in (number~) main::toD0181_$1#0 ← (word~) main::toD0181_$0#0 & (unumber)(number) $3fff +Adding number conversion cast (unumber) 4 in (number~) main::toD0181_$2#0 ← (unumber~) main::toD0181_$1#0 * (number) 4 +Adding number conversion cast (unumber) main::toD0181_$2#0 in (number~) main::toD0181_$2#0 ← (unumber~) main::toD0181_$1#0 * (unumber)(number) 4 +Adding number conversion cast (unumber) main::toD0181_$3#0 in (number~) main::toD0181_$3#0 ← > (unumber~) main::toD0181_$2#0 +Adding number conversion cast (unumber) 4 in (number~) main::toD0181_$6#0 ← (byte~) main::toD0181_$5#0 / (number) 4 +Adding number conversion cast (unumber) main::toD0181_$6#0 in (number~) main::toD0181_$6#0 ← (byte~) main::toD0181_$5#0 / (unumber)(number) 4 +Adding number conversion cast (unumber) $f in (number~) main::toD0181_$7#0 ← (unumber~) main::toD0181_$6#0 & (number) $f +Adding number conversion cast (unumber) main::toD0181_$7#0 in (number~) main::toD0181_$7#0 ← (unumber~) main::toD0181_$6#0 & (unumber)(number) $f +Adding number conversion cast (unumber) main::toD0181_$8#0 in (number~) main::toD0181_$8#0 ← (unumber~) main::toD0181_$3#0 | (unumber~) main::toD0181_$7#0 +Adding number conversion cast (unumber) 3 in (number~) main::$7 ← (byte~) main::$6 | (number) 3 +Adding number conversion cast (unumber) main::$7 in (number~) main::$7 ← (byte~) main::$6 | (unumber)(number) 3 +Adding number conversion cast (unumber) 0 in (byte) main::angle#0 ← (number) 0 +Adding number conversion cast (unumber) $fe in (bool~) main::$10 ← *((byte*) RASTER#0) != (number) $fe +Adding number conversion cast (unumber) $ff in (bool~) main::$11 ← *((byte*) RASTER#0) != (number) $ff +Adding number conversion cast (unumber) 9 in (byte) main::angle#1 ← (byte) main::angle#3 + (number) 9 +Adding number conversion cast (unumber) $3e7 in (byte*~) main::$15 ← (byte*) PRINT_SCREEN#0 + (number) $3e7 +Adding number conversion cast (snumber) 0 in (signed word) show_letter::current_x#0 ← (number) 0 +Adding number conversion cast (snumber) 0 in (signed word) show_letter::current_y#0 ← (number) 0 +Adding number conversion cast (snumber) $32 in (number~) show_letter::$0 ← (signed word) show_letter::to_x#0 - (number) $32 +Adding number conversion cast (snumber) show_letter::$0 in (number~) show_letter::$0 ← (signed word) show_letter::to_x#0 - (snumber)(number) $32 +Adding number conversion cast (snumber) $96 in (number~) show_letter::$1 ← (signed word) show_letter::to_y#0 - (number) $96 +Adding number conversion cast (snumber) show_letter::$1 in (number~) show_letter::$1 ← (signed word) show_letter::to_y#0 - (snumber)(number) $96 +Adding number conversion cast (snumber) $64 in (number~) show_letter::$3 ← (signed word) show_letter::to_x#2 + (number) $64 +Adding number conversion cast (snumber) show_letter::$3 in (number~) show_letter::$3 ← (signed word) show_letter::to_x#2 + (snumber)(number) $64 +Adding number conversion cast (snumber) $64 in (number~) show_letter::$4 ← (signed word) show_letter::to_y#2 + (number) $64 +Adding number conversion cast (snumber) show_letter::$4 in (number~) show_letter::$4 ← (signed word) show_letter::to_y#2 + (snumber)(number) $64 +Adding number conversion cast (snumber) $32 in (number~) show_letter::$5 ← (signed word) show_letter::via_x#0 - (number) $32 +Adding number conversion cast (snumber) show_letter::$5 in (number~) show_letter::$5 ← (signed word) show_letter::via_x#0 - (snumber)(number) $32 +Adding number conversion cast (snumber) $96 in (number~) show_letter::$6 ← (signed word) show_letter::via_y#0 - (number) $96 +Adding number conversion cast (snumber) show_letter::$6 in (number~) show_letter::$6 ← (signed word) show_letter::via_y#0 - (snumber)(number) $96 +Adding number conversion cast (snumber) $64 in (number~) show_letter::$8 ← (signed word) show_letter::via_x#2 + (number) $64 +Adding number conversion cast (snumber) show_letter::$8 in (number~) show_letter::$8 ← (signed word) show_letter::via_x#2 + (snumber)(number) $64 +Adding number conversion cast (snumber) $64 in (number~) show_letter::$9 ← (signed word) show_letter::via_y#2 + (number) $64 +Adding number conversion cast (snumber) show_letter::$9 in (number~) show_letter::$9 ← (signed word) show_letter::via_y#2 + (snumber)(number) $64 +Adding number conversion cast (unumber) 0 in (number~) bitmap_plot_spline_8seg::$6 ← (number) 0 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Adding number conversion cast (unumber) bitmap_plot_spline_8seg::$6 in (number~) bitmap_plot_spline_8seg::$6 ← (unumber)(number) 0 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Adding number conversion cast (unumber) $40 in (signed byte*~) $1 ← (signed byte[$140]) SIN#0 + (number) $40 +Adding number conversion cast (snumber) 2 in (number~) rotate::$3 ← (signed word~) rotate::$2 * (number) 2 +Adding number conversion cast (snumber) rotate::$3 in (number~) rotate::$3 ← (signed word~) rotate::$2 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) rotate::$6 ← (signed word~) rotate::$5 * (number) 2 +Adding number conversion cast (snumber) rotate::$6 in (number~) rotate::$6 ← (signed word~) rotate::$5 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) rotate::$10 ← (signed word~) rotate::$9 * (number) 2 +Adding number conversion cast (snumber) rotate::$10 in (number~) rotate::$10 ← (signed word~) rotate::$9 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) rotate::$13 ← (signed word~) rotate::$12 * (number) 2 +Adding number conversion cast (snumber) rotate::$13 in (number~) rotate::$13 ← (signed word~) rotate::$12 * (snumber)(number) 2 +Successful SSA optimization PassNAddNumberTypeConversions +Inlining cast (byte*~) memset::$2 ← (byte*)(void*) memset::str#3 +Inlining cast (byte*) memset::dst#0 ← (byte*)(void*) memset::str#3 +Inlining cast (byte) bitmap_init::bits#0 ← (unumber)(number) $80 +Inlining cast (byte) bitmap_init::bits#2 ← (unumber)(number) $80 +Inlining cast (byte) memset::c#1 ← (unumber)(number) 0 +Inlining cast (byte~) bitmap_line::$15 ← (byte)(word) bitmap_line::y#3 +Inlining cast (byte~) bitmap_line::$18 ← (byte)(word) bitmap_line::y#4 +Inlining cast (byte~) bitmap_line::$13 ← (byte)(word) bitmap_line::y#7 +Inlining cast (byte~) bitmap_line::$24 ← (byte)(word) bitmap_line::y#8 +Inlining cast (word) sgn_u16::return#2 ← (unumber)(number) -1 +Inlining cast (word) sgn_u16::return#3 ← (unumber)(number) 1 +Inlining cast (byte*) RASTER#0 ← (byte*)(number) $d012 +Inlining cast (byte*) D011#0 ← (byte*)(number) $d011 +Inlining cast (byte) VIC_BMM#0 ← (unumber)(number) $20 +Inlining cast (byte) VIC_DEN#0 ← (unumber)(number) $10 +Inlining cast (byte) VIC_RSEL#0 ← (unumber)(number) 8 +Inlining cast (byte*) D018#0 ← (byte*)(number) $d018 +Inlining cast (byte*) CIA2_PORT_A#0 ← (byte*)(number) $dd00 +Inlining cast (byte*) CIA2_PORT_A_DDR#0 ← (byte*)(number) $dd02 +Inlining cast (byte) BLACK#0 ← (unumber)(number) 0 +Inlining cast (byte) WHITE#0 ← (unumber)(number) 1 +Inlining cast (word) mulf_init::sqr#0 ← (unumber)(number) 0 +Inlining cast (byte) mulf_init::x_2#0 ← (unumber)(number) 0 +Inlining cast (byte) mulf_init::c#0 ← (unumber)(number) 0 +Inlining cast (byte~) mulf_init::$1 ← (byte)(number) -1 +Inlining cast (byte) mulf_init::dir#0 ← (unumber)(number) $ff +Inlining cast (byte) mulf_init::dir#1 ← (unumber)(number) 1 +Inlining cast (word*) mulf16u::memA#0 ← (word*)(number) $f8 +Inlining cast (word*) mulf16u::memB#0 ← (word*)(number) $fa +Inlining cast (dword*) mulf16u::memR#0 ← (dword*)(number) $fc +Inlining cast (word~) mulf16s::$0 ← (word)(signed word) mulf16s::a#4 +Inlining cast (word~) mulf16s::$1 ← (word)(signed word) mulf16s::b#4 +Inlining cast (word~) mulf16s::$10 ← (word)(signed word) mulf16s::b#6 +Inlining cast (signed dword~) mulf16s::$7 ← (signed dword)(dword) mulf16s::m#4 +Inlining cast (word~) mulf16s::$14 ← (word)(signed word) mulf16s::a#6 +Inlining cast (byte*) PRINT_SCREEN#0 ← (byte*)(number) $400 +Inlining cast (byte*) BITMAP_SCREEN#0 ← (byte*)(number) $5c00 +Inlining cast (byte*) BITMAP_GRAPHICS#0 ← (byte*)(number) $6000 +Inlining cast *((signed word*) main::$104 + (unumber~) main::$16) ← (snumber)(number) $6c +Inlining cast *((signed word*) main::$105 + (unumber~) main::$16) ← (snumber)(number) $92 +Inlining cast *((signed word*) main::$106 + (unumber~) main::$16) ← (snumber)(number) 0 +Inlining cast *((signed word*) main::$107 + (unumber~) main::$16) ← (snumber)(number) 0 +Inlining cast *((signed word*) main::$108 + (unumber~) main::$17) ← (snumber)(number) $59 +Inlining cast *((signed word*) main::$109 + (unumber~) main::$17) ← (snumber)(number) $b6 +Inlining cast *((signed word*) main::$110 + (unumber~) main::$17) ← (snumber)(number) $67 +Inlining cast *((signed word*) main::$111 + (unumber~) main::$17) ← (snumber)(number) $a9 +Inlining cast *((signed word*) main::$112 + (unumber~) main::$18) ← (snumber)(number) $3b +Inlining cast *((signed word*) main::$113 + (unumber~) main::$18) ← (snumber)(number) $c3 +Inlining cast *((signed word*) main::$114 + (unumber~) main::$18) ← (snumber)(number) $4b +Inlining cast *((signed word*) main::$115 + (unumber~) main::$18) ← (snumber)(number) $c3 +Inlining cast *((signed word*) main::$116 + (unumber~) main::$19) ← (snumber)(number) $17 +Inlining cast *((signed word*) main::$117 + (unumber~) main::$19) ← (snumber)(number) $b2 +Inlining cast *((signed word*) main::$118 + (unumber~) main::$19) ← (snumber)(number) $26 +Inlining cast *((signed word*) main::$119 + (unumber~) main::$19) ← (snumber)(number) $c3 +Inlining cast *((signed word*) main::$120 + (unumber~) main::$20) ← (snumber)(number) 9 +Inlining cast *((signed word*) main::$121 + (unumber~) main::$20) ← (snumber)(number) $84 +Inlining cast *((signed word*) main::$122 + (unumber~) main::$20) ← (snumber)(number) 9 +Inlining cast *((signed word*) main::$123 + (unumber~) main::$20) ← (snumber)(number) $a1 +Inlining cast *((signed word*) main::$124 + (unumber~) main::$21) ← (snumber)(number) $19 +Inlining cast *((signed word*) main::$125 + (unumber~) main::$21) ← (snumber)(number) $57 +Inlining cast *((signed word*) main::$126 + (unumber~) main::$21) ← (snumber)(number) 9 +Inlining cast *((signed word*) main::$127 + (unumber~) main::$21) ← (snumber)(number) $68 +Inlining cast *((signed word*) main::$128 + (unumber~) main::$22) ← (snumber)(number) $41 +Inlining cast *((signed word*) main::$129 + (unumber~) main::$22) ← (snumber)(number) $45 +Inlining cast *((signed word*) main::$130 + (unumber~) main::$22) ← (snumber)(number) $2a +Inlining cast *((signed word*) main::$131 + (unumber~) main::$22) ← (snumber)(number) $45 +Inlining cast *((signed word*) main::$132 + (unumber~) main::$23) ← (snumber)(number) $5d +Inlining cast *((signed word*) main::$133 + (unumber~) main::$23) ← (snumber)(number) $4f +Inlining cast *((signed word*) main::$134 + (unumber~) main::$23) ← (snumber)(number) $52 +Inlining cast *((signed word*) main::$135 + (unumber~) main::$23) ← (snumber)(number) $45 +Inlining cast *((signed word*) main::$136 + (unumber~) main::$24) ← (snumber)(number) $69 +Inlining cast *((signed word*) main::$137 + (unumber~) main::$24) ← (snumber)(number) $62 +Inlining cast *((signed word*) main::$138 + (unumber~) main::$24) ← (snumber)(number) $69 +Inlining cast *((signed word*) main::$139 + (unumber~) main::$24) ← (snumber)(number) $58 +Inlining cast *((signed word*) main::$140 + (unumber~) main::$25) ← (snumber)(number) $66 +Inlining cast *((signed word*) main::$141 + (unumber~) main::$25) ← (snumber)(number) $6a +Inlining cast *((signed word*) main::$142 + (unumber~) main::$25) ← (snumber)(number) $69 +Inlining cast *((signed word*) main::$143 + (unumber~) main::$25) ← (snumber)(number) $67 +Inlining cast *((signed word*) main::$144 + (unumber~) main::$26) ← (snumber)(number) $5d +Inlining cast *((signed word*) main::$145 + (unumber~) main::$26) ← (snumber)(number) $6d +Inlining cast *((signed word*) main::$146 + (unumber~) main::$26) ← (snumber)(number) $62 +Inlining cast *((signed word*) main::$147 + (unumber~) main::$26) ← (snumber)(number) $6d +Inlining cast *((signed word*) main::$148 + (unumber~) main::$27) ← (snumber)(number) $51 +Inlining cast *((signed word*) main::$149 + (unumber~) main::$27) ← (snumber)(number) $68 +Inlining cast *((signed word*) main::$150 + (unumber~) main::$27) ← (snumber)(number) $55 +Inlining cast *((signed word*) main::$151 + (unumber~) main::$27) ← (snumber)(number) $6d +Inlining cast *((signed word*) main::$152 + (unumber~) main::$28) ← (snumber)(number) $4e +Inlining cast *((signed word*) main::$153 + (unumber~) main::$28) ← (snumber)(number) $5d +Inlining cast *((signed word*) main::$154 + (unumber~) main::$28) ← (snumber)(number) $4f +Inlining cast *((signed word*) main::$155 + (unumber~) main::$28) ← (snumber)(number) $65 +Inlining cast *((signed word*) main::$156 + (unumber~) main::$29) ← (snumber)(number) $49 +Inlining cast *((signed word*) main::$157 + (unumber~) main::$29) ← (snumber)(number) $52 +Inlining cast *((signed word*) main::$158 + (unumber~) main::$29) ← (snumber)(number) $4e +Inlining cast *((signed word*) main::$159 + (unumber~) main::$29) ← (snumber)(number) $56 +Inlining cast *((signed word*) main::$160 + (unumber~) main::$30) ← (snumber)(number) $3d +Inlining cast *((signed word*) main::$161 + (unumber~) main::$30) ← (snumber)(number) $4e +Inlining cast *((signed word*) main::$162 + (unumber~) main::$30) ← (snumber)(number) $45 +Inlining cast *((signed word*) main::$163 + (unumber~) main::$30) ← (snumber)(number) $4e +Inlining cast *((signed word*) main::$164 + (unumber~) main::$31) ← (snumber)(number) $28 +Inlining cast *((signed word*) main::$165 + (unumber~) main::$31) ← (snumber)(number) $58 +Inlining cast *((signed word*) main::$166 + (unumber~) main::$31) ← (snumber)(number) $30 +Inlining cast *((signed word*) main::$167 + (unumber~) main::$31) ← (snumber)(number) $4e +Inlining cast *((signed word*) main::$168 + (unumber~) main::$32) ← (snumber)(number) $1d +Inlining cast *((signed word*) main::$169 + (unumber~) main::$32) ← (snumber)(number) $79 +Inlining cast *((signed word*) main::$170 + (unumber~) main::$32) ← (snumber)(number) $1d +Inlining cast *((signed word*) main::$171 + (unumber~) main::$32) ← (snumber)(number) $64 +Inlining cast *((signed word*) main::$172 + (unumber~) main::$33) ← (snumber)(number) $28 +Inlining cast *((signed word*) main::$173 + (unumber~) main::$33) ← (snumber)(number) $9e +Inlining cast *((signed word*) main::$174 + (unumber~) main::$33) ← (snumber)(number) $1d +Inlining cast *((signed word*) main::$175 + (unumber~) main::$33) ← (snumber)(number) $8e +Inlining cast *((signed word*) main::$176 + (unumber~) main::$34) ← (snumber)(number) $44 +Inlining cast *((signed word*) main::$177 + (unumber~) main::$34) ← (snumber)(number) $ae +Inlining cast *((signed word*) main::$178 + (unumber~) main::$34) ← (snumber)(number) $32 +Inlining cast *((signed word*) main::$179 + (unumber~) main::$34) ← (snumber)(number) $ae +Inlining cast *((signed word*) main::$180 + (unumber~) main::$35) ← (snumber)(number) $5b +Inlining cast *((signed word*) main::$181 + (unumber~) main::$35) ← (snumber)(number) $a6 +Inlining cast *((signed word*) main::$182 + (unumber~) main::$35) ← (snumber)(number) $50 +Inlining cast *((signed word*) main::$183 + (unumber~) main::$35) ← (snumber)(number) $ae +Inlining cast *((signed word*) main::$184 + (unumber~) main::$36) ← (snumber)(number) $68 +Inlining cast *((signed word*) main::$185 + (unumber~) main::$36) ← (snumber)(number) $90 +Inlining cast *((signed word*) main::$186 + (unumber~) main::$36) ← (snumber)(number) $62 +Inlining cast *((signed word*) main::$187 + (unumber~) main::$36) ← (snumber)(number) $a0 +Inlining cast *((signed word*) main::$188 + (unumber~) main::$37) ← (snumber)(number) $6c +Inlining cast *((signed word*) main::$189 + (unumber~) main::$37) ← (snumber)(number) $92 +Inlining cast *((signed word*) main::$190 + (unumber~) main::$37) ← (snumber)(number) 0 +Inlining cast *((signed word*) main::$191 + (unumber~) main::$37) ← (snumber)(number) 0 +Inlining cast *((byte*) CIA2_PORT_A_DDR#0) ← (unumber)(number) 3 +Inlining cast (word~) main::vicSelectGfxBank1_toDd001_$0#0 ← (word)(byte*) main::vicSelectGfxBank1_toDd001_gfx#1 +Inlining cast (word~) main::toD0181_$0#0 ← (word)(byte*) main::toD0181_screen#1 +Inlining cast (word~) main::toD0181_$4#0 ← (word)(byte*) main::toD0181_gfx#1 +Inlining cast (byte) main::angle#0 ← (unumber)(number) 0 +Inlining cast (signed word) show_letter::current_x#0 ← (snumber)(number) 0 +Inlining cast (signed word) show_letter::current_y#0 ← (snumber)(number) 0 +Inlining cast (word~) show_letter::$12 ← (word)(signed word) show_letter::current_x#5 +Inlining cast (word~) show_letter::$13 ← (word)(signed word) show_letter::current_y#5 +Inlining cast (word~) show_letter::$14 ← (word)(signed word) show_letter::segment_to_x#4 +Inlining cast (word~) show_letter::$15 ← (word)(signed word) show_letter::segment_to_y#4 +Inlining cast (word~) bitmap_plot_spline_8seg::$0 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 +Inlining cast (word~) bitmap_plot_spline_8seg::$1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 +Inlining cast (word~) bitmap_plot_spline_8seg::$2 ← (word)*((signed word*) bitmap_plot_spline_8seg::$14 + (byte~) bitmap_plot_spline_8seg::$7) +Inlining cast (word~) bitmap_plot_spline_8seg::$3 ← (word)*((signed word*) bitmap_plot_spline_8seg::$15 + (byte~) bitmap_plot_spline_8seg::$8) +Inlining cast (signed word~) rotate::$0 ← (signed word)*((signed byte*) COS#1 + (byte) rotate::angle#2) +Inlining cast (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 +Inlining cast (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 +Inlining cast (signed word~) rotate::$7 ← (signed word)*((signed byte[$140]) SIN#0 + (byte) rotate::angle#3) +Inlining cast (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 +Inlining cast (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 +Inlining cast (signed byte~) rotate::$15 ← (signed byte)(byte~) rotate::$14 +Inlining cast (signed word~) rotate::$16 ← (signed word)(signed byte~) rotate::$15 +Inlining cast (signed byte~) rotate::$18 ← (signed byte)(byte~) rotate::$17 +Inlining cast (signed word~) rotate::$19 ← (signed word)(signed byte~) rotate::$18 +Successful SSA optimization Pass2InlineCast +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Simplifying constant integer cast 8 +Simplifying constant integer cast 8 +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Simplifying constant integer cast $40 +Simplifying constant integer cast $40 +Simplifying constant integer cast $20 +Simplifying constant integer cast $40 +Simplifying constant integer cast $20 +Simplifying constant integer cast $40 +Simplifying constant integer cast $20 +Simplifying constant integer cast $40 +Simplifying constant integer cast $20 +Simplifying constant integer cast $40 +Simplifying constant integer cast 8 +Simplifying constant integer cast 0 +Simplifying constant integer cast $80 +Simplifying constant integer cast 1 +Simplifying constant integer cast 0 +Simplifying constant integer cast $80 +Simplifying constant integer cast 7 +Simplifying constant integer cast 7 +Simplifying constant integer cast 7 +Simplifying constant integer cast $10 +Simplifying constant integer cast 0 +Simplifying constant integer cast *((byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) +Simplifying constant integer cast *((byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) +Simplifying constant integer cast $fff8 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Simplifying constant integer cast $80 +Simplifying constant integer cast 0 +Simplifying constant integer cast $80 +Simplifying constant integer cast 0 +Simplifying constant integer cast -1 +Simplifying constant integer cast 1 +Simplifying constant pointer cast (byte*) 53266 +Simplifying constant pointer cast (byte*) 53265 +Simplifying constant integer cast $20 +Simplifying constant integer cast $10 +Simplifying constant integer cast 8 +Simplifying constant pointer cast (byte*) 53272 +Simplifying constant pointer cast (byte*) 56576 +Simplifying constant pointer cast (byte*) 56578 +Simplifying constant integer cast 0 +Simplifying constant integer cast 1 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast 1 +Simplifying constant integer cast 1 +Simplifying constant integer cast 1 +Simplifying constant integer cast 0 +Simplifying constant integer cast $200 +Simplifying constant integer cast -1 +Simplifying constant integer cast $ff +Simplifying constant integer cast 0 +Simplifying constant integer cast $1ff +Simplifying constant integer cast 1 +Simplifying constant integer cast $1ff +Simplifying constant integer cast $100 +Simplifying constant integer cast $1ff +Simplifying constant integer cast $100 +Simplifying constant pointer cast (word*) 248 +Simplifying constant pointer cast (word*) 250 +Simplifying constant pointer cast (dword*) 252 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant pointer cast (byte*) 1024 +Simplifying constant pointer cast (byte*) 23552 +Simplifying constant pointer cast (byte*) 24576 +Simplifying constant integer cast 0 +Simplifying constant integer cast $6c +Simplifying constant integer cast $92 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast 1 +Simplifying constant integer cast $59 +Simplifying constant integer cast $b6 +Simplifying constant integer cast $67 +Simplifying constant integer cast $a9 +Simplifying constant integer cast 2 +Simplifying constant integer cast $3b +Simplifying constant integer cast $c3 +Simplifying constant integer cast $4b +Simplifying constant integer cast $c3 +Simplifying constant integer cast 3 +Simplifying constant integer cast $17 +Simplifying constant integer cast $b2 +Simplifying constant integer cast $26 +Simplifying constant integer cast $c3 +Simplifying constant integer cast 4 +Simplifying constant integer cast 9 +Simplifying constant integer cast $84 +Simplifying constant integer cast 9 +Simplifying constant integer cast $a1 +Simplifying constant integer cast 5 +Simplifying constant integer cast $19 +Simplifying constant integer cast $57 +Simplifying constant integer cast 9 +Simplifying constant integer cast $68 +Simplifying constant integer cast 6 +Simplifying constant integer cast $41 +Simplifying constant integer cast $45 +Simplifying constant integer cast $2a +Simplifying constant integer cast $45 +Simplifying constant integer cast 7 +Simplifying constant integer cast $5d +Simplifying constant integer cast $4f +Simplifying constant integer cast $52 +Simplifying constant integer cast $45 +Simplifying constant integer cast 8 +Simplifying constant integer cast $69 +Simplifying constant integer cast $62 +Simplifying constant integer cast $69 +Simplifying constant integer cast $58 +Simplifying constant integer cast 9 +Simplifying constant integer cast $66 +Simplifying constant integer cast $6a +Simplifying constant integer cast $69 +Simplifying constant integer cast $67 +Simplifying constant integer cast $a +Simplifying constant integer cast $5d +Simplifying constant integer cast $6d +Simplifying constant integer cast $62 +Simplifying constant integer cast $6d +Simplifying constant integer cast $b +Simplifying constant integer cast $51 +Simplifying constant integer cast $68 +Simplifying constant integer cast $55 +Simplifying constant integer cast $6d +Simplifying constant integer cast $c +Simplifying constant integer cast $4e +Simplifying constant integer cast $5d +Simplifying constant integer cast $4f +Simplifying constant integer cast $65 +Simplifying constant integer cast $d +Simplifying constant integer cast $49 +Simplifying constant integer cast $52 +Simplifying constant integer cast $4e +Simplifying constant integer cast $56 +Simplifying constant integer cast $e +Simplifying constant integer cast $3d +Simplifying constant integer cast $4e +Simplifying constant integer cast $45 +Simplifying constant integer cast $4e +Simplifying constant integer cast $f +Simplifying constant integer cast $28 +Simplifying constant integer cast $58 +Simplifying constant integer cast $30 +Simplifying constant integer cast $4e +Simplifying constant integer cast $10 +Simplifying constant integer cast $1d +Simplifying constant integer cast $79 +Simplifying constant integer cast $1d +Simplifying constant integer cast $64 +Simplifying constant integer cast $11 +Simplifying constant integer cast $28 +Simplifying constant integer cast $9e +Simplifying constant integer cast $1d +Simplifying constant integer cast $8e +Simplifying constant integer cast $12 +Simplifying constant integer cast $44 +Simplifying constant integer cast $ae +Simplifying constant integer cast $32 +Simplifying constant integer cast $ae +Simplifying constant integer cast $13 +Simplifying constant integer cast $5b +Simplifying constant integer cast $a6 +Simplifying constant integer cast $50 +Simplifying constant integer cast $ae +Simplifying constant integer cast $14 +Simplifying constant integer cast $68 +Simplifying constant integer cast $90 +Simplifying constant integer cast $62 +Simplifying constant integer cast $a0 +Simplifying constant integer cast $15 +Simplifying constant integer cast $6c +Simplifying constant integer cast $92 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast 3 +Simplifying constant integer cast $40 +Simplifying constant integer cast 3 +Simplifying constant integer cast $3fff +Simplifying constant integer cast 4 +Simplifying constant integer cast 4 +Simplifying constant integer cast $f +Simplifying constant integer cast 3 +Simplifying constant integer cast 0 +Simplifying constant integer cast $fe +Simplifying constant integer cast $ff +Simplifying constant integer cast 9 +Simplifying constant integer cast $3e7 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast $32 +Simplifying constant integer cast $96 +Simplifying constant integer cast $64 +Simplifying constant integer cast $64 +Simplifying constant integer cast $32 +Simplifying constant integer cast $96 +Simplifying constant integer cast $64 +Simplifying constant integer cast $64 +Simplifying constant integer cast 0 +Simplifying constant integer cast $40 +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Simplifying constant integer cast 2 +Successful SSA optimization PassNCastSimplification +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 8 +Finalized signed number type (signed byte) 8 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) $40 +Finalized signed number type (signed byte) $40 +Finalized signed number type (signed byte) $20 +Finalized signed number type (signed byte) $40 +Finalized signed number type (signed byte) $20 +Finalized signed number type (signed byte) $40 +Finalized signed number type (signed byte) $20 +Finalized signed number type (signed byte) $40 +Finalized signed number type (signed byte) $20 +Finalized signed number type (signed byte) $40 +Finalized unsigned number type (byte) 8 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) $80 +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) $80 +Finalized unsigned number type (byte) 7 +Finalized unsigned number type (byte) 7 +Finalized unsigned number type (byte) 7 +Finalized unsigned number type (byte) $10 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (word) $fff8 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 2 +Finalized unsigned number type (byte) 2 +Finalized unsigned number type (byte) $80 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) $80 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) -1 +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (byte) $20 +Finalized unsigned number type (byte) $10 +Finalized unsigned number type (byte) 8 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (word) $200 +Finalized unsigned number type (byte) $ff +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (word) $1ff +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (word) $1ff +Finalized unsigned number type (word) $100 +Finalized unsigned number type (word) $1ff +Finalized unsigned number type (word) $100 +Finalized signed number type (signed byte) 0 +Finalized signed number type (signed byte) 0 +Finalized unsigned number type (byte) 0 +Finalized signed number type (signed byte) $6c +Finalized signed number type (signed word) $92 +Finalized signed number type (signed byte) 0 +Finalized signed number type (signed byte) 0 +Finalized unsigned number type (byte) 1 +Finalized signed number type (signed byte) $59 +Finalized signed number type (signed word) $b6 +Finalized signed number type (signed byte) $67 +Finalized signed number type (signed word) $a9 +Finalized unsigned number type (byte) 2 +Finalized signed number type (signed byte) $3b +Finalized signed number type (signed word) $c3 +Finalized signed number type (signed byte) $4b +Finalized signed number type (signed word) $c3 +Finalized unsigned number type (byte) 3 +Finalized signed number type (signed byte) $17 +Finalized signed number type (signed word) $b2 +Finalized signed number type (signed byte) $26 +Finalized signed number type (signed word) $c3 +Finalized unsigned number type (byte) 4 +Finalized signed number type (signed byte) 9 +Finalized signed number type (signed word) $84 +Finalized signed number type (signed byte) 9 +Finalized signed number type (signed word) $a1 +Finalized unsigned number type (byte) 5 +Finalized signed number type (signed byte) $19 +Finalized signed number type (signed byte) $57 +Finalized signed number type (signed byte) 9 +Finalized signed number type (signed byte) $68 +Finalized unsigned number type (byte) 6 +Finalized signed number type (signed byte) $41 +Finalized signed number type (signed byte) $45 +Finalized signed number type (signed byte) $2a +Finalized signed number type (signed byte) $45 +Finalized unsigned number type (byte) 7 +Finalized signed number type (signed byte) $5d +Finalized signed number type (signed byte) $4f +Finalized signed number type (signed byte) $52 +Finalized signed number type (signed byte) $45 +Finalized unsigned number type (byte) 8 +Finalized signed number type (signed byte) $69 +Finalized signed number type (signed byte) $62 +Finalized signed number type (signed byte) $69 +Finalized signed number type (signed byte) $58 +Finalized unsigned number type (byte) 9 +Finalized signed number type (signed byte) $66 +Finalized signed number type (signed byte) $6a +Finalized signed number type (signed byte) $69 +Finalized signed number type (signed byte) $67 +Finalized unsigned number type (byte) $a +Finalized signed number type (signed byte) $5d +Finalized signed number type (signed byte) $6d +Finalized signed number type (signed byte) $62 +Finalized signed number type (signed byte) $6d +Finalized unsigned number type (byte) $b +Finalized signed number type (signed byte) $51 +Finalized signed number type (signed byte) $68 +Finalized signed number type (signed byte) $55 +Finalized signed number type (signed byte) $6d +Finalized unsigned number type (byte) $c +Finalized signed number type (signed byte) $4e +Finalized signed number type (signed byte) $5d +Finalized signed number type (signed byte) $4f +Finalized signed number type (signed byte) $65 +Finalized unsigned number type (byte) $d +Finalized signed number type (signed byte) $49 +Finalized signed number type (signed byte) $52 +Finalized signed number type (signed byte) $4e +Finalized signed number type (signed byte) $56 +Finalized unsigned number type (byte) $e +Finalized signed number type (signed byte) $3d +Finalized signed number type (signed byte) $4e +Finalized signed number type (signed byte) $45 +Finalized signed number type (signed byte) $4e +Finalized unsigned number type (byte) $f +Finalized signed number type (signed byte) $28 +Finalized signed number type (signed byte) $58 +Finalized signed number type (signed byte) $30 +Finalized signed number type (signed byte) $4e +Finalized unsigned number type (byte) $10 +Finalized signed number type (signed byte) $1d +Finalized signed number type (signed byte) $79 +Finalized signed number type (signed byte) $1d +Finalized signed number type (signed byte) $64 +Finalized unsigned number type (byte) $11 +Finalized signed number type (signed byte) $28 +Finalized signed number type (signed word) $9e +Finalized signed number type (signed byte) $1d +Finalized signed number type (signed word) $8e +Finalized unsigned number type (byte) $12 +Finalized signed number type (signed byte) $44 +Finalized signed number type (signed word) $ae +Finalized signed number type (signed byte) $32 +Finalized signed number type (signed word) $ae +Finalized unsigned number type (byte) $13 +Finalized signed number type (signed byte) $5b +Finalized signed number type (signed word) $a6 +Finalized signed number type (signed byte) $50 +Finalized signed number type (signed word) $ae +Finalized unsigned number type (byte) $14 +Finalized signed number type (signed byte) $68 +Finalized signed number type (signed word) $90 +Finalized signed number type (signed byte) $62 +Finalized signed number type (signed word) $a0 +Finalized unsigned number type (byte) $15 +Finalized signed number type (signed byte) $6c +Finalized signed number type (signed word) $92 +Finalized signed number type (signed byte) 0 +Finalized signed number type (signed byte) 0 +Finalized unsigned number type (byte) 3 +Finalized unsigned number type (byte) $40 +Finalized unsigned number type (byte) 3 +Finalized unsigned number type (word) $3fff +Finalized unsigned number type (byte) 4 +Finalized unsigned number type (byte) 4 +Finalized unsigned number type (byte) $f +Finalized unsigned number type (byte) 3 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) $fe +Finalized unsigned number type (byte) $ff +Finalized unsigned number type (byte) 9 +Finalized unsigned number type (word) $3e7 +Finalized signed number type (signed byte) 0 +Finalized signed number type (signed byte) 0 +Finalized signed number type (signed byte) $32 +Finalized signed number type (signed word) $96 +Finalized signed number type (signed byte) $64 +Finalized signed number type (signed byte) $64 +Finalized signed number type (signed byte) $32 +Finalized signed number type (signed word) $96 +Finalized signed number type (signed byte) $64 +Finalized signed number type (signed byte) $64 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) $40 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 2 +Finalized signed number type (signed byte) 2 +Successful SSA optimization PassNFinalizeNumberTypeConversions +Inferred type updated to signed word in (snumber~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#1 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#1 - (signed word~) spline_8segB::$0 +Inferred type updated to signed word in (snumber~) spline_8segB::$2 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#1 +Inferred type updated to signed word in (snumber~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#1 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#1 - (signed word~) spline_8segB::$3 +Inferred type updated to signed word in (snumber~) spline_8segB::$5 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#1 +Inferred type updated to signed word in (snumber~) spline_8segB::$7 ← (signed word~) spline_8segB::$6 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) spline_8segB::$9 ← (signed word~) spline_8segB::$8 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 * (signed byte) 8 +Inferred type updated to signed word in (snumber~) spline_8segB::$11 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 +Inferred type updated to signed word in (snumber~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 * (signed byte) 8 +Inferred type updated to signed word in (snumber~) spline_8segB::$13 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 +Inferred type updated to signed word in (snumber~) spline_8segB::$14 ← (signed word) spline_8segB::a_x#0 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) spline_8segB::$15 ← (signed word) spline_8segB::a_y#0 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) spline_8segB::$16 ← (signed word) spline_8segB::p0_x#1 * (signed byte) $40 +Inferred type updated to signed word in (snumber~) spline_8segB::$17 ← (signed word) spline_8segB::p0_y#1 * (signed byte) $40 +Inferred type updated to signed word in (snumber~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 +Inferred type updated to signed word in (snumber~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 / (signed byte) $40 +Inferred type updated to signed word in (snumber~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 +Inferred type updated to signed word in (snumber~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 / (signed byte) $40 +Inferred type updated to signed word in (snumber~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#3 + (signed byte) $20 +Inferred type updated to signed word in (snumber~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 / (signed byte) $40 +Inferred type updated to signed word in (snumber~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#3 + (signed byte) $20 +Inferred type updated to signed word in (snumber~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 / (signed byte) $40 +Inferred type updated to byte in (unumber~) spline_8segB::$32 ← (byte) 8 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Inferred type updated to byte in (unumber~) bitmap_init::$3 ← (byte) bitmap_init::y#2 & (byte) 7 +Inferred type updated to byte in (unumber~) bitmap_init::$5 ← (byte~) bitmap_init::$3 | (byte~) bitmap_init::$4 +Inferred type updated to byte in (unumber~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 +Inferred type updated to byte in (unumber~) bitmap_clear::$0 ← (byte) bitmap_clear::fgcol#2 * (byte) $10 +Inferred type updated to byte in (unumber~) bitmap_clear::$1 ← (byte~) bitmap_clear::$0 + (byte) bitmap_clear::bgcol#2 +Inferred type updated to word in (unumber~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 +Inferred type updated to word in (unumber~) bitmap_line::$23 ← (word) bitmap_line::dy#2 / (byte) 2 +Inferred type updated to word in (unumber~) bitmap_line::$17 ← (word) bitmap_line::dx#3 / (byte) 2 +Inferred type updated to byte in (unumber~) abs_u16::$1 ← (byte~) abs_u16::$0 & (byte) $80 +Inferred type updated to byte in (unumber~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (byte) $80 +Inferred type updated to byte in (unumber~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 +Inferred type updated to byte in (unumber~) main::$16 ← (byte) 0 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$17 ← (byte) 1 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$18 ← (byte) 2 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$19 ← (byte) 3 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$20 ← (byte) 4 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$21 ← (byte) 5 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$22 ← (byte) 6 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$23 ← (byte) 7 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$24 ← (byte) 8 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$25 ← (byte) 9 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$26 ← (byte) $a * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$27 ← (byte) $b * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$28 ← (byte) $c * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$29 ← (byte) $d * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$30 ← (byte) $e * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$31 ← (byte) $f * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$32 ← (byte) $10 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$33 ← (byte) $11 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$34 ← (byte) $12 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$35 ← (byte) $13 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$36 ← (byte) $14 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::$37 ← (byte) $15 * (const byte) SIZEOF_STRUCT_SEGMENT +Inferred type updated to byte in (unumber~) main::vicSelectGfxBank1_toDd001_$2#0 ← (byte~) main::vicSelectGfxBank1_toDd001_$1#0 / (byte) $40 +Inferred type updated to byte in (unumber~) main::vicSelectGfxBank1_toDd001_$3#0 ← (byte) 3 ^ (byte~) main::vicSelectGfxBank1_toDd001_$2#0 +Inferred type updated to word in (unumber~) main::toD0181_$1#0 ← (word~) main::toD0181_$0#0 & (word) $3fff +Inferred type updated to word in (unumber~) main::toD0181_$2#0 ← (word~) main::toD0181_$1#0 * (byte) 4 +Inferred type updated to byte in (unumber~) main::toD0181_$3#0 ← > (word~) main::toD0181_$2#0 +Inferred type updated to byte in (unumber~) main::toD0181_$6#0 ← (byte~) main::toD0181_$5#0 / (byte) 4 +Inferred type updated to byte in (unumber~) main::toD0181_$7#0 ← (byte~) main::toD0181_$6#0 & (byte) $f +Inferred type updated to byte in (unumber~) main::toD0181_$8#0 ← (byte~) main::toD0181_$3#0 | (byte~) main::toD0181_$7#0 +Inferred type updated to byte in (unumber~) main::$7 ← (byte~) main::$6 | (byte) 3 +Inferred type updated to signed word in (snumber~) show_letter::$0 ← (signed word) show_letter::to_x#0 - (signed byte) $32 +Inferred type updated to signed word in (snumber~) show_letter::$1 ← (signed word) show_letter::to_y#0 - (signed word) $96 +Inferred type updated to signed word in (snumber~) show_letter::$3 ← (signed word) show_letter::to_x#2 + (signed byte) $64 +Inferred type updated to signed word in (snumber~) show_letter::$4 ← (signed word) show_letter::to_y#2 + (signed byte) $64 +Inferred type updated to signed word in (snumber~) show_letter::$5 ← (signed word) show_letter::via_x#0 - (signed byte) $32 +Inferred type updated to signed word in (snumber~) show_letter::$6 ← (signed word) show_letter::via_y#0 - (signed word) $96 +Inferred type updated to signed word in (snumber~) show_letter::$8 ← (signed word) show_letter::via_x#2 + (signed byte) $64 +Inferred type updated to signed word in (snumber~) show_letter::$9 ← (signed word) show_letter::via_y#2 + (signed byte) $64 +Inferred type updated to byte in (unumber~) bitmap_plot_spline_8seg::$6 ← (byte) 0 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Inferred type updated to signed word in (snumber~) rotate::$3 ← (signed word~) rotate::$2 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) rotate::$6 ← (signed word~) rotate::$5 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) rotate::$10 ← (signed word~) rotate::$9 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) rotate::$13 ← (signed word~) rotate::$12 * (signed byte) 2 +Adding pointer type conversion cast (byte*) bitmap_plot::$0 in (byte*~) bitmap_plot::$0 ← (word~) bitmap_plot::$3 +Successful SSA optimization PassNAddTypeConversionAssignment +Inversing boolean not [65] (bool~) memset::$1 ← (word) memset::num#2 <= (byte) 0 from [64] (bool~) memset::$0 ← (word) memset::num#2 > (byte) 0 +Inversing boolean not [96] (bool~) bitmap_init::$1 ← (byte) bitmap_init::bits#1 != (byte) 0 from [95] (bool~) bitmap_init::$0 ← (byte) bitmap_init::bits#1 == (byte) 0 +Inversing boolean not [116] (bool~) bitmap_init::$9 ← (byte~) bitmap_init::$7 != (byte) 7 from [115] (bool~) bitmap_init::$8 ← (byte~) bitmap_init::$7 == (byte) 7 +Inversing boolean not [214] (bool~) bitmap_line::$21 ← (word) bitmap_line::dy#3 >= (word) bitmap_line::e#1 from [213] (bool~) bitmap_line::$20 ← (word) bitmap_line::dy#3 < (word) bitmap_line::e#1 +Inversing boolean not [236] (bool~) bitmap_line::$27 ← (word) bitmap_line::dx#5 >= (word) bitmap_line::e1#1 from [235] (bool~) bitmap_line::$26 ← (word) bitmap_line::dx#5 < (word) bitmap_line::e1#1 +Inversing boolean not [294] (bool~) mulf_init::$9 ← (byte~) mulf_init::$7 != (byte) 0 from [293] (bool~) mulf_init::$8 ← (byte~) mulf_init::$7 == (byte) 0 +Inversing boolean not [323] (bool~) mulf_init::$17 ← (byte) mulf_init::x_255#1 != (byte) 0 from [322] (bool~) mulf_init::$16 ← (byte) mulf_init::x_255#1 == (byte) 0 +Inversing boolean not [361] (bool~) mulf16s::$4 ← (signed word) mulf16s::a#5 >= (signed byte) 0 from [360] (bool~) mulf16s::$3 ← (signed word) mulf16s::a#5 < (signed byte) 0 +Inversing boolean not [365] (bool~) mulf16s::$6 ← (signed word) mulf16s::b#5 >= (signed byte) 0 from [364] (bool~) mulf16s::$5 ← (signed word) mulf16s::b#5 < (signed byte) 0 +Successful SSA optimization Pass2UnaryNotSimplification +Alias (signed word) spline_8segB::a_x#0 = (signed word~) spline_8segB::$2 +Alias (signed word) spline_8segB::a_y#0 = (signed word~) spline_8segB::$5 +Alias (signed word) spline_8segB::b_x#0 = (signed word~) spline_8segB::$7 +Alias (signed word) spline_8segB::b_y#0 = (signed word~) spline_8segB::$9 +Alias (signed word) spline_8segB::i_x#0 = (signed word~) spline_8segB::$11 +Alias (signed word) spline_8segB::i_y#0 = (signed word~) spline_8segB::$13 +Alias (signed word) spline_8segB::j_x#0 = (signed word~) spline_8segB::$14 +Alias (signed word) spline_8segB::j_y#0 = (signed word~) spline_8segB::$15 +Alias (signed word) spline_8segB::p_x#0 = (signed word~) spline_8segB::$16 +Alias (signed word) spline_8segB::p_y#0 = (signed word~) spline_8segB::$17 +Alias (signed word) spline_8segB::p_x#1 = (signed word~) spline_8segB::$26 (signed word) spline_8segB::p_x#3 +Alias (signed word) spline_8segB::p_y#1 = (signed word~) spline_8segB::$27 (signed word) spline_8segB::p_y#3 +Alias (signed word) spline_8segB::i_x#1 = (signed word~) spline_8segB::$28 +Alias (signed word) spline_8segB::i_y#1 = (signed word~) spline_8segB::$29 +Alias (void*) memset::return#0 = (void*) memset::str#2 (void*) memset::return#4 (void*) memset::return#1 +Alias (void*) memset::str#3 = (void*) memset::str#4 +Alias (word) memset::num#2 = (word) memset::num#3 +Alias (byte) memset::c#3 = (byte) memset::c#4 +Alias (byte*) memset::end#0 = (byte*~) memset::$3 +Alias (byte) bitmap_init::x#2 = (byte) bitmap_init::x#4 +Alias (byte*) bitmap_init::gfx#4 = (byte*) bitmap_init::gfx#5 +Alias (byte*) bitmap_gfx#31 = (byte*) bitmap_gfx#32 +Alias (byte*) bitmap_screen#30 = (byte*) bitmap_screen#31 +Alias (byte*) bitmap_init::gfx#2 = (byte*) bitmap_init::gfx#3 (byte*) bitmap_init::yoffs#0 +Alias (byte*) bitmap_gfx#23 = (byte*) bitmap_gfx#27 +Alias (byte*) bitmap_screen#22 = (byte*) bitmap_screen#26 +Alias (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#3 +Alias (byte) bitmap_init::y#2 = (byte) bitmap_init::y#4 +Alias (byte*) bitmap_gfx#16 = (byte*) bitmap_gfx#17 +Alias (byte*) bitmap_screen#16 = (byte*) bitmap_screen#17 +Alias (byte*) bitmap_init::yoffs#1 = (byte*~) bitmap_init::$10 +Alias (byte*) bitmap_gfx#11 = (byte*) bitmap_gfx#6 (byte*) bitmap_gfx#2 +Alias (byte*) bitmap_screen#11 = (byte*) bitmap_screen#6 (byte*) bitmap_screen#2 +Alias (byte) bitmap_clear::col#0 = (byte~) bitmap_clear::$1 +Alias (byte*) bitmap_gfx#12 = (byte*) bitmap_gfx#7 +Alias (byte*) bitmap_plot::plotter#0 = (byte*~) bitmap_plot::$0 +Alias (word) bitmap_line::x#0 = (word) bitmap_line::x1#2 (word) bitmap_line::x1#5 (word) bitmap_line::x#16 (word) bitmap_line::x1#4 (word) bitmap_line::x#10 (word) bitmap_line::x1#3 (word) bitmap_line::x#19 (word) bitmap_line::x#18 (word) bitmap_line::x#17 (word) bitmap_line::x#3 (word) bitmap_line::x#14 (word) bitmap_line::x#11 +Alias (word) bitmap_line::y#0 = (word) bitmap_line::y1#2 (word) bitmap_line::y1#3 (word) bitmap_line::y#16 (word) bitmap_line::y#10 (word) bitmap_line::y1#6 (word) bitmap_line::y1#5 (word) bitmap_line::y#19 (word) bitmap_line::y1#4 (word) bitmap_line::y#18 (word) bitmap_line::y#17 (word) bitmap_line::y#3 (word) bitmap_line::y#14 (word) bitmap_line::y#11 +Alias (word) abs_u16::w#0 = (word~) bitmap_line::$0 +Alias (word) abs_u16::return#0 = (word) abs_u16::return#5 +Alias (word) bitmap_line::y2#11 = (word) bitmap_line::y2#2 (word) bitmap_line::y2#5 (word) bitmap_line::y2#9 (word) bitmap_line::y2#6 (word) bitmap_line::y2#3 (word) bitmap_line::y2#12 +Alias (word) bitmap_line::x2#10 = (word) bitmap_line::x2#8 (word) bitmap_line::x2#2 (word) bitmap_line::x2#5 (word) bitmap_line::x2#3 (word) bitmap_line::x2#12 (word) bitmap_line::x2#11 +Alias (word) bitmap_line::dx#0 = (word~) bitmap_line::$1 (word) bitmap_line::dx#1 (word) bitmap_line::dx#10 (word) bitmap_line::dx#7 (word) bitmap_line::dx#2 (word) bitmap_line::dx#13 (word) bitmap_line::dx#3 +Alias (word) abs_u16::w#1 = (word~) bitmap_line::$2 +Alias (word) abs_u16::return#1 = (word) abs_u16::return#6 +Alias (word) bitmap_line::dy#0 = (word~) bitmap_line::$3 (word) bitmap_line::dy#9 (word) bitmap_line::dy#6 (word) bitmap_line::dy#1 (word) bitmap_line::dy#2 (word) bitmap_line::dy#10 +Alias (word) sgn_u16::w#0 = (word~) bitmap_line::$8 +Alias (word) sgn_u16::return#0 = (word) sgn_u16::return#5 +Alias (word) bitmap_line::sx#0 = (word~) bitmap_line::$9 (word) bitmap_line::sx#8 (word) bitmap_line::sx#7 (word) bitmap_line::sx#9 +Alias (word) sgn_u16::w#1 = (word~) bitmap_line::$10 +Alias (word) sgn_u16::return#1 = (word) sgn_u16::return#6 +Alias (word) bitmap_line::sy#0 = (word~) bitmap_line::$11 (word) bitmap_line::sy#10 (word) bitmap_line::sy#5 +Alias (byte) bitmap_plot::y#0 = (byte~) bitmap_line::$15 +Alias (word) bitmap_line::e1#0 = (word~) bitmap_line::$23 +Alias (word) bitmap_line::e#0 = (word~) bitmap_line::$17 +Alias (byte) bitmap_plot::y#1 = (byte~) bitmap_line::$18 +Alias (word) bitmap_line::y#4 = (word) bitmap_line::y#5 +Alias (word) bitmap_line::sy#1 = (word) bitmap_line::sy#3 (word) bitmap_line::sy#8 +Alias (word) bitmap_line::e#3 = (word) bitmap_line::e#5 +Alias (word) bitmap_line::dx#14 = (word) bitmap_line::dx#4 (word) bitmap_line::dx#8 +Alias (word) bitmap_line::dy#3 = (word) bitmap_line::dy#7 (word) bitmap_line::dy#4 +Alias (word) bitmap_line::y2#10 = (word) bitmap_line::y2#7 (word) bitmap_line::y2#8 +Alias (word) bitmap_line::x#13 = (word) bitmap_line::x#4 (word) bitmap_line::x#5 +Alias (word) bitmap_line::sx#1 = (word) bitmap_line::sx#3 (word) bitmap_line::sx#5 +Alias (word) bitmap_line::e#1 = (word) bitmap_line::e#4 +Alias (word) bitmap_line::y#1 = (word) bitmap_line::y#12 +Alias (byte) bitmap_plot::y#2 = (byte~) bitmap_line::$13 +Alias (byte) bitmap_plot::y#3 = (byte~) bitmap_line::$24 +Alias (word) bitmap_line::x#7 = (word) bitmap_line::x#8 +Alias (word) bitmap_line::sx#11 = (word) bitmap_line::sx#2 (word) bitmap_line::sx#4 +Alias (word) bitmap_line::e1#3 = (word) bitmap_line::e1#5 +Alias (word) bitmap_line::dy#13 = (word) bitmap_line::dy#5 (word) bitmap_line::dy#8 +Alias (word) bitmap_line::dx#5 = (word) bitmap_line::dx#9 (word) bitmap_line::dx#6 +Alias (word) bitmap_line::x2#6 = (word) bitmap_line::x2#7 (word) bitmap_line::x2#9 +Alias (word) bitmap_line::y#15 = (word) bitmap_line::y#8 (word) bitmap_line::y#9 +Alias (word) bitmap_line::sy#2 = (word) bitmap_line::sy#4 (word) bitmap_line::sy#7 +Alias (word) bitmap_line::e1#1 = (word) bitmap_line::e1#4 +Alias (word) bitmap_line::x#15 = (word) bitmap_line::x#2 +Alias (word) abs_u16::w#2 = (word) abs_u16::w#3 (word) abs_u16::w#4 (word) abs_u16::return#3 +Alias (word) abs_u16::return#2 = (word~) abs_u16::$2 +Alias (word) abs_u16::return#4 = (word) abs_u16::return#7 +Alias (word) sgn_u16::return#4 = (word) sgn_u16::return#7 +Alias (byte*) bitmap_gfx#0 = (byte*) bitmap_gfx#33 (byte*) bitmap_gfx#28 (byte*) bitmap_gfx#26 (byte*) bitmap_gfx#22 (byte*) bitmap_gfx#15 +Alias (byte*) bitmap_screen#0 = (byte*) bitmap_screen#32 (byte*) bitmap_screen#27 (byte*) bitmap_screen#25 (byte*) bitmap_screen#21 (byte*) bitmap_screen#15 +Alias (byte*) mulf_init::sqr1_hi#0 = (byte*~) mulf_init::$0 +Alias (byte*) mulf_init::sqr1_lo#0 = (byte*~) mulf_init::$6 +Alias (word) mulf_init::sqr#1 = (word~) mulf_init::$12 +Alias (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#4 +Alias (word) mulf_init::sqr#4 = (word) mulf_init::sqr#5 +Alias (byte*) mulf_init::sqr1_lo#3 = (byte*) mulf_init::sqr1_lo#4 +Alias (byte*) mulf_init::sqr1_hi#3 = (byte*) mulf_init::sqr1_hi#4 +Alias (byte) mulf_init::c#1 = (byte) mulf_init::c#4 +Alias (byte) mulf_init::x_255#0 = (byte~) mulf_init::$1 +Alias (byte) mulf_init::x_255#1 = (byte~) mulf_init::$15 (byte) mulf_init::x_255#4 +Alias (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#4 +Alias (byte*) mulf_init::sqr2_hi#1 = (byte*) mulf_init::sqr2_hi#4 +Alias (dword) mulf16u::return#0 = (dword) mulf16u::return#3 (dword) mulf16u::return#1 +Alias (word) mulf16u::a#0 = (word~) mulf16s::$0 +Alias (word) mulf16u::b#0 = (word~) mulf16s::$1 +Alias (dword) mulf16u::return#2 = (dword) mulf16u::return#4 +Alias (signed word) mulf16s::a#4 = (signed word) mulf16s::a#5 (signed word) mulf16s::a#8 +Alias (signed word) mulf16s::b#4 = (signed word) mulf16s::b#7 (signed word) mulf16s::b#6 +Alias (dword) mulf16s::m#0 = (dword~) mulf16s::$2 (dword) mulf16s::m#3 +Alias (word~) mulf16s::$16 = (word~) mulf16s::$11 +Alias (signed dword) mulf16s::return#0 = (signed dword~) mulf16s::$7 (signed dword) mulf16s::return#6 (signed dword) mulf16s::return#1 +Alias (dword) mulf16s::m#5 = (dword) mulf16s::m#6 +Alias (signed word) mulf16s::a#6 = (signed word) mulf16s::a#7 +Alias (word~) mulf16s::$17 = (word~) mulf16s::$15 +Alias (byte*) bitmap_gfx#13 = (byte*) bitmap_gfx#19 +Alias (byte*) bitmap_screen#13 = (byte*) bitmap_screen#18 +Alias (signed byte*) COS#17 = (signed byte*) COS#32 (signed byte*) COS#33 (signed byte*) COS#31 (signed byte*) COS#30 (signed byte*) COS#29 (signed byte*) COS#28 (signed byte*) COS#27 (signed byte*) COS#25 (signed byte*) COS#23 (signed byte*) COS#21 (signed byte*) COS#19 +Alias (byte*) bitmap_gfx#24 = (byte*) bitmap_gfx#3 (byte*) bitmap_gfx#8 (byte*) bitmap_gfx#44 (byte*) bitmap_gfx#43 (byte*) bitmap_gfx#42 (byte*) bitmap_gfx#40 (byte*) bitmap_gfx#38 (byte*) bitmap_gfx#36 (byte*) bitmap_gfx#34 (byte*) bitmap_gfx#29 +Alias (byte*) bitmap_screen#23 = (byte*) bitmap_screen#3 (byte*) bitmap_screen#8 (byte*) bitmap_screen#43 (byte*) bitmap_screen#42 (byte*) bitmap_screen#41 (byte*) bitmap_screen#39 (byte*) bitmap_screen#37 (byte*) bitmap_screen#35 (byte*) bitmap_screen#33 (byte*) bitmap_screen#28 +Alias (byte*) main::vicSelectGfxBank1_gfx#0 = (byte*) main::vicSelectGfxBank1_gfx#1 (byte*) main::vicSelectGfxBank1_toDd001_gfx#0 (byte*) main::vicSelectGfxBank1_toDd001_gfx#1 +Alias (byte) main::vicSelectGfxBank1_toDd001_return#0 = (byte~) main::vicSelectGfxBank1_toDd001_$3#0 (byte) main::vicSelectGfxBank1_toDd001_return#2 (byte) main::vicSelectGfxBank1_toDd001_return#1 (byte) main::vicSelectGfxBank1_toDd001_return#3 (byte~) main::vicSelectGfxBank1_$0#0 +Alias (byte*) main::toD0181_screen#0 = (byte*) main::toD0181_screen#1 +Alias (byte*) main::toD0181_gfx#0 = (byte*) main::toD0181_gfx#1 +Alias (byte) main::toD0181_return#0 = (byte~) main::toD0181_$8#0 (byte) main::toD0181_return#2 (byte) main::toD0181_return#1 (byte) main::toD0181_return#3 (byte~) main::$4 +Alias (byte*) bitmap_screen#12 = (byte*) bitmap_screen#19 (byte*) bitmap_screen#40 (byte*) bitmap_screen#38 +Alias (byte) main::angle#2 = (byte) main::angle#4 (byte) main::angle#6 (byte) main::angle#9 +Alias (byte*) bitmap_gfx#18 = (byte*) bitmap_gfx#20 (byte*) bitmap_gfx#41 (byte*) bitmap_gfx#39 +Alias (signed byte*) COS#10 = (signed byte*) COS#14 (signed byte*) COS#6 (signed byte*) COS#26 +Alias (byte) main::w#2 = (byte) main::w#3 +Alias (byte) main::angle#3 = (byte) main::angle#5 (byte) main::angle#7 +Alias (byte*) bitmap_screen#24 = (byte*) bitmap_screen#29 (byte*) bitmap_screen#34 +Alias (byte*) bitmap_gfx#25 = (byte*) bitmap_gfx#30 (byte*) bitmap_gfx#35 +Alias (signed byte*) COS#18 = (signed byte*) COS#20 (signed byte*) COS#22 +Alias (byte*) bitmap_gfx#14 = (byte*) bitmap_gfx#21 (byte*) bitmap_gfx#9 (byte*) bitmap_gfx#4 +Alias (byte*) bitmap_screen#14 = (byte*) bitmap_screen#20 (byte*) bitmap_screen#9 (byte*) bitmap_screen#4 +Alias (signed word) show_letter::to_x#1 = (signed word~) show_letter::$0 +Alias (signed word) show_letter::to_y#1 = (signed word~) show_letter::$1 +Alias (signed word) rotate::return_x#0 = (signed word) rotate::return_x#4 +Alias (signed word) rotate::return_y#0 = (signed word) rotate::return_y#4 +Alias (byte) show_letter::i#10 = (byte) show_letter::i#3 (byte) show_letter::i#2 (byte) show_letter::i#4 (byte) show_letter::i#8 (byte) show_letter::i#12 (byte) show_letter::i#11 (byte) show_letter::i#9 (byte) show_letter::i#6 (byte) show_letter::i#7 +Alias (byte) show_letter::angle#1 = (byte) show_letter::angle#2 (byte) show_letter::angle#8 (byte) show_letter::angle#7 (byte) show_letter::angle#12 (byte) show_letter::angle#11 (byte) show_letter::angle#9 (byte) show_letter::angle#5 (byte) show_letter::angle#10 (byte) show_letter::angle#6 +Alias (signed byte*) COS#11 = (signed byte*) COS#3 (signed byte*) COS#2 (signed byte*) COS#9 (signed byte*) COS#16 (signed byte*) COS#15 (signed byte*) COS#12 (signed byte*) COS#7 (signed byte*) COS#13 (signed byte*) COS#8 +Alias (signed word) show_letter::current_x#4 = (signed word) show_letter::current_x#8 (signed word) show_letter::current_x#9 (signed word) show_letter::current_x#7 (signed word) show_letter::current_x#6 (signed word) show_letter::current_x#5 +Alias (signed word) show_letter::current_y#4 = (signed word) show_letter::current_y#8 (signed word) show_letter::current_y#9 (signed word) show_letter::current_y#7 (signed word) show_letter::current_y#6 (signed word) show_letter::current_y#5 +Alias (signed word) show_letter::to_x#2 = (signed word) show_letter::$2_x +Alias (signed word) show_letter::to_y#2 = (signed word) show_letter::$2_y +Alias (signed word) show_letter::segment_to_x#0 = (signed word) show_letter::to_x#3 (signed word~) show_letter::$3 (signed word) show_letter::to_x#4 (signed word) show_letter::segment_to_x#1 (signed word) show_letter::current_x#1 (signed word) show_letter::segment_to_x#6 (signed word) show_letter::segment_to_x#2 (signed word) show_letter::segment_to_x#7 (signed word) show_letter::segment_to_x#3 (signed word) show_letter::current_x#2 (signed word) show_letter::segment_to_x#4 (signed word) show_letter::segment_to_x#5 (signed word) show_letter::current_x#3 +Alias (signed word) show_letter::segment_to_y#0 = (signed word) show_letter::to_y#3 (signed word~) show_letter::$4 (signed word) show_letter::to_y#4 (signed word) show_letter::segment_to_y#1 (signed word) show_letter::current_y#1 (signed word) show_letter::segment_to_y#6 (signed word) show_letter::segment_to_y#2 (signed word) show_letter::segment_to_y#7 (signed word) show_letter::segment_to_y#3 (signed word) show_letter::current_y#2 (signed word) show_letter::segment_to_y#4 (signed word) show_letter::segment_to_y#5 (signed word) show_letter::current_y#3 +Alias (signed word) show_letter::via_x#1 = (signed word~) show_letter::$5 +Alias (signed word) show_letter::via_y#1 = (signed word~) show_letter::$6 +Alias (signed word) rotate::return_x#1 = (signed word) rotate::return_x#5 +Alias (signed word) rotate::return_y#1 = (signed word) rotate::return_y#5 +Alias (signed word) show_letter::via_x#2 = (signed word) show_letter::$7_x +Alias (signed word) show_letter::via_y#2 = (signed word) show_letter::$7_y +Alias (signed word) show_letter::segment_via_x#0 = (signed word) show_letter::via_x#3 (signed word~) show_letter::$8 (signed word) show_letter::segment_via_x#2 (signed word) show_letter::segment_via_x#1 +Alias (signed word) show_letter::segment_via_y#0 = (signed word) show_letter::via_y#3 (signed word~) show_letter::$9 (signed word) show_letter::segment_via_y#2 (signed word) show_letter::segment_via_y#1 +Alias (byte) show_letter::segment_type#0 = (byte) show_letter::segment_type#1 +Alias (word) bitmap_line::x1#0 = (word~) show_letter::$12 +Alias (word) bitmap_line::y1#0 = (word~) show_letter::$13 +Alias (word) bitmap_line::x2#0 = (word~) show_letter::$14 +Alias (word) bitmap_line::y2#0 = (word~) show_letter::$15 +Alias (word) bitmap_line::x1#1 = (word~) bitmap_plot_spline_8seg::$0 +Alias (word) bitmap_line::y1#1 = (word~) bitmap_plot_spline_8seg::$1 +Alias (word) bitmap_line::x2#1 = (word~) bitmap_plot_spline_8seg::$2 +Alias (word) bitmap_line::y2#1 = (word~) bitmap_plot_spline_8seg::$3 +Alias (byte) bitmap_plot_spline_8seg::n#2 = (byte) bitmap_plot_spline_8seg::n#3 +Alias (signed byte*) COS#0 = (signed byte*~) $1 (signed byte*) COS#34 +Alias (signed word) rotate::cos_a#0 = (signed word~) rotate::$0 (signed word) rotate::cos_a#1 +Alias (signed dword) mulf16s::return#2 = (signed dword) mulf16s::return#7 +Alias (signed word) rotate::vector_y#2 = (signed word) rotate::vector_y#4 (signed word) rotate::vector_y#3 +Alias (byte) rotate::angle#2 = (byte) rotate::angle#4 (byte) rotate::angle#3 +Alias (signed word) rotate::vector_x#2 = (signed word) rotate::vector_x#5 (signed word) rotate::vector_x#4 (signed word) rotate::vector_x#3 +Alias (signed word) rotate::xr#0 = (signed word~) rotate::$3 (signed word) rotate::xr#4 (signed word) rotate::xr#2 +Alias (signed dword) mulf16s::return#3 = (signed dword) mulf16s::return#8 +Alias (signed word) rotate::yr#0 = (signed word~) rotate::$6 (signed word) rotate::yr#3 (signed word) rotate::yr#2 +Alias (signed word) rotate::sin_a#0 = (signed word~) rotate::$7 (signed word) rotate::sin_a#1 +Alias (signed dword) mulf16s::return#4 = (signed dword) mulf16s::return#9 +Alias (signed dword) mulf16s::return#10 = (signed dword) mulf16s::return#5 +Alias (signed word) rotate::xr#1 = (signed word) rotate::xr#3 +Alias (signed word) rotate::return_x#2 = (signed word) rotate::rotated_x#0 (signed word~) rotate::$16 (signed word) rotate::return_x#6 (signed word) rotate::return_x#3 +Alias (signed word) rotate::return_y#2 = (signed word) rotate::rotated_y#0 (signed word~) rotate::$19 (signed word) rotate::return_y#6 (signed word) rotate::return_y#3 +Alias (byte*) bitmap_gfx#10 = (byte*) bitmap_gfx#5 +Alias (byte*) bitmap_screen#10 = (byte*) bitmap_screen#5 +Successful SSA optimization Pass2AliasElimination +Alias (byte) bitmap_init::x#2 = (byte) bitmap_init::x#3 +Alias (byte*) bitmap_init::gfx#2 = (byte*) bitmap_init::gfx#4 +Alias (byte*) bitmap_gfx#23 = (byte*) bitmap_gfx#31 +Alias (byte*) bitmap_screen#22 = (byte*) bitmap_screen#30 +Alias (byte) bitmap_init::y#2 = (byte) bitmap_init::y#3 +Alias (byte*) bitmap_gfx#11 = (byte*) bitmap_gfx#16 +Alias (byte*) bitmap_screen#11 = (byte*) bitmap_screen#16 +Alias (word) bitmap_line::y#1 = (word) bitmap_line::y#6 +Alias (word) bitmap_line::y2#10 = (word) bitmap_line::y2#4 +Alias (word) bitmap_line::sy#1 = (word) bitmap_line::sy#6 +Alias (word) bitmap_line::dx#11 = (word) bitmap_line::dx#14 +Alias (word) bitmap_line::dy#11 = (word) bitmap_line::dy#3 +Alias (word) bitmap_line::sx#1 = (word) bitmap_line::sx#10 +Alias (word) bitmap_line::x#15 = (word) bitmap_line::x#9 +Alias (word) bitmap_line::x2#4 = (word) bitmap_line::x2#6 +Alias (word) bitmap_line::sx#11 = (word) bitmap_line::sx#6 +Alias (word) bitmap_line::dy#12 = (word) bitmap_line::dy#13 +Alias (word) bitmap_line::dx#12 = (word) bitmap_line::dx#5 +Alias (word) bitmap_line::sy#2 = (word) bitmap_line::sy#9 +Alias (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#3 +Alias (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#3 +Alias (byte) mulf_init::c#1 = (byte) mulf_init::c#3 +Alias (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#3 +Alias (byte) mulf_init::x_255#1 = (byte) mulf_init::x_255#3 +Alias (byte*) mulf_init::sqr2_hi#1 = (byte*) mulf_init::sqr2_hi#3 +Alias (signed word) mulf16s::b#4 = (signed word) mulf16s::b#5 +Alias (signed word) mulf16s::a#4 = (signed word) mulf16s::a#6 +Alias (byte) show_letter::i#10 = (byte) show_letter::i#5 +Alias (byte) show_letter::angle#1 = (byte) show_letter::angle#4 +Alias (signed byte*) COS#11 = (signed byte*) COS#5 +Alias (signed word) show_letter::current_x#10 = (signed word) show_letter::segment_to_x#0 +Alias (signed word) show_letter::current_y#10 = (signed word) show_letter::segment_to_y#0 +Successful SSA optimization Pass2AliasElimination +Self Phi Eliminated (signed word) spline_8segB::j_x#1 +Self Phi Eliminated (signed word) spline_8segB::j_y#1 +Self Phi Eliminated (byte) memset::c#2 +Self Phi Eliminated (byte*) memset::end#1 +Self Phi Eliminated (void*) memset::str#5 +Self Phi Eliminated (byte*) bitmap_init::gfx#2 +Self Phi Eliminated (byte*) bitmap_gfx#23 +Self Phi Eliminated (byte*) bitmap_screen#22 +Self Phi Eliminated (byte*) bitmap_gfx#11 +Self Phi Eliminated (byte*) bitmap_screen#11 +Self Phi Eliminated (word) bitmap_line::sy#1 +Self Phi Eliminated (word) bitmap_line::dx#11 +Self Phi Eliminated (word) bitmap_line::dy#11 +Self Phi Eliminated (word) bitmap_line::y2#10 +Self Phi Eliminated (word) bitmap_line::sx#1 +Self Phi Eliminated (word) bitmap_line::sx#11 +Self Phi Eliminated (word) bitmap_line::dy#12 +Self Phi Eliminated (word) bitmap_line::dx#12 +Self Phi Eliminated (word) bitmap_line::x2#4 +Self Phi Eliminated (word) bitmap_line::sy#2 +Self Phi Eliminated (byte) main::w#4 +Self Phi Eliminated (byte) main::angle#8 +Self Phi Eliminated (byte*) bitmap_screen#36 +Self Phi Eliminated (byte*) bitmap_gfx#37 +Self Phi Eliminated (signed byte*) COS#24 +Self Phi Eliminated (byte) main::w#2 +Self Phi Eliminated (byte) main::angle#3 +Self Phi Eliminated (byte*) bitmap_screen#24 +Self Phi Eliminated (byte*) bitmap_gfx#25 +Self Phi Eliminated (signed byte*) COS#18 +Self Phi Eliminated (byte*) bitmap_gfx#14 +Self Phi Eliminated (byte*) bitmap_screen#14 +Self Phi Eliminated (byte) show_letter::angle#1 +Self Phi Eliminated (signed byte*) COS#11 +Successful SSA optimization Pass2SelfPhiElimination +Identical Phi Values (signed word) spline_8segB::p1_x#1 (signed word) spline_8segB::p1_x#0 +Identical Phi Values (signed word) spline_8segB::p2_x#1 (signed word) spline_8segB::p2_x#0 +Identical Phi Values (signed word) spline_8segB::p0_x#1 (signed word) spline_8segB::p0_x#0 +Identical Phi Values (signed word) spline_8segB::p1_y#1 (signed word) spline_8segB::p1_y#0 +Identical Phi Values (signed word) spline_8segB::p2_y#1 (signed word) spline_8segB::p2_y#0 +Identical Phi Values (signed word) spline_8segB::p0_y#1 (signed word) spline_8segB::p0_y#0 +Identical Phi Values (signed word) spline_8segB::j_x#1 (signed word) spline_8segB::j_x#0 +Identical Phi Values (signed word) spline_8segB::j_y#1 (signed word) spline_8segB::j_y#0 +Identical Phi Values (byte) memset::c#2 (byte) memset::c#3 +Identical Phi Values (byte*) memset::end#1 (byte*) memset::end#0 +Identical Phi Values (void*) memset::str#5 (void*) memset::str#3 +Identical Phi Values (byte*) bitmap_init::gfx#1 (byte*) bitmap_init::gfx#0 +Identical Phi Values (byte*) bitmap_init::screen#1 (byte*) bitmap_init::screen#0 +Identical Phi Values (byte*) bitmap_init::gfx#2 (byte*) bitmap_init::gfx#1 +Identical Phi Values (byte*) bitmap_gfx#23 (byte*) bitmap_gfx#1 +Identical Phi Values (byte*) bitmap_screen#22 (byte*) bitmap_screen#1 +Identical Phi Values (byte*) bitmap_gfx#11 (byte*) bitmap_gfx#23 +Identical Phi Values (byte*) bitmap_screen#11 (byte*) bitmap_screen#22 +Identical Phi Values (word) bitmap_line::sy#1 (word) bitmap_line::sy#0 +Identical Phi Values (word) bitmap_line::dx#11 (word) bitmap_line::dx#0 +Identical Phi Values (word) bitmap_line::dy#11 (word) bitmap_line::dy#0 +Identical Phi Values (word) bitmap_line::y2#10 (word) bitmap_line::y2#11 +Identical Phi Values (word) bitmap_line::sx#1 (word) bitmap_line::sx#0 +Identical Phi Values (word) bitmap_line::sx#11 (word) bitmap_line::sx#0 +Identical Phi Values (word) bitmap_line::dy#12 (word) bitmap_line::dy#0 +Identical Phi Values (word) bitmap_line::dx#12 (word) bitmap_line::dx#0 +Identical Phi Values (word) bitmap_line::x2#4 (word) bitmap_line::x2#10 +Identical Phi Values (word) bitmap_line::sy#2 (word) bitmap_line::sy#0 +Identical Phi Values (word) mulf16u::a#1 (word) mulf16u::a#0 +Identical Phi Values (word) mulf16u::b#1 (word) mulf16u::b#0 +Identical Phi Values (byte*) bitmap_gfx#13 (byte*) bitmap_gfx#0 +Identical Phi Values (byte*) bitmap_screen#13 (byte*) bitmap_screen#0 +Identical Phi Values (signed byte*) COS#17 (signed byte*) COS#0 +Identical Phi Values (byte*) bitmap_gfx#24 (byte*) bitmap_gfx#11 +Identical Phi Values (byte*) bitmap_screen#23 (byte*) bitmap_screen#11 +Identical Phi Values (byte) main::w#2 (byte) main::w#4 +Identical Phi Values (byte) main::angle#3 (byte) main::angle#8 +Identical Phi Values (byte*) bitmap_screen#24 (byte*) bitmap_screen#36 +Identical Phi Values (byte*) bitmap_gfx#25 (byte*) bitmap_gfx#37 +Identical Phi Values (signed byte*) COS#18 (signed byte*) COS#24 +Identical Phi Values (byte*) bitmap_gfx#14 (byte*) bitmap_gfx#18 +Identical Phi Values (byte*) bitmap_screen#14 (byte*) bitmap_screen#12 +Identical Phi Values (byte) show_letter::angle#3 (byte) show_letter::angle#0 +Identical Phi Values (signed byte*) COS#4 (signed byte*) COS#10 +Identical Phi Values (byte) show_letter::angle#1 (byte) show_letter::angle#3 +Identical Phi Values (signed byte*) COS#11 (signed byte*) COS#4 +Identical Phi Values (signed byte*) COS#1 (signed byte*) COS#11 +Identical Phi Values (byte*) bitmap_gfx#10 (byte*) bitmap_gfx#14 +Identical Phi Values (byte*) bitmap_screen#10 (byte*) bitmap_screen#14 +Successful SSA optimization Pass2IdenticalPhiElimination +Identical Phi Values (void*) memset::return#0 (void*) memset::str#3 +Successful SSA optimization Pass2IdenticalPhiElimination +Identified duplicate assignment right side [114] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 +Identified duplicate assignment right side [875] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Successful SSA optimization Pass2DuplicateRValueIdentification +Simple Condition (bool~) spline_8segB::$30 [51] if((byte) spline_8segB::n#1!=rangelast(0,7)) goto spline_8segB::@1 +Simple Condition (bool~) memset::$1 [66] if((word) memset::num#2<=(byte) 0) goto memset::@1 +Simple Condition (bool~) memset::$4 [78] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@4 +Simple Condition (bool~) bitmap_init::$1 [97] if((byte) bitmap_init::bits#1!=(byte) 0) goto bitmap_init::@2 +Simple Condition (bool~) bitmap_init::$2 [101] if((byte) bitmap_init::x#1!=rangelast(0,$ff)) goto bitmap_init::@1 +Simple Condition (bool~) bitmap_init::$9 [117] if((byte~) bitmap_init::$7!=(byte) 7) goto bitmap_init::@6 +Simple Condition (bool~) bitmap_init::$11 [121] if((byte) bitmap_init::y#1!=rangelast(0,$ff)) goto bitmap_init::@5 +Simple Condition (bool~) bitmap_line::$12 [192] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 +Simple Condition (bool~) bitmap_line::$21 [215] if((word) bitmap_line::dy#0>=(word) bitmap_line::e#1) goto bitmap_line::@8 +Simple Condition (bool~) bitmap_line::$22 [218] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@7 +Simple Condition (bool~) bitmap_line::$27 [237] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@13 +Simple Condition (bool~) bitmap_line::$28 [240] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@12 +Simple Condition (bool~) abs_u16::$3 [248] if((byte) 0!=(byte~) abs_u16::$1) goto abs_u16::@1 +Simple Condition (bool~) sgn_u16::$2 [261] if((byte) 0!=(byte~) sgn_u16::$1) goto sgn_u16::@1 +Simple Condition (bool~) mulf_init::$9 [295] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 +Simple Condition (bool~) mulf_init::$14 [307] if((byte*) mulf_init::sqr1_lo#1!=(byte*~) mulf_init::$13) goto mulf_init::@1 +Simple Condition (bool~) mulf_init::$17 [324] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@6 +Simple Condition (bool~) mulf_init::$19 [329] if((byte*) mulf_init::sqr2_lo#1!=(byte*~) mulf_init::$18) goto mulf_init::@5 +Simple Condition (bool~) mulf16s::$4 [362] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 +Simple Condition (bool~) mulf16s::$6 [366] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 +Simple Condition (bool~) main::$10 [741] if(*((byte*) RASTER#0)!=(byte) $fe) goto main::@5 +Simple Condition (bool~) main::$11 [744] if(*((byte*) RASTER#0)!=(byte) $ff) goto main::@7 +Simple Condition (bool~) main::$12 [748] if((byte) main::w#1!=rangelast(0,$3c)) goto main::@5 +Simple Condition (bool~) show_letter::$10 [825] if((byte) show_letter::segment_type#0==(const byte) MOVE_TO) goto show_letter::@2 +Simple Condition (bool~) show_letter::$11 [831] if((byte) show_letter::segment_type#0==(const byte) SPLINE_TO) goto show_letter::@3 +Simple Condition (bool~) show_letter::$19 [861] if((byte) show_letter::i#1!=rangelast(0,$15)) goto show_letter::@1 +Simple Condition (bool~) bitmap_plot_spline_8seg::$5 [891] if((byte) bitmap_plot_spline_8seg::n#1!=rangelast(1,8)) goto bitmap_plot_spline_8seg::@1 +Successful SSA optimization Pass2ConditionalJumpSimplification +Rewriting ! if()-condition to reversed if() [174] (bool~) bitmap_line::$7 ← ! (bool~) bitmap_line::$6 +Successful SSA optimization Pass2ConditionalAndOrRewriting +Rewriting && if()-condition to two if()s [173] (bool~) bitmap_line::$6 ← (bool~) bitmap_line::$4 && (bool~) bitmap_line::$5 +Successful SSA optimization Pass2ConditionalAndOrRewriting +Constant right-side identified [0] (struct SplineVector16[9]) SPLINE_8SEG#0 ← { fill( 9, 0) } +Constant right-side identified [57] (byte~) spline_8segB::$32 ← (byte) 8 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Constant right-side identified [84] (byte[$100]) bitmap_plot_ylo#0 ← { fill( $100, 0) } +Constant right-side identified [85] (byte[$100]) bitmap_plot_yhi#0 ← { fill( $100, 0) } +Constant right-side identified [86] (byte[$100]) bitmap_plot_bit#0 ← { fill( $100, 0) } +Constant right-side identified [279] (byte[$200]) mulf_sqr1_lo#0 ← { fill( $200, 0) } +Constant right-side identified [280] (byte[$200]) mulf_sqr1_hi#0 ← { fill( $200, 0) } +Constant right-side identified [281] (byte[$200]) mulf_sqr2_lo#0 ← { fill( $200, 0) } +Constant right-side identified [282] (byte[$200]) mulf_sqr2_hi#0 ← { fill( $200, 0) } +Constant right-side identified [389] (struct Segment[$16]) letter_c#0 ← { fill( $16, 0) } +Constant right-side identified [391] (byte~) main::$16 ← (byte) 0 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [404] (byte~) main::$17 ← (byte) 1 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [417] (byte~) main::$18 ← (byte) 2 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [430] (byte~) main::$19 ← (byte) 3 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [443] (byte~) main::$20 ← (byte) 4 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [456] (byte~) main::$21 ← (byte) 5 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [469] (byte~) main::$22 ← (byte) 6 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [482] (byte~) main::$23 ← (byte) 7 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [495] (byte~) main::$24 ← (byte) 8 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [508] (byte~) main::$25 ← (byte) 9 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [521] (byte~) main::$26 ← (byte) $a * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [534] (byte~) main::$27 ← (byte) $b * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [547] (byte~) main::$28 ← (byte) $c * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [560] (byte~) main::$29 ← (byte) $d * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [573] (byte~) main::$30 ← (byte) $e * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [586] (byte~) main::$31 ← (byte) $f * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [599] (byte~) main::$32 ← (byte) $10 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [612] (byte~) main::$33 ← (byte) $11 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [625] (byte~) main::$34 ← (byte) $12 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [638] (byte~) main::$35 ← (byte) $13 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [651] (byte~) main::$36 ← (byte) $14 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [664] (byte~) main::$37 ← (byte) $15 * (const byte) SIZEOF_STRUCT_SEGMENT +Constant right-side identified [863] (byte~) bitmap_plot_spline_8seg::$6 ← (byte) 0 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const struct SplineVector16[9]) SPLINE_8SEG#0 = { fill( 9, 0) } +Constant (const byte) spline_8segB::n#0 = 0 +Constant (const byte) spline_8segB::$32 = 8*SIZEOF_STRUCT_SPLINEVECTOR16 +Constant (const byte*) bitmap_screen#0 = (byte*) 0 +Constant (const byte*) bitmap_gfx#0 = (byte*) 0 +Constant (const byte[$100]) bitmap_plot_ylo#0 = { fill( $100, 0) } +Constant (const byte[$100]) bitmap_plot_yhi#0 = { fill( $100, 0) } +Constant (const byte[$100]) bitmap_plot_bit#0 = { fill( $100, 0) } +Constant (const byte) bitmap_init::bits#0 = $80 +Constant (const byte) bitmap_init::x#0 = 0 +Constant (const byte) bitmap_init::bits#2 = $80 +Constant (const byte) bitmap_init::y#0 = 0 +Constant (const word) memset::num#0 = $3e8 +Constant (const byte) memset::c#1 = 0 +Constant (const word) memset::num#1 = $1f40 +Constant (const word) sgn_u16::return#2 = -1 +Constant (const word) sgn_u16::return#3 = 1 +Constant (const byte*) RASTER#0 = (byte*) 53266 +Constant (const byte*) D011#0 = (byte*) 53265 +Constant (const byte) VIC_BMM#0 = $20 +Constant (const byte) VIC_DEN#0 = $10 +Constant (const byte) VIC_RSEL#0 = 8 +Constant (const byte*) D018#0 = (byte*) 53272 +Constant (const byte*) CIA2_PORT_A#0 = (byte*) 56576 +Constant (const byte*) CIA2_PORT_A_DDR#0 = (byte*) 56578 +Constant (const byte) BLACK#0 = 0 +Constant (const byte) WHITE#0 = 1 +Constant (const byte[$200]) mulf_sqr1_lo#0 = { fill( $200, 0) } +Constant (const byte[$200]) mulf_sqr1_hi#0 = { fill( $200, 0) } +Constant (const byte[$200]) mulf_sqr2_lo#0 = { fill( $200, 0) } +Constant (const byte[$200]) mulf_sqr2_hi#0 = { fill( $200, 0) } +Constant (const word) mulf_init::sqr#0 = 0 +Constant (const byte) mulf_init::x_2#0 = 0 +Constant (const byte) mulf_init::c#0 = 0 +Constant (const byte) mulf_init::x_255#0 = -1 +Constant (const byte) mulf_init::dir#0 = $ff +Constant (const byte) mulf_init::dir#1 = 1 +Constant (const word*) mulf16u::memA#0 = (word*) 248 +Constant (const word*) mulf16u::memB#0 = (word*) 250 +Constant (const dword*) mulf16u::memR#0 = (dword*) 252 +Constant (const byte*) PRINT_SCREEN#0 = (byte*) 1024 +Constant (const byte*) BITMAP_SCREEN#0 = (byte*) 23552 +Constant (const byte*) BITMAP_GRAPHICS#0 = (byte*) 24576 +Constant (const struct Segment[$16]) letter_c#0 = { fill( $16, 0) } +Constant (const byte) main::$16 = 0*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$17 = 1*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$18 = 2*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$19 = 3*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$20 = 4*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$21 = 5*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$22 = 6*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$23 = 7*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$24 = 8*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$25 = 9*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$26 = $a*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$27 = $b*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$28 = $c*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$29 = $d*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$30 = $e*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$31 = $f*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$32 = $10*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$33 = $11*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$34 = $12*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$35 = $13*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$36 = $14*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::$37 = $15*SIZEOF_STRUCT_SEGMENT +Constant (const byte) main::angle#0 = 0 +Constant (const byte) main::w#0 = 0 +Constant (const signed word) show_letter::current_x#0 = 0 +Constant (const signed word) show_letter::current_y#0 = 0 +Constant (const byte) show_letter::i#0 = 0 +Constant (const byte) bitmap_plot_spline_8seg::$6 = 0*SIZEOF_STRUCT_SPLINEVECTOR16 +Constant (const byte) bitmap_plot_spline_8seg::n#0 = 1 +Constant (const signed byte[$140]) SIN#0 = kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + }} +Successful SSA optimization Pass2ConstantIdentification +Constant (const byte*) mulf_init::sqr2_hi#0 = mulf_sqr2_hi#0 +Constant (const byte*) mulf_init::sqr2_lo#0 = mulf_sqr2_lo#0 +Constant (const byte*) bitmap_init::gfx#0 = BITMAP_GRAPHICS#0 +Constant (const byte*) bitmap_init::screen#0 = BITMAP_SCREEN#0 +Constant (const byte) bitmap_clear::bgcol#0 = BLACK#0 +Constant (const byte) bitmap_clear::fgcol#0 = WHITE#0 +Constant (const byte*) main::vicSelectGfxBank1_gfx#0 = BITMAP_SCREEN#0 +Constant (const byte*) main::toD0181_screen#0 = BITMAP_SCREEN#0 +Constant (const byte*) main::toD0181_gfx#0 = BITMAP_GRAPHICS#0 +Constant (const byte) bitmap_clear::bgcol#1 = BLACK#0 +Constant (const byte) bitmap_clear::fgcol#1 = WHITE#0 +Successful SSA optimization Pass2ConstantIdentification +Constant (const byte*) bitmap_gfx#1 = bitmap_init::gfx#0 +Constant (const byte*) bitmap_screen#1 = bitmap_init::screen#0 +Successful SSA optimization Pass2ConstantIdentification +Constant value identified (signed word*)SPLINE_8SEG#0 in [37] (signed word*) spline_8segB::$33 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Constant value identified (signed word*)SPLINE_8SEG#0 in [39] (signed word*) spline_8segB::$34 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)SPLINE_8SEG#0 in [58] (signed word*) spline_8segB::$35 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Constant value identified (signed word*)SPLINE_8SEG#0 in [60] (signed word*) spline_8segB::$36 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (byte*)letter_c#0 in [392] (byte*) main::$38 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [394] (struct SplineVector16*) main::$39 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [399] (struct SplineVector16*) main::$40 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [405] (byte*) main::$41 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [407] (struct SplineVector16*) main::$42 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [412] (struct SplineVector16*) main::$43 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [418] (byte*) main::$44 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [420] (struct SplineVector16*) main::$45 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [425] (struct SplineVector16*) main::$46 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [431] (byte*) main::$47 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [433] (struct SplineVector16*) main::$48 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [438] (struct SplineVector16*) main::$49 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [444] (byte*) main::$50 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [446] (struct SplineVector16*) main::$51 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [451] (struct SplineVector16*) main::$52 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [457] (byte*) main::$53 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [459] (struct SplineVector16*) main::$54 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [464] (struct SplineVector16*) main::$55 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [470] (byte*) main::$56 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [472] (struct SplineVector16*) main::$57 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [477] (struct SplineVector16*) main::$58 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [483] (byte*) main::$59 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [485] (struct SplineVector16*) main::$60 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [490] (struct SplineVector16*) main::$61 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [496] (byte*) main::$62 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [498] (struct SplineVector16*) main::$63 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [503] (struct SplineVector16*) main::$64 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [509] (byte*) main::$65 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [511] (struct SplineVector16*) main::$66 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [516] (struct SplineVector16*) main::$67 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [522] (byte*) main::$68 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [524] (struct SplineVector16*) main::$69 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [529] (struct SplineVector16*) main::$70 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [535] (byte*) main::$71 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [537] (struct SplineVector16*) main::$72 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [542] (struct SplineVector16*) main::$73 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [548] (byte*) main::$74 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [550] (struct SplineVector16*) main::$75 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [555] (struct SplineVector16*) main::$76 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [561] (byte*) main::$77 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [563] (struct SplineVector16*) main::$78 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [568] (struct SplineVector16*) main::$79 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [574] (byte*) main::$80 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [576] (struct SplineVector16*) main::$81 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [581] (struct SplineVector16*) main::$82 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [587] (byte*) main::$83 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [589] (struct SplineVector16*) main::$84 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [594] (struct SplineVector16*) main::$85 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [600] (byte*) main::$86 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [602] (struct SplineVector16*) main::$87 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [607] (struct SplineVector16*) main::$88 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [613] (byte*) main::$89 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [615] (struct SplineVector16*) main::$90 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [620] (struct SplineVector16*) main::$91 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [626] (byte*) main::$92 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [628] (struct SplineVector16*) main::$93 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [633] (struct SplineVector16*) main::$94 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [639] (byte*) main::$95 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [641] (struct SplineVector16*) main::$96 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [646] (struct SplineVector16*) main::$97 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [652] (byte*) main::$98 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [654] (struct SplineVector16*) main::$99 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [659] (struct SplineVector16*) main::$100 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [665] (byte*) main::$101 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (struct SplineVector16*)letter_c#0 in [667] (struct SplineVector16*) main::$102 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [672] (struct SplineVector16*) main::$103 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (word)main::vicSelectGfxBank1_gfx#0 in [694] (word~) main::vicSelectGfxBank1_toDd001_$0#0 ← (word)(const byte*) main::vicSelectGfxBank1_gfx#0 +Constant value identified (word)main::toD0181_screen#0 in [708] (word~) main::toD0181_$0#0 ← (word)(const byte*) main::toD0181_screen#0 +Constant value identified (word)main::toD0181_gfx#0 in [712] (word~) main::toD0181_$4#0 ← (word)(const byte*) main::toD0181_gfx#0 +Constant value identified (struct SplineVector16*)letter_c#0 in [766] (struct SplineVector16*) show_letter::$23 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [769] (struct SplineVector16*) show_letter::$24 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant value identified (struct SplineVector16*)letter_c#0 in [792] (struct SplineVector16*) show_letter::$25 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (struct SplineVector16*)letter_c#0 in [795] (struct SplineVector16*) show_letter::$26 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant value identified (byte*)letter_c#0 in [818] (byte*) show_letter::$27 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Constant value identified (signed word*)SPLINE_8SEG#0 in [864] (signed word*) bitmap_plot_spline_8seg::$10 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Constant value identified (signed word*)SPLINE_8SEG#0 in [866] (signed word*) bitmap_plot_spline_8seg::$11 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)SPLINE_8SEG#0 in [873] (signed word*) bitmap_plot_spline_8seg::$14 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Constant value identified (signed word*)SPLINE_8SEG#0 in [876] (signed word*) bitmap_plot_spline_8seg::$15 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)SPLINE_8SEG#0 in [885] (signed word*) bitmap_plot_spline_8seg::$12 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Constant value identified (signed word*)SPLINE_8SEG#0 in [887] (signed word*) bitmap_plot_spline_8seg::$13 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Successful SSA optimization Pass2ConstantValues +if() condition always true - replacing block destination [729] if(true) goto main::@2 +if() condition always true - replacing block destination [752] if(true) goto main::@14 +Successful SSA optimization Pass2ConstantIfs +Resolved ranged next value [49] spline_8segB::n#1 ← ++ spline_8segB::n#2 to ++ +Resolved ranged comparison value [51] if(spline_8segB::n#1!=rangelast(0,7)) goto spline_8segB::@1 to (number) 8 +Resolved ranged next value [99] bitmap_init::x#1 ← ++ bitmap_init::x#2 to ++ +Resolved ranged comparison value [101] if(bitmap_init::x#1!=rangelast(0,$ff)) goto bitmap_init::@1 to (number) 0 +Resolved ranged next value [119] bitmap_init::y#1 ← ++ bitmap_init::y#2 to ++ +Resolved ranged comparison value [121] if(bitmap_init::y#1!=rangelast(0,$ff)) goto bitmap_init::@5 to (number) 0 +Resolved ranged next value [746] main::w#1 ← ++ main::w#4 to ++ +Resolved ranged comparison value [748] if(main::w#1!=rangelast(0,$3c)) goto main::@5 to (number) $3d +Resolved ranged next value [859] show_letter::i#1 ← ++ show_letter::i#10 to ++ +Resolved ranged comparison value [861] if(show_letter::i#1!=rangelast(0,$15)) goto show_letter::@1 to (number) $16 +Resolved ranged next value [889] bitmap_plot_spline_8seg::n#1 ← ++ bitmap_plot_spline_8seg::n#2 to ++ +Resolved ranged comparison value [891] if(bitmap_plot_spline_8seg::n#1!=rangelast(1,8)) goto bitmap_plot_spline_8seg::@1 to (number) 9 +Simplifying constant evaluating to zero (byte) 0*(const byte) SIZEOF_STRUCT_SEGMENT in +Simplifying constant evaluating to zero (byte) 0*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16 in +Successful SSA optimization PassNSimplifyConstantZero +Simplifying expression containing zero (signed word*)SPLINE_8SEG#0 in [37] (signed word*) spline_8segB::$33 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)SPLINE_8SEG#0 in [58] (signed word*) spline_8segB::$35 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [392] (byte*) main::$38 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero main::$38 in [393] *((byte*) main::$38 + (const byte) main::$16) ← (const byte) MOVE_TO +Simplifying expression containing zero (signed word*)main::$39 in [395] (signed word*) main::$104 ← (signed word*)(struct SplineVector16*) main::$39 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero main::$104 in [396] *((signed word*) main::$104 + (const byte) main::$16) ← (signed byte) $6c +Simplifying expression containing zero main::$105 in [398] *((signed word*) main::$105 + (const byte) main::$16) ← (signed word) $92 +Simplifying expression containing zero (signed word*)main::$40 in [400] (signed word*) main::$106 ← (signed word*)(struct SplineVector16*) main::$40 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero main::$106 in [401] *((signed word*) main::$106 + (const byte) main::$16) ← (signed byte) 0 +Simplifying expression containing zero main::$107 in [403] *((signed word*) main::$107 + (const byte) main::$16) ← (signed byte) 0 +Simplifying expression containing zero (byte*)letter_c#0 in [405] (byte*) main::$41 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$42 in [408] (signed word*) main::$108 ← (signed word*)(struct SplineVector16*) main::$42 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$43 in [413] (signed word*) main::$110 ← (signed word*)(struct SplineVector16*) main::$43 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [418] (byte*) main::$44 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$45 in [421] (signed word*) main::$112 ← (signed word*)(struct SplineVector16*) main::$45 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$46 in [426] (signed word*) main::$114 ← (signed word*)(struct SplineVector16*) main::$46 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [431] (byte*) main::$47 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$48 in [434] (signed word*) main::$116 ← (signed word*)(struct SplineVector16*) main::$48 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$49 in [439] (signed word*) main::$118 ← (signed word*)(struct SplineVector16*) main::$49 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [444] (byte*) main::$50 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$51 in [447] (signed word*) main::$120 ← (signed word*)(struct SplineVector16*) main::$51 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$52 in [452] (signed word*) main::$122 ← (signed word*)(struct SplineVector16*) main::$52 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [457] (byte*) main::$53 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$54 in [460] (signed word*) main::$124 ← (signed word*)(struct SplineVector16*) main::$54 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$55 in [465] (signed word*) main::$126 ← (signed word*)(struct SplineVector16*) main::$55 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [470] (byte*) main::$56 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$57 in [473] (signed word*) main::$128 ← (signed word*)(struct SplineVector16*) main::$57 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$58 in [478] (signed word*) main::$130 ← (signed word*)(struct SplineVector16*) main::$58 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [483] (byte*) main::$59 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$60 in [486] (signed word*) main::$132 ← (signed word*)(struct SplineVector16*) main::$60 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$61 in [491] (signed word*) main::$134 ← (signed word*)(struct SplineVector16*) main::$61 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [496] (byte*) main::$62 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$63 in [499] (signed word*) main::$136 ← (signed word*)(struct SplineVector16*) main::$63 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$64 in [504] (signed word*) main::$138 ← (signed word*)(struct SplineVector16*) main::$64 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [509] (byte*) main::$65 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$66 in [512] (signed word*) main::$140 ← (signed word*)(struct SplineVector16*) main::$66 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$67 in [517] (signed word*) main::$142 ← (signed word*)(struct SplineVector16*) main::$67 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [522] (byte*) main::$68 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$69 in [525] (signed word*) main::$144 ← (signed word*)(struct SplineVector16*) main::$69 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$70 in [530] (signed word*) main::$146 ← (signed word*)(struct SplineVector16*) main::$70 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [535] (byte*) main::$71 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$72 in [538] (signed word*) main::$148 ← (signed word*)(struct SplineVector16*) main::$72 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$73 in [543] (signed word*) main::$150 ← (signed word*)(struct SplineVector16*) main::$73 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [548] (byte*) main::$74 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$75 in [551] (signed word*) main::$152 ← (signed word*)(struct SplineVector16*) main::$75 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$76 in [556] (signed word*) main::$154 ← (signed word*)(struct SplineVector16*) main::$76 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [561] (byte*) main::$77 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$78 in [564] (signed word*) main::$156 ← (signed word*)(struct SplineVector16*) main::$78 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$79 in [569] (signed word*) main::$158 ← (signed word*)(struct SplineVector16*) main::$79 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [574] (byte*) main::$80 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$81 in [577] (signed word*) main::$160 ← (signed word*)(struct SplineVector16*) main::$81 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$82 in [582] (signed word*) main::$162 ← (signed word*)(struct SplineVector16*) main::$82 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [587] (byte*) main::$83 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$84 in [590] (signed word*) main::$164 ← (signed word*)(struct SplineVector16*) main::$84 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$85 in [595] (signed word*) main::$166 ← (signed word*)(struct SplineVector16*) main::$85 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [600] (byte*) main::$86 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$87 in [603] (signed word*) main::$168 ← (signed word*)(struct SplineVector16*) main::$87 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$88 in [608] (signed word*) main::$170 ← (signed word*)(struct SplineVector16*) main::$88 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [613] (byte*) main::$89 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$90 in [616] (signed word*) main::$172 ← (signed word*)(struct SplineVector16*) main::$90 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$91 in [621] (signed word*) main::$174 ← (signed word*)(struct SplineVector16*) main::$91 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [626] (byte*) main::$92 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$93 in [629] (signed word*) main::$176 ← (signed word*)(struct SplineVector16*) main::$93 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$94 in [634] (signed word*) main::$178 ← (signed word*)(struct SplineVector16*) main::$94 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [639] (byte*) main::$95 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$96 in [642] (signed word*) main::$180 ← (signed word*)(struct SplineVector16*) main::$96 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$97 in [647] (signed word*) main::$182 ← (signed word*)(struct SplineVector16*) main::$97 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [652] (byte*) main::$98 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$99 in [655] (signed word*) main::$184 ← (signed word*)(struct SplineVector16*) main::$99 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$100 in [660] (signed word*) main::$186 ← (signed word*)(struct SplineVector16*) main::$100 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [665] (byte*) main::$101 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)main::$102 in [668] (signed word*) main::$188 ← (signed word*)(struct SplineVector16*) main::$102 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)main::$103 in [673] (signed word*) main::$190 ← (signed word*)(struct SplineVector16*) main::$103 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)show_letter::$23 in [767] (signed word*) show_letter::$28 ← (signed word*)(struct SplineVector16*) show_letter::$23 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)show_letter::$25 in [793] (signed word*) show_letter::$30 ← (signed word*)(struct SplineVector16*) show_letter::$25 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (byte*)letter_c#0 in [818] (byte*) show_letter::$27 ← (byte*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Simplifying expression containing zero (signed word*)SPLINE_8SEG#0 in [864] (signed word*) bitmap_plot_spline_8seg::$10 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero bitmap_plot_spline_8seg::$10 in [865] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*) bitmap_plot_spline_8seg::$10 + (const byte) bitmap_plot_spline_8seg::$6) +Simplifying expression containing zero bitmap_plot_spline_8seg::$11 in [867] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*) bitmap_plot_spline_8seg::$11 + (const byte) bitmap_plot_spline_8seg::$6) +Simplifying expression containing zero (signed word*)SPLINE_8SEG#0 in [873] (signed word*) bitmap_plot_spline_8seg::$14 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Simplifying expression containing zero (signed word*)SPLINE_8SEG#0 in [885] (signed word*) bitmap_plot_spline_8seg::$12 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Successful SSA optimization PassNSimplifyExpressionWithZero +Eliminating unused variable (void*) memset::return#2 and assignment [80] (void*) memset::return#2 ← (void*) memset::str#3 +Eliminating unused variable (void*) memset::return#3 and assignment [83] (void*) memset::return#3 ← (void*) memset::str#3 +Eliminating unused variable (struct SplineVector16) rotate::return#0 and assignment [641] (struct SplineVector16) rotate::return#0 ← struct-unwound {(signed word) rotate::return_x#2, (signed word) rotate::return_y#2} +Eliminating unused variable (struct SplineVector16) rotate::return#1 and assignment [642] (struct SplineVector16) rotate::return#1 ← struct-unwound {(signed word) rotate::return_x#2, (signed word) rotate::return_y#2} +Eliminating unused constant (const byte) main::$16 +Eliminating unused constant (const byte) bitmap_plot_spline_8seg::$6 +Eliminating unused constant (const byte) OFFSET_STRUCT_SPLINEVECTOR16_X +Eliminating unused constant (const byte) OFFSET_STRUCT_SEGMENT_TYPE +Eliminating unused constant (const byte*) bitmap_screen#0 +Eliminating unused constant (const byte*) bitmap_gfx#0 +Successful SSA optimization PassNEliminateUnusedVars +Eliminating variable (byte*~) main::$15 from unused block main::@14 +Removing unused block main::@13 +Removing unused block main::@14 +Removing unused block main::@return +Successful SSA optimization Pass2EliminateUnusedBlocks +Adding number conversion cast (unumber) 8 in if((byte) spline_8segB::n#1!=(number) 8) goto spline_8segB::@1 +Adding number conversion cast (unumber) 0 in if((byte) bitmap_init::x#1!=(number) 0) goto bitmap_init::@1 +Adding number conversion cast (unumber) 0 in if((byte) bitmap_init::y#1!=(number) 0) goto bitmap_init::@5 +Adding number conversion cast (unumber) $3d in if((byte) main::w#1!=(number) $3d) goto main::@5 +Adding number conversion cast (unumber) $16 in if((byte) show_letter::i#1!=(number) $16) goto show_letter::@1 +Adding number conversion cast (unumber) 9 in if((byte) bitmap_plot_spline_8seg::n#1!=(number) 9) goto bitmap_plot_spline_8seg::@1 +Successful SSA optimization PassNAddNumberTypeConversions +Inlining cast (byte*) bitmap_plot::plotter#0 ← (byte*)(word~) bitmap_plot::$3 +Successful SSA optimization Pass2InlineCast +Simplifying constant integer cast 8 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast $3d +Simplifying constant integer cast $16 +Simplifying constant integer cast 9 +Successful SSA optimization PassNCastSimplification +Finalized unsigned number type (byte) 8 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) $3d +Finalized unsigned number type (byte) $16 +Finalized unsigned number type (byte) 9 +Successful SSA optimization PassNFinalizeNumberTypeConversions +Alias (byte~) bitmap_init::$7 = (byte~) bitmap_init::$3 +Alias (byte~) bitmap_plot_spline_8seg::$8 = (byte~) bitmap_plot_spline_8seg::$7 +Successful SSA optimization Pass2AliasElimination +Self Phi Eliminated (byte) main::angle#8 +Self Phi Eliminated (byte*) bitmap_screen#36 +Self Phi Eliminated (byte*) bitmap_gfx#37 +Self Phi Eliminated (signed byte*) COS#24 +Successful SSA optimization Pass2SelfPhiElimination +Identical Phi Values (byte) main::angle#8 (byte) main::angle#2 +Identical Phi Values (byte*) bitmap_screen#36 (byte*) bitmap_screen#12 +Identical Phi Values (byte*) bitmap_gfx#37 (byte*) bitmap_gfx#18 +Identical Phi Values (signed byte*) COS#24 (signed byte*) COS#10 +Successful SSA optimization Pass2IdenticalPhiElimination +Simple Condition (bool~) bitmap_line::$4 [102] if((word) bitmap_line::dx#0==(byte) 0) goto bitmap_line::@24 +Simple Condition (bool~) bitmap_line::$5 [638] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 +Successful SSA optimization Pass2ConditionalJumpSimplification +Negating conditional jump and destination [102] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 +Successful SSA optimization Pass2ConditionalJumpSequenceImprovement +Constant right-side identified [26] (signed word*) spline_8segB::$34 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [40] (signed word*) spline_8segB::$36 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [157] (byte*) mulf_init::sqr1_hi#0 ← (const byte[$200]) mulf_sqr1_hi#0 + (byte) 1 +Constant right-side identified [158] (byte*) mulf_init::sqr1_lo#0 ← (const byte[$200]) mulf_sqr1_lo#0 + (byte) 1 +Constant right-side identified [171] (byte*~) mulf_init::$13 ← (const byte[$200]) mulf_sqr1_lo#0 + (word) $200 +Constant right-side identified [183] (byte*~) mulf_init::$18 ← (const byte[$200]) mulf_sqr2_lo#0 + (word) $1ff +Constant right-side identified [185] (byte*~) mulf_init::$2 ← (const byte[$200]) mulf_sqr2_lo#0 + (word) $1ff +Constant right-side identified [186] (byte*~) mulf_init::$3 ← (const byte[$200]) mulf_sqr1_lo#0 + (word) $100 +Constant right-side identified [188] (byte*~) mulf_init::$4 ← (const byte[$200]) mulf_sqr2_hi#0 + (word) $1ff +Constant right-side identified [189] (byte*~) mulf_init::$5 ← (const byte[$200]) mulf_sqr1_hi#0 + (word) $100 +Constant right-side identified [219] (struct SplineVector16*) main::$39 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [224] (struct SplineVector16*) main::$40 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [231] (struct SplineVector16*) main::$42 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [236] (struct SplineVector16*) main::$43 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [243] (struct SplineVector16*) main::$45 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [248] (struct SplineVector16*) main::$46 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [255] (struct SplineVector16*) main::$48 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [260] (struct SplineVector16*) main::$49 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [267] (struct SplineVector16*) main::$51 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [272] (struct SplineVector16*) main::$52 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [279] (struct SplineVector16*) main::$54 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [284] (struct SplineVector16*) main::$55 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [291] (struct SplineVector16*) main::$57 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [296] (struct SplineVector16*) main::$58 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [303] (struct SplineVector16*) main::$60 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [308] (struct SplineVector16*) main::$61 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [315] (struct SplineVector16*) main::$63 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [320] (struct SplineVector16*) main::$64 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [327] (struct SplineVector16*) main::$66 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [332] (struct SplineVector16*) main::$67 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [339] (struct SplineVector16*) main::$69 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [344] (struct SplineVector16*) main::$70 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [351] (struct SplineVector16*) main::$72 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [356] (struct SplineVector16*) main::$73 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [363] (struct SplineVector16*) main::$75 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [368] (struct SplineVector16*) main::$76 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [375] (struct SplineVector16*) main::$78 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [380] (struct SplineVector16*) main::$79 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [387] (struct SplineVector16*) main::$81 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [392] (struct SplineVector16*) main::$82 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [399] (struct SplineVector16*) main::$84 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [404] (struct SplineVector16*) main::$85 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [411] (struct SplineVector16*) main::$87 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [416] (struct SplineVector16*) main::$88 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [423] (struct SplineVector16*) main::$90 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [428] (struct SplineVector16*) main::$91 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [435] (struct SplineVector16*) main::$93 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [440] (struct SplineVector16*) main::$94 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [447] (struct SplineVector16*) main::$96 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [452] (struct SplineVector16*) main::$97 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [459] (struct SplineVector16*) main::$99 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [464] (struct SplineVector16*) main::$100 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [471] (struct SplineVector16*) main::$102 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [476] (struct SplineVector16*) main::$103 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [500] (byte~) main::$5 ← (const byte) VIC_BMM#0 | (const byte) VIC_DEN#0 +Constant right-side identified [516] (struct SplineVector16*) show_letter::$23 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [519] (struct SplineVector16*) show_letter::$24 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_TO +Constant right-side identified [535] (struct SplineVector16*) show_letter::$25 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [538] (struct SplineVector16*) show_letter::$26 ← (struct SplineVector16*)(const struct Segment[$16]) letter_c#0 + (const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant right-side identified [576] (signed word*) bitmap_plot_spline_8seg::$11 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [585] (signed word*) bitmap_plot_spline_8seg::$15 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [591] (signed word*) bitmap_plot_spline_8seg::$13 ← (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [596] (signed byte*) COS#0 ← (const signed byte[$140]) SIN#0 + (byte) $40 +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const signed word*) spline_8segB::$33 = (signed word*)SPLINE_8SEG#0 +Constant (const signed word*) spline_8segB::$34 = (signed word*)SPLINE_8SEG#0+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) spline_8segB::$35 = (signed word*)SPLINE_8SEG#0 +Constant (const signed word*) spline_8segB::$36 = (signed word*)SPLINE_8SEG#0+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const byte*) mulf_init::sqr1_hi#0 = mulf_sqr1_hi#0+1 +Constant (const byte*) mulf_init::sqr1_lo#0 = mulf_sqr1_lo#0+1 +Constant (const byte*) mulf_init::$13 = mulf_sqr1_lo#0+$200 +Constant (const byte*) mulf_init::$18 = mulf_sqr2_lo#0+$1ff +Constant (const byte*) mulf_init::$2 = mulf_sqr2_lo#0+$1ff +Constant (const byte*) mulf_init::$3 = mulf_sqr1_lo#0+$100 +Constant (const byte*) mulf_init::$4 = mulf_sqr2_hi#0+$1ff +Constant (const byte*) mulf_init::$5 = mulf_sqr1_hi#0+$100 +Constant (const byte*) main::$38 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$39 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$40 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$41 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$42 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$43 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$44 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$45 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$46 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$47 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$48 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$49 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$50 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$51 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$52 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$53 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$54 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$55 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$56 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$57 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$58 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$59 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$60 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$61 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$62 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$63 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$64 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$65 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$66 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$67 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$68 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$69 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$70 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$71 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$72 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$73 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$74 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$75 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$76 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$77 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$78 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$79 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$80 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$81 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$82 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$83 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$84 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$85 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$86 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$87 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$88 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$89 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$90 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$91 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$92 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$93 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$94 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$95 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$96 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$97 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$98 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$99 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$100 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) main::$101 = (byte*)letter_c#0 +Constant (const struct SplineVector16*) main::$102 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) main::$103 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const word) main::vicSelectGfxBank1_toDd001_$0#0 = (word)main::vicSelectGfxBank1_gfx#0 +Constant (const word) main::toD0181_$0#0 = (word)main::toD0181_screen#0 +Constant (const word) main::toD0181_$4#0 = (word)main::toD0181_gfx#0 +Constant (const byte) main::$5 = VIC_BMM#0|VIC_DEN#0 +Constant (const struct SplineVector16*) show_letter::$23 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) show_letter::$24 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO +Constant (const struct SplineVector16*) show_letter::$25 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const struct SplineVector16*) show_letter::$26 = (struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA +Constant (const byte*) show_letter::$27 = (byte*)letter_c#0 +Constant (const signed word*) bitmap_plot_spline_8seg::$10 = (signed word*)SPLINE_8SEG#0 +Constant (const signed word*) bitmap_plot_spline_8seg::$11 = (signed word*)SPLINE_8SEG#0+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) bitmap_plot_spline_8seg::$14 = (signed word*)SPLINE_8SEG#0 +Constant (const signed word*) bitmap_plot_spline_8seg::$15 = (signed word*)SPLINE_8SEG#0+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) bitmap_plot_spline_8seg::$12 = (signed word*)SPLINE_8SEG#0 +Constant (const signed word*) bitmap_plot_spline_8seg::$13 = (signed word*)SPLINE_8SEG#0+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed byte*) COS#0 = SIN#0+$40 +Successful SSA optimization Pass2ConstantIdentification +Constant value identified (signed word*)main::$39 in [220] (signed word*) main::$104 ← (signed word*)(const struct SplineVector16*) main::$39 +Constant value identified (signed word*)main::$39 in [222] (signed word*) main::$105 ← (signed word*)(const struct SplineVector16*) main::$39 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$40 in [225] (signed word*) main::$106 ← (signed word*)(const struct SplineVector16*) main::$40 +Constant value identified (signed word*)main::$40 in [227] (signed word*) main::$107 ← (signed word*)(const struct SplineVector16*) main::$40 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$42 in [232] (signed word*) main::$108 ← (signed word*)(const struct SplineVector16*) main::$42 +Constant value identified (signed word*)main::$42 in [234] (signed word*) main::$109 ← (signed word*)(const struct SplineVector16*) main::$42 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$43 in [237] (signed word*) main::$110 ← (signed word*)(const struct SplineVector16*) main::$43 +Constant value identified (signed word*)main::$43 in [239] (signed word*) main::$111 ← (signed word*)(const struct SplineVector16*) main::$43 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$45 in [244] (signed word*) main::$112 ← (signed word*)(const struct SplineVector16*) main::$45 +Constant value identified (signed word*)main::$45 in [246] (signed word*) main::$113 ← (signed word*)(const struct SplineVector16*) main::$45 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$46 in [249] (signed word*) main::$114 ← (signed word*)(const struct SplineVector16*) main::$46 +Constant value identified (signed word*)main::$46 in [251] (signed word*) main::$115 ← (signed word*)(const struct SplineVector16*) main::$46 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$48 in [256] (signed word*) main::$116 ← (signed word*)(const struct SplineVector16*) main::$48 +Constant value identified (signed word*)main::$48 in [258] (signed word*) main::$117 ← (signed word*)(const struct SplineVector16*) main::$48 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$49 in [261] (signed word*) main::$118 ← (signed word*)(const struct SplineVector16*) main::$49 +Constant value identified (signed word*)main::$49 in [263] (signed word*) main::$119 ← (signed word*)(const struct SplineVector16*) main::$49 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$51 in [268] (signed word*) main::$120 ← (signed word*)(const struct SplineVector16*) main::$51 +Constant value identified (signed word*)main::$51 in [270] (signed word*) main::$121 ← (signed word*)(const struct SplineVector16*) main::$51 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$52 in [273] (signed word*) main::$122 ← (signed word*)(const struct SplineVector16*) main::$52 +Constant value identified (signed word*)main::$52 in [275] (signed word*) main::$123 ← (signed word*)(const struct SplineVector16*) main::$52 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$54 in [280] (signed word*) main::$124 ← (signed word*)(const struct SplineVector16*) main::$54 +Constant value identified (signed word*)main::$54 in [282] (signed word*) main::$125 ← (signed word*)(const struct SplineVector16*) main::$54 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$55 in [285] (signed word*) main::$126 ← (signed word*)(const struct SplineVector16*) main::$55 +Constant value identified (signed word*)main::$55 in [287] (signed word*) main::$127 ← (signed word*)(const struct SplineVector16*) main::$55 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$57 in [292] (signed word*) main::$128 ← (signed word*)(const struct SplineVector16*) main::$57 +Constant value identified (signed word*)main::$57 in [294] (signed word*) main::$129 ← (signed word*)(const struct SplineVector16*) main::$57 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$58 in [297] (signed word*) main::$130 ← (signed word*)(const struct SplineVector16*) main::$58 +Constant value identified (signed word*)main::$58 in [299] (signed word*) main::$131 ← (signed word*)(const struct SplineVector16*) main::$58 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$60 in [304] (signed word*) main::$132 ← (signed word*)(const struct SplineVector16*) main::$60 +Constant value identified (signed word*)main::$60 in [306] (signed word*) main::$133 ← (signed word*)(const struct SplineVector16*) main::$60 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$61 in [309] (signed word*) main::$134 ← (signed word*)(const struct SplineVector16*) main::$61 +Constant value identified (signed word*)main::$61 in [311] (signed word*) main::$135 ← (signed word*)(const struct SplineVector16*) main::$61 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$63 in [316] (signed word*) main::$136 ← (signed word*)(const struct SplineVector16*) main::$63 +Constant value identified (signed word*)main::$63 in [318] (signed word*) main::$137 ← (signed word*)(const struct SplineVector16*) main::$63 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$64 in [321] (signed word*) main::$138 ← (signed word*)(const struct SplineVector16*) main::$64 +Constant value identified (signed word*)main::$64 in [323] (signed word*) main::$139 ← (signed word*)(const struct SplineVector16*) main::$64 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$66 in [328] (signed word*) main::$140 ← (signed word*)(const struct SplineVector16*) main::$66 +Constant value identified (signed word*)main::$66 in [330] (signed word*) main::$141 ← (signed word*)(const struct SplineVector16*) main::$66 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$67 in [333] (signed word*) main::$142 ← (signed word*)(const struct SplineVector16*) main::$67 +Constant value identified (signed word*)main::$67 in [335] (signed word*) main::$143 ← (signed word*)(const struct SplineVector16*) main::$67 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$69 in [340] (signed word*) main::$144 ← (signed word*)(const struct SplineVector16*) main::$69 +Constant value identified (signed word*)main::$69 in [342] (signed word*) main::$145 ← (signed word*)(const struct SplineVector16*) main::$69 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$70 in [345] (signed word*) main::$146 ← (signed word*)(const struct SplineVector16*) main::$70 +Constant value identified (signed word*)main::$70 in [347] (signed word*) main::$147 ← (signed word*)(const struct SplineVector16*) main::$70 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$72 in [352] (signed word*) main::$148 ← (signed word*)(const struct SplineVector16*) main::$72 +Constant value identified (signed word*)main::$72 in [354] (signed word*) main::$149 ← (signed word*)(const struct SplineVector16*) main::$72 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$73 in [357] (signed word*) main::$150 ← (signed word*)(const struct SplineVector16*) main::$73 +Constant value identified (signed word*)main::$73 in [359] (signed word*) main::$151 ← (signed word*)(const struct SplineVector16*) main::$73 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$75 in [364] (signed word*) main::$152 ← (signed word*)(const struct SplineVector16*) main::$75 +Constant value identified (signed word*)main::$75 in [366] (signed word*) main::$153 ← (signed word*)(const struct SplineVector16*) main::$75 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$76 in [369] (signed word*) main::$154 ← (signed word*)(const struct SplineVector16*) main::$76 +Constant value identified (signed word*)main::$76 in [371] (signed word*) main::$155 ← (signed word*)(const struct SplineVector16*) main::$76 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$78 in [376] (signed word*) main::$156 ← (signed word*)(const struct SplineVector16*) main::$78 +Constant value identified (signed word*)main::$78 in [378] (signed word*) main::$157 ← (signed word*)(const struct SplineVector16*) main::$78 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$79 in [381] (signed word*) main::$158 ← (signed word*)(const struct SplineVector16*) main::$79 +Constant value identified (signed word*)main::$79 in [383] (signed word*) main::$159 ← (signed word*)(const struct SplineVector16*) main::$79 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$81 in [388] (signed word*) main::$160 ← (signed word*)(const struct SplineVector16*) main::$81 +Constant value identified (signed word*)main::$81 in [390] (signed word*) main::$161 ← (signed word*)(const struct SplineVector16*) main::$81 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$82 in [393] (signed word*) main::$162 ← (signed word*)(const struct SplineVector16*) main::$82 +Constant value identified (signed word*)main::$82 in [395] (signed word*) main::$163 ← (signed word*)(const struct SplineVector16*) main::$82 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$84 in [400] (signed word*) main::$164 ← (signed word*)(const struct SplineVector16*) main::$84 +Constant value identified (signed word*)main::$84 in [402] (signed word*) main::$165 ← (signed word*)(const struct SplineVector16*) main::$84 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$85 in [405] (signed word*) main::$166 ← (signed word*)(const struct SplineVector16*) main::$85 +Constant value identified (signed word*)main::$85 in [407] (signed word*) main::$167 ← (signed word*)(const struct SplineVector16*) main::$85 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$87 in [412] (signed word*) main::$168 ← (signed word*)(const struct SplineVector16*) main::$87 +Constant value identified (signed word*)main::$87 in [414] (signed word*) main::$169 ← (signed word*)(const struct SplineVector16*) main::$87 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$88 in [417] (signed word*) main::$170 ← (signed word*)(const struct SplineVector16*) main::$88 +Constant value identified (signed word*)main::$88 in [419] (signed word*) main::$171 ← (signed word*)(const struct SplineVector16*) main::$88 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$90 in [424] (signed word*) main::$172 ← (signed word*)(const struct SplineVector16*) main::$90 +Constant value identified (signed word*)main::$90 in [426] (signed word*) main::$173 ← (signed word*)(const struct SplineVector16*) main::$90 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$91 in [429] (signed word*) main::$174 ← (signed word*)(const struct SplineVector16*) main::$91 +Constant value identified (signed word*)main::$91 in [431] (signed word*) main::$175 ← (signed word*)(const struct SplineVector16*) main::$91 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$93 in [436] (signed word*) main::$176 ← (signed word*)(const struct SplineVector16*) main::$93 +Constant value identified (signed word*)main::$93 in [438] (signed word*) main::$177 ← (signed word*)(const struct SplineVector16*) main::$93 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$94 in [441] (signed word*) main::$178 ← (signed word*)(const struct SplineVector16*) main::$94 +Constant value identified (signed word*)main::$94 in [443] (signed word*) main::$179 ← (signed word*)(const struct SplineVector16*) main::$94 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$96 in [448] (signed word*) main::$180 ← (signed word*)(const struct SplineVector16*) main::$96 +Constant value identified (signed word*)main::$96 in [450] (signed word*) main::$181 ← (signed word*)(const struct SplineVector16*) main::$96 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$97 in [453] (signed word*) main::$182 ← (signed word*)(const struct SplineVector16*) main::$97 +Constant value identified (signed word*)main::$97 in [455] (signed word*) main::$183 ← (signed word*)(const struct SplineVector16*) main::$97 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$99 in [460] (signed word*) main::$184 ← (signed word*)(const struct SplineVector16*) main::$99 +Constant value identified (signed word*)main::$99 in [462] (signed word*) main::$185 ← (signed word*)(const struct SplineVector16*) main::$99 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$100 in [465] (signed word*) main::$186 ← (signed word*)(const struct SplineVector16*) main::$100 +Constant value identified (signed word*)main::$100 in [467] (signed word*) main::$187 ← (signed word*)(const struct SplineVector16*) main::$100 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$102 in [472] (signed word*) main::$188 ← (signed word*)(const struct SplineVector16*) main::$102 +Constant value identified (signed word*)main::$102 in [474] (signed word*) main::$189 ← (signed word*)(const struct SplineVector16*) main::$102 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)main::$103 in [477] (signed word*) main::$190 ← (signed word*)(const struct SplineVector16*) main::$103 +Constant value identified (signed word*)main::$103 in [479] (signed word*) main::$191 ← (signed word*)(const struct SplineVector16*) main::$103 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)show_letter::$23 in [517] (signed word*) show_letter::$28 ← (signed word*)(const struct SplineVector16*) show_letter::$23 +Constant value identified (signed word*)show_letter::$24 in [520] (signed word*) show_letter::$29 ← (signed word*)(const struct SplineVector16*) show_letter::$24 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant value identified (signed word*)show_letter::$25 in [536] (signed word*) show_letter::$30 ← (signed word*)(const struct SplineVector16*) show_letter::$25 +Constant value identified (signed word*)show_letter::$26 in [539] (signed word*) show_letter::$31 ← (signed word*)(const struct SplineVector16*) show_letter::$26 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Successful SSA optimization Pass2ConstantValues +Converting *(pointer+n) to pointer[n] [223] *((signed word*) main::$105) ← (signed word) $92 -- *((signed word*)main::$39 + OFFSET_STRUCT_SPLINEVECTOR16_Y) +Converting *(pointer+n) to pointer[n] [228] *((signed word*) main::$107) ← (signed byte) 0 -- *((signed word*)main::$40 + OFFSET_STRUCT_SPLINEVECTOR16_Y) +Successful SSA optimization Pass2InlineDerefIdx +Eliminating unused variable (signed word*) main::$105 and assignment [205] (signed word*) main::$105 ← (signed word*)(const struct SplineVector16*) main::$39 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Eliminating unused variable (signed word*) main::$107 and assignment [209] (signed word*) main::$107 ← (signed word*)(const struct SplineVector16*) main::$40 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Eliminating unused constant (const byte*) PRINT_SCREEN#0 +Successful SSA optimization PassNEliminateUnusedVars +Self Phi Eliminated (byte*) bitmap_screen#12 +Self Phi Eliminated (byte*) bitmap_gfx#18 +Self Phi Eliminated (signed byte*) COS#10 +Successful SSA optimization Pass2SelfPhiElimination +Identical Phi Values (byte*) bitmap_screen#12 (const byte*) bitmap_screen#1 +Identical Phi Values (byte*) bitmap_gfx#18 (const byte*) bitmap_gfx#1 +Identical Phi Values (signed byte*) COS#10 (const signed byte*) COS#0 +Successful SSA optimization Pass2IdenticalPhiElimination +Identical Phi Values (byte*) bitmap_screen#7 (const byte*) bitmap_screen#1 +Identical Phi Values (byte*) bitmap_gfx#12 (const byte*) bitmap_gfx#1 +Successful SSA optimization Pass2IdenticalPhiElimination +Constant right-side identified [72] (void*) memset::str#0 ← (void*)(const byte*) bitmap_screen#1 +Constant right-side identified [75] (void*) memset::str#1 ← (void*)(const byte*) bitmap_gfx#1 +Constant right-side identified [212] (signed word*) main::$109 ← (signed word*)(const struct SplineVector16*) main::$42 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [216] (signed word*) main::$111 ← (signed word*)(const struct SplineVector16*) main::$43 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [221] (signed word*) main::$113 ← (signed word*)(const struct SplineVector16*) main::$45 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [225] (signed word*) main::$115 ← (signed word*)(const struct SplineVector16*) main::$46 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [230] (signed word*) main::$117 ← (signed word*)(const struct SplineVector16*) main::$48 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [234] (signed word*) main::$119 ← (signed word*)(const struct SplineVector16*) main::$49 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [239] (signed word*) main::$121 ← (signed word*)(const struct SplineVector16*) main::$51 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [243] (signed word*) main::$123 ← (signed word*)(const struct SplineVector16*) main::$52 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [248] (signed word*) main::$125 ← (signed word*)(const struct SplineVector16*) main::$54 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [252] (signed word*) main::$127 ← (signed word*)(const struct SplineVector16*) main::$55 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [257] (signed word*) main::$129 ← (signed word*)(const struct SplineVector16*) main::$57 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [261] (signed word*) main::$131 ← (signed word*)(const struct SplineVector16*) main::$58 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [266] (signed word*) main::$133 ← (signed word*)(const struct SplineVector16*) main::$60 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [270] (signed word*) main::$135 ← (signed word*)(const struct SplineVector16*) main::$61 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [275] (signed word*) main::$137 ← (signed word*)(const struct SplineVector16*) main::$63 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [279] (signed word*) main::$139 ← (signed word*)(const struct SplineVector16*) main::$64 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [284] (signed word*) main::$141 ← (signed word*)(const struct SplineVector16*) main::$66 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [288] (signed word*) main::$143 ← (signed word*)(const struct SplineVector16*) main::$67 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [293] (signed word*) main::$145 ← (signed word*)(const struct SplineVector16*) main::$69 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [297] (signed word*) main::$147 ← (signed word*)(const struct SplineVector16*) main::$70 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [302] (signed word*) main::$149 ← (signed word*)(const struct SplineVector16*) main::$72 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [306] (signed word*) main::$151 ← (signed word*)(const struct SplineVector16*) main::$73 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [311] (signed word*) main::$153 ← (signed word*)(const struct SplineVector16*) main::$75 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [315] (signed word*) main::$155 ← (signed word*)(const struct SplineVector16*) main::$76 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [320] (signed word*) main::$157 ← (signed word*)(const struct SplineVector16*) main::$78 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [324] (signed word*) main::$159 ← (signed word*)(const struct SplineVector16*) main::$79 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [329] (signed word*) main::$161 ← (signed word*)(const struct SplineVector16*) main::$81 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [333] (signed word*) main::$163 ← (signed word*)(const struct SplineVector16*) main::$82 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [338] (signed word*) main::$165 ← (signed word*)(const struct SplineVector16*) main::$84 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [342] (signed word*) main::$167 ← (signed word*)(const struct SplineVector16*) main::$85 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [347] (signed word*) main::$169 ← (signed word*)(const struct SplineVector16*) main::$87 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [351] (signed word*) main::$171 ← (signed word*)(const struct SplineVector16*) main::$88 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [356] (signed word*) main::$173 ← (signed word*)(const struct SplineVector16*) main::$90 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [360] (signed word*) main::$175 ← (signed word*)(const struct SplineVector16*) main::$91 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [365] (signed word*) main::$177 ← (signed word*)(const struct SplineVector16*) main::$93 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [369] (signed word*) main::$179 ← (signed word*)(const struct SplineVector16*) main::$94 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [374] (signed word*) main::$181 ← (signed word*)(const struct SplineVector16*) main::$96 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [378] (signed word*) main::$183 ← (signed word*)(const struct SplineVector16*) main::$97 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [383] (signed word*) main::$185 ← (signed word*)(const struct SplineVector16*) main::$99 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [387] (signed word*) main::$187 ← (signed word*)(const struct SplineVector16*) main::$100 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [392] (signed word*) main::$189 ← (signed word*)(const struct SplineVector16*) main::$102 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [396] (signed word*) main::$191 ← (signed word*)(const struct SplineVector16*) main::$103 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [402] (byte~) main::vicSelectGfxBank1_toDd001_$1#0 ← > (const word) main::vicSelectGfxBank1_toDd001_$0#0 +Constant right-side identified [406] (word~) main::toD0181_$1#0 ← (const word) main::toD0181_$0#0 & (word) $3fff +Constant right-side identified [409] (byte~) main::toD0181_$5#0 ← > (const word) main::toD0181_$4#0 +Constant right-side identified [414] (byte~) main::$6 ← (const byte) main::$5 | (const byte) VIC_RSEL#0 +Constant right-side identified [431] (signed word*) show_letter::$29 ← (signed word*)(const struct SplineVector16*) show_letter::$24 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant right-side identified [448] (signed word*) show_letter::$31 ← (signed word*)(const struct SplineVector16*) show_letter::$26 + (const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const void*) memset::str#0 = (void*)bitmap_screen#1 +Constant (const void*) memset::str#1 = (void*)bitmap_gfx#1 +Constant (const signed word*) main::$104 = (signed word*)main::$39 +Constant (const signed word*) main::$106 = (signed word*)main::$40 +Constant (const signed word*) main::$108 = (signed word*)main::$42 +Constant (const signed word*) main::$109 = (signed word*)main::$42+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$110 = (signed word*)main::$43 +Constant (const signed word*) main::$111 = (signed word*)main::$43+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$112 = (signed word*)main::$45 +Constant (const signed word*) main::$113 = (signed word*)main::$45+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$114 = (signed word*)main::$46 +Constant (const signed word*) main::$115 = (signed word*)main::$46+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$116 = (signed word*)main::$48 +Constant (const signed word*) main::$117 = (signed word*)main::$48+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$118 = (signed word*)main::$49 +Constant (const signed word*) main::$119 = (signed word*)main::$49+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$120 = (signed word*)main::$51 +Constant (const signed word*) main::$121 = (signed word*)main::$51+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$122 = (signed word*)main::$52 +Constant (const signed word*) main::$123 = (signed word*)main::$52+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$124 = (signed word*)main::$54 +Constant (const signed word*) main::$125 = (signed word*)main::$54+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$126 = (signed word*)main::$55 +Constant (const signed word*) main::$127 = (signed word*)main::$55+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$128 = (signed word*)main::$57 +Constant (const signed word*) main::$129 = (signed word*)main::$57+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$130 = (signed word*)main::$58 +Constant (const signed word*) main::$131 = (signed word*)main::$58+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$132 = (signed word*)main::$60 +Constant (const signed word*) main::$133 = (signed word*)main::$60+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$134 = (signed word*)main::$61 +Constant (const signed word*) main::$135 = (signed word*)main::$61+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$136 = (signed word*)main::$63 +Constant (const signed word*) main::$137 = (signed word*)main::$63+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$138 = (signed word*)main::$64 +Constant (const signed word*) main::$139 = (signed word*)main::$64+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$140 = (signed word*)main::$66 +Constant (const signed word*) main::$141 = (signed word*)main::$66+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$142 = (signed word*)main::$67 +Constant (const signed word*) main::$143 = (signed word*)main::$67+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$144 = (signed word*)main::$69 +Constant (const signed word*) main::$145 = (signed word*)main::$69+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$146 = (signed word*)main::$70 +Constant (const signed word*) main::$147 = (signed word*)main::$70+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$148 = (signed word*)main::$72 +Constant (const signed word*) main::$149 = (signed word*)main::$72+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$150 = (signed word*)main::$73 +Constant (const signed word*) main::$151 = (signed word*)main::$73+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$152 = (signed word*)main::$75 +Constant (const signed word*) main::$153 = (signed word*)main::$75+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$154 = (signed word*)main::$76 +Constant (const signed word*) main::$155 = (signed word*)main::$76+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$156 = (signed word*)main::$78 +Constant (const signed word*) main::$157 = (signed word*)main::$78+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$158 = (signed word*)main::$79 +Constant (const signed word*) main::$159 = (signed word*)main::$79+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$160 = (signed word*)main::$81 +Constant (const signed word*) main::$161 = (signed word*)main::$81+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$162 = (signed word*)main::$82 +Constant (const signed word*) main::$163 = (signed word*)main::$82+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$164 = (signed word*)main::$84 +Constant (const signed word*) main::$165 = (signed word*)main::$84+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$166 = (signed word*)main::$85 +Constant (const signed word*) main::$167 = (signed word*)main::$85+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$168 = (signed word*)main::$87 +Constant (const signed word*) main::$169 = (signed word*)main::$87+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$170 = (signed word*)main::$88 +Constant (const signed word*) main::$171 = (signed word*)main::$88+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$172 = (signed word*)main::$90 +Constant (const signed word*) main::$173 = (signed word*)main::$90+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$174 = (signed word*)main::$91 +Constant (const signed word*) main::$175 = (signed word*)main::$91+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$176 = (signed word*)main::$93 +Constant (const signed word*) main::$177 = (signed word*)main::$93+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$178 = (signed word*)main::$94 +Constant (const signed word*) main::$179 = (signed word*)main::$94+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$180 = (signed word*)main::$96 +Constant (const signed word*) main::$181 = (signed word*)main::$96+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$182 = (signed word*)main::$97 +Constant (const signed word*) main::$183 = (signed word*)main::$97+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$184 = (signed word*)main::$99 +Constant (const signed word*) main::$185 = (signed word*)main::$99+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$186 = (signed word*)main::$100 +Constant (const signed word*) main::$187 = (signed word*)main::$100+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$188 = (signed word*)main::$102 +Constant (const signed word*) main::$189 = (signed word*)main::$102+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) main::$190 = (signed word*)main::$103 +Constant (const signed word*) main::$191 = (signed word*)main::$103+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const byte) main::vicSelectGfxBank1_toDd001_$1#0 = >main::vicSelectGfxBank1_toDd001_$0#0 +Constant (const word) main::toD0181_$1#0 = main::toD0181_$0#0&$3fff +Constant (const byte) main::toD0181_$5#0 = >main::toD0181_$4#0 +Constant (const byte) main::$6 = main::$5|VIC_RSEL#0 +Constant (const signed word*) show_letter::$28 = (signed word*)show_letter::$23 +Constant (const signed word*) show_letter::$29 = (signed word*)show_letter::$24+OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant (const signed word*) show_letter::$30 = (signed word*)show_letter::$25 +Constant (const signed word*) show_letter::$31 = (signed word*)show_letter::$26+OFFSET_STRUCT_SPLINEVECTOR16_Y +Successful SSA optimization Pass2ConstantIdentification +Constant right-side identified [314] (byte~) main::vicSelectGfxBank1_toDd001_$2#0 ← (const byte) main::vicSelectGfxBank1_toDd001_$1#0 / (byte) $40 +Constant right-side identified [317] (word~) main::toD0181_$2#0 ← (const word) main::toD0181_$1#0 * (byte) 4 +Constant right-side identified [319] (byte~) main::toD0181_$6#0 ← (const byte) main::toD0181_$5#0 / (byte) 4 +Constant right-side identified [323] (byte~) main::$7 ← (const byte) main::$6 | (byte) 3 +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const byte) main::vicSelectGfxBank1_toDd001_$2#0 = main::vicSelectGfxBank1_toDd001_$1#0/$40 +Constant (const word) main::toD0181_$2#0 = main::toD0181_$1#0*4 +Constant (const byte) main::toD0181_$6#0 = main::toD0181_$5#0/4 +Constant (const byte) main::$7 = main::$6|3 +Successful SSA optimization Pass2ConstantIdentification +Constant right-side identified [314] (byte) main::vicSelectGfxBank1_toDd001_return#0 ← (byte) 3 ^ (const byte) main::vicSelectGfxBank1_toDd001_$2#0 +Constant right-side identified [316] (byte~) main::toD0181_$3#0 ← > (const word) main::toD0181_$2#0 +Constant right-side identified [317] (byte~) main::toD0181_$7#0 ← (const byte) main::toD0181_$6#0 & (byte) $f +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const byte) main::vicSelectGfxBank1_toDd001_return#0 = 3^main::vicSelectGfxBank1_toDd001_$2#0 +Constant (const byte) main::toD0181_$3#0 = >main::toD0181_$2#0 +Constant (const byte) main::toD0181_$7#0 = main::toD0181_$6#0&$f +Successful SSA optimization Pass2ConstantIdentification +Constant right-side identified [315] (byte) main::toD0181_return#0 ← (const byte) main::toD0181_$3#0 | (const byte) main::toD0181_$7#0 +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const byte) main::toD0181_return#0 = main::toD0181_$3#0|main::toD0181_$7#0 +Successful SSA optimization Pass2ConstantIdentification +Inlining Noop Cast [41] (byte*~) memset::$2 ← (byte*)(void*) memset::str#3 keeping memset::str#3 +Inlining Noop Cast [43] (byte*) memset::dst#0 ← (byte*)(void*) memset::str#3 keeping memset::str#3 +Inlining Noop Cast [190] (word~) mulf16s::$10 ← (word)(signed word) mulf16s::b#4 keeping mulf16s::b#4 +Inlining Noop Cast [196] (word~) mulf16s::$14 ← (word)(signed word) mulf16s::a#4 keeping mulf16s::a#4 +Inlining Noop Cast [384] (word) bitmap_line::x2#1 ← (word)*((const signed word*) bitmap_plot_spline_8seg::$14 + (byte~) bitmap_plot_spline_8seg::$8) keeping *(bitmap_plot_spline_8seg::$14 + bitmap_plot_spline_8seg::$8) +Inlining Noop Cast [385] (word) bitmap_line::y2#1 ← (word)*((const signed word*) bitmap_plot_spline_8seg::$15 + (byte~) bitmap_plot_spline_8seg::$8) keeping *(bitmap_plot_spline_8seg::$15 + bitmap_plot_spline_8seg::$8) +Successful SSA optimization Pass2NopCastInlining +Inlining Noop Cast [78] (byte*) bitmap_plot::plotter#0 ← (byte*)(word~) bitmap_plot::$3 keeping bitmap_plot::plotter#0 +Inlining Noop Cast [427] (signed byte~) rotate::$15 ← (signed byte)(byte~) rotate::$14 keeping rotate::$15 +Inlining Noop Cast [430] (signed byte~) rotate::$18 ← (signed byte)(byte~) rotate::$17 keeping rotate::$18 +Successful SSA optimization Pass2NopCastInlining +Rewriting multiplication to use shift [0] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 * (signed byte) 2 +Rewriting multiplication to use shift [3] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 * (signed byte) 2 +Rewriting multiplication to use shift [7] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 * (signed byte) 2 +Rewriting multiplication to use shift [9] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 * (signed byte) 2 +Rewriting multiplication to use shift [10] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 * (signed byte) 8 +Rewriting multiplication to use shift [12] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 * (signed byte) 8 +Rewriting multiplication to use shift [14] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 * (signed byte) 2 +Rewriting multiplication to use shift [15] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 * (signed byte) 2 +Rewriting multiplication to use shift [16] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 * (signed byte) $40 +Rewriting multiplication to use shift [17] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 * (signed byte) $40 +Rewriting division to use shift [20] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 / (signed byte) $40 +Rewriting division to use shift [22] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 / (signed byte) $40 +Rewriting multiplication to use shift [23] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Rewriting division to use shift [33] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 / (signed byte) $40 +Rewriting division to use shift [35] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 / (signed byte) $40 +Rewriting multiplication to use shift [70] (byte~) bitmap_clear::$0 ← (byte) bitmap_clear::fgcol#2 * (byte) $10 +Rewriting division to use shift [107] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 / (byte) 2 +Rewriting division to use shift [108] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 / (byte) 2 +Rewriting multiplication to use shift and addition[328] (byte~) show_letter::$20 ← (byte) show_letter::i#10 * (const byte) SIZEOF_STRUCT_SEGMENT +Rewriting multiplication to use shift and addition[343] (byte~) show_letter::$21 ← (byte) show_letter::i#10 * (const byte) SIZEOF_STRUCT_SEGMENT +Rewriting multiplication to use shift and addition[358] (byte~) show_letter::$22 ← (byte) show_letter::i#10 * (const byte) SIZEOF_STRUCT_SEGMENT +Rewriting multiplication to use shift [383] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Rewriting multiplication to use shift [387] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 * (const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Rewriting multiplication to use shift [401] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 * (signed byte) 2 +Rewriting multiplication to use shift [408] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 * (signed byte) 2 +Rewriting multiplication to use shift [416] (signed word~) rotate::$10 ← (signed word~) rotate::$9 * (signed byte) 2 +Rewriting multiplication to use shift [424] (signed word~) rotate::$13 ← (signed word~) rotate::$12 * (signed byte) 2 +Successful SSA optimization Pass2MultiplyToShiftRewriting +Inlining constant with var siblings (const byte) spline_8segB::n#0 +Inlining constant with var siblings (const word) memset::num#0 +Inlining constant with var siblings (const byte) memset::c#1 +Inlining constant with var siblings (const word) memset::num#1 +Inlining constant with var siblings (const void*) memset::str#0 +Inlining constant with var siblings (const void*) memset::str#1 +Inlining constant with var siblings (const byte) bitmap_init::bits#0 +Inlining constant with var siblings (const byte) bitmap_init::x#0 +Inlining constant with var siblings (const byte) bitmap_init::bits#2 +Inlining constant with var siblings (const byte) bitmap_init::y#0 +Inlining constant with var siblings (const byte) bitmap_clear::bgcol#0 +Inlining constant with var siblings (const byte) bitmap_clear::fgcol#0 +Inlining constant with var siblings (const byte) bitmap_clear::bgcol#1 +Inlining constant with var siblings (const byte) bitmap_clear::fgcol#1 +Inlining constant with var siblings (const word) sgn_u16::return#2 +Inlining constant with var siblings (const word) sgn_u16::return#3 +Inlining constant with var siblings (const word) mulf_init::sqr#0 +Inlining constant with var siblings (const byte) mulf_init::x_2#0 +Inlining constant with var siblings (const byte) mulf_init::c#0 +Inlining constant with var siblings (const byte) mulf_init::x_255#0 +Inlining constant with var siblings (const byte) mulf_init::dir#0 +Inlining constant with var siblings (const byte) mulf_init::dir#1 +Inlining constant with var siblings (const byte*) mulf_init::sqr2_hi#0 +Inlining constant with var siblings (const byte*) mulf_init::sqr2_lo#0 +Inlining constant with var siblings (const byte*) mulf_init::sqr1_hi#0 +Inlining constant with var siblings (const byte*) mulf_init::sqr1_lo#0 +Inlining constant with var siblings (const byte) main::angle#0 +Inlining constant with var siblings (const byte) main::w#0 +Inlining constant with var siblings (const signed word) show_letter::current_x#0 +Inlining constant with var siblings (const signed word) show_letter::current_y#0 +Inlining constant with var siblings (const byte) show_letter::i#0 +Inlining constant with var siblings (const byte) bitmap_plot_spline_8seg::n#0 +Constant inlined bitmap_init::screen#0 = (const byte*) BITMAP_SCREEN#0 +Constant inlined main::$92 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$93 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined mulf_init::sqr2_lo#0 = (const byte[$200]) mulf_sqr2_lo#0 +Constant inlined main::$94 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$95 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$90 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined mulf_init::sqr2_hi#0 = (const byte[$200]) mulf_sqr2_hi#0 +Constant inlined main::$91 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$96 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$97 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$98 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$99 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$112 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$111 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$110 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$119 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$118 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$117 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$116 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$115 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$114 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$113 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$81 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$82 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$83 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$84 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$80 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$89 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$85 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$86 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$87 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$88 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$101 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$100 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::toD0181_$7#0 = >(word)(const byte*) BITMAP_GRAPHICS#0/(byte) 4&(byte) $f +Constant inlined main::$109 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$108 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$106 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$104 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$103 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$102 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$70 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$71 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$72 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$73 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$78 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined show_letter::$31 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$79 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined mulf_init::$2 = (const byte[$200]) mulf_sqr2_lo#0+(word) $1ff +Constant inlined show_letter::$30 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined mulf_init::$4 = (const byte[$200]) mulf_sqr2_hi#0+(word) $1ff +Constant inlined main::$74 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined mulf_init::$3 = (const byte[$200]) mulf_sqr1_lo#0+(word) $100 +Constant inlined main::$75 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$76 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined mulf_init::$5 = (const byte[$200]) mulf_sqr1_hi#0+(word) $100 +Constant inlined main::$77 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$134 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined show_letter::$28 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$133 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined show_letter::$29 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$132 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined show_letter::$26 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$131 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined show_letter::$27 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$130 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined sgn_u16::return#3 = (byte) 1 +Constant inlined sgn_u16::return#2 = (byte) -1 +Constant inlined main::$139 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$138 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$137 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$136 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$135 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$60 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$61 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$62 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$67 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$68 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$69 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::toD0181_$0#0 = (word)(const byte*) BITMAP_SCREEN#0 +Constant inlined main::$63 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$64 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$65 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$66 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$123 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$122 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$121 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$120 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$5 = (const byte) VIC_BMM#0|(const byte) VIC_DEN#0 +Constant inlined bitmap_init::y#0 = (byte) 0 +Constant inlined main::$6 = (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0 +Constant inlined main::$129 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$128 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$127 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$126 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$125 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$7 = (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 +Constant inlined main::$124 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined bitmap_clear::bgcol#0 = (const byte) BLACK#0 +Constant inlined main::$50 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$51 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined bitmap_clear::bgcol#1 = (const byte) BLACK#0 +Constant inlined main::$56 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$57 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$58 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$59 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$52 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$53 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$54 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$55 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined mulf_init::dir#1 = (byte) 1 +Constant inlined mulf_init::dir#0 = (byte) $ff +Constant inlined main::$40 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$45 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$46 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$47 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined show_letter::current_x#0 = (signed byte) 0 +Constant inlined main::$48 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::toD0181_$1#0 = (word)(const byte*) BITMAP_SCREEN#0&(word) $3fff +Constant inlined main::$41 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined show_letter::$24 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$42 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined show_letter::$25 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$43 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$44 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined show_letter::$23 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$49 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined bitmap_init::x#0 = (byte) 0 +Constant inlined main::toD0181_gfx#0 = (const byte*) BITMAP_GRAPHICS#0 +Constant inlined main::$34 = (byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$35 = (byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$36 = (byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$37 = (byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$30 = (byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$31 = (byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$32 = (byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$33 = (byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$38 = (byte*)(const struct Segment[$16]) letter_c#0 +Constant inlined main::$39 = (struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$23 = (byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$24 = (byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$25 = (byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$26 = (byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$20 = (byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$21 = (byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$22 = (byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$27 = (byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::toD0181_$2#0 = (word)(const byte*) BITMAP_SCREEN#0&(word) $3fff*(byte) 4 +Constant inlined main::$28 = (byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$29 = (byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::vicSelectGfxBank1_gfx#0 = (const byte*) BITMAP_SCREEN#0 +Constant inlined main::$17 = (byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$18 = (byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$19 = (byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT +Constant inlined main::$191 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$190 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::w#0 = (byte) 0 +Constant inlined main::$189 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$188 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$187 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$186 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined mulf_init::sqr1_hi#0 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 +Constant inlined main::$185 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$184 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::toD0181_$3#0 = >(word)(const byte*) BITMAP_SCREEN#0&(word) $3fff*(byte) 4 +Constant inlined main::$183 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$182 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined mulf_init::sqr1_lo#0 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 +Constant inlined mulf_init::$13 = (const byte[$200]) mulf_sqr1_lo#0+(word) $200 +Constant inlined mulf_init::$18 = (const byte[$200]) mulf_sqr2_lo#0+(word) $1ff +Constant inlined memset::c#1 = (byte) 0 +Constant inlined main::toD0181_screen#0 = (const byte*) BITMAP_SCREEN#0 +Constant inlined mulf_init::sqr#0 = (byte) 0 +Constant inlined show_letter::current_y#0 = (signed byte) 0 +Constant inlined main::vicSelectGfxBank1_toDd001_$0#0 = (word)(const byte*) BITMAP_SCREEN#0 +Constant inlined main::angle#0 = (byte) 0 +Constant inlined bitmap_screen#1 = (const byte*) BITMAP_SCREEN#0 +Constant inlined main::toD0181_$4#0 = (word)(const byte*) BITMAP_GRAPHICS#0 +Constant inlined show_letter::i#0 = (byte) 0 +Constant inlined bitmap_init::gfx#0 = (const byte*) BITMAP_GRAPHICS#0 +Constant inlined memset::num#1 = (word) $1f40 +Constant inlined memset::num#0 = (word) $3e8 +Constant inlined main::$156 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$155 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$154 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$153 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$152 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$151 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$150 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined mulf_init::x_255#0 = (byte) -1 +Constant inlined main::$159 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$158 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$157 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined mulf_init::x_2#0 = (byte) 0 +Constant inlined main::vicSelectGfxBank1_toDd001_$1#0 = >(word)(const byte*) BITMAP_SCREEN#0 +Constant inlined bitmap_plot_spline_8seg::n#0 = (byte) 1 +Constant inlined bitmap_gfx#1 = (const byte*) BITMAP_GRAPHICS#0 +Constant inlined main::$145 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined bitmap_plot_spline_8seg::$12 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 +Constant inlined main::$144 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined bitmap_plot_spline_8seg::$13 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$143 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined bitmap_plot_spline_8seg::$14 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 +Constant inlined main::$142 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined bitmap_plot_spline_8seg::$15 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$141 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$140 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::toD0181_$5#0 = >(word)(const byte*) BITMAP_GRAPHICS#0 +Constant inlined spline_8segB::n#0 = (byte) 0 +Constant inlined main::$149 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$148 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$147 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined bitmap_plot_spline_8seg::$10 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 +Constant inlined main::$146 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined bitmap_plot_spline_8seg::$11 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined mulf_init::c#0 = (byte) 0 +Constant inlined main::$181 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$180 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined bitmap_init::bits#0 = (byte) $80 +Constant inlined spline_8segB::$36 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined bitmap_init::bits#2 = (byte) $80 +Constant inlined spline_8segB::$32 = (byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16 +Constant inlined main::$178 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined spline_8segB::$33 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 +Constant inlined main::$177 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined spline_8segB::$34 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$176 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined spline_8segB::$35 = (signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 +Constant inlined main::$175 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$174 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$173 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$172 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$171 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$179 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::vicSelectGfxBank1_toDd001_$2#0 = >(word)(const byte*) BITMAP_SCREEN#0/(byte) $40 +Constant inlined memset::str#1 = (void*)(const byte*) BITMAP_GRAPHICS#0 +Constant inlined memset::str#0 = (void*)(const byte*) BITMAP_SCREEN#0 +Constant inlined main::$170 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined bitmap_clear::fgcol#0 = (const byte) WHITE#0 +Constant inlined main::$167 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::toD0181_$6#0 = >(word)(const byte*) BITMAP_GRAPHICS#0/(byte) 4 +Constant inlined main::$166 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$165 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$164 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined bitmap_clear::fgcol#1 = (const byte) WHITE#0 +Constant inlined main::$163 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$162 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA +Constant inlined main::$161 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$160 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Constant inlined main::$169 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y +Constant inlined main::$168 = (signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO +Successful SSA optimization Pass2ConstantInlining +Consolidated array index constant in *((signed word*)SPLINE_8SEG#0+8*SIZEOF_STRUCT_SPLINEVECTOR16) +Consolidated array index constant in *((signed word*)SPLINE_8SEG#0+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y) +Consolidated array index constant in *((byte*)letter_c#0+1*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+2*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+3*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+4*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+5*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+6*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+7*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+8*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+9*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$a*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$b*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$c*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$d*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$e*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$f*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$10*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$11*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$12*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$13*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$14*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((byte*)letter_c#0+$15*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT) +Consolidated array index constant in *((signed word*)(struct SplineVector16*)letter_c#0+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT) +Successful SSA optimization Pass2ConstantAdditionElimination +Alias (byte~) show_letter::$20 = (byte) show_letter::$33 +Alias (byte~) show_letter::$21 = (byte) show_letter::$35 +Alias (byte~) show_letter::$22 = (byte) show_letter::$37 +Successful SSA optimization Pass2AliasElimination +Identical Phi Values (byte) bitmap_clear::fgcol#2 (const byte) WHITE#0 +Identical Phi Values (byte) bitmap_clear::bgcol#2 (const byte) BLACK#0 +Successful SSA optimization Pass2IdenticalPhiElimination +Constant right-side identified [68] (byte~) bitmap_clear::$0 ← (const byte) WHITE#0 << (byte) 4 +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const byte) bitmap_clear::$0 = WHITE#0<<4 +Successful SSA optimization Pass2ConstantIdentification +Simplifying expression containing zero bitmap_clear::$0 in [69] (byte) bitmap_clear::col#0 ← (const byte) bitmap_clear::$0 + (const byte) BLACK#0 +Successful SSA optimization PassNSimplifyExpressionWithZero +Eliminating unused constant (const byte) BLACK#0 +Successful SSA optimization PassNEliminateUnusedVars +Constant inlined bitmap_clear::$0 = (const byte) WHITE#0<<(byte) 4 +Successful SSA optimization Pass2ConstantInlining +Constant (const byte) bitmap_clear::col#0 = WHITE#0<<4 +Successful SSA optimization Pass2ConstantIdentification +Constant (const byte) memset::c#0 = bitmap_clear::col#0 +Successful SSA optimization Pass2ConstantIdentification +Inlining constant with var siblings (const byte) memset::c#0 +Constant inlined memset::c#0 = (const byte) bitmap_clear::col#0 +Successful SSA optimization Pass2ConstantInlining +Added new block during phi lifting spline_8segB::@3(between spline_8segB::@1 and spline_8segB::@1) +Added new block during phi lifting memset::@6(between memset::@4 and memset::@4) +Added new block during phi lifting bitmap_init::@9(between bitmap_init::@2 and bitmap_init::@1) +Added new block during phi lifting bitmap_init::@10(between bitmap_init::@1 and bitmap_init::@2) +Added new block during phi lifting bitmap_init::@11(between bitmap_init::@6 and bitmap_init::@5) +Added new block during phi lifting bitmap_init::@12(between bitmap_init::@5 and bitmap_init::@6) +Added new block during phi lifting bitmap_line::@25(between bitmap_line::@8 and bitmap_line::@7) +Added new block during phi lifting bitmap_line::@26(between bitmap_line::@21 and bitmap_line::@8) +Added new block during phi lifting bitmap_line::@27(between bitmap_line::@13 and bitmap_line::@3) +Added new block during phi lifting bitmap_line::@28(between bitmap_line::@8 and bitmap_line::@3) +Added new block during phi lifting bitmap_line::@29(between bitmap_line::@13 and bitmap_line::@12) +Added new block during phi lifting bitmap_line::@30(between bitmap_line::@23 and bitmap_line::@13) +Added new block during phi lifting mulf_init::@9(between mulf_init::@2 and mulf_init::@1) +Added new block during phi lifting mulf_init::@10(between mulf_init::@1 and mulf_init::@2) +Added new block during phi lifting mulf_init::@11(between mulf_init::@6 and mulf_init::@5) +Added new block during phi lifting mulf_init::@12(between mulf_init::@5 and mulf_init::@6) +Added new block during phi lifting mulf16s::@7(between mulf16s::@6 and mulf16s::@1) +Added new block during phi lifting mulf16s::@8(between mulf16s::@1 and mulf16s::@2) +Added new block during phi lifting main::@26(between main::@8 and main::@5) +Added new block during phi lifting show_letter::@16(between show_letter::@5 and show_letter::@1) +Added new block during phi lifting bitmap_plot_spline_8seg::@4(between bitmap_plot_spline_8seg::@3 and bitmap_plot_spline_8seg::@1) +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @7 +Adding NOP phi() at start of @13 +Adding NOP phi() at start of @50 +Adding NOP phi() at start of @59 +Adding NOP phi() at start of @62 +Adding NOP phi() at start of @63 +Adding NOP phi() at start of @64 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main::@21 +Adding NOP phi() at start of main::@22 +Adding NOP phi() at start of main::@23 +Adding NOP phi() at start of main::vicSelectGfxBank1_toDd001 +Adding NOP phi() at start of main::vicSelectGfxBank1_toDd001_@return +Adding NOP phi() at start of main::@19 +Adding NOP phi() at start of main::toD0181 +Adding NOP phi() at start of main::toD0181_@return +Adding NOP phi() at start of main::@2 +Adding NOP phi() at start of main::@25 +Adding NOP phi() at start of show_letter +Adding NOP phi() at start of show_letter::@15 +Adding NOP phi() at start of show_letter::@13 +Adding NOP phi() at start of show_letter::@14 +Adding NOP phi() at start of show_letter::@2 +Adding NOP phi() at start of bitmap_line::@22 +Adding NOP phi() at start of bitmap_line::@20 +Adding NOP phi() at start of sgn_u16::@3 +Adding NOP phi() at start of sgn_u16::@1 +Adding NOP phi() at start of bitmap_clear +Adding NOP phi() at start of bitmap_clear::@1 +Adding NOP phi() at start of bitmap_clear::@2 +Adding NOP phi() at start of memset::@1 +Adding NOP phi() at start of bitmap_init +Adding NOP phi() at start of bitmap_init::@3 +Adding NOP phi() at start of bitmap_init::@4 +Adding NOP phi() at start of mulf_init +Adding NOP phi() at start of mulf_init::@4 +Adding NOP phi() at start of mulf_init::@7 +CALL GRAPH +Calls in [] to main:8 +Calls in [main] to mulf_init:121 bitmap_init:123 bitmap_clear:125 bitmap_clear:138 show_letter:140 +Calls in [show_letter] to rotate:164 rotate:183 bitmap_line:203 spline_8segB:217 bitmap_plot_spline_8seg:219 +Calls in [bitmap_plot_spline_8seg] to bitmap_line:234 +Calls in [bitmap_line] to abs_u16:247 abs_u16:252 sgn_u16:259 sgn_u16:264 bitmap_plot:277 bitmap_plot:294 bitmap_plot:311 bitmap_plot:332 +Calls in [rotate] to mulf16s:412 mulf16s:421 mulf16s:431 mulf16s:441 +Calls in [mulf16s] to mulf16u:455 +Calls in [bitmap_clear] to memset:480 memset:482 + +Created 64 initial phi equivalence classes +Coalesced [148] main::angle#10 ← main::angle#1 +Coalesced [149] main::w#5 ← main::w#1 +Coalesced [161] rotate::angle#5 ← rotate::angle#0 +Coalesced [162] rotate::vector_x#6 ← rotate::vector_x#0 +Coalesced [163] rotate::vector_y#5 ← rotate::vector_y#0 +Coalesced [180] rotate::angle#6 ← rotate::angle#1 +Coalesced [181] rotate::vector_x#7 ← rotate::vector_x#1 +Coalesced [182] rotate::vector_y#6 ← rotate::vector_y#1 +Coalesced [199] bitmap_line::x#21 ← bitmap_line::x1#0 +Coalesced [200] bitmap_line::y#21 ← bitmap_line::y1#0 +Coalesced [201] bitmap_line::x2#14 ← bitmap_line::x2#0 +Coalesced [202] bitmap_line::y2#14 ← bitmap_line::y2#0 +Coalesced [208] show_letter::i#13 ← show_letter::i#1 +Not coalescing [209] show_letter::current_x#11 ← show_letter::current_x#10 +Not coalescing [210] show_letter::current_y#11 ← show_letter::current_y#10 +Coalesced [224] bitmap_plot_spline_8seg::current_x#3 ← bitmap_plot_spline_8seg::current_x#0 +Coalesced [225] bitmap_plot_spline_8seg::current_y#3 ← bitmap_plot_spline_8seg::current_y#0 +Coalesced [230] bitmap_line::x#20 ← bitmap_line::x1#1 +Coalesced [231] bitmap_line::y#20 ← bitmap_line::y1#1 +Coalesced [241] bitmap_plot_spline_8seg::current_x#4 ← bitmap_plot_spline_8seg::current_x#1 +Coalesced [242] bitmap_plot_spline_8seg::current_y#4 ← bitmap_plot_spline_8seg::current_y#1 +Coalesced [243] bitmap_plot_spline_8seg::n#4 ← bitmap_plot_spline_8seg::n#1 +Coalesced [246] abs_u16::w#5 ← abs_u16::w#0 +Coalesced [251] abs_u16::w#6 ← abs_u16::w#1 +Coalesced [258] sgn_u16::w#3 ← sgn_u16::w#0 +Coalesced [263] sgn_u16::w#4 ← sgn_u16::w#1 +Coalesced [269] bitmap_line::y#22 ← bitmap_line::y#0 +Coalesced [270] bitmap_line::x#22 ← bitmap_line::x#0 +Coalesced [271] bitmap_line::e#7 ← bitmap_line::e#0 +Coalesced [275] bitmap_plot::y#8 ← bitmap_plot::y#1 +Coalesced [276] bitmap_plot::x#8 ← bitmap_plot::x#1 +Coalesced [283] bitmap_line::x#25 ← bitmap_line::x#1 +Coalesced [284] bitmap_line::e#10 ← bitmap_line::e#2 +Coalesced [287] bitmap_line::y#25 ← bitmap_line::y#1 +Coalesced [288] bitmap_line::x#27 ← bitmap_line::x#12 +Coalesced [292] bitmap_plot::y#6 ← bitmap_plot::y#2 +Coalesced [293] bitmap_plot::x#6 ← bitmap_plot::x#2 +Coalesced [297] bitmap_line::y#23 ← bitmap_line::y#1 +Coalesced [298] bitmap_line::x#23 ← bitmap_line::x#12 +Coalesced [299] bitmap_line::e#8 ← bitmap_line::e#6 +Coalesced (already) [300] bitmap_line::x#24 ← bitmap_line::x#13 +Coalesced [301] bitmap_line::e#9 ← bitmap_line::e#1 +Coalesced [303] bitmap_line::y#27 ← bitmap_line::y#0 +Coalesced [304] bitmap_line::x#29 ← bitmap_line::x#0 +Coalesced [305] bitmap_line::e1#8 ← bitmap_line::e1#0 +Coalesced [309] bitmap_plot::y#5 ← bitmap_plot::y#3 +Coalesced [310] bitmap_plot::x#5 ← bitmap_plot::x#3 +Coalesced [317] bitmap_line::y#28 ← bitmap_line::y#2 +Coalesced [318] bitmap_line::e1#9 ← bitmap_line::e1#2 +Coalesced [321] bitmap_line::y#24 ← bitmap_line::y#13 +Coalesced [322] bitmap_line::x#26 ← bitmap_line::x#15 +Coalesced (already) [323] bitmap_line::y#26 ← bitmap_line::y#13 +Coalesced (already) [324] bitmap_line::x#28 ← bitmap_line::x#15 +Coalesced [325] bitmap_line::e1#7 ← bitmap_line::e1#6 +Coalesced (already) [326] bitmap_line::y#29 ← bitmap_line::y#15 +Coalesced [327] bitmap_line::e1#10 ← bitmap_line::e1#1 +Coalesced [330] bitmap_plot::y#7 ← bitmap_plot::y#0 +Coalesced [331] bitmap_plot::x#7 ← bitmap_plot::x#0 +Coalesced [353] abs_u16::return#9 ← abs_u16::w#2 +Coalesced [357] abs_u16::return#8 ← abs_u16::return#2 +Coalesced [376] spline_8segB::p_x#4 ← spline_8segB::p_x#0 +Coalesced [377] spline_8segB::p_y#4 ← spline_8segB::p_y#0 +Coalesced [378] spline_8segB::i_x#3 ← spline_8segB::i_x#0 +Coalesced [379] spline_8segB::i_y#3 ← spline_8segB::i_y#0 +Coalesced [401] spline_8segB::p_x#5 ← spline_8segB::p_x#1 +Coalesced [402] spline_8segB::p_y#5 ← spline_8segB::p_y#1 +Coalesced [403] spline_8segB::n#3 ← spline_8segB::n#1 +Coalesced [404] spline_8segB::i_x#4 ← spline_8segB::i_x#1 +Coalesced [405] spline_8segB::i_y#4 ← spline_8segB::i_y#1 +Coalesced [410] mulf16s::a#9 ← mulf16s::a#0 +Coalesced [411] mulf16s::b#8 ← mulf16s::b#0 +Coalesced [419] mulf16s::a#10 ← mulf16s::a#1 +Coalesced [420] mulf16s::b#9 ← mulf16s::b#1 +Coalesced [429] mulf16s::a#11 ← mulf16s::a#2 +Coalesced [430] mulf16s::b#10 ← mulf16s::b#2 +Coalesced [439] mulf16s::a#12 ← mulf16s::a#3 +Coalesced [440] mulf16s::b#11 ← mulf16s::b#3 +Coalesced [462] mulf16s::m#7 ← mulf16s::m#1 +Coalesced [468] mulf16s::m#10 ← mulf16s::m#2 +Coalesced [472] mulf16s::m#9 ← mulf16s::m#5 +Coalesced [473] mulf16s::m#8 ← mulf16s::m#0 +Coalesced [495] memset::dst#4 ← memset::dst#1 +Coalesced [515] bitmap_init::yoffs#7 ← bitmap_init::yoffs#1 +Coalesced [520] bitmap_init::y#5 ← bitmap_init::y#1 +Coalesced [521] bitmap_init::yoffs#5 ← bitmap_init::yoffs#4 +Coalesced (already) [522] bitmap_init::yoffs#6 ← bitmap_init::yoffs#2 +Coalesced [523] bitmap_init::bits#5 ← bitmap_init::bits#4 +Coalesced [524] bitmap_init::x#5 ← bitmap_init::x#1 +Coalesced [525] bitmap_init::bits#6 ← bitmap_init::bits#1 +Coalesced [533] mulf_init::sqr#8 ← mulf_init::sqr#2 +Coalesced [534] mulf_init::x_2#7 ← mulf_init::x_2#1 +Coalesced [558] mulf_init::x_255#5 ← mulf_init::x_255#1 +Coalesced [559] mulf_init::sqr2_lo#5 ← mulf_init::sqr2_lo#1 +Coalesced [560] mulf_init::sqr2_hi#5 ← mulf_init::sqr2_hi#1 +Coalesced [561] mulf_init::dir#4 ← mulf_init::dir#3 +Coalesced (already) [562] mulf_init::dir#5 ← mulf_init::dir#2 +Coalesced [563] mulf_init::c#5 ← mulf_init::c#1 +Coalesced [564] mulf_init::sqr#6 ← mulf_init::sqr#1 +Coalesced [565] mulf_init::sqr1_lo#5 ← mulf_init::sqr1_lo#1 +Coalesced [566] mulf_init::sqr1_hi#5 ← mulf_init::sqr1_hi#1 +Coalesced [567] mulf_init::x_2#5 ← mulf_init::x_2#2 +Coalesced [568] mulf_init::sqr#7 ← mulf_init::sqr#4 +Coalesced (already) [569] mulf_init::x_2#6 ← mulf_init::x_2#3 +Coalesced down to 49 phi equivalence classes +Culled Empty Block (label) @1 +Culled Empty Block (label) @7 +Culled Empty Block (label) @13 +Culled Empty Block (label) @50 +Culled Empty Block (label) @59 +Culled Empty Block (label) @62 +Culled Empty Block (label) @64 +Culled Empty Block (label) main::@23 +Culled Empty Block (label) main::vicSelectGfxBank1_toDd001_@return +Culled Empty Block (label) main::@19 +Culled Empty Block (label) main::toD0181_@return +Culled Empty Block (label) main::@25 +Culled Empty Block (label) main::@26 +Culled Empty Block (label) show_letter::@15 +Culled Empty Block (label) show_letter::@14 +Culled Empty Block (label) show_letter::@2 +Culled Empty Block (label) bitmap_plot_spline_8seg::@4 +Culled Empty Block (label) bitmap_line::@28 +Culled Empty Block (label) bitmap_line::@22 +Culled Empty Block (label) bitmap_line::@25 +Culled Empty Block (label) bitmap_line::@26 +Culled Empty Block (label) bitmap_line::@27 +Culled Empty Block (label) bitmap_line::@29 +Culled Empty Block (label) bitmap_line::@30 +Culled Empty Block (label) bitmap_line::@20 +Culled Empty Block (label) sgn_u16::@3 +Culled Empty Block (label) abs_u16::@3 +Culled Empty Block (label) spline_8segB::@3 +Culled Empty Block (label) mulf16s::@8 +Culled Empty Block (label) mulf16s::@7 +Culled Empty Block (label) bitmap_clear::@2 +Culled Empty Block (label) memset::@1 +Culled Empty Block (label) memset::@6 +Culled Empty Block (label) bitmap_init::@3 +Culled Empty Block (label) bitmap_init::@4 +Culled Empty Block (label) bitmap_init::@11 +Culled Empty Block (label) bitmap_init::@12 +Culled Empty Block (label) bitmap_init::@9 +Culled Empty Block (label) mulf_init::@4 +Culled Empty Block (label) mulf_init::@7 +Culled Empty Block (label) mulf_init::@11 +Culled Empty Block (label) mulf_init::@9 +Culled Empty Block (label) mulf_init::@10 +Renumbering block @63 to @1 +Renumbering block memset::@2 to memset::@1 +Renumbering block memset::@4 to memset::@2 +Renumbering block bitmap_init::@5 to bitmap_init::@3 +Renumbering block bitmap_init::@6 to bitmap_init::@4 +Renumbering block bitmap_init::@7 to bitmap_init::@5 +Renumbering block bitmap_init::@10 to bitmap_init::@6 +Renumbering block bitmap_line::@6 to bitmap_line::@5 +Renumbering block bitmap_line::@7 to bitmap_line::@6 +Renumbering block bitmap_line::@8 to bitmap_line::@7 +Renumbering block bitmap_line::@9 to bitmap_line::@8 +Renumbering block bitmap_line::@12 to bitmap_line::@9 +Renumbering block bitmap_line::@13 to bitmap_line::@10 +Renumbering block bitmap_line::@14 to bitmap_line::@11 +Renumbering block bitmap_line::@16 to bitmap_line::@12 +Renumbering block bitmap_line::@17 to bitmap_line::@13 +Renumbering block bitmap_line::@18 to bitmap_line::@14 +Renumbering block bitmap_line::@19 to bitmap_line::@15 +Renumbering block bitmap_line::@21 to bitmap_line::@16 +Renumbering block bitmap_line::@23 to bitmap_line::@17 +Renumbering block bitmap_line::@24 to bitmap_line::@18 +Renumbering block mulf_init::@5 to mulf_init::@4 +Renumbering block mulf_init::@6 to mulf_init::@5 +Renumbering block mulf_init::@8 to mulf_init::@6 +Renumbering block mulf_init::@12 to mulf_init::@7 +Renumbering block mulf16s::@6 to mulf16s::@5 +Renumbering block main::@5 to main::@3 +Renumbering block main::@7 to main::@4 +Renumbering block main::@8 to main::@5 +Renumbering block main::@9 to main::@6 +Renumbering block main::@20 to main::@7 +Renumbering block main::@21 to main::@8 +Renumbering block main::@22 to main::@9 +Renumbering block main::@24 to main::@10 +Renumbering block show_letter::@3 to show_letter::@2 +Renumbering block show_letter::@5 to show_letter::@3 +Renumbering block show_letter::@6 to show_letter::@4 +Renumbering block show_letter::@7 to show_letter::@5 +Renumbering block show_letter::@11 to show_letter::@6 +Renumbering block show_letter::@12 to show_letter::@7 +Renumbering block show_letter::@13 to show_letter::@8 +Renumbering block show_letter::@16 to show_letter::@9 +Renumbering block bitmap_plot_spline_8seg::@3 to bitmap_plot_spline_8seg::@2 +Renumbering block rotate::@2 to rotate::@1 +Renumbering block rotate::@3 to rotate::@2 +Renumbering block rotate::@4 to rotate::@3 +Renumbering block rotate::@5 to rotate::@4 +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main::@8 +Adding NOP phi() at start of main::@9 +Adding NOP phi() at start of main::vicSelectGfxBank1_toDd001 +Adding NOP phi() at start of main::toD0181 +Adding NOP phi() at start of main::@2 +Adding NOP phi() at start of show_letter +Adding NOP phi() at start of show_letter::@8 +Adding NOP phi() at start of sgn_u16::@1 +Adding NOP phi() at start of bitmap_clear +Adding NOP phi() at start of bitmap_clear::@1 +Adding NOP phi() at start of bitmap_init +Adding NOP phi() at start of bitmap_init::@6 +Adding NOP phi() at start of mulf_init +Adding NOP phi() at start of mulf_init::@7 + +FINAL CONTROL FLOW GRAPH +@begin: scope:[] from + [0] phi() + to:@1 +@1: scope:[] from @begin + [1] phi() + [2] call main + to:@end +@end: scope:[] from @1 + [3] phi() +main: scope:[main] from @1 + [4] *((byte*)(const struct Segment[$16]) letter_c#0) ← (const byte) MOVE_TO + [5] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO) ← (signed byte) $6c + [6] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed word) $92 + [7] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA) ← (signed byte) 0 + [8] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed byte) 0 + [9] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [10] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $59 + [11] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b6 + [12] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 + [13] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a9 + [14] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [15] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3b + [16] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 + [17] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4b + [18] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 + [19] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [20] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $17 + [21] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b2 + [22] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $26 + [23] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 + [24] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [25] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 + [26] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $84 + [27] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 + [28] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a1 + [29] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [30] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $19 + [31] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $57 + [32] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 + [33] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 + [34] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [35] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $41 + [36] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [37] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $2a + [38] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [39] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [40] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d + [41] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f + [42] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 + [43] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [44] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [45] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 + [46] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 + [47] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 + [48] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 + [49] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [50] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $66 + [51] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6a + [52] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 + [53] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 + [54] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [55] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d + [56] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d + [57] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 + [58] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d + [59] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [60] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $51 + [61] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 + [62] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $55 + [63] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d + [64] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [65] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [66] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d + [67] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f + [68] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $65 + [69] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [70] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $49 + [71] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 + [72] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [73] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $56 + [74] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [75] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3d + [76] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [77] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 + [78] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [79] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [80] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 + [81] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 + [82] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $30 + [83] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e + [84] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [85] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d + [86] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $79 + [87] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d + [88] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $64 + [89] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [90] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 + [91] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $9e + [92] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d + [93] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $8e + [94] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [95] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $44 + [96] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae + [97] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $32 + [98] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae + [99] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [100] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5b + [101] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a6 + [102] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $50 + [103] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae + [104] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO + [105] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 + [106] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $90 + [107] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 + [108] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a0 + [109] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) LINE_TO + [110] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6c + [111] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $92 + [112] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 + [113] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 + [114] call mulf_init + to:main::@8 +main::@8: scope:[main] from main + [115] phi() + [116] call bitmap_init + to:main::@9 +main::@9: scope:[main] from main::@8 + [117] phi() + [118] call bitmap_clear + to:main::vicSelectGfxBank1 +main::vicSelectGfxBank1: scope:[main] from main::@9 + [119] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte) 3 + to:main::vicSelectGfxBank1_toDd001 +main::vicSelectGfxBank1_toDd001: scope:[main] from main::vicSelectGfxBank1 + [120] phi() + to:main::vicSelectGfxBank1_@1 +main::vicSelectGfxBank1_@1: scope:[main] from main::vicSelectGfxBank1_toDd001 + [121] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 + to:main::toD0181 +main::toD0181: scope:[main] from main::vicSelectGfxBank1_@1 + [122] phi() + to:main::@7 +main::@7: scope:[main] from main::toD0181 + [123] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 + [124] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 + to:main::@1 +main::@1: scope:[main] from main::@6 main::@7 + [125] (byte) main::angle#2 ← phi( main::@7/(byte) 0 main::@6/(byte) main::angle#1 ) + to:main::@2 +main::@2: scope:[main] from main::@1 + [126] phi() + [127] call bitmap_clear + to:main::@10 +main::@10: scope:[main] from main::@2 + [128] (byte) show_letter::angle#0 ← (byte) main::angle#2 + [129] call show_letter + to:main::@3 +main::@3: scope:[main] from main::@10 main::@3 main::@5 + [130] (byte) main::w#4 ← phi( main::@10/(byte) 0 main::@5/(byte) main::w#1 ) + [131] if(*((const byte*) RASTER#0)!=(byte) $fe) goto main::@3 + to:main::@4 +main::@4: scope:[main] from main::@3 main::@4 + [132] if(*((const byte*) RASTER#0)!=(byte) $ff) goto main::@4 + to:main::@5 +main::@5: scope:[main] from main::@4 + [133] (byte) main::w#1 ← ++ (byte) main::w#4 + [134] if((byte) main::w#1!=(byte) $3d) goto main::@3 + to:main::@6 +main::@6: scope:[main] from main::@5 + [135] (byte) main::angle#1 ← (byte) main::angle#2 + (byte) 9 + to:main::@1 +show_letter: scope:[show_letter] from main::@10 + [136] phi() + to:show_letter::@1 +show_letter::@1: scope:[show_letter] from show_letter show_letter::@9 + [137] (signed word) show_letter::current_y#4 ← phi( show_letter/(signed byte) 0 show_letter::@9/(signed word~) show_letter::current_y#11 ) + [137] (signed word) show_letter::current_x#4 ← phi( show_letter/(signed byte) 0 show_letter::@9/(signed word~) show_letter::current_x#11 ) + [137] (byte) show_letter::i#10 ← phi( show_letter/(byte) 0 show_letter::@9/(byte) show_letter::i#1 ) + [138] (byte) show_letter::$32 ← (byte) show_letter::i#10 << (byte) 3 + [139] (byte~) show_letter::$20 ← (byte) show_letter::$32 + (byte) show_letter::i#10 + [140] (signed word) show_letter::to_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO + (byte~) show_letter::$20) + [141] (signed word) show_letter::to_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$20) + [142] (signed word) show_letter::to_x#1 ← (signed word) show_letter::to_x#0 - (signed byte) $32 + [143] (signed word) show_letter::to_y#1 ← (signed word) show_letter::to_y#0 - (signed word) $96 + [144] (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 + [145] (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 + [146] (byte) rotate::angle#0 ← (byte) show_letter::angle#0 + [147] call rotate + [148] (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#2 + [149] (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#2 + to:show_letter::@6 +show_letter::@6: scope:[show_letter] from show_letter::@1 + [150] (signed word) show_letter::to_x#2 ← (signed word) rotate::return_x#0 + [151] (signed word) show_letter::to_y#2 ← (signed word) rotate::return_y#0 + [152] (signed word) show_letter::current_x#10 ← (signed word) show_letter::to_x#2 + (signed byte) $64 + [153] (signed word) show_letter::current_y#10 ← (signed word) show_letter::to_y#2 + (signed byte) $64 + [154] (byte) show_letter::$34 ← (byte) show_letter::i#10 << (byte) 3 + [155] (byte~) show_letter::$21 ← (byte) show_letter::$34 + (byte) show_letter::i#10 + [156] (signed word) show_letter::via_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA + (byte~) show_letter::$21) + [157] (signed word) show_letter::via_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$21) + [158] (signed word) show_letter::via_x#1 ← (signed word) show_letter::via_x#0 - (signed byte) $32 + [159] (signed word) show_letter::via_y#1 ← (signed word) show_letter::via_y#0 - (signed word) $96 + [160] (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 + [161] (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 + [162] (byte) rotate::angle#1 ← (byte) show_letter::angle#0 + [163] call rotate + [164] (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#2 + [165] (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#2 + to:show_letter::@7 +show_letter::@7: scope:[show_letter] from show_letter::@6 + [166] (signed word) show_letter::via_x#2 ← (signed word) rotate::return_x#1 + [167] (signed word) show_letter::via_y#2 ← (signed word) rotate::return_y#1 + [168] (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#2 + (signed byte) $64 + [169] (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#2 + (signed byte) $64 + [170] (byte) show_letter::$36 ← (byte) show_letter::i#10 << (byte) 3 + [171] (byte~) show_letter::$22 ← (byte) show_letter::$36 + (byte) show_letter::i#10 + [172] (byte) show_letter::segment_type#0 ← *((byte*)(const struct Segment[$16]) letter_c#0 + (byte~) show_letter::$22) + [173] if((byte) show_letter::segment_type#0==(const byte) MOVE_TO) goto show_letter::@3 + to:show_letter::@4 +show_letter::@4: scope:[show_letter] from show_letter::@7 + [174] if((byte) show_letter::segment_type#0==(const byte) SPLINE_TO) goto show_letter::@2 + to:show_letter::@5 +show_letter::@5: scope:[show_letter] from show_letter::@4 + [175] (word) bitmap_line::x1#0 ← (word)(signed word) show_letter::current_x#4 + [176] (word) bitmap_line::y1#0 ← (word)(signed word) show_letter::current_y#4 + [177] (word) bitmap_line::x2#0 ← (word)(signed word) show_letter::current_x#10 + [178] (word) bitmap_line::y2#0 ← (word)(signed word) show_letter::current_y#10 + [179] call bitmap_line + to:show_letter::@3 +show_letter::@3: scope:[show_letter] from show_letter::@5 show_letter::@7 show_letter::@8 + [180] (byte) show_letter::i#1 ← ++ (byte) show_letter::i#10 + [181] if((byte) show_letter::i#1!=(byte) $16) goto show_letter::@9 + to:show_letter::@return +show_letter::@return: scope:[show_letter] from show_letter::@3 + [182] return + to:@return +show_letter::@9: scope:[show_letter] from show_letter::@3 + [183] (signed word~) show_letter::current_x#11 ← (signed word) show_letter::current_x#10 + [184] (signed word~) show_letter::current_y#11 ← (signed word) show_letter::current_y#10 + to:show_letter::@1 +show_letter::@2: scope:[show_letter] from show_letter::@4 + [185] (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 + [186] (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 + [187] (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#0 + [188] (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#0 + [189] (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::current_x#10 + [190] (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::current_y#10 + [191] call spline_8segB + to:show_letter::@8 +show_letter::@8: scope:[show_letter] from show_letter::@2 + [192] phi() + [193] call bitmap_plot_spline_8seg + to:show_letter::@3 +bitmap_plot_spline_8seg: scope:[bitmap_plot_spline_8seg] from show_letter::@8 + [194] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0) + [195] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) + to:bitmap_plot_spline_8seg::@1 +bitmap_plot_spline_8seg::@1: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg bitmap_plot_spline_8seg::@2 + [196] (byte) bitmap_plot_spline_8seg::n#2 ← phi( bitmap_plot_spline_8seg/(byte) 1 bitmap_plot_spline_8seg::@2/(byte) bitmap_plot_spline_8seg::n#1 ) + [196] (signed word) bitmap_plot_spline_8seg::current_y#2 ← phi( bitmap_plot_spline_8seg/(signed word) bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::@2/(signed word) bitmap_plot_spline_8seg::current_y#1 ) + [196] (signed word) bitmap_plot_spline_8seg::current_x#2 ← phi( bitmap_plot_spline_8seg/(signed word) bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::@2/(signed word) bitmap_plot_spline_8seg::current_x#1 ) + [197] (word) bitmap_line::x1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 + [198] (word) bitmap_line::y1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 + [199] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 + [200] (word~) bitmap_line::x2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$8) + [201] (word~) bitmap_line::y2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$8) + [202] call bitmap_line + to:bitmap_plot_spline_8seg::@2 +bitmap_plot_spline_8seg::@2: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg::@1 + [203] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 + [204] (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$9) + [205] (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$9) + [206] (byte) bitmap_plot_spline_8seg::n#1 ← ++ (byte) bitmap_plot_spline_8seg::n#2 + [207] if((byte) bitmap_plot_spline_8seg::n#1!=(byte) 9) goto bitmap_plot_spline_8seg::@1 + to:bitmap_plot_spline_8seg::@return +bitmap_plot_spline_8seg::@return: scope:[bitmap_plot_spline_8seg] from bitmap_plot_spline_8seg::@2 + [208] return + to:@return +bitmap_line: scope:[bitmap_line] from bitmap_plot_spline_8seg::@1 show_letter::@5 + [209] (word) bitmap_line::y2#11 ← phi( bitmap_plot_spline_8seg::@1/(word~) bitmap_line::y2#13 show_letter::@5/(word) bitmap_line::y2#0 ) + [209] (word) bitmap_line::x2#10 ← phi( bitmap_plot_spline_8seg::@1/(word~) bitmap_line::x2#13 show_letter::@5/(word) bitmap_line::x2#0 ) + [209] (word) bitmap_line::y#0 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::y1#1 show_letter::@5/(word) bitmap_line::y1#0 ) + [209] (word) bitmap_line::x#0 ← phi( bitmap_plot_spline_8seg::@1/(word) bitmap_line::x1#1 show_letter::@5/(word) bitmap_line::x1#0 ) + [210] (word) abs_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 + [211] call abs_u16 + [212] (word) abs_u16::return#0 ← (word) abs_u16::return#4 + to:bitmap_line::@12 +bitmap_line::@12: scope:[bitmap_line] from bitmap_line + [213] (word) bitmap_line::dx#0 ← (word) abs_u16::return#0 + [214] (word) abs_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 + [215] call abs_u16 + [216] (word) abs_u16::return#1 ← (word) abs_u16::return#4 + to:bitmap_line::@13 +bitmap_line::@13: scope:[bitmap_line] from bitmap_line::@12 + [217] (word) bitmap_line::dy#0 ← (word) abs_u16::return#1 + [218] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 + to:bitmap_line::@18 +bitmap_line::@18: scope:[bitmap_line] from bitmap_line::@13 + [219] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 + to:bitmap_line::@1 +bitmap_line::@1: scope:[bitmap_line] from bitmap_line::@13 bitmap_line::@18 + [220] (word) sgn_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 + [221] call sgn_u16 + [222] (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 + to:bitmap_line::@14 +bitmap_line::@14: scope:[bitmap_line] from bitmap_line::@1 + [223] (word) bitmap_line::sx#0 ← (word) sgn_u16::return#0 + [224] (word) sgn_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 + [225] call sgn_u16 + [226] (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 + to:bitmap_line::@15 +bitmap_line::@15: scope:[bitmap_line] from bitmap_line::@14 + [227] (word) bitmap_line::sy#0 ← (word) sgn_u16::return#1 + [228] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 + to:bitmap_line::@5 +bitmap_line::@5: scope:[bitmap_line] from bitmap_line::@15 + [229] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 >> (byte) 1 + to:bitmap_line::@6 +bitmap_line::@6: scope:[bitmap_line] from bitmap_line::@5 bitmap_line::@7 + [230] (word) bitmap_line::e#3 ← phi( bitmap_line::@5/(word) bitmap_line::e#0 bitmap_line::@7/(word) bitmap_line::e#6 ) + [230] (word) bitmap_line::x#13 ← phi( bitmap_line::@5/(word) bitmap_line::x#0 bitmap_line::@7/(word) bitmap_line::x#12 ) + [230] (word) bitmap_line::y#4 ← phi( bitmap_line::@5/(word) bitmap_line::y#0 bitmap_line::@7/(word) bitmap_line::y#1 ) + [231] (byte) bitmap_plot::y#1 ← (byte)(word) bitmap_line::y#4 + [232] (word) bitmap_plot::x#1 ← (word) bitmap_line::x#13 + [233] call bitmap_plot + to:bitmap_line::@16 +bitmap_line::@16: scope:[bitmap_line] from bitmap_line::@6 + [234] (word) bitmap_line::y#1 ← (word) bitmap_line::y#4 + (word) bitmap_line::sy#0 + [235] (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#0 + [236] if((word) bitmap_line::dy#0>=(word) bitmap_line::e#1) goto bitmap_line::@7 + to:bitmap_line::@8 +bitmap_line::@8: scope:[bitmap_line] from bitmap_line::@16 + [237] (word) bitmap_line::x#1 ← (word) bitmap_line::x#13 + (word) bitmap_line::sx#0 + [238] (word) bitmap_line::e#2 ← (word) bitmap_line::e#1 - (word) bitmap_line::dy#0 + to:bitmap_line::@7 +bitmap_line::@7: scope:[bitmap_line] from bitmap_line::@16 bitmap_line::@8 + [239] (word) bitmap_line::e#6 ← phi( bitmap_line::@16/(word) bitmap_line::e#1 bitmap_line::@8/(word) bitmap_line::e#2 ) + [239] (word) bitmap_line::x#12 ← phi( bitmap_line::@16/(word) bitmap_line::x#13 bitmap_line::@8/(word) bitmap_line::x#1 ) + [240] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@6 + to:bitmap_line::@3 +bitmap_line::@3: scope:[bitmap_line] from bitmap_line::@10 bitmap_line::@7 + [241] (word) bitmap_line::x#6 ← phi( bitmap_line::@10/(word) bitmap_line::x#15 bitmap_line::@7/(word) bitmap_line::x#12 ) + [241] (word) bitmap_line::y#7 ← phi( bitmap_line::@10/(word) bitmap_line::y#13 bitmap_line::@7/(word) bitmap_line::y#1 ) + [242] (byte) bitmap_plot::y#2 ← (byte)(word) bitmap_line::y#7 + [243] (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 + [244] call bitmap_plot + to:bitmap_line::@return +bitmap_line::@return: scope:[bitmap_line] from bitmap_line::@3 bitmap_line::@4 + [245] return + to:@return +bitmap_line::@2: scope:[bitmap_line] from bitmap_line::@15 + [246] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 >> (byte) 1 + to:bitmap_line::@9 +bitmap_line::@9: scope:[bitmap_line] from bitmap_line::@10 bitmap_line::@2 + [247] (word) bitmap_line::e1#3 ← phi( bitmap_line::@10/(word) bitmap_line::e1#6 bitmap_line::@2/(word) bitmap_line::e1#0 ) + [247] (word) bitmap_line::x#7 ← phi( bitmap_line::@10/(word) bitmap_line::x#15 bitmap_line::@2/(word) bitmap_line::x#0 ) + [247] (word) bitmap_line::y#15 ← phi( bitmap_line::@10/(word) bitmap_line::y#13 bitmap_line::@2/(word) bitmap_line::y#0 ) + [248] (byte) bitmap_plot::y#3 ← (byte)(word) bitmap_line::y#15 + [249] (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 + [250] call bitmap_plot + to:bitmap_line::@17 +bitmap_line::@17: scope:[bitmap_line] from bitmap_line::@9 + [251] (word) bitmap_line::x#15 ← (word) bitmap_line::x#7 + (word) bitmap_line::sx#0 + [252] (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#0 + [253] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@10 + to:bitmap_line::@11 +bitmap_line::@11: scope:[bitmap_line] from bitmap_line::@17 + [254] (word) bitmap_line::y#2 ← (word) bitmap_line::y#15 + (word) bitmap_line::sy#0 + [255] (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#1 - (word) bitmap_line::dx#0 + to:bitmap_line::@10 +bitmap_line::@10: scope:[bitmap_line] from bitmap_line::@11 bitmap_line::@17 + [256] (word) bitmap_line::e1#6 ← phi( bitmap_line::@11/(word) bitmap_line::e1#2 bitmap_line::@17/(word) bitmap_line::e1#1 ) + [256] (word) bitmap_line::y#13 ← phi( bitmap_line::@11/(word) bitmap_line::y#2 bitmap_line::@17/(word) bitmap_line::y#15 ) + [257] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@9 + to:bitmap_line::@3 +bitmap_line::@4: scope:[bitmap_line] from bitmap_line::@18 + [258] (byte) bitmap_plot::y#0 ← (byte)(word) bitmap_line::y#0 + [259] (word) bitmap_plot::x#0 ← (word) bitmap_line::x#0 + [260] call bitmap_plot + to:bitmap_line::@return +bitmap_plot: scope:[bitmap_plot] from bitmap_line::@3 bitmap_line::@4 bitmap_line::@6 bitmap_line::@9 + [261] (word) bitmap_plot::x#4 ← phi( bitmap_line::@9/(word) bitmap_plot::x#3 bitmap_line::@3/(word) bitmap_plot::x#2 bitmap_line::@4/(word) bitmap_plot::x#0 bitmap_line::@6/(word) bitmap_plot::x#1 ) + [261] (byte) bitmap_plot::y#4 ← phi( bitmap_line::@9/(byte) bitmap_plot::y#3 bitmap_line::@3/(byte) bitmap_plot::y#2 bitmap_line::@4/(byte) bitmap_plot::y#0 bitmap_line::@6/(byte) bitmap_plot::y#1 ) + [262] (word) bitmap_plot::plotter#0 ← *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) w= *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) + [263] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 + [264] (byte*) bitmap_plot::plotter#1 ← (byte*)(word) bitmap_plot::plotter#0 + (word~) bitmap_plot::$1 + [265] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#4 + [266] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[$100]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) + to:bitmap_plot::@return +bitmap_plot::@return: scope:[bitmap_plot] from bitmap_plot + [267] return + to:@return +sgn_u16: scope:[sgn_u16] from bitmap_line::@1 bitmap_line::@14 + [268] (word) sgn_u16::w#2 ← phi( bitmap_line::@1/(word) sgn_u16::w#0 bitmap_line::@14/(word) sgn_u16::w#1 ) + [269] (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 + [270] (byte~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (byte) $80 + [271] if((byte) 0!=(byte~) sgn_u16::$1) goto sgn_u16::@1 + to:sgn_u16::@return +sgn_u16::@1: scope:[sgn_u16] from sgn_u16 + [272] phi() + to:sgn_u16::@return +sgn_u16::@return: scope:[sgn_u16] from sgn_u16 sgn_u16::@1 + [273] (word) sgn_u16::return#4 ← phi( sgn_u16::@1/(byte) -1 sgn_u16/(byte) 1 ) + [274] return + to:@return +abs_u16: scope:[abs_u16] from bitmap_line bitmap_line::@12 + [275] (word) abs_u16::w#2 ← phi( bitmap_line/(word) abs_u16::w#0 bitmap_line::@12/(word) abs_u16::w#1 ) + [276] (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 + [277] (byte~) abs_u16::$1 ← (byte~) abs_u16::$0 & (byte) $80 + [278] if((byte) 0!=(byte~) abs_u16::$1) goto abs_u16::@1 + to:abs_u16::@return +abs_u16::@1: scope:[abs_u16] from abs_u16 + [279] (word) abs_u16::return#2 ← - (word) abs_u16::w#2 + to:abs_u16::@return +abs_u16::@return: scope:[abs_u16] from abs_u16 abs_u16::@1 + [280] (word) abs_u16::return#4 ← phi( abs_u16::@1/(word) abs_u16::return#2 abs_u16/(word) abs_u16::w#2 ) + [281] return + to:@return +spline_8segB: scope:[spline_8segB] from show_letter::@2 + [282] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 << (byte) 1 + [283] (signed word~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#0 - (signed word~) spline_8segB::$0 + [284] (signed word) spline_8segB::a_x#0 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#0 + [285] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 << (byte) 1 + [286] (signed word~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#0 - (signed word~) spline_8segB::$3 + [287] (signed word) spline_8segB::a_y#0 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#0 + [288] (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#0 - (signed word) spline_8segB::p0_x#0 + [289] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 << (byte) 1 + [290] (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#0 - (signed word) spline_8segB::p0_y#0 + [291] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 << (byte) 1 + [292] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 << (byte) 3 + [293] (signed word) spline_8segB::i_x#0 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 + [294] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 << (byte) 3 + [295] (signed word) spline_8segB::i_y#0 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 + [296] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 << (byte) 1 + [297] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 << (byte) 1 + [298] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 << (byte) 6 + [299] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 << (byte) 6 + to:spline_8segB::@1 +spline_8segB::@1: scope:[spline_8segB] from spline_8segB spline_8segB::@1 + [300] (signed word) spline_8segB::i_y#2 ← phi( spline_8segB/(signed word) spline_8segB::i_y#0 spline_8segB::@1/(signed word) spline_8segB::i_y#1 ) + [300] (signed word) spline_8segB::i_x#2 ← phi( spline_8segB/(signed word) spline_8segB::i_x#0 spline_8segB::@1/(signed word) spline_8segB::i_x#1 ) + [300] (byte) spline_8segB::n#2 ← phi( spline_8segB/(byte) 0 spline_8segB::@1/(byte) spline_8segB::n#1 ) + [300] (signed word) spline_8segB::p_y#2 ← phi( spline_8segB/(signed word) spline_8segB::p_y#0 spline_8segB::@1/(signed word) spline_8segB::p_y#1 ) + [300] (signed word) spline_8segB::p_x#2 ← phi( spline_8segB/(signed word) spline_8segB::p_x#0 spline_8segB::@1/(signed word) spline_8segB::p_x#1 ) + [301] (signed word~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 + [302] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 >> (byte) 6 + [303] (signed word~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 + [304] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 >> (byte) 6 + [305] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 << (byte) 2 + [306] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$23 + [307] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$25 + [308] (signed word) spline_8segB::p_x#1 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 + [309] (signed word) spline_8segB::p_y#1 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 + [310] (signed word) spline_8segB::i_x#1 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#0 + [311] (signed word) spline_8segB::i_y#1 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#0 + [312] (byte) spline_8segB::n#1 ← ++ (byte) spline_8segB::n#2 + [313] if((byte) spline_8segB::n#1!=(byte) 8) goto spline_8segB::@1 + to:spline_8segB::@2 +spline_8segB::@2: scope:[spline_8segB] from spline_8segB::@1 + [314] (signed word~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#1 + (signed byte) $20 + [315] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 >> (byte) 6 + [316] (signed word~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#1 + (signed byte) $20 + [317] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 >> (byte) 6 + [318] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$19 + [319] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$21 + to:spline_8segB::@return +spline_8segB::@return: scope:[spline_8segB] from spline_8segB::@2 + [320] return + to:@return +rotate: scope:[rotate] from show_letter::@1 show_letter::@6 + [321] (signed word) rotate::vector_y#2 ← phi( show_letter::@1/(signed word) rotate::vector_y#0 show_letter::@6/(signed word) rotate::vector_y#1 ) + [321] (signed word) rotate::vector_x#2 ← phi( show_letter::@1/(signed word) rotate::vector_x#0 show_letter::@6/(signed word) rotate::vector_x#1 ) + [321] (byte) rotate::angle#2 ← phi( show_letter::@1/(byte) rotate::angle#0 show_letter::@6/(byte) rotate::angle#1 ) + [322] (signed word) rotate::cos_a#0 ← (signed word)*((const signed byte*) COS#0 + (byte) rotate::angle#2) + [323] (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 + [324] (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 + [325] call mulf16s + [326] (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#0 + to:rotate::@1 +rotate::@1: scope:[rotate] from rotate + [327] (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#2 + [328] (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 + [329] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 << (byte) 1 + [330] (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#0 + [331] (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 + [332] call mulf16s + [333] (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#0 + to:rotate::@2 +rotate::@2: scope:[rotate] from rotate::@1 + [334] (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#3 + [335] (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 + [336] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 << (byte) 1 + [337] (signed word) rotate::sin_a#0 ← (signed word)*((const signed byte[$140]) SIN#0 + (byte) rotate::angle#2) + [338] (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 + [339] (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#2 + [340] call mulf16s + [341] (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#0 + to:rotate::@3 +rotate::@3: scope:[rotate] from rotate::@2 + [342] (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#4 + [343] (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 + [344] (signed word~) rotate::$10 ← (signed word~) rotate::$9 << (byte) 1 + [345] (signed word) rotate::xr#1 ← (signed word) rotate::xr#0 - (signed word~) rotate::$10 + [346] (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#0 + [347] (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#2 + [348] call mulf16s + [349] (signed dword) mulf16s::return#10 ← (signed dword) mulf16s::return#0 + to:rotate::@4 +rotate::@4: scope:[rotate] from rotate::@3 + [350] (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 + [351] (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 + [352] (signed word~) rotate::$13 ← (signed word~) rotate::$12 << (byte) 1 + [353] (signed word) rotate::yr#1 ← (signed word) rotate::yr#0 + (signed word~) rotate::$13 + [354] (byte~) rotate::$15 ← > (signed word) rotate::xr#1 + [355] (signed word) rotate::return_x#2 ← (signed word)(signed byte)(byte~) rotate::$15 + [356] (byte~) rotate::$18 ← > (signed word) rotate::yr#1 + [357] (signed word) rotate::return_y#2 ← (signed word)(signed byte)(byte~) rotate::$18 + to:rotate::@return +rotate::@return: scope:[rotate] from rotate::@4 + [358] return + to:@return +mulf16s: scope:[mulf16s] from rotate rotate::@1 rotate::@2 rotate::@3 + [359] (signed word) mulf16s::b#4 ← phi( rotate/(signed word) mulf16s::b#0 rotate::@1/(signed word) mulf16s::b#1 rotate::@2/(signed word) mulf16s::b#2 rotate::@3/(signed word) mulf16s::b#3 ) + [359] (signed word) mulf16s::a#4 ← phi( rotate/(signed word) mulf16s::a#0 rotate::@1/(signed word) mulf16s::a#1 rotate::@2/(signed word) mulf16s::a#2 rotate::@3/(signed word) mulf16s::a#3 ) + [360] (word) mulf16u::a#0 ← (word)(signed word) mulf16s::a#4 + [361] (word) mulf16u::b#0 ← (word)(signed word) mulf16s::b#4 + [362] call mulf16u + [363] (dword) mulf16u::return#2 ← (dword) mulf16u::return#0 + to:mulf16s::@5 +mulf16s::@5: scope:[mulf16s] from mulf16s + [364] (dword) mulf16s::m#0 ← (dword) mulf16u::return#2 + [365] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 + to:mulf16s::@3 +mulf16s::@3: scope:[mulf16s] from mulf16s::@5 + [366] (word~) mulf16s::$9 ← > (dword) mulf16s::m#0 + [367] (word~) mulf16s::$16 ← (word~) mulf16s::$9 - (word)(signed word) mulf16s::b#4 + [368] (dword) mulf16s::m#1 ← (dword) mulf16s::m#0 hi= (word~) mulf16s::$16 + to:mulf16s::@1 +mulf16s::@1: scope:[mulf16s] from mulf16s::@3 mulf16s::@5 + [369] (dword) mulf16s::m#5 ← phi( mulf16s::@3/(dword) mulf16s::m#1 mulf16s::@5/(dword) mulf16s::m#0 ) + [370] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 + to:mulf16s::@4 +mulf16s::@4: scope:[mulf16s] from mulf16s::@1 + [371] (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 + [372] (word~) mulf16s::$17 ← (word~) mulf16s::$13 - (word)(signed word) mulf16s::a#4 + [373] (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 + to:mulf16s::@2 +mulf16s::@2: scope:[mulf16s] from mulf16s::@1 mulf16s::@4 + [374] (dword) mulf16s::m#4 ← phi( mulf16s::@1/(dword) mulf16s::m#5 mulf16s::@4/(dword) mulf16s::m#2 ) + [375] (signed dword) mulf16s::return#0 ← (signed dword)(dword) mulf16s::m#4 + to:mulf16s::@return +mulf16s::@return: scope:[mulf16s] from mulf16s::@2 + [376] return + to:@return +mulf16u: scope:[mulf16u] from mulf16s + [377] *((const word*) mulf16u::memA#0) ← (word) mulf16u::a#0 + [378] *((const word*) mulf16u::memB#0) ← (word) mulf16u::b#0 + asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } + [380] (dword) mulf16u::return#0 ← *((const dword*) mulf16u::memR#0) + to:mulf16u::@return +mulf16u::@return: scope:[mulf16u] from mulf16u + [381] return + to:@return +bitmap_clear: scope:[bitmap_clear] from main::@2 main::@9 + [382] phi() + [383] call memset + to:bitmap_clear::@1 +bitmap_clear::@1: scope:[bitmap_clear] from bitmap_clear + [384] phi() + [385] call memset + to:bitmap_clear::@return +bitmap_clear::@return: scope:[bitmap_clear] from bitmap_clear::@1 + [386] return + to:@return +memset: scope:[memset] from bitmap_clear bitmap_clear::@1 + [387] (byte) memset::c#3 ← phi( bitmap_clear/(const byte) bitmap_clear::col#0 bitmap_clear::@1/(byte) 0 ) + [387] (void*) memset::str#3 ← phi( bitmap_clear/(void*)(const byte*) BITMAP_SCREEN#0 bitmap_clear::@1/(void*)(const byte*) BITMAP_GRAPHICS#0 ) + [387] (word) memset::num#2 ← phi( bitmap_clear/(word) $3e8 bitmap_clear::@1/(word) $1f40 ) + [388] if((word) memset::num#2<=(byte) 0) goto memset::@return + to:memset::@1 +memset::@1: scope:[memset] from memset + [389] (byte*) memset::end#0 ← (byte*)(void*) memset::str#3 + (word) memset::num#2 + [390] (byte*~) memset::dst#3 ← (byte*)(void*) memset::str#3 + to:memset::@2 +memset::@2: scope:[memset] from memset::@1 memset::@2 + [391] (byte*) memset::dst#2 ← phi( memset::@1/(byte*~) memset::dst#3 memset::@2/(byte*) memset::dst#1 ) + [392] *((byte*) memset::dst#2) ← (byte) memset::c#3 + [393] (byte*) memset::dst#1 ← ++ (byte*) memset::dst#2 + [394] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@2 + to:memset::@return +memset::@return: scope:[memset] from memset memset::@2 + [395] return + to:@return +bitmap_init: scope:[bitmap_init] from main::@8 + [396] phi() + to:bitmap_init::@1 +bitmap_init::@1: scope:[bitmap_init] from bitmap_init bitmap_init::@2 + [397] (byte) bitmap_init::x#2 ← phi( bitmap_init/(byte) 0 bitmap_init::@2/(byte) bitmap_init::x#1 ) + [397] (byte) bitmap_init::bits#3 ← phi( bitmap_init/(byte) $80 bitmap_init::@2/(byte) bitmap_init::bits#4 ) + [398] *((const byte[$100]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 + [399] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte) 1 + [400] if((byte) bitmap_init::bits#1!=(byte) 0) goto bitmap_init::@6 + to:bitmap_init::@2 +bitmap_init::@6: scope:[bitmap_init] from bitmap_init::@1 + [401] phi() + to:bitmap_init::@2 +bitmap_init::@2: scope:[bitmap_init] from bitmap_init::@1 bitmap_init::@6 + [402] (byte) bitmap_init::bits#4 ← phi( bitmap_init::@6/(byte) bitmap_init::bits#1 bitmap_init::@1/(byte) $80 ) + [403] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 + [404] if((byte) bitmap_init::x#1!=(byte) 0) goto bitmap_init::@1 + to:bitmap_init::@3 +bitmap_init::@3: scope:[bitmap_init] from bitmap_init::@2 bitmap_init::@4 + [405] (byte*) bitmap_init::yoffs#2 ← phi( bitmap_init::@2/(const byte*) BITMAP_GRAPHICS#0 bitmap_init::@4/(byte*) bitmap_init::yoffs#4 ) + [405] (byte) bitmap_init::y#2 ← phi( bitmap_init::@2/(byte) 0 bitmap_init::@4/(byte) bitmap_init::y#1 ) + [406] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 + [407] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 + [408] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$7 | (byte~) bitmap_init::$4 + [409] *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 + [410] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 + [411] *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 + [412] if((byte~) bitmap_init::$7!=(byte) 7) goto bitmap_init::@4 + to:bitmap_init::@5 +bitmap_init::@5: scope:[bitmap_init] from bitmap_init::@3 + [413] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (word)(number) $28*(number) 8 + to:bitmap_init::@4 +bitmap_init::@4: scope:[bitmap_init] from bitmap_init::@3 bitmap_init::@5 + [414] (byte*) bitmap_init::yoffs#4 ← phi( bitmap_init::@3/(byte*) bitmap_init::yoffs#2 bitmap_init::@5/(byte*) bitmap_init::yoffs#1 ) + [415] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 + [416] if((byte) bitmap_init::y#1!=(byte) 0) goto bitmap_init::@3 + to:bitmap_init::@return +bitmap_init::@return: scope:[bitmap_init] from bitmap_init::@4 + [417] return + to:@return +mulf_init: scope:[mulf_init] from main + [418] phi() + to:mulf_init::@1 +mulf_init::@1: scope:[mulf_init] from mulf_init mulf_init::@2 + [419] (byte) mulf_init::x_2#3 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::x_2#2 ) + [419] (byte*) mulf_init::sqr1_hi#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_hi#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_hi#1 ) + [419] (byte*) mulf_init::sqr1_lo#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_lo#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_lo#1 ) + [419] (word) mulf_init::sqr#4 ← phi( mulf_init/(byte) 0 mulf_init::@2/(word) mulf_init::sqr#1 ) + [419] (byte) mulf_init::c#2 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::c#1 ) + [420] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 + [421] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 + [422] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 + to:mulf_init::@3 +mulf_init::@3: scope:[mulf_init] from mulf_init::@1 + [423] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 + [424] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 + to:mulf_init::@2 +mulf_init::@2: scope:[mulf_init] from mulf_init::@1 mulf_init::@3 + [425] (byte) mulf_init::x_2#2 ← phi( mulf_init::@1/(byte) mulf_init::x_2#3 mulf_init::@3/(byte) mulf_init::x_2#1 ) + [425] (word) mulf_init::sqr#3 ← phi( mulf_init::@1/(word) mulf_init::sqr#4 mulf_init::@3/(word) mulf_init::sqr#2 ) + [426] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 + [427] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 + [428] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 + [429] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 + [430] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 + [431] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 + [432] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 + [433] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 + to:mulf_init::@4 +mulf_init::@4: scope:[mulf_init] from mulf_init::@2 mulf_init::@5 + [434] (byte) mulf_init::dir#2 ← phi( mulf_init::@2/(byte) $ff mulf_init::@5/(byte) mulf_init::dir#3 ) + [434] (byte*) mulf_init::sqr2_hi#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_hi#0 mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 ) + [434] (byte*) mulf_init::sqr2_lo#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_lo#0 mulf_init::@5/(byte*) mulf_init::sqr2_lo#1 ) + [434] (byte) mulf_init::x_255#2 ← phi( mulf_init::@2/(byte) -1 mulf_init::@5/(byte) mulf_init::x_255#1 ) + [435] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) + [436] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) + [437] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 + [438] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 + [439] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 + to:mulf_init::@5 +mulf_init::@7: scope:[mulf_init] from mulf_init::@4 + [440] phi() + to:mulf_init::@5 +mulf_init::@5: scope:[mulf_init] from mulf_init::@4 mulf_init::@7 + [441] (byte) mulf_init::dir#3 ← phi( mulf_init::@7/(byte) mulf_init::dir#2 mulf_init::@4/(byte) 1 ) + [442] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 + [443] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 + to:mulf_init::@6 +mulf_init::@6: scope:[mulf_init] from mulf_init::@5 + [444] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) + [445] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) + to:mulf_init::@return +mulf_init::@return: scope:[mulf_init] from mulf_init::@6 + [446] return + to:@return + +null depth in calling loop Loop head: bitmap_plot_spline_8seg::@1 tails: bitmap_plot_spline_8seg::@2 blocks: bitmap_plot_spline_8seg::@2 bitmap_plot_spline_8seg::@1 in scope bitmap_line + +VARIABLE REGISTER WEIGHTS +(byte*) BITMAP_GRAPHICS +(byte*) BITMAP_SCREEN +(byte) BLACK +(byte*) CIA2_PORT_A +(byte*) CIA2_PORT_A_DDR +(signed byte*) COS +(byte*) D011 +(byte*) D018 +(byte*) PRINT_SCREEN +(byte*) RASTER +(signed byte[$140]) SIN +(struct SplineVector16[9]) SPLINE_8SEG +(struct SplineVector16) Segment::to +(byte) Segment::type +(struct SplineVector16) Segment::via +(signed word) SplineVector16::x +(signed word) SplineVector16::y +(signed dword) SplineVector32::x +(signed dword) SplineVector32::y +(byte) VIC_BMM +(byte) VIC_DEN +(byte) VIC_RSEL +(byte) WHITE +(word()) abs_u16((word) abs_u16::w) +(byte~) abs_u16::$0 4.0 +(byte~) abs_u16::$1 4.0 +(word) abs_u16::return +(word) abs_u16::return#0 4.0 +(word) abs_u16::return#1 4.0 +(word) abs_u16::return#2 4.0 +(word) abs_u16::return#4 2.0 +(word) abs_u16::w +(word) abs_u16::w#0 4.0 +(word) abs_u16::w#1 4.0 +(word) abs_u16::w#2 2.5 +(void()) bitmap_clear((byte) bitmap_clear::bgcol , (byte) bitmap_clear::fgcol) +(byte) bitmap_clear::bgcol +(byte) bitmap_clear::col +(byte) bitmap_clear::fgcol +(byte*) bitmap_gfx +(void()) bitmap_init((byte*) bitmap_init::gfx , (byte*) bitmap_init::screen) +(byte~) bitmap_init::$4 22.0 +(byte~) bitmap_init::$5 22.0 +(byte~) bitmap_init::$6 22.0 +(byte~) bitmap_init::$7 5.5 +(byte) bitmap_init::bits +(byte) bitmap_init::bits#1 11.0 +(byte) bitmap_init::bits#3 16.5 +(byte) bitmap_init::bits#4 7.333333333333333 +(byte*) bitmap_init::gfx +(byte*) bitmap_init::screen +(byte) bitmap_init::x +(byte) bitmap_init::x#1 16.5 +(byte) bitmap_init::x#2 5.5 +(byte) bitmap_init::y +(byte) bitmap_init::y#1 16.5 +(byte) bitmap_init::y#2 5.5 +(byte*) bitmap_init::yoffs +(byte*) bitmap_init::yoffs#1 22.0 +(byte*) bitmap_init::yoffs#2 6.875 +(byte*) bitmap_init::yoffs#4 11.0 +(void()) bitmap_line((word) bitmap_line::x1 , (word) bitmap_line::y1 , (word) bitmap_line::x2 , (word) bitmap_line::y2) +(word) bitmap_line::dx +(word) bitmap_line::dx#0 75.275 +(word) bitmap_line::dy +(word) bitmap_line::dy#0 83.6388888888889 +(word) bitmap_line::e +(word) bitmap_line::e#0 4.0 +(word) bitmap_line::e#1 1334.6666666666667 +(word) bitmap_line::e#2 2002.0 +(word) bitmap_line::e#3 400.79999999999995 +(word) bitmap_line::e#6 1501.5 +(word) bitmap_line::e1 +(word) bitmap_line::e1#0 4.0 +(word) bitmap_line::e1#1 1334.6666666666667 +(word) bitmap_line::e1#2 2002.0 +(word) bitmap_line::e1#3 400.79999999999995 +(word) bitmap_line::e1#6 1501.5 +(word) bitmap_line::sx +(word) bitmap_line::sx#0 66.80000000000001 +(word) bitmap_line::sy +(word) bitmap_line::sy#0 77.07692307692308 +(word) bitmap_line::x +(word) bitmap_line::x#0 48.34782608695653 +(word) bitmap_line::x#1 1001.0 +(word) bitmap_line::x#12 2002.0 +(word) bitmap_line::x#13 572.2857142857142 +(word) bitmap_line::x#15 572.0 +(word) bitmap_line::x#6 1002.0 +(word) bitmap_line::x#7 751.25 +(word) bitmap_line::x1 +(word) bitmap_line::x1#0 50.5 +(word) bitmap_line::x1#1 400.4 +(word) bitmap_line::x2 +(word) bitmap_line::x2#0 101.0 +(word) bitmap_line::x2#10 65.84375 +(word~) bitmap_line::x2#13 1001.0 +(word) bitmap_line::y +(word) bitmap_line::y#0 50.45454545454547 +(word) bitmap_line::y#1 572.0 +(word) bitmap_line::y#13 2002.0 +(word) bitmap_line::y#15 429.2857142857143 +(word) bitmap_line::y#2 1001.0 +(word) bitmap_line::y#4 501.0 +(word) bitmap_line::y#7 2002.0 +(word) bitmap_line::y1 +(word) bitmap_line::y1#0 67.33333333333333 +(word) bitmap_line::y1#1 500.5 +(word) bitmap_line::y2 +(word) bitmap_line::y2#0 202.0 +(word) bitmap_line::y2#11 65.84375 +(word~) bitmap_line::y2#13 2002.0 +(void()) bitmap_plot((word) bitmap_plot::x , (byte) bitmap_plot::y) +(word~) bitmap_plot::$1 4.0 +(byte~) bitmap_plot::$2 4.0 +(byte*) bitmap_plot::plotter +(word) bitmap_plot::plotter#0 1.0 +(byte*) bitmap_plot::plotter#1 3.0 +(word) bitmap_plot::x +(word) bitmap_plot::x#0 4.0 +(word) bitmap_plot::x#1 2002.0 +(word) bitmap_plot::x#2 4.0 +(word) bitmap_plot::x#3 2002.0 +(word) bitmap_plot::x#4 502.5 +(byte) bitmap_plot::y +(byte) bitmap_plot::y#0 2.0 +(byte) bitmap_plot::y#1 1001.0 +(byte) bitmap_plot::y#2 2.0 +(byte) bitmap_plot::y#3 1001.0 +(byte) bitmap_plot::y#4 2010.0 +(byte[$100]) bitmap_plot_bit +(void()) bitmap_plot_spline_8seg() +(byte~) bitmap_plot_spline_8seg::$8 500.5 +(byte~) bitmap_plot_spline_8seg::$9 1501.5 +(signed word) bitmap_plot_spline_8seg::current_x +(signed word) bitmap_plot_spline_8seg::current_x#0 2.0 +(signed word) bitmap_plot_spline_8seg::current_x#1 500.5 +(signed word) bitmap_plot_spline_8seg::current_x#2 1003.0 +(signed word) bitmap_plot_spline_8seg::current_y +(signed word) bitmap_plot_spline_8seg::current_y#0 4.0 +(signed word) bitmap_plot_spline_8seg::current_y#1 667.3333333333334 +(signed word) bitmap_plot_spline_8seg::current_y#2 501.5 +(byte) bitmap_plot_spline_8seg::n +(byte) bitmap_plot_spline_8seg::n#1 1501.5 +(byte) bitmap_plot_spline_8seg::n#2 400.4 +(byte[$100]) bitmap_plot_yhi +(byte[$100]) bitmap_plot_ylo +(byte*) bitmap_screen +(struct Segment[$16]) letter_c +(void()) main() +(byte) main::angle +(byte) main::angle#1 22.0 +(byte) main::angle#2 3.3000000000000003 +(word~) main::toD0181_$0 +(number~) main::toD0181_$1 +(number~) main::toD0181_$2 +(number~) main::toD0181_$3 +(word~) main::toD0181_$4 +(byte~) main::toD0181_$5 +(number~) main::toD0181_$6 +(number~) main::toD0181_$7 +(number~) main::toD0181_$8 +(byte*) main::toD0181_gfx +(byte) main::toD0181_return +(byte*) main::toD0181_screen +(byte~) main::vicSelectGfxBank1_$0 +(byte*) main::vicSelectGfxBank1_gfx +(word~) main::vicSelectGfxBank1_toDd001_$0 +(byte~) main::vicSelectGfxBank1_toDd001_$1 +(number~) main::vicSelectGfxBank1_toDd001_$2 +(number~) main::vicSelectGfxBank1_toDd001_$3 +(byte*) main::vicSelectGfxBank1_toDd001_gfx +(byte) main::vicSelectGfxBank1_toDd001_return +(byte) main::w +(byte) main::w#1 151.5 +(byte) main::w#4 67.33333333333333 +(void*()) memset((void*) memset::str , (byte) memset::c , (word) memset::num) +(byte) memset::c +(byte) memset::c#3 12.625 +(byte*) memset::dst +(byte*) memset::dst#1 151.5 +(byte*) memset::dst#2 152.5 +(byte*~) memset::dst#3 4.0 +(byte*) memset::end +(byte*) memset::end#0 17.166666666666664 +(word) memset::num +(word) memset::num#2 2.0 +(void*) memset::return +(void*) memset::str +(void*) memset::str#3 +(signed dword()) mulf16s((signed word) mulf16s::a , (signed word) mulf16s::b) +(word~) mulf16s::$13 4.0 +(word~) mulf16s::$16 4.0 +(word~) mulf16s::$17 4.0 +(word~) mulf16s::$9 4.0 +(signed word) mulf16s::a +(signed word) mulf16s::a#0 2.0 +(signed word) mulf16s::a#1 2.0 +(signed word) mulf16s::a#2 2.0 +(signed word) mulf16s::a#3 2.0 +(signed word) mulf16s::a#4 0.7692307692307693 +(signed word) mulf16s::b +(signed word) mulf16s::b#0 4.0 +(signed word) mulf16s::b#1 4.0 +(signed word) mulf16s::b#2 4.0 +(signed word) mulf16s::b#3 4.0 +(signed word) mulf16s::b#4 0.9090909090909092 +(dword) mulf16s::m +(dword) mulf16s::m#0 2.0 +(dword) mulf16s::m#1 4.0 +(dword) mulf16s::m#2 4.0 +(dword) mulf16s::m#4 4.0 +(dword) mulf16s::m#5 2.5 +(signed dword) mulf16s::return +(signed dword) mulf16s::return#0 1.6666666666666665 +(signed dword) mulf16s::return#10 4.0 +(signed dword) mulf16s::return#2 4.0 +(signed dword) mulf16s::return#3 4.0 +(signed dword) mulf16s::return#4 4.0 +(dword()) mulf16u((word) mulf16u::a , (word) mulf16u::b) +(word) mulf16u::a +(word) mulf16u::a#0 2.0 +(word) mulf16u::b +(word) mulf16u::b#0 2.0 +(word*) mulf16u::memA +(word*) mulf16u::memB +(dword*) mulf16u::memR +(dword) mulf16u::return +(dword) mulf16u::return#0 1.3333333333333333 +(dword) mulf16u::return#2 4.0 +(void()) mulf_init() +(byte~) mulf_init::$10 22.0 +(byte~) mulf_init::$11 22.0 +(byte~) mulf_init::$7 22.0 +(byte) mulf_init::c +(byte) mulf_init::c#1 2.357142857142857 +(byte) mulf_init::c#2 22.0 +(byte) mulf_init::dir +(byte) mulf_init::dir#2 4.714285714285714 +(byte) mulf_init::dir#3 7.333333333333333 +(word) mulf_init::sqr +(word) mulf_init::sqr#1 7.333333333333333 +(word) mulf_init::sqr#2 22.0 +(word) mulf_init::sqr#3 9.166666666666666 +(word) mulf_init::sqr#4 6.6000000000000005 +(byte*) mulf_init::sqr1_hi +(byte*) mulf_init::sqr1_hi#1 5.5 +(byte*) mulf_init::sqr1_hi#2 3.0 +(byte*) mulf_init::sqr1_lo +(byte*) mulf_init::sqr1_lo#1 16.5 +(byte*) mulf_init::sqr1_lo#2 2.5384615384615383 +(byte*) mulf_init::sqr2_hi +(byte*) mulf_init::sqr2_hi#1 3.142857142857143 +(byte*) mulf_init::sqr2_hi#2 11.0 +(byte*) mulf_init::sqr2_lo +(byte*) mulf_init::sqr2_lo#1 16.5 +(byte*) mulf_init::sqr2_lo#2 4.125 +(byte) mulf_init::x_2 +(byte) mulf_init::x_2#1 11.0 +(byte) mulf_init::x_2#2 4.888888888888889 +(byte) mulf_init::x_2#3 8.25 +(byte) mulf_init::x_255 +(byte) mulf_init::x_255#1 5.5 +(byte) mulf_init::x_255#2 11.0 +(byte[$200]) mulf_sqr1_hi +(byte[$200]) mulf_sqr1_lo +(byte[$200]) mulf_sqr2_hi +(byte[$200]) mulf_sqr2_lo +(struct SplineVector16()) rotate((signed word) rotate::vector_x , (signed word) rotate::vector_y , (byte) rotate::angle) +(signed dword~) rotate::$1 2.0 +(signed word~) rotate::$10 4.0 +(signed dword~) rotate::$11 2.0 +(signed word~) rotate::$12 4.0 +(signed word~) rotate::$13 4.0 +(byte~) rotate::$15 2.0 +(byte~) rotate::$18 2.0 +(signed word~) rotate::$2 4.0 +(signed dword~) rotate::$4 2.0 +(signed word~) rotate::$5 4.0 +(signed dword~) rotate::$8 2.0 +(signed word~) rotate::$9 4.0 +(byte) rotate::angle +(byte) rotate::angle#0 202.0 +(byte) rotate::angle#1 202.0 +(byte) rotate::angle#2 12.625 +(signed word) rotate::cos_a +(signed word) rotate::cos_a#0 0.75 +(struct SplineVector16) rotate::return +(signed word) rotate::return_x +(signed word) rotate::return_x#0 101.0 +(signed word) rotate::return_x#1 101.0 +(signed word) rotate::return_x#2 34.0 +(signed word) rotate::return_y +(signed word) rotate::return_y#0 101.0 +(signed word) rotate::return_y#1 101.0 +(signed word) rotate::return_y#2 34.0 +(signed word) rotate::rotated_x +(signed word) rotate::rotated_y +(signed word) rotate::sin_a +(signed word) rotate::sin_a#0 0.6666666666666666 +(struct SplineVector16) rotate::vector +(signed word) rotate::vector_x +(signed word) rotate::vector_x#0 67.33333333333333 +(signed word) rotate::vector_x#1 67.33333333333333 +(signed word) rotate::vector_x#2 7.9230769230769225 +(signed word) rotate::vector_y +(signed word) rotate::vector_y#0 101.0 +(signed word) rotate::vector_y#1 101.0 +(signed word) rotate::vector_y#2 11.444444444444443 +(signed word) rotate::xr +(signed word) rotate::xr#0 0.25 +(signed word) rotate::xr#1 0.4444444444444444 +(signed word) rotate::yr +(signed word) rotate::yr#0 0.23529411764705882 +(signed word) rotate::yr#1 1.3333333333333333 +(word()) sgn_u16((word) sgn_u16::w) +(byte~) sgn_u16::$0 4.0 +(byte~) sgn_u16::$1 4.0 +(word) sgn_u16::return +(word) sgn_u16::return#0 4.0 +(word) sgn_u16::return#1 4.0 +(word) sgn_u16::return#4 1.0 +(word) sgn_u16::w +(word) sgn_u16::w#0 4.0 +(word) sgn_u16::w#1 4.0 +(word) sgn_u16::w#2 6.0 +(void()) show_letter((byte) show_letter::angle) +(struct SplineVector16~) show_letter::$2 +(byte~) show_letter::$20 151.5 +(byte~) show_letter::$21 151.5 +(byte~) show_letter::$22 202.0 +(byte) show_letter::$32 202.0 +(byte) show_letter::$34 202.0 +(byte) show_letter::$36 202.0 +(struct SplineVector16~) show_letter::$7 +(byte) show_letter::angle +(byte) show_letter::angle#0 3.6724137931034484 +(signed word) show_letter::current_x +(signed word) show_letter::current_x#10 7.76923076923077 +(signed word~) show_letter::current_x#11 101.0 +(signed word) show_letter::current_x#4 5.315789473684211 +(signed word) show_letter::current_y +(signed word) show_letter::current_y#10 7.76923076923077 +(signed word~) show_letter::current_y#11 202.0 +(signed word) show_letter::current_y#4 5.05 +(byte) show_letter::i +(byte) show_letter::i#1 75.75 +(byte) show_letter::i#10 15.538461538461537 +(signed word) show_letter::segment_to_x +(signed word) show_letter::segment_to_y +(byte) show_letter::segment_type +(byte) show_letter::segment_type#0 151.5 +(signed word) show_letter::segment_via_x +(signed word) show_letter::segment_via_x#0 22.444444444444443 +(signed word) show_letter::segment_via_y +(signed word) show_letter::segment_via_y#0 22.444444444444443 +(signed word) show_letter::to_x +(signed word) show_letter::to_x#0 101.0 +(signed word) show_letter::to_x#1 101.0 +(signed word) show_letter::to_x#2 101.0 +(signed word) show_letter::to_y +(signed word) show_letter::to_y#0 101.0 +(signed word) show_letter::to_y#1 101.0 +(signed word) show_letter::to_y#2 101.0 +(signed word) show_letter::via_x +(signed word) show_letter::via_x#0 101.0 +(signed word) show_letter::via_x#1 101.0 +(signed word) show_letter::via_x#2 101.0 +(signed word) show_letter::via_y +(signed word) show_letter::via_y#0 101.0 +(signed word) show_letter::via_y#1 101.0 +(signed word) show_letter::via_y#2 101.0 +(void()) spline_8segB((signed word) spline_8segB::p0_x , (signed word) spline_8segB::p0_y , (signed word) spline_8segB::p1_x , (signed word) spline_8segB::p1_y , (signed word) spline_8segB::p2_x , (signed word) spline_8segB::p2_y) +(signed word~) spline_8segB::$0 4.0 +(signed word~) spline_8segB::$1 4.0 +(signed word~) spline_8segB::$10 4.0 +(signed word~) spline_8segB::$12 4.0 +(signed word~) spline_8segB::$18 4.0 +(signed word~) spline_8segB::$19 1.3333333333333333 +(signed word~) spline_8segB::$20 4.0 +(signed word~) spline_8segB::$21 2.0 +(signed word~) spline_8segB::$22 2002.0 +(signed word~) spline_8segB::$23 500.5 +(signed word~) spline_8segB::$24 2002.0 +(signed word~) spline_8segB::$25 667.3333333333334 +(signed word~) spline_8segB::$3 4.0 +(byte~) spline_8segB::$31 1501.5 +(signed word~) spline_8segB::$4 4.0 +(signed word~) spline_8segB::$6 4.0 +(signed word~) spline_8segB::$8 4.0 +(signed word) spline_8segB::a_x +(signed word) spline_8segB::a_x#0 0.5 +(signed word) spline_8segB::a_y +(signed word) spline_8segB::a_y#0 0.6000000000000001 +(signed word) spline_8segB::b_x +(signed word) spline_8segB::b_x#0 1.3333333333333333 +(signed word) spline_8segB::b_y +(signed word) spline_8segB::b_y#0 1.3333333333333333 +(signed word) spline_8segB::i_x +(signed word) spline_8segB::i_x#0 0.5714285714285714 +(signed word) spline_8segB::i_x#1 500.5 +(signed word) spline_8segB::i_x#2 300.5 +(signed word) spline_8segB::i_y +(signed word) spline_8segB::i_y#0 0.8 +(signed word) spline_8segB::i_y#1 667.3333333333334 +(signed word) spline_8segB::i_y#2 273.1818181818182 +(signed word) spline_8segB::j_x +(signed word) spline_8segB::j_x#0 55.72222222222223 +(signed word) spline_8segB::j_y +(signed word) spline_8segB::j_y#0 59.0 +(byte) spline_8segB::n +(byte) spline_8segB::n#1 1501.5 +(byte) spline_8segB::n#2 250.25 +(struct SplineVector16) spline_8segB::p0 +(signed word) spline_8segB::p0_x +(signed word) spline_8segB::p0_x#0 4.863636363636363 +(signed word) spline_8segB::p0_y +(signed word) spline_8segB::p0_y#0 4.863636363636363 +(struct SplineVector16) spline_8segB::p1 +(signed word) spline_8segB::p1_x +(signed word) spline_8segB::p1_x#0 10.499999999999998 +(signed word) spline_8segB::p1_y +(signed word) spline_8segB::p1_y#0 9.545454545454545 +(struct SplineVector16) spline_8segB::p2 +(signed word) spline_8segB::p2_x +(signed word) spline_8segB::p2_x#0 34.33333333333333 +(signed word) spline_8segB::p2_y +(signed word) spline_8segB::p2_y#0 20.599999999999998 +(signed word) spline_8segB::p_x +(signed word) spline_8segB::p_x#0 2.0 +(signed word) spline_8segB::p_x#1 334.0 +(signed word) spline_8segB::p_x#2 375.625 +(signed word) spline_8segB::p_y +(signed word) spline_8segB::p_y#0 4.0 +(signed word) spline_8segB::p_y#1 286.2857142857143 +(signed word) spline_8segB::p_y#2 333.8888888888889 + +Initial phi equivalence classes +[ main::angle#2 main::angle#1 ] +[ main::w#4 main::w#1 ] +[ show_letter::i#10 show_letter::i#1 ] +[ show_letter::current_x#4 show_letter::current_x#11 ] +[ show_letter::current_y#4 show_letter::current_y#11 ] +[ bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] +[ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] +[ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +[ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] +[ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] +[ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] +[ bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] +[ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 ] +[ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] +[ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] +[ bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] +[ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] +[ sgn_u16::return#4 ] +[ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 ] +[ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 ] +[ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 ] +[ spline_8segB::n#2 spline_8segB::n#1 ] +[ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 ] +[ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 ] +[ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] +[ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 ] +[ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 ] +[ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 ] +[ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] +[ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 ] +[ memset::num#2 ] +[ memset::str#3 ] +[ memset::c#3 ] +[ memset::dst#2 memset::dst#3 memset::dst#1 ] +[ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] +[ bitmap_init::x#2 bitmap_init::x#1 ] +[ bitmap_init::y#2 bitmap_init::y#1 ] +[ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +[ mulf_init::c#2 mulf_init::c#1 ] +[ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +[ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +[ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +[ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +[ mulf_init::x_255#2 mulf_init::x_255#1 ] +[ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +[ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +[ mulf_init::dir#2 mulf_init::dir#3 ] +Added variable show_letter::angle#0 to zero page equivalence class [ show_letter::angle#0 ] +Added variable show_letter::$32 to zero page equivalence class [ show_letter::$32 ] +Added variable show_letter::$20 to zero page equivalence class [ show_letter::$20 ] +Added variable show_letter::to_x#0 to zero page equivalence class [ show_letter::to_x#0 ] +Added variable show_letter::to_y#0 to zero page equivalence class [ show_letter::to_y#0 ] +Added variable show_letter::to_x#1 to zero page equivalence class [ show_letter::to_x#1 ] +Added variable show_letter::to_y#1 to zero page equivalence class [ show_letter::to_y#1 ] +Added variable rotate::return_x#0 to zero page equivalence class [ rotate::return_x#0 ] +Added variable rotate::return_y#0 to zero page equivalence class [ rotate::return_y#0 ] +Added variable show_letter::to_x#2 to zero page equivalence class [ show_letter::to_x#2 ] +Added variable show_letter::to_y#2 to zero page equivalence class [ show_letter::to_y#2 ] +Added variable show_letter::current_x#10 to zero page equivalence class [ show_letter::current_x#10 ] +Added variable show_letter::current_y#10 to zero page equivalence class [ show_letter::current_y#10 ] +Added variable show_letter::$34 to zero page equivalence class [ show_letter::$34 ] +Added variable show_letter::$21 to zero page equivalence class [ show_letter::$21 ] +Added variable show_letter::via_x#0 to zero page equivalence class [ show_letter::via_x#0 ] +Added variable show_letter::via_y#0 to zero page equivalence class [ show_letter::via_y#0 ] +Added variable show_letter::via_x#1 to zero page equivalence class [ show_letter::via_x#1 ] +Added variable show_letter::via_y#1 to zero page equivalence class [ show_letter::via_y#1 ] +Added variable rotate::return_x#1 to zero page equivalence class [ rotate::return_x#1 ] +Added variable rotate::return_y#1 to zero page equivalence class [ rotate::return_y#1 ] +Added variable show_letter::via_x#2 to zero page equivalence class [ show_letter::via_x#2 ] +Added variable show_letter::via_y#2 to zero page equivalence class [ show_letter::via_y#2 ] +Added variable show_letter::segment_via_x#0 to zero page equivalence class [ show_letter::segment_via_x#0 ] +Added variable show_letter::segment_via_y#0 to zero page equivalence class [ show_letter::segment_via_y#0 ] +Added variable show_letter::$36 to zero page equivalence class [ show_letter::$36 ] +Added variable show_letter::$22 to zero page equivalence class [ show_letter::$22 ] +Added variable show_letter::segment_type#0 to zero page equivalence class [ show_letter::segment_type#0 ] +Added variable spline_8segB::p0_x#0 to zero page equivalence class [ spline_8segB::p0_x#0 ] +Added variable spline_8segB::p0_y#0 to zero page equivalence class [ spline_8segB::p0_y#0 ] +Added variable spline_8segB::p1_x#0 to zero page equivalence class [ spline_8segB::p1_x#0 ] +Added variable spline_8segB::p1_y#0 to zero page equivalence class [ spline_8segB::p1_y#0 ] +Added variable spline_8segB::p2_x#0 to zero page equivalence class [ spline_8segB::p2_x#0 ] +Added variable spline_8segB::p2_y#0 to zero page equivalence class [ spline_8segB::p2_y#0 ] +Added variable bitmap_plot_spline_8seg::$8 to zero page equivalence class [ bitmap_plot_spline_8seg::$8 ] +Added variable bitmap_plot_spline_8seg::$9 to zero page equivalence class [ bitmap_plot_spline_8seg::$9 ] +Added variable abs_u16::return#0 to zero page equivalence class [ abs_u16::return#0 ] +Added variable bitmap_line::dx#0 to zero page equivalence class [ bitmap_line::dx#0 ] +Added variable abs_u16::return#1 to zero page equivalence class [ abs_u16::return#1 ] +Added variable bitmap_line::dy#0 to zero page equivalence class [ bitmap_line::dy#0 ] +Added variable sgn_u16::return#0 to zero page equivalence class [ sgn_u16::return#0 ] +Added variable bitmap_line::sx#0 to zero page equivalence class [ bitmap_line::sx#0 ] +Added variable sgn_u16::return#1 to zero page equivalence class [ sgn_u16::return#1 ] +Added variable bitmap_line::sy#0 to zero page equivalence class [ bitmap_line::sy#0 ] +Added variable bitmap_plot::plotter#0 to zero page equivalence class [ bitmap_plot::plotter#0 ] +Added variable bitmap_plot::$1 to zero page equivalence class [ bitmap_plot::$1 ] +Added variable bitmap_plot::plotter#1 to zero page equivalence class [ bitmap_plot::plotter#1 ] +Added variable bitmap_plot::$2 to zero page equivalence class [ bitmap_plot::$2 ] +Added variable sgn_u16::$0 to zero page equivalence class [ sgn_u16::$0 ] +Added variable sgn_u16::$1 to zero page equivalence class [ sgn_u16::$1 ] +Added variable abs_u16::$0 to zero page equivalence class [ abs_u16::$0 ] +Added variable abs_u16::$1 to zero page equivalence class [ abs_u16::$1 ] +Added variable spline_8segB::$0 to zero page equivalence class [ spline_8segB::$0 ] +Added variable spline_8segB::$1 to zero page equivalence class [ spline_8segB::$1 ] +Added variable spline_8segB::a_x#0 to zero page equivalence class [ spline_8segB::a_x#0 ] +Added variable spline_8segB::$3 to zero page equivalence class [ spline_8segB::$3 ] +Added variable spline_8segB::$4 to zero page equivalence class [ spline_8segB::$4 ] +Added variable spline_8segB::a_y#0 to zero page equivalence class [ spline_8segB::a_y#0 ] +Added variable spline_8segB::$6 to zero page equivalence class [ spline_8segB::$6 ] +Added variable spline_8segB::b_x#0 to zero page equivalence class [ spline_8segB::b_x#0 ] +Added variable spline_8segB::$8 to zero page equivalence class [ spline_8segB::$8 ] +Added variable spline_8segB::b_y#0 to zero page equivalence class [ spline_8segB::b_y#0 ] +Added variable spline_8segB::$10 to zero page equivalence class [ spline_8segB::$10 ] +Added variable spline_8segB::$12 to zero page equivalence class [ spline_8segB::$12 ] +Added variable spline_8segB::j_x#0 to zero page equivalence class [ spline_8segB::j_x#0 ] +Added variable spline_8segB::j_y#0 to zero page equivalence class [ spline_8segB::j_y#0 ] +Added variable spline_8segB::$22 to zero page equivalence class [ spline_8segB::$22 ] +Added variable spline_8segB::$23 to zero page equivalence class [ spline_8segB::$23 ] +Added variable spline_8segB::$24 to zero page equivalence class [ spline_8segB::$24 ] +Added variable spline_8segB::$25 to zero page equivalence class [ spline_8segB::$25 ] +Added variable spline_8segB::$31 to zero page equivalence class [ spline_8segB::$31 ] +Added variable spline_8segB::$18 to zero page equivalence class [ spline_8segB::$18 ] +Added variable spline_8segB::$19 to zero page equivalence class [ spline_8segB::$19 ] +Added variable spline_8segB::$20 to zero page equivalence class [ spline_8segB::$20 ] +Added variable spline_8segB::$21 to zero page equivalence class [ spline_8segB::$21 ] +Added variable rotate::cos_a#0 to zero page equivalence class [ rotate::cos_a#0 ] +Added variable mulf16s::return#2 to zero page equivalence class [ mulf16s::return#2 ] +Added variable rotate::$1 to zero page equivalence class [ rotate::$1 ] +Added variable rotate::$2 to zero page equivalence class [ rotate::$2 ] +Added variable rotate::xr#0 to zero page equivalence class [ rotate::xr#0 ] +Added variable mulf16s::return#3 to zero page equivalence class [ mulf16s::return#3 ] +Added variable rotate::$4 to zero page equivalence class [ rotate::$4 ] +Added variable rotate::$5 to zero page equivalence class [ rotate::$5 ] +Added variable rotate::yr#0 to zero page equivalence class [ rotate::yr#0 ] +Added variable rotate::sin_a#0 to zero page equivalence class [ rotate::sin_a#0 ] +Added variable mulf16s::return#4 to zero page equivalence class [ mulf16s::return#4 ] +Added variable rotate::$8 to zero page equivalence class [ rotate::$8 ] +Added variable rotate::$9 to zero page equivalence class [ rotate::$9 ] +Added variable rotate::$10 to zero page equivalence class [ rotate::$10 ] +Added variable rotate::xr#1 to zero page equivalence class [ rotate::xr#1 ] +Added variable mulf16s::return#10 to zero page equivalence class [ mulf16s::return#10 ] +Added variable rotate::$11 to zero page equivalence class [ rotate::$11 ] +Added variable rotate::$12 to zero page equivalence class [ rotate::$12 ] +Added variable rotate::$13 to zero page equivalence class [ rotate::$13 ] +Added variable rotate::yr#1 to zero page equivalence class [ rotate::yr#1 ] +Added variable rotate::$15 to zero page equivalence class [ rotate::$15 ] +Added variable rotate::return_x#2 to zero page equivalence class [ rotate::return_x#2 ] +Added variable rotate::$18 to zero page equivalence class [ rotate::$18 ] +Added variable rotate::return_y#2 to zero page equivalence class [ rotate::return_y#2 ] +Added variable mulf16u::a#0 to zero page equivalence class [ mulf16u::a#0 ] +Added variable mulf16u::b#0 to zero page equivalence class [ mulf16u::b#0 ] +Added variable mulf16u::return#2 to zero page equivalence class [ mulf16u::return#2 ] +Added variable mulf16s::$9 to zero page equivalence class [ mulf16s::$9 ] +Added variable mulf16s::$16 to zero page equivalence class [ mulf16s::$16 ] +Added variable mulf16s::$13 to zero page equivalence class [ mulf16s::$13 ] +Added variable mulf16s::$17 to zero page equivalence class [ mulf16s::$17 ] +Added variable mulf16s::return#0 to zero page equivalence class [ mulf16s::return#0 ] +Added variable mulf16u::return#0 to zero page equivalence class [ mulf16u::return#0 ] +Added variable memset::end#0 to zero page equivalence class [ memset::end#0 ] +Added variable bitmap_init::$7 to zero page equivalence class [ bitmap_init::$7 ] +Added variable bitmap_init::$4 to zero page equivalence class [ bitmap_init::$4 ] +Added variable bitmap_init::$5 to zero page equivalence class [ bitmap_init::$5 ] +Added variable bitmap_init::$6 to zero page equivalence class [ bitmap_init::$6 ] +Added variable mulf_init::$7 to zero page equivalence class [ mulf_init::$7 ] +Added variable mulf_init::$10 to zero page equivalence class [ mulf_init::$10 ] +Added variable mulf_init::$11 to zero page equivalence class [ mulf_init::$11 ] +Complete equivalence classes +[ main::angle#2 main::angle#1 ] +[ main::w#4 main::w#1 ] +[ show_letter::i#10 show_letter::i#1 ] +[ show_letter::current_x#4 show_letter::current_x#11 ] +[ show_letter::current_y#4 show_letter::current_y#11 ] +[ bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] +[ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] +[ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +[ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] +[ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] +[ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] +[ bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] +[ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 ] +[ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] +[ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] +[ bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] +[ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] +[ sgn_u16::return#4 ] +[ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 ] +[ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 ] +[ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 ] +[ spline_8segB::n#2 spline_8segB::n#1 ] +[ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 ] +[ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 ] +[ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] +[ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 ] +[ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 ] +[ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 ] +[ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] +[ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 ] +[ memset::num#2 ] +[ memset::str#3 ] +[ memset::c#3 ] +[ memset::dst#2 memset::dst#3 memset::dst#1 ] +[ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] +[ bitmap_init::x#2 bitmap_init::x#1 ] +[ bitmap_init::y#2 bitmap_init::y#1 ] +[ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +[ mulf_init::c#2 mulf_init::c#1 ] +[ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +[ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +[ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +[ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +[ mulf_init::x_255#2 mulf_init::x_255#1 ] +[ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +[ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +[ mulf_init::dir#2 mulf_init::dir#3 ] +[ show_letter::angle#0 ] +[ show_letter::$32 ] +[ show_letter::$20 ] +[ show_letter::to_x#0 ] +[ show_letter::to_y#0 ] +[ show_letter::to_x#1 ] +[ show_letter::to_y#1 ] +[ rotate::return_x#0 ] +[ rotate::return_y#0 ] +[ show_letter::to_x#2 ] +[ show_letter::to_y#2 ] +[ show_letter::current_x#10 ] +[ show_letter::current_y#10 ] +[ show_letter::$34 ] +[ show_letter::$21 ] +[ show_letter::via_x#0 ] +[ show_letter::via_y#0 ] +[ show_letter::via_x#1 ] +[ show_letter::via_y#1 ] +[ rotate::return_x#1 ] +[ rotate::return_y#1 ] +[ show_letter::via_x#2 ] +[ show_letter::via_y#2 ] +[ show_letter::segment_via_x#0 ] +[ show_letter::segment_via_y#0 ] +[ show_letter::$36 ] +[ show_letter::$22 ] +[ show_letter::segment_type#0 ] +[ spline_8segB::p0_x#0 ] +[ spline_8segB::p0_y#0 ] +[ spline_8segB::p1_x#0 ] +[ spline_8segB::p1_y#0 ] +[ spline_8segB::p2_x#0 ] +[ spline_8segB::p2_y#0 ] +[ bitmap_plot_spline_8seg::$8 ] +[ bitmap_plot_spline_8seg::$9 ] +[ abs_u16::return#0 ] +[ bitmap_line::dx#0 ] +[ abs_u16::return#1 ] +[ bitmap_line::dy#0 ] +[ sgn_u16::return#0 ] +[ bitmap_line::sx#0 ] +[ sgn_u16::return#1 ] +[ bitmap_line::sy#0 ] +[ bitmap_plot::plotter#0 ] +[ bitmap_plot::$1 ] +[ bitmap_plot::plotter#1 ] +[ bitmap_plot::$2 ] +[ sgn_u16::$0 ] +[ sgn_u16::$1 ] +[ abs_u16::$0 ] +[ abs_u16::$1 ] +[ spline_8segB::$0 ] +[ spline_8segB::$1 ] +[ spline_8segB::a_x#0 ] +[ spline_8segB::$3 ] +[ spline_8segB::$4 ] +[ spline_8segB::a_y#0 ] +[ spline_8segB::$6 ] +[ spline_8segB::b_x#0 ] +[ spline_8segB::$8 ] +[ spline_8segB::b_y#0 ] +[ spline_8segB::$10 ] +[ spline_8segB::$12 ] +[ spline_8segB::j_x#0 ] +[ spline_8segB::j_y#0 ] +[ spline_8segB::$22 ] +[ spline_8segB::$23 ] +[ spline_8segB::$24 ] +[ spline_8segB::$25 ] +[ spline_8segB::$31 ] +[ spline_8segB::$18 ] +[ spline_8segB::$19 ] +[ spline_8segB::$20 ] +[ spline_8segB::$21 ] +[ rotate::cos_a#0 ] +[ mulf16s::return#2 ] +[ rotate::$1 ] +[ rotate::$2 ] +[ rotate::xr#0 ] +[ mulf16s::return#3 ] +[ rotate::$4 ] +[ rotate::$5 ] +[ rotate::yr#0 ] +[ rotate::sin_a#0 ] +[ mulf16s::return#4 ] +[ rotate::$8 ] +[ rotate::$9 ] +[ rotate::$10 ] +[ rotate::xr#1 ] +[ mulf16s::return#10 ] +[ rotate::$11 ] +[ rotate::$12 ] +[ rotate::$13 ] +[ rotate::yr#1 ] +[ rotate::$15 ] +[ rotate::return_x#2 ] +[ rotate::$18 ] +[ rotate::return_y#2 ] +[ mulf16u::a#0 ] +[ mulf16u::b#0 ] +[ mulf16u::return#2 ] +[ mulf16s::$9 ] +[ mulf16s::$16 ] +[ mulf16s::$13 ] +[ mulf16s::$17 ] +[ mulf16s::return#0 ] +[ mulf16u::return#0 ] +[ memset::end#0 ] +[ bitmap_init::$7 ] +[ bitmap_init::$4 ] +[ bitmap_init::$5 ] +[ bitmap_init::$6 ] +[ mulf_init::$7 ] +[ mulf_init::$10 ] +[ mulf_init::$11 ] +Allocated zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Allocated zp ZP_BYTE:3 [ main::w#4 main::w#1 ] +Allocated zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] +Allocated zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 ] +Allocated zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 ] +Allocated zp ZP_WORD:9 [ bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] +Allocated zp ZP_WORD:11 [ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] +Allocated zp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +Allocated zp ZP_WORD:14 [ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] +Allocated zp ZP_WORD:16 [ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] +Allocated zp ZP_WORD:18 [ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] +Allocated zp ZP_WORD:20 [ bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] +Allocated zp ZP_WORD:22 [ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 ] +Allocated zp ZP_WORD:24 [ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] +Allocated zp ZP_BYTE:26 [ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] +Allocated zp ZP_WORD:27 [ bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] +Allocated zp ZP_WORD:29 [ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] +Allocated zp ZP_WORD:31 [ sgn_u16::return#4 ] +Allocated zp ZP_WORD:33 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 ] +Allocated zp ZP_WORD:35 [ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 ] +Allocated zp ZP_WORD:37 [ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 ] +Allocated zp ZP_BYTE:39 [ spline_8segB::n#2 spline_8segB::n#1 ] +Allocated zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 ] +Allocated zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 ] +Allocated zp ZP_BYTE:44 [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] +Allocated zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 ] +Allocated zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 ] +Allocated zp ZP_WORD:49 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 ] +Allocated zp ZP_WORD:51 [ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] +Allocated zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 ] +Allocated zp ZP_WORD:57 [ memset::num#2 ] +Allocated zp ZP_WORD:59 [ memset::str#3 ] +Allocated zp ZP_BYTE:61 [ memset::c#3 ] +Allocated zp ZP_WORD:62 [ memset::dst#2 memset::dst#3 memset::dst#1 ] +Allocated zp ZP_BYTE:64 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] +Allocated zp ZP_BYTE:65 [ bitmap_init::x#2 bitmap_init::x#1 ] +Allocated zp ZP_BYTE:66 [ bitmap_init::y#2 bitmap_init::y#1 ] +Allocated zp ZP_WORD:67 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +Allocated zp ZP_BYTE:69 [ mulf_init::c#2 mulf_init::c#1 ] +Allocated zp ZP_WORD:70 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +Allocated zp ZP_WORD:72 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Allocated zp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Allocated zp ZP_WORD:75 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +Allocated zp ZP_BYTE:77 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Allocated zp ZP_WORD:78 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +Allocated zp ZP_WORD:80 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +Allocated zp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] +Allocated zp ZP_BYTE:83 [ show_letter::angle#0 ] +Allocated zp ZP_BYTE:84 [ show_letter::$32 ] +Allocated zp ZP_BYTE:85 [ show_letter::$20 ] +Allocated zp ZP_WORD:86 [ show_letter::to_x#0 ] +Allocated zp ZP_WORD:88 [ show_letter::to_y#0 ] +Allocated zp ZP_WORD:90 [ show_letter::to_x#1 ] +Allocated zp ZP_WORD:92 [ show_letter::to_y#1 ] +Allocated zp ZP_WORD:94 [ rotate::return_x#0 ] +Allocated zp ZP_WORD:96 [ rotate::return_y#0 ] +Allocated zp ZP_WORD:98 [ show_letter::to_x#2 ] +Allocated zp ZP_WORD:100 [ show_letter::to_y#2 ] +Allocated zp ZP_WORD:102 [ show_letter::current_x#10 ] +Allocated zp ZP_WORD:104 [ show_letter::current_y#10 ] +Allocated zp ZP_BYTE:106 [ show_letter::$34 ] +Allocated zp ZP_BYTE:107 [ show_letter::$21 ] +Allocated zp ZP_WORD:108 [ show_letter::via_x#0 ] +Allocated zp ZP_WORD:110 [ show_letter::via_y#0 ] +Allocated zp ZP_WORD:112 [ show_letter::via_x#1 ] +Allocated zp ZP_WORD:114 [ show_letter::via_y#1 ] +Allocated zp ZP_WORD:116 [ rotate::return_x#1 ] +Allocated zp ZP_WORD:118 [ rotate::return_y#1 ] +Allocated zp ZP_WORD:120 [ show_letter::via_x#2 ] +Allocated zp ZP_WORD:122 [ show_letter::via_y#2 ] +Allocated zp ZP_WORD:124 [ show_letter::segment_via_x#0 ] +Allocated zp ZP_WORD:126 [ show_letter::segment_via_y#0 ] +Allocated zp ZP_BYTE:128 [ show_letter::$36 ] +Allocated zp ZP_BYTE:129 [ show_letter::$22 ] +Allocated zp ZP_BYTE:130 [ show_letter::segment_type#0 ] +Allocated zp ZP_WORD:131 [ spline_8segB::p0_x#0 ] +Allocated zp ZP_WORD:133 [ spline_8segB::p0_y#0 ] +Allocated zp ZP_WORD:135 [ spline_8segB::p1_x#0 ] +Allocated zp ZP_WORD:137 [ spline_8segB::p1_y#0 ] +Allocated zp ZP_WORD:139 [ spline_8segB::p2_x#0 ] +Allocated zp ZP_WORD:141 [ spline_8segB::p2_y#0 ] +Allocated zp ZP_BYTE:143 [ bitmap_plot_spline_8seg::$8 ] +Allocated zp ZP_BYTE:144 [ bitmap_plot_spline_8seg::$9 ] +Allocated zp ZP_WORD:145 [ abs_u16::return#0 ] +Allocated zp ZP_WORD:147 [ bitmap_line::dx#0 ] +Allocated zp ZP_WORD:149 [ abs_u16::return#1 ] +Allocated zp ZP_WORD:151 [ bitmap_line::dy#0 ] +Allocated zp ZP_WORD:153 [ sgn_u16::return#0 ] +Allocated zp ZP_WORD:155 [ bitmap_line::sx#0 ] +Allocated zp ZP_WORD:157 [ sgn_u16::return#1 ] +Allocated zp ZP_WORD:159 [ bitmap_line::sy#0 ] +Allocated zp ZP_WORD:161 [ bitmap_plot::plotter#0 ] +Allocated zp ZP_WORD:163 [ bitmap_plot::$1 ] +Allocated zp ZP_WORD:165 [ bitmap_plot::plotter#1 ] +Allocated zp ZP_BYTE:167 [ bitmap_plot::$2 ] +Allocated zp ZP_BYTE:168 [ sgn_u16::$0 ] +Allocated zp ZP_BYTE:169 [ sgn_u16::$1 ] +Allocated zp ZP_BYTE:170 [ abs_u16::$0 ] +Allocated zp ZP_BYTE:171 [ abs_u16::$1 ] +Allocated zp ZP_WORD:172 [ spline_8segB::$0 ] +Allocated zp ZP_WORD:174 [ spline_8segB::$1 ] +Allocated zp ZP_WORD:176 [ spline_8segB::a_x#0 ] +Allocated zp ZP_WORD:178 [ spline_8segB::$3 ] +Allocated zp ZP_WORD:180 [ spline_8segB::$4 ] +Allocated zp ZP_WORD:182 [ spline_8segB::a_y#0 ] +Allocated zp ZP_WORD:184 [ spline_8segB::$6 ] +Allocated zp ZP_WORD:186 [ spline_8segB::b_x#0 ] +Allocated zp ZP_WORD:188 [ spline_8segB::$8 ] +Allocated zp ZP_WORD:190 [ spline_8segB::b_y#0 ] +Allocated zp ZP_WORD:192 [ spline_8segB::$10 ] +Allocated zp ZP_WORD:194 [ spline_8segB::$12 ] +Allocated zp ZP_WORD:196 [ spline_8segB::j_x#0 ] +Allocated zp ZP_WORD:198 [ spline_8segB::j_y#0 ] +Allocated zp ZP_WORD:200 [ spline_8segB::$22 ] +Allocated zp ZP_WORD:202 [ spline_8segB::$23 ] +Allocated zp ZP_WORD:204 [ spline_8segB::$24 ] +Allocated zp ZP_WORD:206 [ spline_8segB::$25 ] +Allocated zp ZP_BYTE:208 [ spline_8segB::$31 ] +Allocated zp ZP_WORD:209 [ spline_8segB::$18 ] +Allocated zp ZP_WORD:211 [ spline_8segB::$19 ] +Allocated zp ZP_WORD:213 [ spline_8segB::$20 ] +Allocated zp ZP_WORD:215 [ spline_8segB::$21 ] +Allocated zp ZP_WORD:217 [ rotate::cos_a#0 ] +Allocated zp ZP_DWORD:219 [ mulf16s::return#2 ] +Allocated zp ZP_DWORD:223 [ rotate::$1 ] +Allocated zp ZP_WORD:227 [ rotate::$2 ] +Allocated zp ZP_WORD:229 [ rotate::xr#0 ] +Allocated zp ZP_DWORD:231 [ mulf16s::return#3 ] +Allocated zp ZP_DWORD:235 [ rotate::$4 ] +Allocated zp ZP_WORD:239 [ rotate::$5 ] +Allocated zp ZP_WORD:241 [ rotate::yr#0 ] +Allocated zp ZP_WORD:243 [ rotate::sin_a#0 ] +Allocated zp ZP_DWORD:245 [ mulf16s::return#4 ] +Allocated zp ZP_DWORD:249 [ rotate::$8 ] +Allocated zp ZP_WORD:253 [ rotate::$9 ] +Allocated zp ZP_WORD:255 [ rotate::$10 ] +Allocated zp ZP_WORD:257 [ rotate::xr#1 ] +Allocated zp ZP_DWORD:259 [ mulf16s::return#10 ] +Allocated zp ZP_DWORD:263 [ rotate::$11 ] +Allocated zp ZP_WORD:267 [ rotate::$12 ] +Allocated zp ZP_WORD:269 [ rotate::$13 ] +Allocated zp ZP_WORD:271 [ rotate::yr#1 ] +Allocated zp ZP_BYTE:273 [ rotate::$15 ] +Allocated zp ZP_WORD:274 [ rotate::return_x#2 ] +Allocated zp ZP_BYTE:276 [ rotate::$18 ] +Allocated zp ZP_WORD:277 [ rotate::return_y#2 ] +Allocated zp ZP_WORD:279 [ mulf16u::a#0 ] +Allocated zp ZP_WORD:281 [ mulf16u::b#0 ] +Allocated zp ZP_DWORD:283 [ mulf16u::return#2 ] +Allocated zp ZP_WORD:287 [ mulf16s::$9 ] +Allocated zp ZP_WORD:289 [ mulf16s::$16 ] +Allocated zp ZP_WORD:291 [ mulf16s::$13 ] +Allocated zp ZP_WORD:293 [ mulf16s::$17 ] +Allocated zp ZP_DWORD:295 [ mulf16s::return#0 ] +Allocated zp ZP_DWORD:299 [ mulf16u::return#0 ] +Allocated zp ZP_WORD:303 [ memset::end#0 ] +Allocated zp ZP_BYTE:305 [ bitmap_init::$7 ] +Allocated zp ZP_BYTE:306 [ bitmap_init::$4 ] +Allocated zp ZP_BYTE:307 [ bitmap_init::$5 ] +Allocated zp ZP_BYTE:308 [ bitmap_init::$6 ] +Allocated zp ZP_BYTE:309 [ mulf_init::$7 ] +Allocated zp ZP_BYTE:310 [ mulf_init::$10 ] +Allocated zp ZP_BYTE:311 [ mulf_init::$11 ] + +INITIAL ASM + // File Comments +// Show a few simple splines using the splines library + // Basic Upstart +.pc = $801 "Basic" +:BasicUpstart(bbegin) +.pc = $80d "Program" + // Global Constants & labels + .const MOVE_TO = 0 + .const SPLINE_TO = 1 + .const LINE_TO = 2 + .const SIZEOF_STRUCT_SPLINEVECTOR16 = 4 + .const SIZEOF_STRUCT_SEGMENT = 9 + .const OFFSET_STRUCT_SPLINEVECTOR16_Y = 2 + .const OFFSET_STRUCT_SEGMENT_TO = 1 + .const OFFSET_STRUCT_SEGMENT_VIA = 5 + .label RASTER = $d012 + .label D011 = $d011 + .const VIC_BMM = $20 + .const VIC_DEN = $10 + .const VIC_RSEL = 8 + .label D018 = $d018 + // CIA#2 Port A: Serial bus, RS-232, VIC memory bank + .label CIA2_PORT_A = $dd00 + // CIA #2 Port A data direction register. + .label CIA2_PORT_A_DDR = $dd02 + .const WHITE = 1 + .label BITMAP_SCREEN = $5c00 + .label BITMAP_GRAPHICS = $6000 + .label COS = SIN+$40 + // @begin +bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +b1_from_bbegin: + jmp b1 + // @1 +b1: + // [2] call main + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +bend_from_b1: + jmp bend + // @end +bend: + // main +main: { + .const vicSelectGfxBank1_toDd001_return = 3^(>BITMAP_SCREEN)/$40 + .const toD0181_return = (>(BITMAP_SCREEN&$3fff)*4)|(>BITMAP_GRAPHICS)/4&$f + .label w = 3 + .label angle = 2 + // [4] *((byte*)(const struct Segment[$16]) letter_c#0) ← (const byte) MOVE_TO -- _deref_pbuc1=vbuc2 + lda #MOVE_TO + sta letter_c + // [5] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO) ← (signed byte) $6c -- _deref_pwsc1=vwsc2 + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1 + // [6] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed word) $92 -- _deref_pwsc1=vwsc2 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + // [7] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1 + // [8] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + // [9] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+1*SIZEOF_STRUCT_SEGMENT + // [10] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $59 -- _deref_pwsc1=vwsc2 + lda #<$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT + lda #>$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT+1 + // [11] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b6 -- _deref_pwsc1=vwsc2 + lda #<$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + // [12] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 -- _deref_pwsc1=vwsc2 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT+1 + // [13] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a9 -- _deref_pwsc1=vwsc2 + lda #<$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + // [14] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+2*SIZEOF_STRUCT_SEGMENT + // [15] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3b -- _deref_pwsc1=vwsc2 + lda #<$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT + lda #>$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT+1 + // [16] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + // [17] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4b -- _deref_pwsc1=vwsc2 + lda #<$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT + lda #>$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT+1 + // [18] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + // [19] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+3*SIZEOF_STRUCT_SEGMENT + // [20] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $17 -- _deref_pwsc1=vwsc2 + lda #<$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT + lda #>$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT+1 + // [21] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b2 -- _deref_pwsc1=vwsc2 + lda #<$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + // [22] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $26 -- _deref_pwsc1=vwsc2 + lda #<$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT + lda #>$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT+1 + // [23] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + // [24] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+4*SIZEOF_STRUCT_SEGMENT + // [25] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT+1 + // [26] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $84 -- _deref_pwsc1=vwsc2 + lda #<$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + // [27] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT+1 + // [28] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a1 -- _deref_pwsc1=vwsc2 + lda #<$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + // [29] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+5*SIZEOF_STRUCT_SEGMENT + // [30] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $19 -- _deref_pwsc1=vwsc2 + lda #<$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT + lda #>$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT+1 + // [31] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $57 -- _deref_pwsc1=vwsc2 + lda #<$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + // [32] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT+1 + // [33] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + // [34] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+6*SIZEOF_STRUCT_SEGMENT + // [35] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $41 -- _deref_pwsc1=vwsc2 + lda #<$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT + lda #>$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT+1 + // [36] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + // [37] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $2a -- _deref_pwsc1=vwsc2 + lda #<$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT + lda #>$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT+1 + // [38] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + // [39] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+7*SIZEOF_STRUCT_SEGMENT + // [40] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT+1 + // [41] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f -- _deref_pwsc1=vwsc2 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + // [42] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 -- _deref_pwsc1=vwsc2 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT+1 + // [43] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + // [44] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+8*SIZEOF_STRUCT_SEGMENT + // [45] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT+1 + // [46] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + // [47] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT+1 + // [48] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 -- _deref_pwsc1=vwsc2 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + // [49] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+9*SIZEOF_STRUCT_SEGMENT + // [50] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $66 -- _deref_pwsc1=vwsc2 + lda #<$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT + lda #>$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT+1 + // [51] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6a -- _deref_pwsc1=vwsc2 + lda #<$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + // [52] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT+1 + // [53] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 -- _deref_pwsc1=vwsc2 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + // [54] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$a*SIZEOF_STRUCT_SEGMENT + // [55] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT+1 + // [56] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + // [57] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT+1 + // [58] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + // [59] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$b*SIZEOF_STRUCT_SEGMENT + // [60] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $51 -- _deref_pwsc1=vwsc2 + lda #<$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT + lda #>$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT+1 + // [61] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + // [62] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $55 -- _deref_pwsc1=vwsc2 + lda #<$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT + lda #>$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT+1 + // [63] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + // [64] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$c*SIZEOF_STRUCT_SEGMENT + // [65] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT+1 + // [66] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + // [67] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f -- _deref_pwsc1=vwsc2 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT+1 + // [68] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $65 -- _deref_pwsc1=vwsc2 + lda #<$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + // [69] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$d*SIZEOF_STRUCT_SEGMENT + // [70] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $49 -- _deref_pwsc1=vwsc2 + lda #<$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT + lda #>$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT+1 + // [71] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 -- _deref_pwsc1=vwsc2 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + // [72] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT+1 + // [73] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $56 -- _deref_pwsc1=vwsc2 + lda #<$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + // [74] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$e*SIZEOF_STRUCT_SEGMENT + // [75] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3d -- _deref_pwsc1=vwsc2 + lda #<$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT + lda #>$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT+1 + // [76] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + // [77] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT+1 + // [78] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + // [79] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$f*SIZEOF_STRUCT_SEGMENT + // [80] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 -- _deref_pwsc1=vwsc2 + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT+1 + // [81] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 -- _deref_pwsc1=vwsc2 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + // [82] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $30 -- _deref_pwsc1=vwsc2 + lda #<$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT + lda #>$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT+1 + // [83] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + // [84] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$10*SIZEOF_STRUCT_SEGMENT + // [85] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT+1 + // [86] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $79 -- _deref_pwsc1=vwsc2 + lda #<$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + // [87] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT+1 + // [88] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $64 -- _deref_pwsc1=vwsc2 + lda #<$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + // [89] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$11*SIZEOF_STRUCT_SEGMENT + // [90] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 -- _deref_pwsc1=vwsc2 + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT+1 + // [91] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $9e -- _deref_pwsc1=vwsc2 + lda #<$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + // [92] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT+1 + // [93] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $8e -- _deref_pwsc1=vwsc2 + lda #<$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + // [94] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$12*SIZEOF_STRUCT_SEGMENT + // [95] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $44 -- _deref_pwsc1=vwsc2 + lda #<$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT + lda #>$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT+1 + // [96] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + // [97] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $32 -- _deref_pwsc1=vwsc2 + lda #<$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT + lda #>$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT+1 + // [98] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + // [99] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$13*SIZEOF_STRUCT_SEGMENT + // [100] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5b -- _deref_pwsc1=vwsc2 + lda #<$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT + lda #>$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT+1 + // [101] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a6 -- _deref_pwsc1=vwsc2 + lda #<$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + // [102] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $50 -- _deref_pwsc1=vwsc2 + lda #<$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT + lda #>$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT+1 + // [103] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + // [104] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$14*SIZEOF_STRUCT_SEGMENT + // [105] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT+1 + // [106] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $90 -- _deref_pwsc1=vwsc2 + lda #<$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + // [107] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT+1 + // [108] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a0 -- _deref_pwsc1=vwsc2 + lda #<$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + // [109] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) LINE_TO -- _deref_pbuc1=vbuc2 + lda #LINE_TO + sta letter_c+$15*SIZEOF_STRUCT_SEGMENT + // [110] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6c -- _deref_pwsc1=vwsc2 + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT+1 + // [111] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $92 -- _deref_pwsc1=vwsc2 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + // [112] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT+1 + // [113] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + // [114] call mulf_init + // [418] phi from main to mulf_init [phi:main->mulf_init] + mulf_init_from_main: + jsr mulf_init + // [115] phi from main to main::@8 [phi:main->main::@8] + b8_from_main: + jmp b8 + // main::@8 + b8: + // [116] call bitmap_init + // [396] phi from main::@8 to bitmap_init [phi:main::@8->bitmap_init] + bitmap_init_from_b8: + jsr bitmap_init + // [117] phi from main::@8 to main::@9 [phi:main::@8->main::@9] + b9_from_b8: + jmp b9 + // main::@9 + b9: + // [118] call bitmap_clear + // [382] phi from main::@9 to bitmap_clear [phi:main::@9->bitmap_clear] + bitmap_clear_from_b9: + jsr bitmap_clear + jmp vicSelectGfxBank1 + // main::vicSelectGfxBank1 + vicSelectGfxBank1: + // [119] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte) 3 -- _deref_pbuc1=vbuc2 + lda #3 + sta CIA2_PORT_A_DDR + // [120] phi from main::vicSelectGfxBank1 to main::vicSelectGfxBank1_toDd001 [phi:main::vicSelectGfxBank1->main::vicSelectGfxBank1_toDd001] + vicSelectGfxBank1_toDd001_from_vicSelectGfxBank1: + jmp vicSelectGfxBank1_toDd001 + // main::vicSelectGfxBank1_toDd001 + vicSelectGfxBank1_toDd001: + jmp vicSelectGfxBank1_b1 + // main::vicSelectGfxBank1_@1 + vicSelectGfxBank1_b1: + // [121] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 -- _deref_pbuc1=vbuc2 + lda #vicSelectGfxBank1_toDd001_return + sta CIA2_PORT_A + // [122] phi from main::vicSelectGfxBank1_@1 to main::toD0181 [phi:main::vicSelectGfxBank1_@1->main::toD0181] + toD0181_from_vicSelectGfxBank1_b1: + jmp toD0181 + // main::toD0181 + toD0181: + jmp b7 + // main::@7 + b7: + // [123] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 -- _deref_pbuc1=vbuc2 + lda #toD0181_return + sta D018 + // [124] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 -- _deref_pbuc1=vbuc2 + lda #VIC_BMM|VIC_DEN|VIC_RSEL|3 + sta D011 + // [125] phi from main::@7 to main::@1 [phi:main::@7->main::@1] + b1_from_b7: + // [125] phi (byte) main::angle#2 = (byte) 0 [phi:main::@7->main::@1#0] -- vbuz1=vbuc1 + lda #0 + sta angle + jmp b1 + // main::@1 + b1: + // [126] phi from main::@1 to main::@2 [phi:main::@1->main::@2] + b2_from_b1: + jmp b2 + // main::@2 + b2: + // [127] call bitmap_clear + // [382] phi from main::@2 to bitmap_clear [phi:main::@2->bitmap_clear] + bitmap_clear_from_b2: + jsr bitmap_clear + jmp b10 + // main::@10 + b10: + // [128] (byte) show_letter::angle#0 ← (byte) main::angle#2 -- vbuz1=vbuz2 + lda angle + sta show_letter.angle + // [129] call show_letter + // [136] phi from main::@10 to show_letter [phi:main::@10->show_letter] + show_letter_from_b10: + jsr show_letter + // [130] phi from main::@10 to main::@3 [phi:main::@10->main::@3] + b3_from_b10: + // [130] phi (byte) main::w#4 = (byte) 0 [phi:main::@10->main::@3#0] -- vbuz1=vbuc1 + lda #0 + sta w + jmp b3 + // [130] phi from main::@3 to main::@3 [phi:main::@3->main::@3] + b3_from_b3: + jmp b3 + // [130] phi from main::@5 to main::@3 [phi:main::@5->main::@3] + b3_from_b5: + // [130] phi (byte) main::w#4 = (byte) main::w#1 [phi:main::@5->main::@3#0] -- register_copy + jmp b3 + // main::@3 + b3: + // [131] if(*((const byte*) RASTER#0)!=(byte) $fe) goto main::@3 -- _deref_pbuc1_neq_vbuc2_then_la1 + lda #$fe + cmp RASTER + bne b3_from_b3 + jmp b4 + // main::@4 + b4: + // [132] if(*((const byte*) RASTER#0)!=(byte) $ff) goto main::@4 -- _deref_pbuc1_neq_vbuc2_then_la1 + lda #$ff + cmp RASTER + bne b4 + jmp b5 + // main::@5 + b5: + // [133] (byte) main::w#1 ← ++ (byte) main::w#4 -- vbuz1=_inc_vbuz1 + inc w + // [134] if((byte) main::w#1!=(byte) $3d) goto main::@3 -- vbuz1_neq_vbuc1_then_la1 + lda #$3d + cmp w + bne b3_from_b5 + jmp b6 + // main::@6 + b6: + // [135] (byte) main::angle#1 ← (byte) main::angle#2 + (byte) 9 -- vbuz1=vbuz1_plus_vbuc1 + lax angle + axs #-[9] + stx angle + // [125] phi from main::@6 to main::@1 [phi:main::@6->main::@1] + b1_from_b6: + // [125] phi (byte) main::angle#2 = (byte) main::angle#1 [phi:main::@6->main::@1#0] -- register_copy + jmp b1 +} + // show_letter +// show_letter(byte zeropage($53) angle) +show_letter: { + .label _20 = $55 + .label _21 = $6b + .label _22 = $81 + .label angle = $53 + .label to_x = $56 + .label to_y = $58 + .label to_x_1 = $5a + .label to_y_1 = $5c + .label to_x_2 = $62 + .label to_y_2 = $64 + .label via_x = $6c + .label via_y = $6e + .label via_x_1 = $70 + .label via_y_1 = $72 + .label via_x_2 = $78 + .label via_y_2 = $7a + .label segment_type = $82 + .label segment_via_x = $7c + .label segment_via_y = $7e + .label i = 4 + .label current_x = 5 + .label current_y = 7 + .label current_x_10 = $66 + .label current_y_10 = $68 + .label _32 = $54 + .label _34 = $6a + .label _36 = $80 + // [137] phi from show_letter to show_letter::@1 [phi:show_letter->show_letter::@1] + b1_from_show_letter: + // [137] phi (signed word) show_letter::current_y#4 = (signed byte) 0 [phi:show_letter->show_letter::@1#0] -- vwsz1=vbsc1 + lda #<0 + sta current_y + lda #>0 + sta current_y+1 + // [137] phi (signed word) show_letter::current_x#4 = (signed byte) 0 [phi:show_letter->show_letter::@1#1] -- vwsz1=vbsc1 + lda #<0 + sta current_x + lda #>0 + sta current_x+1 + // [137] phi (byte) show_letter::i#10 = (byte) 0 [phi:show_letter->show_letter::@1#2] -- vbuz1=vbuc1 + lda #0 + sta i + jmp b1 + // show_letter::@1 + b1: + // [138] (byte) show_letter::$32 ← (byte) show_letter::i#10 << (byte) 3 -- vbuz1=vbuz2_rol_3 + lda i + asl + asl + asl + sta _32 + // [139] (byte~) show_letter::$20 ← (byte) show_letter::$32 + (byte) show_letter::i#10 -- vbuz1=vbuz2_plus_vbuz3 + lda _32 + clc + adc i + sta _20 + // [140] (signed word) show_letter::to_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO + (byte~) show_letter::$20) -- vwsz1=pwsc1_derefidx_vbuz2 + ldy _20 + lda letter_c+OFFSET_STRUCT_SEGMENT_TO,y + sta to_x + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+1,y + sta to_x+1 + // [141] (signed word) show_letter::to_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$20) -- vwsz1=pwsc1_derefidx_vbuz2 + ldy _20 + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y,y + sta to_y + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,y + sta to_y+1 + // [142] (signed word) show_letter::to_x#1 ← (signed word) show_letter::to_x#0 - (signed byte) $32 -- vwsz1=vwsz2_minus_vbsc1 + lda to_x + sec + sbc #$32 + sta to_x_1 + lda to_x+1 + sbc #>$32 + sta to_x_1+1 + // [143] (signed word) show_letter::to_y#1 ← (signed word) show_letter::to_y#0 - (signed word) $96 -- vwsz1=vwsz2_minus_vwsc1 + lda to_y + sec + sbc #<$96 + sta to_y_1 + lda to_y+1 + sbc #>$96 + sta to_y_1+1 + // [144] (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 -- vwsz1=vwsz2 + lda to_x_1 + sta rotate.vector_x + lda to_x_1+1 + sta rotate.vector_x+1 + // [145] (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 -- vwsz1=vwsz2 + lda to_y_1 + sta rotate.vector_y + lda to_y_1+1 + sta rotate.vector_y+1 + // [146] (byte) rotate::angle#0 ← (byte) show_letter::angle#0 -- vbuz1=vbuz2 + lda angle + sta rotate.angle + // [147] call rotate + // [321] phi from show_letter::@1 to rotate [phi:show_letter::@1->rotate] + rotate_from_b1: + // [321] phi (signed word) rotate::vector_y#2 = (signed word) rotate::vector_y#0 [phi:show_letter::@1->rotate#0] -- register_copy + // [321] phi (signed word) rotate::vector_x#2 = (signed word) rotate::vector_x#0 [phi:show_letter::@1->rotate#1] -- register_copy + // [321] phi (byte) rotate::angle#2 = (byte) rotate::angle#0 [phi:show_letter::@1->rotate#2] -- register_copy + jsr rotate + // [148] (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#2 -- vwsz1=vwsz2 + lda rotate.return_x_2 + sta rotate.return_x + lda rotate.return_x_2+1 + sta rotate.return_x+1 + // [149] (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#2 -- vwsz1=vwsz2 + lda rotate.return_y_2 + sta rotate.return_y + lda rotate.return_y_2+1 + sta rotate.return_y+1 + jmp b6 + // show_letter::@6 + b6: + // [150] (signed word) show_letter::to_x#2 ← (signed word) rotate::return_x#0 -- vwsz1=vwsz2 + lda rotate.return_x + sta to_x_2 + lda rotate.return_x+1 + sta to_x_2+1 + // [151] (signed word) show_letter::to_y#2 ← (signed word) rotate::return_y#0 -- vwsz1=vwsz2 + lda rotate.return_y + sta to_y_2 + lda rotate.return_y+1 + sta to_y_2+1 + // [152] (signed word) show_letter::current_x#10 ← (signed word) show_letter::to_x#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda to_x_2 + clc + adc #<$64 + sta current_x_10 + lda to_x_2+1 + adc #>$64 + sta current_x_10+1 + // [153] (signed word) show_letter::current_y#10 ← (signed word) show_letter::to_y#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda to_y_2 + clc + adc #<$64 + sta current_y_10 + lda to_y_2+1 + adc #>$64 + sta current_y_10+1 + // [154] (byte) show_letter::$34 ← (byte) show_letter::i#10 << (byte) 3 -- vbuz1=vbuz2_rol_3 + lda i + asl + asl + asl + sta _34 + // [155] (byte~) show_letter::$21 ← (byte) show_letter::$34 + (byte) show_letter::i#10 -- vbuz1=vbuz2_plus_vbuz3 + lda _34 + clc + adc i + sta _21 + // [156] (signed word) show_letter::via_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA + (byte~) show_letter::$21) -- vwsz1=pwsc1_derefidx_vbuz2 + ldy _21 + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA,y + sta via_x + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+1,y + sta via_x+1 + // [157] (signed word) show_letter::via_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$21) -- vwsz1=pwsc1_derefidx_vbuz2 + ldy _21 + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y,y + sta via_y + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,y + sta via_y+1 + // [158] (signed word) show_letter::via_x#1 ← (signed word) show_letter::via_x#0 - (signed byte) $32 -- vwsz1=vwsz2_minus_vbsc1 + lda via_x + sec + sbc #$32 + sta via_x_1 + lda via_x+1 + sbc #>$32 + sta via_x_1+1 + // [159] (signed word) show_letter::via_y#1 ← (signed word) show_letter::via_y#0 - (signed word) $96 -- vwsz1=vwsz2_minus_vwsc1 + lda via_y + sec + sbc #<$96 + sta via_y_1 + lda via_y+1 + sbc #>$96 + sta via_y_1+1 + // [160] (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 -- vwsz1=vwsz2 + lda via_x_1 + sta rotate.vector_x + lda via_x_1+1 + sta rotate.vector_x+1 + // [161] (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 -- vwsz1=vwsz2 + lda via_y_1 + sta rotate.vector_y + lda via_y_1+1 + sta rotate.vector_y+1 + // [162] (byte) rotate::angle#1 ← (byte) show_letter::angle#0 -- vbuz1=vbuz2 + lda angle + sta rotate.angle + // [163] call rotate + // [321] phi from show_letter::@6 to rotate [phi:show_letter::@6->rotate] + rotate_from_b6: + // [321] phi (signed word) rotate::vector_y#2 = (signed word) rotate::vector_y#1 [phi:show_letter::@6->rotate#0] -- register_copy + // [321] phi (signed word) rotate::vector_x#2 = (signed word) rotate::vector_x#1 [phi:show_letter::@6->rotate#1] -- register_copy + // [321] phi (byte) rotate::angle#2 = (byte) rotate::angle#1 [phi:show_letter::@6->rotate#2] -- register_copy + jsr rotate + // [164] (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#2 -- vwsz1=vwsz2 + lda rotate.return_x_2 + sta rotate.return_x_1 + lda rotate.return_x_2+1 + sta rotate.return_x_1+1 + // [165] (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#2 -- vwsz1=vwsz2 + lda rotate.return_y_2 + sta rotate.return_y_1 + lda rotate.return_y_2+1 + sta rotate.return_y_1+1 + jmp b7 + // show_letter::@7 + b7: + // [166] (signed word) show_letter::via_x#2 ← (signed word) rotate::return_x#1 -- vwsz1=vwsz2 + lda rotate.return_x_1 + sta via_x_2 + lda rotate.return_x_1+1 + sta via_x_2+1 + // [167] (signed word) show_letter::via_y#2 ← (signed word) rotate::return_y#1 -- vwsz1=vwsz2 + lda rotate.return_y_1 + sta via_y_2 + lda rotate.return_y_1+1 + sta via_y_2+1 + // [168] (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda via_x_2 + clc + adc #<$64 + sta segment_via_x + lda via_x_2+1 + adc #>$64 + sta segment_via_x+1 + // [169] (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda via_y_2 + clc + adc #<$64 + sta segment_via_y + lda via_y_2+1 + adc #>$64 + sta segment_via_y+1 + // [170] (byte) show_letter::$36 ← (byte) show_letter::i#10 << (byte) 3 -- vbuz1=vbuz2_rol_3 + lda i + asl + asl + asl + sta _36 + // [171] (byte~) show_letter::$22 ← (byte) show_letter::$36 + (byte) show_letter::i#10 -- vbuz1=vbuz2_plus_vbuz3 + lda _36 + clc + adc i + sta _22 + // [172] (byte) show_letter::segment_type#0 ← *((byte*)(const struct Segment[$16]) letter_c#0 + (byte~) show_letter::$22) -- vbuz1=pbuc1_derefidx_vbuz2 + ldy _22 + lda letter_c,y + sta segment_type + // [173] if((byte) show_letter::segment_type#0==(const byte) MOVE_TO) goto show_letter::@3 -- vbuz1_eq_vbuc1_then_la1 + lda #MOVE_TO + cmp segment_type + beq b3 + jmp b4 + // show_letter::@4 + b4: + // [174] if((byte) show_letter::segment_type#0==(const byte) SPLINE_TO) goto show_letter::@2 -- vbuz1_eq_vbuc1_then_la1 + lda #SPLINE_TO + cmp segment_type + beq b2 + jmp b5 + // show_letter::@5 + b5: + // [175] (word) bitmap_line::x1#0 ← (word)(signed word) show_letter::current_x#4 -- vwuz1=vwuz2 + lda current_x + sta bitmap_line.x1 + lda current_x+1 + sta bitmap_line.x1+1 + // [176] (word) bitmap_line::y1#0 ← (word)(signed word) show_letter::current_y#4 -- vwuz1=vwuz2 + lda current_y + sta bitmap_line.y1 + lda current_y+1 + sta bitmap_line.y1+1 + // [177] (word) bitmap_line::x2#0 ← (word)(signed word) show_letter::current_x#10 -- vwuz1=vwuz2 + lda current_x_10 + sta bitmap_line.x2 + lda current_x_10+1 + sta bitmap_line.x2+1 + // [178] (word) bitmap_line::y2#0 ← (word)(signed word) show_letter::current_y#10 -- vwuz1=vwuz2 + lda current_y_10 + sta bitmap_line.y2 + lda current_y_10+1 + sta bitmap_line.y2+1 + // [179] call bitmap_line + // [209] phi from show_letter::@5 to bitmap_line [phi:show_letter::@5->bitmap_line] + bitmap_line_from_b5: + // [209] phi (word) bitmap_line::y2#11 = (word) bitmap_line::y2#0 [phi:show_letter::@5->bitmap_line#0] -- register_copy + // [209] phi (word) bitmap_line::x2#10 = (word) bitmap_line::x2#0 [phi:show_letter::@5->bitmap_line#1] -- register_copy + // [209] phi (word) bitmap_line::y#0 = (word) bitmap_line::y1#0 [phi:show_letter::@5->bitmap_line#2] -- register_copy + // [209] phi (word) bitmap_line::x#0 = (word) bitmap_line::x1#0 [phi:show_letter::@5->bitmap_line#3] -- register_copy + jsr bitmap_line + jmp b3 + // show_letter::@3 + b3: + // [180] (byte) show_letter::i#1 ← ++ (byte) show_letter::i#10 -- vbuz1=_inc_vbuz1 + inc i + // [181] if((byte) show_letter::i#1!=(byte) $16) goto show_letter::@9 -- vbuz1_neq_vbuc1_then_la1 + lda #$16 + cmp i + bne b9 + jmp breturn + // show_letter::@return + breturn: + // [182] return + rts + // show_letter::@9 + b9: + // [183] (signed word~) show_letter::current_x#11 ← (signed word) show_letter::current_x#10 -- vwsz1=vwsz2 + lda current_x_10 + sta current_x + lda current_x_10+1 + sta current_x+1 + // [184] (signed word~) show_letter::current_y#11 ← (signed word) show_letter::current_y#10 -- vwsz1=vwsz2 + lda current_y_10 + sta current_y + lda current_y_10+1 + sta current_y+1 + // [137] phi from show_letter::@9 to show_letter::@1 [phi:show_letter::@9->show_letter::@1] + b1_from_b9: + // [137] phi (signed word) show_letter::current_y#4 = (signed word~) show_letter::current_y#11 [phi:show_letter::@9->show_letter::@1#0] -- register_copy + // [137] phi (signed word) show_letter::current_x#4 = (signed word~) show_letter::current_x#11 [phi:show_letter::@9->show_letter::@1#1] -- register_copy + // [137] phi (byte) show_letter::i#10 = (byte) show_letter::i#1 [phi:show_letter::@9->show_letter::@1#2] -- register_copy + jmp b1 + // show_letter::@2 + b2: + // [185] (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 -- vwsz1=vwsz2 + lda current_x + sta spline_8segB.p0_x + lda current_x+1 + sta spline_8segB.p0_x+1 + // [186] (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 -- vwsz1=vwsz2 + lda current_y + sta spline_8segB.p0_y + lda current_y+1 + sta spline_8segB.p0_y+1 + // [187] (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#0 -- vwsz1=vwsz2 + lda segment_via_x + sta spline_8segB.p1_x + lda segment_via_x+1 + sta spline_8segB.p1_x+1 + // [188] (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#0 -- vwsz1=vwsz2 + lda segment_via_y + sta spline_8segB.p1_y + lda segment_via_y+1 + sta spline_8segB.p1_y+1 + // [189] (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::current_x#10 -- vwsz1=vwsz2 + lda current_x_10 + sta spline_8segB.p2_x + lda current_x_10+1 + sta spline_8segB.p2_x+1 + // [190] (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::current_y#10 -- vwsz1=vwsz2 + lda current_y_10 + sta spline_8segB.p2_y + lda current_y_10+1 + sta spline_8segB.p2_y+1 + // [191] call spline_8segB + jsr spline_8segB + // [192] phi from show_letter::@2 to show_letter::@8 [phi:show_letter::@2->show_letter::@8] + b8_from_b2: + jmp b8 + // show_letter::@8 + b8: + // [193] call bitmap_plot_spline_8seg + jsr bitmap_plot_spline_8seg + jmp b3 +} + // bitmap_plot_spline_8seg +// Plot the spline in the SPLINE_8SEG array +bitmap_plot_spline_8seg: { + .label _8 = $8f + .label _9 = $90 + .label current_x = 9 + .label current_y = $b + .label n = $d + // [194] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0) -- vwsz1=_deref_pwsc1 + lda SPLINE_8SEG + sta current_x + lda SPLINE_8SEG+1 + sta current_x+1 + // [195] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) -- vwsz1=_deref_pwsc1 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + sta current_y+1 + // [196] phi from bitmap_plot_spline_8seg to bitmap_plot_spline_8seg::@1 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1] + b1_from_bitmap_plot_spline_8seg: + // [196] phi (byte) bitmap_plot_spline_8seg::n#2 = (byte) 1 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#0] -- vbuz1=vbuc1 + lda #1 + sta n + // [196] phi (signed word) bitmap_plot_spline_8seg::current_y#2 = (signed word) bitmap_plot_spline_8seg::current_y#0 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#1] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_x#2 = (signed word) bitmap_plot_spline_8seg::current_x#0 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#2] -- register_copy + jmp b1 + // [196] phi from bitmap_plot_spline_8seg::@2 to bitmap_plot_spline_8seg::@1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1] + b1_from_b2: + // [196] phi (byte) bitmap_plot_spline_8seg::n#2 = (byte) bitmap_plot_spline_8seg::n#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#0] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_y#2 = (signed word) bitmap_plot_spline_8seg::current_y#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#1] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_x#2 = (signed word) bitmap_plot_spline_8seg::current_x#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#2] -- register_copy + jmp b1 + // bitmap_plot_spline_8seg::@1 + b1: + // [197] (word) bitmap_line::x1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 -- vwuz1=vwuz2 + lda current_x + sta bitmap_line.x1 + lda current_x+1 + sta bitmap_line.x1+1 + // [198] (word) bitmap_line::y1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 -- vwuz1=vwuz2 + lda current_y + sta bitmap_line.y1 + lda current_y+1 + sta bitmap_line.y1+1 + // [199] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 -- vbuz1=vbuz2_rol_2 + lda n + asl + asl + sta _8 + // [200] (word~) bitmap_line::x2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$8) -- vwuz1=pwuc1_derefidx_vbuz2 + ldy _8 + lda SPLINE_8SEG,y + sta bitmap_line.x2 + lda SPLINE_8SEG+1,y + sta bitmap_line.x2+1 + // [201] (word~) bitmap_line::y2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$8) -- vwuz1=pwuc1_derefidx_vbuz2 + ldy _8 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,y + sta bitmap_line.y2 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,y + sta bitmap_line.y2+1 + // [202] call bitmap_line + // [209] phi from bitmap_plot_spline_8seg::@1 to bitmap_line [phi:bitmap_plot_spline_8seg::@1->bitmap_line] + bitmap_line_from_b1: + // [209] phi (word) bitmap_line::y2#11 = (word~) bitmap_line::y2#13 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#0] -- register_copy + // [209] phi (word) bitmap_line::x2#10 = (word~) bitmap_line::x2#13 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#1] -- register_copy + // [209] phi (word) bitmap_line::y#0 = (word) bitmap_line::y1#1 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#2] -- register_copy + // [209] phi (word) bitmap_line::x#0 = (word) bitmap_line::x1#1 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#3] -- register_copy + jsr bitmap_line + jmp b2 + // bitmap_plot_spline_8seg::@2 + b2: + // [203] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 -- vbuz1=vbuz2_rol_2 + lda n + asl + asl + sta _9 + // [204] (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$9) -- vwsz1=pwsc1_derefidx_vbuz2 + ldy _9 + lda SPLINE_8SEG,y + sta current_x + lda SPLINE_8SEG+1,y + sta current_x+1 + // [205] (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$9) -- vwsz1=pwsc1_derefidx_vbuz2 + ldy _9 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,y + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,y + sta current_y+1 + // [206] (byte) bitmap_plot_spline_8seg::n#1 ← ++ (byte) bitmap_plot_spline_8seg::n#2 -- vbuz1=_inc_vbuz1 + inc n + // [207] if((byte) bitmap_plot_spline_8seg::n#1!=(byte) 9) goto bitmap_plot_spline_8seg::@1 -- vbuz1_neq_vbuc1_then_la1 + lda #9 + cmp n + bne b1_from_b2 + jmp breturn + // bitmap_plot_spline_8seg::@return + breturn: + // [208] return + rts +} + // bitmap_line +// Draw a line on the bitmap using bresenhams algorithm +// bitmap_line(word zeropage($16) x1, word zeropage($14) y1, word zeropage($e) x2, word zeropage($10) y2) +bitmap_line: { + .label x = $16 + .label y = $14 + .label dx = $93 + .label dy = $97 + .label sx = $9b + .label sy = $9f + .label e1 = $18 + .label e = $12 + .label x1 = $16 + .label y1 = $14 + .label x2 = $e + .label y2 = $10 + // [210] (word) abs_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 -- vwuz1=vwuz2_minus_vwuz3 + lda x2 + sec + sbc x + sta abs_u16.w + lda x2+1 + sbc x+1 + sta abs_u16.w+1 + // [211] call abs_u16 + // [275] phi from bitmap_line to abs_u16 [phi:bitmap_line->abs_u16] + abs_u16_from_bitmap_line: + // [275] phi (word) abs_u16::w#2 = (word) abs_u16::w#0 [phi:bitmap_line->abs_u16#0] -- register_copy + jsr abs_u16 + // [212] (word) abs_u16::return#0 ← (word) abs_u16::return#4 -- vwuz1=vwuz2 + lda abs_u16.return_4 + sta abs_u16.return + lda abs_u16.return_4+1 + sta abs_u16.return+1 + jmp b12 + // bitmap_line::@12 + b12: + // [213] (word) bitmap_line::dx#0 ← (word) abs_u16::return#0 -- vwuz1=vwuz2 + lda abs_u16.return + sta dx + lda abs_u16.return+1 + sta dx+1 + // [214] (word) abs_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 -- vwuz1=vwuz2_minus_vwuz3 + lda y2 + sec + sbc y + sta abs_u16.w + lda y2+1 + sbc y+1 + sta abs_u16.w+1 + // [215] call abs_u16 + // [275] phi from bitmap_line::@12 to abs_u16 [phi:bitmap_line::@12->abs_u16] + abs_u16_from_b12: + // [275] phi (word) abs_u16::w#2 = (word) abs_u16::w#1 [phi:bitmap_line::@12->abs_u16#0] -- register_copy + jsr abs_u16 + // [216] (word) abs_u16::return#1 ← (word) abs_u16::return#4 -- vwuz1=vwuz2 + lda abs_u16.return_4 + sta abs_u16.return_1 + lda abs_u16.return_4+1 + sta abs_u16.return_1+1 + jmp b13 + // bitmap_line::@13 + b13: + // [217] (word) bitmap_line::dy#0 ← (word) abs_u16::return#1 -- vwuz1=vwuz2 + lda abs_u16.return_1 + sta dy + lda abs_u16.return_1+1 + sta dy+1 + // [218] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 -- vwuz1_neq_0_then_la1 + lda dx + bne b1 + lda dx+1 + bne b1 + jmp b18 + // bitmap_line::@18 + b18: + // [219] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 -- vwuz1_eq_0_then_la1 + lda dy + bne !+ + lda dy+1 + beq b4 + !: + jmp b1 + // bitmap_line::@1 + b1: + // [220] (word) sgn_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 -- vwuz1=vwuz2_minus_vwuz3 + lda x2 + sec + sbc x + sta sgn_u16.w + lda x2+1 + sbc x+1 + sta sgn_u16.w+1 + // [221] call sgn_u16 + // [268] phi from bitmap_line::@1 to sgn_u16 [phi:bitmap_line::@1->sgn_u16] + sgn_u16_from_b1: + // [268] phi (word) sgn_u16::w#2 = (word) sgn_u16::w#0 [phi:bitmap_line::@1->sgn_u16#0] -- register_copy + jsr sgn_u16 + // [222] (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 -- vwuz1=vwuz2 + lda sgn_u16.return_4 + sta sgn_u16.return + lda sgn_u16.return_4+1 + sta sgn_u16.return+1 + jmp b14 + // bitmap_line::@14 + b14: + // [223] (word) bitmap_line::sx#0 ← (word) sgn_u16::return#0 -- vwuz1=vwuz2 + lda sgn_u16.return + sta sx + lda sgn_u16.return+1 + sta sx+1 + // [224] (word) sgn_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 -- vwuz1=vwuz2_minus_vwuz3 + lda y2 + sec + sbc y + sta sgn_u16.w + lda y2+1 + sbc y+1 + sta sgn_u16.w+1 + // [225] call sgn_u16 + // [268] phi from bitmap_line::@14 to sgn_u16 [phi:bitmap_line::@14->sgn_u16] + sgn_u16_from_b14: + // [268] phi (word) sgn_u16::w#2 = (word) sgn_u16::w#1 [phi:bitmap_line::@14->sgn_u16#0] -- register_copy + jsr sgn_u16 + // [226] (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 -- vwuz1=vwuz2 + lda sgn_u16.return_4 + sta sgn_u16.return_1 + lda sgn_u16.return_4+1 + sta sgn_u16.return_1+1 + jmp b15 + // bitmap_line::@15 + b15: + // [227] (word) bitmap_line::sy#0 ← (word) sgn_u16::return#1 -- vwuz1=vwuz2 + lda sgn_u16.return_1 + sta sy + lda sgn_u16.return_1+1 + sta sy+1 + // [228] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 -- vwuz1_gt_vwuz2_then_la1 + lda dy+1 + cmp dx+1 + bcc b2 + bne !+ + lda dy + cmp dx + bcc b2 + !: + jmp b5 + // bitmap_line::@5 + b5: + // [229] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 >> (byte) 1 -- vwuz1=vwuz2_ror_1 + lda dx+1 + lsr + sta e+1 + lda dx + ror + sta e + // [230] phi from bitmap_line::@5 bitmap_line::@7 to bitmap_line::@6 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6] + b6_from_b5: + b6_from_b7: + // [230] phi (word) bitmap_line::e#3 = (word) bitmap_line::e#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#0] -- register_copy + // [230] phi (word) bitmap_line::x#13 = (word) bitmap_line::x#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#1] -- register_copy + // [230] phi (word) bitmap_line::y#4 = (word) bitmap_line::y#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#2] -- register_copy + jmp b6 + // bitmap_line::@6 + b6: + // [231] (byte) bitmap_plot::y#1 ← (byte)(word) bitmap_line::y#4 -- vbuz1=_byte_vwuz2 + lda y + sta bitmap_plot.y + // [232] (word) bitmap_plot::x#1 ← (word) bitmap_line::x#13 -- vwuz1=vwuz2 + lda x + sta bitmap_plot.x + lda x+1 + sta bitmap_plot.x+1 + // [233] call bitmap_plot + // [261] phi from bitmap_line::@6 to bitmap_plot [phi:bitmap_line::@6->bitmap_plot] + bitmap_plot_from_b6: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#1 [phi:bitmap_line::@6->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#1 [phi:bitmap_line::@6->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp b16 + // bitmap_line::@16 + b16: + // [234] (word) bitmap_line::y#1 ← (word) bitmap_line::y#4 + (word) bitmap_line::sy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + // [235] (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda e + clc + adc dx + sta e + lda e+1 + adc dx+1 + sta e+1 + // [236] if((word) bitmap_line::dy#0>=(word) bitmap_line::e#1) goto bitmap_line::@7 -- vwuz1_ge_vwuz2_then_la1 + lda e+1 + cmp dy+1 + bne !+ + lda e + cmp dy + beq b7_from_b16 + !: + bcc b7_from_b16 + jmp b8 + // bitmap_line::@8 + b8: + // [237] (word) bitmap_line::x#1 ← (word) bitmap_line::x#13 + (word) bitmap_line::sx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + // [238] (word) bitmap_line::e#2 ← (word) bitmap_line::e#1 - (word) bitmap_line::dy#0 -- vwuz1=vwuz1_minus_vwuz2 + lda e + sec + sbc dy + sta e + lda e+1 + sbc dy+1 + sta e+1 + // [239] phi from bitmap_line::@16 bitmap_line::@8 to bitmap_line::@7 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7] + b7_from_b16: + b7_from_b8: + // [239] phi (word) bitmap_line::e#6 = (word) bitmap_line::e#1 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7#0] -- register_copy + // [239] phi (word) bitmap_line::x#12 = (word) bitmap_line::x#13 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7#1] -- register_copy + jmp b7 + // bitmap_line::@7 + b7: + // [240] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@6 -- vwuz1_neq_vwuz2_then_la1 + lda y+1 + cmp y2+1 + bne b6_from_b7 + lda y + cmp y2 + bne b6_from_b7 + // [241] phi from bitmap_line::@10 bitmap_line::@7 to bitmap_line::@3 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3] + b3_from_b10: + b3_from_b7: + // [241] phi (word) bitmap_line::x#6 = (word) bitmap_line::x#15 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3#0] -- register_copy + // [241] phi (word) bitmap_line::y#7 = (word) bitmap_line::y#13 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3#1] -- register_copy + jmp b3 + // bitmap_line::@3 + b3: + // [242] (byte) bitmap_plot::y#2 ← (byte)(word) bitmap_line::y#7 -- vbuz1=_byte_vwuz2 + lda y + sta bitmap_plot.y + // [243] (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 -- vwuz1=vwuz2 + lda x + sta bitmap_plot.x + lda x+1 + sta bitmap_plot.x+1 + // [244] call bitmap_plot + // [261] phi from bitmap_line::@3 to bitmap_plot [phi:bitmap_line::@3->bitmap_plot] + bitmap_plot_from_b3: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#2 [phi:bitmap_line::@3->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#2 [phi:bitmap_line::@3->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp breturn + // bitmap_line::@return + breturn: + // [245] return + rts + // bitmap_line::@2 + b2: + // [246] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 >> (byte) 1 -- vwuz1=vwuz2_ror_1 + lda dy+1 + lsr + sta e1+1 + lda dy + ror + sta e1 + // [247] phi from bitmap_line::@10 bitmap_line::@2 to bitmap_line::@9 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9] + b9_from_b10: + b9_from_b2: + // [247] phi (word) bitmap_line::e1#3 = (word) bitmap_line::e1#6 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#0] -- register_copy + // [247] phi (word) bitmap_line::x#7 = (word) bitmap_line::x#15 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#1] -- register_copy + // [247] phi (word) bitmap_line::y#15 = (word) bitmap_line::y#13 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#2] -- register_copy + jmp b9 + // bitmap_line::@9 + b9: + // [248] (byte) bitmap_plot::y#3 ← (byte)(word) bitmap_line::y#15 -- vbuz1=_byte_vwuz2 + lda y + sta bitmap_plot.y + // [249] (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 -- vwuz1=vwuz2 + lda x + sta bitmap_plot.x + lda x+1 + sta bitmap_plot.x+1 + // [250] call bitmap_plot + // [261] phi from bitmap_line::@9 to bitmap_plot [phi:bitmap_line::@9->bitmap_plot] + bitmap_plot_from_b9: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#3 [phi:bitmap_line::@9->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#3 [phi:bitmap_line::@9->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp b17 + // bitmap_line::@17 + b17: + // [251] (word) bitmap_line::x#15 ← (word) bitmap_line::x#7 + (word) bitmap_line::sx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + // [252] (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda e1 + clc + adc dy + sta e1 + lda e1+1 + adc dy+1 + sta e1+1 + // [253] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@10 -- vwuz1_ge_vwuz2_then_la1 + lda e1+1 + cmp dx+1 + bne !+ + lda e1 + cmp dx + beq b10_from_b17 + !: + bcc b10_from_b17 + jmp b11 + // bitmap_line::@11 + b11: + // [254] (word) bitmap_line::y#2 ← (word) bitmap_line::y#15 + (word) bitmap_line::sy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + // [255] (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#1 - (word) bitmap_line::dx#0 -- vwuz1=vwuz1_minus_vwuz2 + lda e1 + sec + sbc dx + sta e1 + lda e1+1 + sbc dx+1 + sta e1+1 + // [256] phi from bitmap_line::@11 bitmap_line::@17 to bitmap_line::@10 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10] + b10_from_b11: + b10_from_b17: + // [256] phi (word) bitmap_line::e1#6 = (word) bitmap_line::e1#2 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10#0] -- register_copy + // [256] phi (word) bitmap_line::y#13 = (word) bitmap_line::y#2 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10#1] -- register_copy + jmp b10 + // bitmap_line::@10 + b10: + // [257] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@9 -- vwuz1_neq_vwuz2_then_la1 + lda x+1 + cmp x2+1 + bne b9_from_b10 + lda x + cmp x2 + bne b9_from_b10 + jmp b3_from_b10 + // bitmap_line::@4 + b4: + // [258] (byte) bitmap_plot::y#0 ← (byte)(word) bitmap_line::y#0 -- vbuz1=_byte_vwuz2 + lda y + sta bitmap_plot.y + // [259] (word) bitmap_plot::x#0 ← (word) bitmap_line::x#0 -- vwuz1=vwuz2 + lda x + sta bitmap_plot.x + lda x+1 + sta bitmap_plot.x+1 + // [260] call bitmap_plot + // [261] phi from bitmap_line::@4 to bitmap_plot [phi:bitmap_line::@4->bitmap_plot] + bitmap_plot_from_b4: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#0 [phi:bitmap_line::@4->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#0 [phi:bitmap_line::@4->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp breturn +} + // bitmap_plot +// Plot a single dot in the bitmap +// bitmap_plot(word zeropage($1b) x, byte zeropage($1a) y) +bitmap_plot: { + .label _1 = $a3 + .label _2 = $a7 + .label plotter = $a1 + .label plotter_1 = $a5 + .label x = $1b + .label y = $1a + // [262] (word) bitmap_plot::plotter#0 ← *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) w= *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) -- vwuz1=pbuc1_derefidx_vbuz2_word_pbuc2_derefidx_vbuz2 + ldy y + lda bitmap_plot_yhi,y + sta plotter+1 + lda bitmap_plot_ylo,y + sta plotter + // [263] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 -- vwuz1=vwuz2_band_vwuc1 + lda x + and #<$fff8 + sta _1 + lda x+1 + and #>$fff8 + sta _1+1 + // [264] (byte*) bitmap_plot::plotter#1 ← (byte*)(word) bitmap_plot::plotter#0 + (word~) bitmap_plot::$1 -- pbuz1=pbuz2_plus_vwuz3 + lda plotter + clc + adc _1 + sta plotter_1 + lda plotter+1 + adc _1+1 + sta plotter_1+1 + // [265] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#4 -- vbuz1=_lo_vwuz2 + lda x + sta _2 + // [266] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[$100]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuz2 + ldy #0 + lda (plotter_1),y + ldy _2 + ora bitmap_plot_bit,y + ldy #0 + sta (plotter_1),y + jmp breturn + // bitmap_plot::@return + breturn: + // [267] return + rts +} + // sgn_u16 +// Get the sign of a 16-bit unsigned number treated as a signed number. +// Returns unsigned -1 if the number is +// sgn_u16(word zeropage($1d) w) +sgn_u16: { + .label _0 = $a8 + .label _1 = $a9 + .label w = $1d + .label return = $99 + .label return_1 = $9d + .label return_4 = $1f + // [269] (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 -- vbuz1=_hi_vwuz2 + lda w+1 + sta _0 + // [270] (byte~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (byte) $80 -- vbuz1=vbuz2_band_vbuc1 + lda #$80 + and _0 + sta _1 + // [271] if((byte) 0!=(byte~) sgn_u16::$1) goto sgn_u16::@1 -- vbuc1_neq_vbuz1_then_la1 + lda #0 + cmp _1 + bne b1_from_sgn_u16 + // [273] phi from sgn_u16 to sgn_u16::@return [phi:sgn_u16->sgn_u16::@return] + breturn_from_sgn_u16: + // [273] phi (word) sgn_u16::return#4 = (byte) 1 [phi:sgn_u16->sgn_u16::@return#0] -- vwuz1=vbuc1 + lda #<1 + sta return_4 + lda #>1 + sta return_4+1 + jmp breturn + // [272] phi from sgn_u16 to sgn_u16::@1 [phi:sgn_u16->sgn_u16::@1] + b1_from_sgn_u16: + jmp b1 + // sgn_u16::@1 + b1: + // [273] phi from sgn_u16::@1 to sgn_u16::@return [phi:sgn_u16::@1->sgn_u16::@return] + breturn_from_b1: + // [273] phi (word) sgn_u16::return#4 = (byte) -1 [phi:sgn_u16::@1->sgn_u16::@return#0] -- vwuz1=vbuc1 + lda #<-1 + sta return_4 + lda #>-1 + sta return_4+1 + jmp breturn + // sgn_u16::@return + breturn: + // [274] return + rts +} + // abs_u16 +// Get the absolute value of a 16-bit unsigned number treated as a signed number. +// abs_u16(word zeropage($21) w) +abs_u16: { + .label _0 = $aa + .label _1 = $ab + .label w = $21 + .label return = $91 + .label return_1 = $95 + .label return_2 = $21 + .label return_4 = $21 + // [276] (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 -- vbuz1=_hi_vwuz2 + lda w+1 + sta _0 + // [277] (byte~) abs_u16::$1 ← (byte~) abs_u16::$0 & (byte) $80 -- vbuz1=vbuz2_band_vbuc1 + lda #$80 + and _0 + sta _1 + // [278] if((byte) 0!=(byte~) abs_u16::$1) goto abs_u16::@1 -- vbuc1_neq_vbuz1_then_la1 + lda #0 + cmp _1 + bne b1 + // [280] phi from abs_u16 abs_u16::@1 to abs_u16::@return [phi:abs_u16/abs_u16::@1->abs_u16::@return] + breturn_from_abs_u16: + breturn_from_b1: + // [280] phi (word) abs_u16::return#4 = (word) abs_u16::w#2 [phi:abs_u16/abs_u16::@1->abs_u16::@return#0] -- register_copy + jmp breturn + // abs_u16::@1 + b1: + // [279] (word) abs_u16::return#2 ← - (word) abs_u16::w#2 -- vwuz1=_neg_vwuz1 + sec + lda #0 + sbc return_2 + sta return_2 + lda #0 + sbc return_2+1 + sta return_2+1 + jmp breturn_from_b1 + // abs_u16::@return + breturn: + // [281] return + rts +} + // spline_8segB +// Generate a 8-segment quadratic spline using 16-bit fixed point 1/64-format math (6 decimal bits). +// The resulting spline segment points are returned in SPLINE_8SEG[] +// Point values must be within [-200 ; 1ff] for the calculation to not overflow. +// A quadratic spline is a curve defined by 3 points: P0, P1 and P2. +// The curve connects P0 to P2 through a smooth curve that moves towards P1, but does usually not touch it. +// spline_8segB(signed word zeropage($83) p0_x, signed word zeropage($85) p0_y, signed word zeropage($87) p1_x, signed word zeropage($89) p1_y, signed word zeropage($8b) p2_x, signed word zeropage($8d) p2_y) +spline_8segB: { + .label _0 = $ac + .label _1 = $ae + .label _3 = $b2 + .label _4 = $b4 + .label _6 = $b8 + .label _8 = $bc + .label _10 = $c0 + .label _12 = $c2 + .label _18 = $d1 + .label _19 = $d3 + .label _20 = $d5 + .label _21 = $d7 + .label _22 = $c8 + .label _23 = $ca + .label _24 = $cc + .label _25 = $ce + .label _31 = $d0 + .label a_x = $b0 + .label a_y = $b6 + .label b_x = $ba + .label b_y = $be + .label i_x = $28 + .label i_y = $2a + .label j_x = $c4 + .label j_y = $c6 + .label p_x = $23 + .label p_y = $25 + .label n = $27 + .label p0_x = $83 + .label p0_y = $85 + .label p1_x = $87 + .label p1_y = $89 + .label p2_x = $8b + .label p2_y = $8d + // [282] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda p1_x + asl + sta _0 + lda p1_x+1 + rol + sta _0+1 + // [283] (signed word~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#0 - (signed word~) spline_8segB::$0 -- vwsz1=vwsz2_minus_vwsz3 + lda p2_x + sec + sbc _0 + sta _1 + lda p2_x+1 + sbc _0+1 + sta _1+1 + // [284] (signed word) spline_8segB::a_x#0 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#0 -- vwsz1=vwsz2_plus_vwsz3 + lda _1 + clc + adc p0_x + sta a_x + lda _1+1 + adc p0_x+1 + sta a_x+1 + // [285] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda p1_y + asl + sta _3 + lda p1_y+1 + rol + sta _3+1 + // [286] (signed word~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#0 - (signed word~) spline_8segB::$3 -- vwsz1=vwsz2_minus_vwsz3 + lda p2_y + sec + sbc _3 + sta _4 + lda p2_y+1 + sbc _3+1 + sta _4+1 + // [287] (signed word) spline_8segB::a_y#0 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#0 -- vwsz1=vwsz2_plus_vwsz3 + lda _4 + clc + adc p0_y + sta a_y + lda _4+1 + adc p0_y+1 + sta a_y+1 + // [288] (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#0 - (signed word) spline_8segB::p0_x#0 -- vwsz1=vwsz2_minus_vwsz3 + lda p1_x + sec + sbc p0_x + sta _6 + lda p1_x+1 + sbc p0_x+1 + sta _6+1 + // [289] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _6 + asl + sta b_x + lda _6+1 + rol + sta b_x+1 + // [290] (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#0 - (signed word) spline_8segB::p0_y#0 -- vwsz1=vwsz2_minus_vwsz3 + lda p1_y + sec + sbc p0_y + sta _8 + lda p1_y+1 + sbc p0_y+1 + sta _8+1 + // [291] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _8 + asl + sta b_y + lda _8+1 + rol + sta b_y+1 + // [292] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 << (byte) 3 -- vwsz1=vwsz2_rol_3 + lda b_x + asl + sta _10 + lda b_x+1 + rol + sta _10+1 + asl _10 + rol _10+1 + asl _10 + rol _10+1 + // [293] (signed word) spline_8segB::i_x#0 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 -- vwsz1=vwsz2_plus_vwsz3 + lda a_x + clc + adc _10 + sta i_x + lda a_x+1 + adc _10+1 + sta i_x+1 + // [294] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 << (byte) 3 -- vwsz1=vwsz2_rol_3 + lda b_y + asl + sta _12 + lda b_y+1 + rol + sta _12+1 + asl _12 + rol _12+1 + asl _12 + rol _12+1 + // [295] (signed word) spline_8segB::i_y#0 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 -- vwsz1=vwsz2_plus_vwsz3 + lda a_y + clc + adc _12 + sta i_y + lda a_y+1 + adc _12+1 + sta i_y+1 + // [296] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda a_x + asl + sta j_x + lda a_x+1 + rol + sta j_x+1 + // [297] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda a_y + asl + sta j_y + lda a_y+1 + rol + sta j_y+1 + // [298] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 << (byte) 6 -- vwsz1=vwsz2_rol_6 + lda p_x + sta $ff + lda p_x+1 + sta p_x + lda #0 + bit p_x+1 + bpl !+ + lda #$ff + !: + sta p_x+1 + rol $ff + rol p_x + rol p_x+1 + rol $ff + rol p_x + rol p_x+1 + lda p0_x + asl + sta p_x + lda p0_x+1 + rol + sta p_x+1 + asl p_x + rol p_x+1 + asl p_x + rol p_x+1 + asl p_x + rol p_x+1 + asl p_x + rol p_x+1 + asl p_x + rol p_x+1 + // [299] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 << (byte) 6 -- vwsz1=vwsz2_rol_6 + lda p_y + sta $ff + lda p_y+1 + sta p_y + lda #0 + bit p_y+1 + bpl !+ + lda #$ff + !: + sta p_y+1 + rol $ff + rol p_y + rol p_y+1 + rol $ff + rol p_y + rol p_y+1 + lda p0_y + asl + sta p_y + lda p0_y+1 + rol + sta p_y+1 + asl p_y + rol p_y+1 + asl p_y + rol p_y+1 + asl p_y + rol p_y+1 + asl p_y + rol p_y+1 + asl p_y + rol p_y+1 + // [300] phi from spline_8segB to spline_8segB::@1 [phi:spline_8segB->spline_8segB::@1] + b1_from_spline_8segB: + // [300] phi (signed word) spline_8segB::i_y#2 = (signed word) spline_8segB::i_y#0 [phi:spline_8segB->spline_8segB::@1#0] -- register_copy + // [300] phi (signed word) spline_8segB::i_x#2 = (signed word) spline_8segB::i_x#0 [phi:spline_8segB->spline_8segB::@1#1] -- register_copy + // [300] phi (byte) spline_8segB::n#2 = (byte) 0 [phi:spline_8segB->spline_8segB::@1#2] -- vbuz1=vbuc1 + lda #0 + sta n + // [300] phi (signed word) spline_8segB::p_y#2 = (signed word) spline_8segB::p_y#0 [phi:spline_8segB->spline_8segB::@1#3] -- register_copy + // [300] phi (signed word) spline_8segB::p_x#2 = (signed word) spline_8segB::p_x#0 [phi:spline_8segB->spline_8segB::@1#4] -- register_copy + jmp b1 + // [300] phi from spline_8segB::@1 to spline_8segB::@1 [phi:spline_8segB::@1->spline_8segB::@1] + b1_from_b1: + // [300] phi (signed word) spline_8segB::i_y#2 = (signed word) spline_8segB::i_y#1 [phi:spline_8segB::@1->spline_8segB::@1#0] -- register_copy + // [300] phi (signed word) spline_8segB::i_x#2 = (signed word) spline_8segB::i_x#1 [phi:spline_8segB::@1->spline_8segB::@1#1] -- register_copy + // [300] phi (byte) spline_8segB::n#2 = (byte) spline_8segB::n#1 [phi:spline_8segB::@1->spline_8segB::@1#2] -- register_copy + // [300] phi (signed word) spline_8segB::p_y#2 = (signed word) spline_8segB::p_y#1 [phi:spline_8segB::@1->spline_8segB::@1#3] -- register_copy + // [300] phi (signed word) spline_8segB::p_x#2 = (signed word) spline_8segB::p_x#1 [phi:spline_8segB::@1->spline_8segB::@1#4] -- register_copy + jmp b1 + // spline_8segB::@1 + b1: + // [301] (signed word~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_x + clc + adc #<$20 + sta _22 + lda p_x+1 + adc #>$20 + sta _22+1 + // [302] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 >> (byte) 6 -- vwsz1=vwsz2_ror_6 + lda _22 + sta $ff + lda _22+1 + sta _23 + lda #0 + bit _22+1 + bpl !+ + lda #$ff + !: + sta _23+1 + rol $ff + rol _23 + rol _23+1 + rol $ff + rol _23 + rol _23+1 + // [303] (signed word~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_y + clc + adc #<$20 + sta _24 + lda p_y+1 + adc #>$20 + sta _24+1 + // [304] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 >> (byte) 6 -- vwsz1=vwsz2_ror_6 + lda _24 + sta $ff + lda _24+1 + sta _25 + lda #0 + bit _24+1 + bpl !+ + lda #$ff + !: + sta _25+1 + rol $ff + rol _25 + rol _25+1 + rol $ff + rol _25 + rol _25+1 + // [305] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 << (byte) 2 -- vbuz1=vbuz2_rol_2 + lda n + asl + asl + sta _31 + // [306] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$23 -- pwsc1_derefidx_vbuz1=vwsz2 + ldy _31 + lda _23 + sta SPLINE_8SEG,y + lda _23+1 + sta SPLINE_8SEG+1,y + // [307] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$25 -- pwsc1_derefidx_vbuz1=vwsz2 + ldy _31 + lda _25 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,y + lda _25+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,y + // [308] (signed word) spline_8segB::p_x#1 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 -- vwsz1=vwsz1_plus_vwsz2 + lda p_x + clc + adc i_x + sta p_x + lda p_x+1 + adc i_x+1 + sta p_x+1 + // [309] (signed word) spline_8segB::p_y#1 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 -- vwsz1=vwsz1_plus_vwsz2 + lda p_y + clc + adc i_y + sta p_y + lda p_y+1 + adc i_y+1 + sta p_y+1 + // [310] (signed word) spline_8segB::i_x#1 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#0 -- vwsz1=vwsz1_plus_vwsz2 + lda i_x + clc + adc j_x + sta i_x + lda i_x+1 + adc j_x+1 + sta i_x+1 + // [311] (signed word) spline_8segB::i_y#1 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#0 -- vwsz1=vwsz1_plus_vwsz2 + lda i_y + clc + adc j_y + sta i_y + lda i_y+1 + adc j_y+1 + sta i_y+1 + // [312] (byte) spline_8segB::n#1 ← ++ (byte) spline_8segB::n#2 -- vbuz1=_inc_vbuz1 + inc n + // [313] if((byte) spline_8segB::n#1!=(byte) 8) goto spline_8segB::@1 -- vbuz1_neq_vbuc1_then_la1 + lda #8 + cmp n + bne b1_from_b1 + jmp b2 + // spline_8segB::@2 + b2: + // [314] (signed word~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#1 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_x + clc + adc #<$20 + sta _18 + lda p_x+1 + adc #>$20 + sta _18+1 + // [315] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 >> (byte) 6 -- vwsz1=vwsz2_ror_6 + lda _18 + sta $ff + lda _18+1 + sta _19 + lda #0 + bit _18+1 + bpl !+ + lda #$ff + !: + sta _19+1 + rol $ff + rol _19 + rol _19+1 + rol $ff + rol _19 + rol _19+1 + // [316] (signed word~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#1 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_y + clc + adc #<$20 + sta _20 + lda p_y+1 + adc #>$20 + sta _20+1 + // [317] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 >> (byte) 6 -- vwsz1=vwsz2_ror_6 + lda _20 + sta $ff + lda _20+1 + sta _21 + lda #0 + bit _20+1 + bpl !+ + lda #$ff + !: + sta _21+1 + rol $ff + rol _21 + rol _21+1 + rol $ff + rol _21 + rol _21+1 + // [318] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$19 -- _deref_pwsc1=vwsz1 + lda _19 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _19+1 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + // [319] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$21 -- _deref_pwsc1=vwsz1 + lda _21 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _21+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + jmp breturn + // spline_8segB::@return + breturn: + // [320] return + rts +} + // rotate +// 2D-rotate a vector by an angle +// rotate(signed word zeropage($2d) vector_x, signed word zeropage($2f) vector_y, byte zeropage($2c) angle) +rotate: { + .label _1 = $df + .label _2 = $e3 + .label _4 = $eb + .label _5 = $ef + .label _8 = $f9 + .label _9 = $fd + .label _10 = $ff + .label _11 = $107 + .label _12 = $10b + .label _13 = $10d + .label _15 = $111 + .label _18 = $114 + .label vector_x = $2d + .label vector_y = $2f + .label angle = $2c + .label return_x = $5e + .label return_y = $60 + .label return_x_1 = $74 + .label return_y_1 = $76 + .label cos_a = $d9 + .label xr = $e5 + .label yr = $f1 + .label sin_a = $f3 + .label xr_1 = $101 + .label yr_1 = $10f + .label return_x_2 = $112 + .label return_y_2 = $115 + // [322] (signed word) rotate::cos_a#0 ← (signed word)*((const signed byte*) COS#0 + (byte) rotate::angle#2) -- vwsz1=_sword_pbsc1_derefidx_vbuz2 + ldy angle + lda COS,y + sta cos_a + ora #$7f + bmi !+ + lda #0 + !: + sta cos_a+1 + // [323] (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 -- vwsz1=vwsz2 + lda cos_a + sta mulf16s.a + lda cos_a+1 + sta mulf16s.a+1 + // [324] (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 -- vwsz1=vwsz2 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + // [325] call mulf16s + // [359] phi from rotate to mulf16s [phi:rotate->mulf16s] + mulf16s_from_rotate: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#0 [phi:rotate->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#0 [phi:rotate->mulf16s#1] -- register_copy + jsr mulf16s + // [326] (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#0 -- vdsz1=vdsz2 + lda mulf16s.return + sta mulf16s.return_2 + lda mulf16s.return+1 + sta mulf16s.return_2+1 + lda mulf16s.return+2 + sta mulf16s.return_2+2 + lda mulf16s.return+3 + sta mulf16s.return_2+3 + jmp b1 + // rotate::@1 + b1: + // [327] (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#2 -- vdsz1=vdsz2 + lda mulf16s.return_2 + sta _1 + lda mulf16s.return_2+1 + sta _1+1 + lda mulf16s.return_2+2 + sta _1+2 + lda mulf16s.return_2+3 + sta _1+3 + // [328] (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 -- vwsz1=_sword_vdsz2 + lda _1 + sta _2 + lda _1+1 + sta _2+1 + // [329] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _2 + asl + sta xr + lda _2+1 + rol + sta xr+1 + // [330] (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#0 -- vwsz1=vwsz2 + lda cos_a + sta mulf16s.a + lda cos_a+1 + sta mulf16s.a+1 + // [331] (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 -- vwsz1=vwsz2 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + // [332] call mulf16s + // [359] phi from rotate::@1 to mulf16s [phi:rotate::@1->mulf16s] + mulf16s_from_b1: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#1 [phi:rotate::@1->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#1 [phi:rotate::@1->mulf16s#1] -- register_copy + jsr mulf16s + // [333] (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#0 -- vdsz1=vdsz2 + lda mulf16s.return + sta mulf16s.return_3 + lda mulf16s.return+1 + sta mulf16s.return_3+1 + lda mulf16s.return+2 + sta mulf16s.return_3+2 + lda mulf16s.return+3 + sta mulf16s.return_3+3 + jmp b2 + // rotate::@2 + b2: + // [334] (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#3 -- vdsz1=vdsz2 + lda mulf16s.return_3 + sta _4 + lda mulf16s.return_3+1 + sta _4+1 + lda mulf16s.return_3+2 + sta _4+2 + lda mulf16s.return_3+3 + sta _4+3 + // [335] (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 -- vwsz1=_sword_vdsz2 + lda _4 + sta _5 + lda _4+1 + sta _5+1 + // [336] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _5 + asl + sta yr + lda _5+1 + rol + sta yr+1 + // [337] (signed word) rotate::sin_a#0 ← (signed word)*((const signed byte[$140]) SIN#0 + (byte) rotate::angle#2) -- vwsz1=_sword_pbsc1_derefidx_vbuz2 + ldy angle + lda SIN,y + sta sin_a + ora #$7f + bmi !+ + lda #0 + !: + sta sin_a+1 + // [338] (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 -- vwsz1=vwsz2 + lda sin_a + sta mulf16s.a + lda sin_a+1 + sta mulf16s.a+1 + // [339] (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#2 -- vwsz1=vwsz2 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + // [340] call mulf16s + // [359] phi from rotate::@2 to mulf16s [phi:rotate::@2->mulf16s] + mulf16s_from_b2: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#2 [phi:rotate::@2->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#2 [phi:rotate::@2->mulf16s#1] -- register_copy + jsr mulf16s + // [341] (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#0 -- vdsz1=vdsz2 + lda mulf16s.return + sta mulf16s.return_4 + lda mulf16s.return+1 + sta mulf16s.return_4+1 + lda mulf16s.return+2 + sta mulf16s.return_4+2 + lda mulf16s.return+3 + sta mulf16s.return_4+3 + jmp b3 + // rotate::@3 + b3: + // [342] (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#4 -- vdsz1=vdsz2 + lda mulf16s.return_4 + sta _8 + lda mulf16s.return_4+1 + sta _8+1 + lda mulf16s.return_4+2 + sta _8+2 + lda mulf16s.return_4+3 + sta _8+3 + // [343] (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 -- vwsz1=_sword_vdsz2 + lda _8 + sta _9 + lda _8+1 + sta _9+1 + // [344] (signed word~) rotate::$10 ← (signed word~) rotate::$9 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _9 + asl + sta _10 + lda _9+1 + rol + sta _10+1 + // [345] (signed word) rotate::xr#1 ← (signed word) rotate::xr#0 - (signed word~) rotate::$10 -- vwsz1=vwsz2_minus_vwsz3 + // signed fixed[0.7] + lda xr + sec + sbc _10 + sta xr_1 + lda xr+1 + sbc _10+1 + sta xr_1+1 + // [346] (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#0 -- vwsz1=vwsz2 + lda sin_a + sta mulf16s.a + lda sin_a+1 + sta mulf16s.a+1 + // [347] (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#2 -- vwsz1=vwsz2 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + // [348] call mulf16s + // [359] phi from rotate::@3 to mulf16s [phi:rotate::@3->mulf16s] + mulf16s_from_b3: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#3 [phi:rotate::@3->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#3 [phi:rotate::@3->mulf16s#1] -- register_copy + jsr mulf16s + // [349] (signed dword) mulf16s::return#10 ← (signed dword) mulf16s::return#0 -- vdsz1=vdsz2 + lda mulf16s.return + sta mulf16s.return_10 + lda mulf16s.return+1 + sta mulf16s.return_10+1 + lda mulf16s.return+2 + sta mulf16s.return_10+2 + lda mulf16s.return+3 + sta mulf16s.return_10+3 + jmp b4 + // rotate::@4 + b4: + // [350] (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 -- vdsz1=vdsz2 + lda mulf16s.return_10 + sta _11 + lda mulf16s.return_10+1 + sta _11+1 + lda mulf16s.return_10+2 + sta _11+2 + lda mulf16s.return_10+3 + sta _11+3 + // [351] (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 -- vwsz1=_sword_vdsz2 + lda _11 + sta _12 + lda _11+1 + sta _12+1 + // [352] (signed word~) rotate::$13 ← (signed word~) rotate::$12 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _12 + asl + sta _13 + lda _12+1 + rol + sta _13+1 + // [353] (signed word) rotate::yr#1 ← (signed word) rotate::yr#0 + (signed word~) rotate::$13 -- vwsz1=vwsz2_plus_vwsz3 + // signed fixed[8.8] + lda yr + clc + adc _13 + sta yr_1 + lda yr+1 + adc _13+1 + sta yr_1+1 + // [354] (byte~) rotate::$15 ← > (signed word) rotate::xr#1 -- vbuz1=_hi_vwsz2 + lda xr_1+1 + sta _15 + // [355] (signed word) rotate::return_x#2 ← (signed word)(signed byte)(byte~) rotate::$15 -- vwsz1=_sword_vbsz2 + lda _15 + sta return_x_2 + ora #$7f + bmi !+ + lda #0 + !: + sta return_x_2+1 + // [356] (byte~) rotate::$18 ← > (signed word) rotate::yr#1 -- vbuz1=_hi_vwsz2 + lda yr_1+1 + sta _18 + // [357] (signed word) rotate::return_y#2 ← (signed word)(signed byte)(byte~) rotate::$18 -- vwsz1=_sword_vbsz2 + lda _18 + sta return_y_2 + ora #$7f + bmi !+ + lda #0 + !: + sta return_y_2+1 + jmp breturn + // rotate::@return + breturn: + // [358] return + rts +} + // mulf16s +// Fast multiply two signed words to a signed double word result +// Fixes offsets introduced by using unsigned multiplication +// mulf16s(signed word zeropage($31) a, signed word zeropage($33) b) +mulf16s: { + .label _9 = $11f + .label _13 = $123 + .label _16 = $121 + .label _17 = $125 + .label m = $35 + .label return = $127 + .label a = $31 + .label b = $33 + .label return_2 = $db + .label return_3 = $e7 + .label return_4 = $f5 + .label return_10 = $103 + // [360] (word) mulf16u::a#0 ← (word)(signed word) mulf16s::a#4 -- vwuz1=vwuz2 + lda a + sta mulf16u.a + lda a+1 + sta mulf16u.a+1 + // [361] (word) mulf16u::b#0 ← (word)(signed word) mulf16s::b#4 -- vwuz1=vwuz2 + lda b + sta mulf16u.b + lda b+1 + sta mulf16u.b+1 + // [362] call mulf16u + jsr mulf16u + // [363] (dword) mulf16u::return#2 ← (dword) mulf16u::return#0 -- vduz1=vduz2 + lda mulf16u.return + sta mulf16u.return_2 + lda mulf16u.return+1 + sta mulf16u.return_2+1 + lda mulf16u.return+2 + sta mulf16u.return_2+2 + lda mulf16u.return+3 + sta mulf16u.return_2+3 + jmp b5 + // mulf16s::@5 + b5: + // [364] (dword) mulf16s::m#0 ← (dword) mulf16u::return#2 -- vduz1=vduz2 + lda mulf16u.return_2 + sta m + lda mulf16u.return_2+1 + sta m+1 + lda mulf16u.return_2+2 + sta m+2 + lda mulf16u.return_2+3 + sta m+3 + // [365] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 -- vwsz1_ge_0_then_la1 + lda a+1 + bpl b1_from_b5 + jmp b3 + // mulf16s::@3 + b3: + // [366] (word~) mulf16s::$9 ← > (dword) mulf16s::m#0 -- vwuz1=_hi_vduz2 + lda m+2 + sta _9 + lda m+3 + sta _9+1 + // [367] (word~) mulf16s::$16 ← (word~) mulf16s::$9 - (word)(signed word) mulf16s::b#4 -- vwuz1=vwuz2_minus_vwuz3 + lda _9 + sec + sbc b + sta _16 + lda _9+1 + sbc b+1 + sta _16+1 + // [368] (dword) mulf16s::m#1 ← (dword) mulf16s::m#0 hi= (word~) mulf16s::$16 -- vduz1=vduz1_sethi_vwuz2 + lda _16 + sta m+2 + lda _16+1 + sta m+3 + // [369] phi from mulf16s::@3 mulf16s::@5 to mulf16s::@1 [phi:mulf16s::@3/mulf16s::@5->mulf16s::@1] + b1_from_b3: + b1_from_b5: + // [369] phi (dword) mulf16s::m#5 = (dword) mulf16s::m#1 [phi:mulf16s::@3/mulf16s::@5->mulf16s::@1#0] -- register_copy + jmp b1 + // mulf16s::@1 + b1: + // [370] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 -- vwsz1_ge_0_then_la1 + lda b+1 + bpl b2_from_b1 + jmp b4 + // mulf16s::@4 + b4: + // [371] (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 -- vwuz1=_hi_vduz2 + lda m+2 + sta _13 + lda m+3 + sta _13+1 + // [372] (word~) mulf16s::$17 ← (word~) mulf16s::$13 - (word)(signed word) mulf16s::a#4 -- vwuz1=vwuz2_minus_vwuz3 + lda _13 + sec + sbc a + sta _17 + lda _13+1 + sbc a+1 + sta _17+1 + // [373] (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 -- vduz1=vduz1_sethi_vwuz2 + lda _17 + sta m+2 + lda _17+1 + sta m+3 + // [374] phi from mulf16s::@1 mulf16s::@4 to mulf16s::@2 [phi:mulf16s::@1/mulf16s::@4->mulf16s::@2] + b2_from_b1: + b2_from_b4: + // [374] phi (dword) mulf16s::m#4 = (dword) mulf16s::m#5 [phi:mulf16s::@1/mulf16s::@4->mulf16s::@2#0] -- register_copy + jmp b2 + // mulf16s::@2 + b2: + // [375] (signed dword) mulf16s::return#0 ← (signed dword)(dword) mulf16s::m#4 -- vdsz1=vdsz2 + lda m + sta return + lda m+1 + sta return+1 + lda m+2 + sta return+2 + lda m+3 + sta return+3 + jmp breturn + // mulf16s::@return + breturn: + // [376] return + rts +} + // mulf16u +// Fast multiply two unsigned words to a double word result +// Done in assembler to utilize fast addition A+X +// mulf16u(word zeropage($117) a, word zeropage($119) b) +mulf16u: { + .label memA = $f8 + .label memB = $fa + .label memR = $fc + .label return = $12b + .label a = $117 + .label b = $119 + .label return_2 = $11b + // [377] *((const word*) mulf16u::memA#0) ← (word) mulf16u::a#0 -- _deref_pwuc1=vwuz1 + lda a + sta memA + lda a+1 + sta memA+1 + // [378] *((const word*) mulf16u::memB#0) ← (word) mulf16u::b#0 -- _deref_pwuc1=vwuz1 + lda b + sta memB + lda b+1 + sta memB+1 + // asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } + lda memA + sta sm1a+1 + sta sm3a+1 + sta sm5a+1 + sta sm7a+1 + eor #$ff + sta sm2a+1 + sta sm4a+1 + sta sm6a+1 + sta sm8a+1 + lda memA+1 + sta sm1b+1 + sta sm3b+1 + sta sm5b+1 + sta sm7b+1 + eor #$ff + sta sm2b+1 + sta sm4b+1 + sta sm6b+1 + sta sm8b+1 + ldx memB + sec + sm1a: + lda mulf_sqr1_lo,x + sm2a: + sbc mulf_sqr2_lo,x + sta memR+0 + sm3a: + lda mulf_sqr1_hi,x + sm4a: + sbc mulf_sqr2_hi,x + sta _AA+1 + sec + sm1b: + lda mulf_sqr1_lo,x + sm2b: + sbc mulf_sqr2_lo,x + sta _cc+1 + sm3b: + lda mulf_sqr1_hi,x + sm4b: + sbc mulf_sqr2_hi,x + sta _CC+1 + ldx memB+1 + sec + sm5a: + lda mulf_sqr1_lo,x + sm6a: + sbc mulf_sqr2_lo,x + sta _bb+1 + sm7a: + lda mulf_sqr1_hi,x + sm8a: + sbc mulf_sqr2_hi,x + sta _BB+1 + sec + sm5b: + lda mulf_sqr1_lo,x + sm6b: + sbc mulf_sqr2_lo,x + sta _dd+1 + sm7b: + lda mulf_sqr1_hi,x + sm8b: + sbc mulf_sqr2_hi,x + sta memR+3 + clc + _AA: + lda #0 + _bb: + adc #0 + sta memR+1 + _BB: + lda #0 + _CC: + adc #0 + sta memR+2 + bcc !+ + inc memR+3 + clc + !: + _cc: + lda #0 + adc memR+1 + sta memR+1 + _dd: + lda #0 + adc memR+2 + sta memR+2 + bcc !+ + inc memR+3 + !: + // [380] (dword) mulf16u::return#0 ← *((const dword*) mulf16u::memR#0) -- vduz1=_deref_pduc1 + lda memR + sta return + lda memR+1 + sta return+1 + lda memR+2 + sta return+2 + lda memR+3 + sta return+3 + jmp breturn + // mulf16u::@return + breturn: + // [381] return + rts +} + // bitmap_clear +// Clear all graphics on the bitmap +// bgcol - the background color to fill the screen with +// fgcol - the foreground color to fill the screen with +bitmap_clear: { + .const col = WHITE<<4 + // [383] call memset + // [387] phi from bitmap_clear to memset [phi:bitmap_clear->memset] + memset_from_bitmap_clear: + // [387] phi (byte) memset::c#3 = (const byte) bitmap_clear::col#0 [phi:bitmap_clear->memset#0] -- vbuz1=vbuc1 + lda #col + sta memset.c + // [387] phi (void*) memset::str#3 = (void*)(const byte*) BITMAP_SCREEN#0 [phi:bitmap_clear->memset#1] -- pvoz1=pvoc1 + lda #BITMAP_SCREEN + sta memset.str+1 + // [387] phi (word) memset::num#2 = (word) $3e8 [phi:bitmap_clear->memset#2] -- vwuz1=vwuc1 + lda #<$3e8 + sta memset.num + lda #>$3e8 + sta memset.num+1 + jsr memset + // [384] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] + b1_from_bitmap_clear: + jmp b1 + // bitmap_clear::@1 + b1: + // [385] call memset + // [387] phi from bitmap_clear::@1 to memset [phi:bitmap_clear::@1->memset] + memset_from_b1: + // [387] phi (byte) memset::c#3 = (byte) 0 [phi:bitmap_clear::@1->memset#0] -- vbuz1=vbuc1 + lda #0 + sta memset.c + // [387] phi (void*) memset::str#3 = (void*)(const byte*) BITMAP_GRAPHICS#0 [phi:bitmap_clear::@1->memset#1] -- pvoz1=pvoc1 + lda #BITMAP_GRAPHICS + sta memset.str+1 + // [387] phi (word) memset::num#2 = (word) $1f40 [phi:bitmap_clear::@1->memset#2] -- vwuz1=vwuc1 + lda #<$1f40 + sta memset.num + lda #>$1f40 + sta memset.num+1 + jsr memset + jmp breturn + // bitmap_clear::@return + breturn: + // [386] return + rts +} + // memset +// Copies the character c (an unsigned char) to the first num characters of the object pointed to by the argument str. +// memset(void* zeropage($3b) str, byte zeropage($3d) c, word zeropage($39) num) +memset: { + .label end = $12f + .label dst = $3e + .label num = $39 + .label str = $3b + .label c = $3d + // [388] if((word) memset::num#2<=(byte) 0) goto memset::@return -- vwuz1_le_0_then_la1 + lda num + bne !+ + lda num+1 + beq breturn + !: + jmp b1 + // memset::@1 + b1: + // [389] (byte*) memset::end#0 ← (byte*)(void*) memset::str#3 + (word) memset::num#2 -- pbuz1=pbuz2_plus_vwuz3 + lda str + clc + adc num + sta end + lda str+1 + adc num+1 + sta end+1 + // [390] (byte*~) memset::dst#3 ← (byte*)(void*) memset::str#3 -- pbuz1=pbuz2 + lda str + sta dst + lda str+1 + sta dst+1 + // [391] phi from memset::@1 memset::@2 to memset::@2 [phi:memset::@1/memset::@2->memset::@2] + b2_from_b1: + b2_from_b2: + // [391] phi (byte*) memset::dst#2 = (byte*~) memset::dst#3 [phi:memset::@1/memset::@2->memset::@2#0] -- register_copy + jmp b2 + // memset::@2 + b2: + // [392] *((byte*) memset::dst#2) ← (byte) memset::c#3 -- _deref_pbuz1=vbuz2 + lda c + ldy #0 + sta (dst),y + // [393] (byte*) memset::dst#1 ← ++ (byte*) memset::dst#2 -- pbuz1=_inc_pbuz1 + inc dst + bne !+ + inc dst+1 + !: + // [394] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@2 -- pbuz1_neq_pbuz2_then_la1 + lda dst+1 + cmp end+1 + bne b2_from_b2 + lda dst + cmp end + bne b2_from_b2 + jmp breturn + // memset::@return + breturn: + // [395] return + rts +} + // bitmap_init +// Initialize bitmap plotting tables +bitmap_init: { + .label _4 = $132 + .label _5 = $133 + .label _6 = $134 + .label _7 = $131 + .label bits = $40 + .label x = $41 + .label y = $42 + .label yoffs = $43 + // [397] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] + b1_from_bitmap_init: + // [397] phi (byte) bitmap_init::x#2 = (byte) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuz1=vbuc1 + lda #0 + sta x + // [397] phi (byte) bitmap_init::bits#3 = (byte) $80 [phi:bitmap_init->bitmap_init::@1#1] -- vbuz1=vbuc1 + lda #$80 + sta bits + jmp b1 + // [397] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] + b1_from_b2: + // [397] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy + // [397] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy + jmp b1 + // bitmap_init::@1 + b1: + // [398] *((const byte[$100]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 -- pbuc1_derefidx_vbuz1=vbuz2 + lda bits + ldy x + sta bitmap_plot_bit,y + // [399] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte) 1 -- vbuz1=vbuz1_ror_1 + lsr bits + // [400] if((byte) bitmap_init::bits#1!=(byte) 0) goto bitmap_init::@6 -- vbuz1_neq_0_then_la1 + lda bits + cmp #0 + bne b6_from_b1 + // [402] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] + b2_from_b1: + // [402] phi (byte) bitmap_init::bits#4 = (byte) $80 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuz1=vbuc1 + lda #$80 + sta bits + jmp b2 + // [401] phi from bitmap_init::@1 to bitmap_init::@6 [phi:bitmap_init::@1->bitmap_init::@6] + b6_from_b1: + jmp b6 + // bitmap_init::@6 + b6: + // [402] phi from bitmap_init::@6 to bitmap_init::@2 [phi:bitmap_init::@6->bitmap_init::@2] + b2_from_b6: + // [402] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@6->bitmap_init::@2#0] -- register_copy + jmp b2 + // bitmap_init::@2 + b2: + // [403] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 -- vbuz1=_inc_vbuz1 + inc x + // [404] if((byte) bitmap_init::x#1!=(byte) 0) goto bitmap_init::@1 -- vbuz1_neq_0_then_la1 + lda x + cmp #0 + bne b1_from_b2 + // [405] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] + b3_from_b2: + // [405] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP_GRAPHICS#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 + lda #BITMAP_GRAPHICS + sta yoffs+1 + // [405] phi (byte) bitmap_init::y#2 = (byte) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuz1=vbuc1 + lda #0 + sta y + jmp b3 + // [405] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] + b3_from_b4: + // [405] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy + // [405] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy + jmp b3 + // bitmap_init::@3 + b3: + // [406] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 -- vbuz1=vbuz2_band_vbuc1 + lda #7 + and y + sta _7 + // [407] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 -- vbuz1=_lo_pbuz2 + lda yoffs + sta _4 + // [408] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$7 | (byte~) bitmap_init::$4 -- vbuz1=vbuz2_bor_vbuz3 + lda _7 + ora _4 + sta _5 + // [409] *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 -- pbuc1_derefidx_vbuz1=vbuz2 + lda _5 + ldy y + sta bitmap_plot_ylo,y + // [410] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 -- vbuz1=_hi_pbuz2 + lda yoffs+1 + sta _6 + // [411] *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 -- pbuc1_derefidx_vbuz1=vbuz2 + lda _6 + ldy y + sta bitmap_plot_yhi,y + // [412] if((byte~) bitmap_init::$7!=(byte) 7) goto bitmap_init::@4 -- vbuz1_neq_vbuc1_then_la1 + lda #7 + cmp _7 + bne b4_from_b3 + jmp b5 + // bitmap_init::@5 + b5: + // [413] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (word)(number) $28*(number) 8 -- pbuz1=pbuz1_plus_vwuc1 + clc + lda yoffs + adc #<$28*8 + sta yoffs + lda yoffs+1 + adc #>$28*8 + sta yoffs+1 + // [414] phi from bitmap_init::@3 bitmap_init::@5 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@5->bitmap_init::@4] + b4_from_b3: + b4_from_b5: + // [414] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@5->bitmap_init::@4#0] -- register_copy + jmp b4 + // bitmap_init::@4 + b4: + // [415] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 -- vbuz1=_inc_vbuz1 + inc y + // [416] if((byte) bitmap_init::y#1!=(byte) 0) goto bitmap_init::@3 -- vbuz1_neq_0_then_la1 + lda y + cmp #0 + bne b3_from_b4 + jmp breturn + // bitmap_init::@return + breturn: + // [417] return + rts +} + // mulf_init +// Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) +mulf_init: { + .label _7 = $135 + .label _10 = $136 + .label _11 = $137 + .label c = $45 + .label sqr1_hi = $48 + .label sqr = $4b + .label sqr1_lo = $46 + .label x_2 = $4a + .label sqr2_hi = $50 + .label x_255 = $4d + .label sqr2_lo = $4e + .label dir = $52 + // [419] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] + b1_from_mulf_init: + // [419] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 + lda #0 + sta x_2 + // [419] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 + lda #mulf_sqr1_hi+1 + sta sqr1_hi+1 + // [419] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 + lda #mulf_sqr1_lo+1 + sta sqr1_lo+1 + // [419] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 + lda #<0 + sta sqr + lda #>0 + sta sqr+1 + // [419] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuz1=vbuc1 + lda #0 + sta c + jmp b1 + // [419] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] + b1_from_b2: + // [419] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy + // [419] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy + // [419] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy + // [419] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy + // [419] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy + jmp b1 + // mulf_init::@1 + b1: + // [420] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuz1=_inc_vbuz1 + inc c + // [421] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuz1=vbuz2_band_vbuc1 + lda #1 + and c + sta _7 + // [422] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuz1_neq_0_then_la1 + lda _7 + cmp #0 + bne b2_from_b1 + jmp b3 + // mulf_init::@3 + b3: + // [423] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 + inc x_2 + // [424] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 + inc sqr + bne !+ + inc sqr+1 + !: + // [425] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] + b2_from_b1: + b2_from_b3: + // [425] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy + // [425] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy + jmp b2 + // mulf_init::@2 + b2: + // [426] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 -- vbuz1=_lo_vwuz2 + lda sqr + sta _10 + // [427] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 -- _deref_pbuz1=vbuz2 + lda _10 + ldy #0 + sta (sqr1_lo),y + // [428] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuz1=_hi_vwuz2 + lda sqr+1 + sta _11 + // [429] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuz2 + lda _11 + ldy #0 + sta (sqr1_hi),y + // [430] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 + inc sqr1_hi + bne !+ + inc sqr1_hi+1 + !: + // [431] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 + lda x_2 + clc + adc sqr + sta sqr + bcc !+ + inc sqr+1 + !: + // [432] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 + inc sqr1_lo + bne !+ + inc sqr1_lo+1 + !: + // [433] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 + lda sqr1_lo+1 + cmp #>mulf_sqr1_lo+$200 + bne b1_from_b2 + lda sqr1_lo + cmp #mulf_init::@4] + b4_from_b2: + // [434] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 + lda #$ff + sta dir + // [434] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 + lda #mulf_sqr2_hi + sta sqr2_hi+1 + // [434] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 + lda #mulf_sqr2_lo + sta sqr2_lo+1 + // [434] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuz1=vbuc1 + lda #-1 + sta x_255 + jmp b4 + // [434] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] + b4_from_b5: + // [434] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy + // [434] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy + // [434] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy + // [434] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy + jmp b4 + // mulf_init::@4 + b4: + // [435] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuz2 + ldy x_255 + lda mulf_sqr1_lo,y + ldy #0 + sta (sqr2_lo),y + // [436] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuz2 + ldy x_255 + lda mulf_sqr1_hi,y + ldy #0 + sta (sqr2_hi),y + // [437] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 + inc sqr2_hi + bne !+ + inc sqr2_hi+1 + !: + // [438] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuz1=vbuz1_plus_vbuz2 + lda x_255 + clc + adc dir + sta x_255 + // [439] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuz1_neq_0_then_la1 + lda x_255 + cmp #0 + bne b7_from_b4 + // [441] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] + b5_from_b4: + // [441] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 + lda #1 + sta dir + jmp b5 + // [440] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] + b7_from_b4: + jmp b7 + // mulf_init::@7 + b7: + // [441] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] + b5_from_b7: + // [441] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy + jmp b5 + // mulf_init::@5 + b5: + // [442] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 + inc sqr2_lo + bne !+ + inc sqr2_lo+1 + !: + // [443] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 + lda sqr2_lo+1 + cmp #>mulf_sqr2_lo+$1ff + bne b4_from_b5 + lda sqr2_lo + cmp #f(x) = >(( x * x )/4) + .align $100 + mulf_sqr1_hi: .fill $200, 0 + // g(x) = >((( x - 255) * ( x - 255 ))/4) + .align $100 + mulf_sqr2_hi: .fill $200, 0 + // True type letter c + letter_c: .fill 9*$16, 0 + // Sine and Cosine tables + // Angles: $00=0, $80=PI,$100=2*PI + // Sine/Cosine: signed fixed [-$7f,$7f] + .align $40 +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + + +REGISTER UPLIFT POTENTIAL REGISTERS +Equivalence Class zp ZP_BYTE:306 [ bitmap_init::$4 ] has ALU potential. +Statement [4] *((byte*)(const struct Segment[$16]) letter_c#0) ← (const byte) MOVE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [5] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO) ← (signed byte) $6c [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [6] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed word) $92 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [7] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [8] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [9] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [10] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $59 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [11] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b6 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [12] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [13] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [14] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [15] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3b [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [16] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [17] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4b [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [18] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [19] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [20] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $17 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [21] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b2 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [22] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $26 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [23] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [24] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [25] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [26] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $84 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [27] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [28] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a1 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [29] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [30] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $19 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [31] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $57 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [32] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [33] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [34] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [35] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $41 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [36] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [37] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $2a [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [38] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [39] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [40] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [41] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [42] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [43] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [44] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [45] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [46] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [47] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [48] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [49] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [50] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $66 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [51] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6a [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [52] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [53] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [54] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [55] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [56] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [57] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [58] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [59] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [60] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $51 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [61] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [62] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $55 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [63] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [64] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [65] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [66] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [67] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [68] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $65 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [69] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [70] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $49 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [71] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [72] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [73] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $56 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [74] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [75] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [76] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [77] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [78] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [79] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [80] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [81] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [82] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $30 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [83] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [84] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [85] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [86] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $79 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [87] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [88] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $64 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [89] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [90] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [91] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $9e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [92] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [93] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $8e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [94] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [95] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $44 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [96] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [97] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $32 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [98] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [99] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [100] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5b [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [101] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a6 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [102] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $50 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [103] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [104] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [105] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [106] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $90 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [107] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [108] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [109] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) LINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [110] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6c [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [111] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $92 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [112] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [113] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [119] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [121] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [123] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [124] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [131] if(*((const byte*) RASTER#0)!=(byte) $fe) goto main::@3 [ main::angle#2 main::w#4 ] ( main:2 [ main::angle#2 main::w#4 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:3 [ main::w#4 main::w#1 ] +Statement [132] if(*((const byte*) RASTER#0)!=(byte) $ff) goto main::@4 [ main::angle#2 main::w#4 ] ( main:2 [ main::angle#2 main::w#4 ] ) always clobbers reg byte a +Statement [135] (byte) main::angle#1 ← (byte) main::angle#2 + (byte) 9 [ main::angle#1 ] ( main:2 [ main::angle#1 ] ) always clobbers reg byte a +Statement [138] (byte) show_letter::$32 ← (byte) show_letter::i#10 << (byte) 3 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$32 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$32 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:83 [ show_letter::angle#0 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] +Statement [139] (byte~) show_letter::$20 ← (byte) show_letter::$32 + (byte) show_letter::i#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 ] ) always clobbers reg byte a +Statement [140] (signed word) show_letter::to_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO + (byte~) show_letter::$20) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 show_letter::to_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 show_letter::to_x#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:85 [ show_letter::$20 ] +Statement [141] (signed word) show_letter::to_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$20) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#0 show_letter::to_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#0 show_letter::to_y#0 ] ) always clobbers reg byte a +Statement [142] (signed word) show_letter::to_x#1 ← (signed word) show_letter::to_x#0 - (signed byte) $32 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#0 show_letter::to_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#0 show_letter::to_x#1 ] ) always clobbers reg byte a +Statement [143] (signed word) show_letter::to_y#1 ← (signed word) show_letter::to_y#0 - (signed word) $96 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#1 show_letter::to_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#1 show_letter::to_y#1 ] ) always clobbers reg byte a +Statement [144] (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#1 rotate::vector_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#1 rotate::vector_x#0 ] ) always clobbers reg byte a +Statement [145] (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#0 rotate::vector_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#0 rotate::vector_y#0 ] ) always clobbers reg byte a +Statement [148] (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#2 ] ) always clobbers reg byte a +Statement [149] (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#0 ] ) always clobbers reg byte a +Statement [150] (signed word) show_letter::to_x#2 ← (signed word) rotate::return_x#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#0 show_letter::to_x#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#0 show_letter::to_x#2 ] ) always clobbers reg byte a +Statement [151] (signed word) show_letter::to_y#2 ← (signed word) rotate::return_y#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#2 show_letter::to_y#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#2 show_letter::to_y#2 ] ) always clobbers reg byte a +Statement [152] (signed word) show_letter::current_x#10 ← (signed word) show_letter::to_x#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#2 show_letter::current_x#10 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#2 show_letter::current_x#10 ] ) always clobbers reg byte a +Statement [153] (signed word) show_letter::current_y#10 ← (signed word) show_letter::to_y#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 ] ) always clobbers reg byte a +Statement [154] (byte) show_letter::$34 ← (byte) show_letter::i#10 << (byte) 3 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$34 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$34 ] ) always clobbers reg byte a +Statement [155] (byte~) show_letter::$21 ← (byte) show_letter::$34 + (byte) show_letter::i#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 ] ) always clobbers reg byte a +Statement [156] (signed word) show_letter::via_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA + (byte~) show_letter::$21) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 show_letter::via_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 show_letter::via_x#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:107 [ show_letter::$21 ] +Statement [157] (signed word) show_letter::via_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$21) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#0 show_letter::via_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#0 show_letter::via_y#0 ] ) always clobbers reg byte a +Statement [158] (signed word) show_letter::via_x#1 ← (signed word) show_letter::via_x#0 - (signed byte) $32 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#0 show_letter::via_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#0 show_letter::via_x#1 ] ) always clobbers reg byte a +Statement [159] (signed word) show_letter::via_y#1 ← (signed word) show_letter::via_y#0 - (signed word) $96 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#1 show_letter::via_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#1 show_letter::via_y#1 ] ) always clobbers reg byte a +Statement [160] (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#1 rotate::vector_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#1 rotate::vector_x#1 ] ) always clobbers reg byte a +Statement [161] (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#1 rotate::vector_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#1 rotate::vector_y#1 ] ) always clobbers reg byte a +Statement [164] (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#2 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#2 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 ] ) always clobbers reg byte a +Statement [165] (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 rotate::return_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 rotate::return_y#1 ] ) always clobbers reg byte a +Statement [166] (signed word) show_letter::via_x#2 ← (signed word) rotate::return_x#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_y#1 show_letter::via_x#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_y#1 show_letter::via_x#2 ] ) always clobbers reg byte a +Statement [167] (signed word) show_letter::via_y#2 ← (signed word) rotate::return_y#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#2 show_letter::via_y#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#2 show_letter::via_y#2 ] ) always clobbers reg byte a +Statement [168] (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#2 show_letter::segment_via_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#2 show_letter::segment_via_x#0 ] ) always clobbers reg byte a +Statement [169] (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 ] ) always clobbers reg byte a +Statement [170] (byte) show_letter::$36 ← (byte) show_letter::i#10 << (byte) 3 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$36 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$36 ] ) always clobbers reg byte a +Statement [171] (byte~) show_letter::$22 ← (byte) show_letter::$36 + (byte) show_letter::i#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$22 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$22 ] ) always clobbers reg byte a +Statement [175] (word) bitmap_line::x1#0 ← (word)(signed word) show_letter::current_x#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 ] ) always clobbers reg byte a +Statement [176] (word) bitmap_line::y1#0 ← (word)(signed word) show_letter::current_y#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 ] ) always clobbers reg byte a +Statement [177] (word) bitmap_line::x2#0 ← (word)(signed word) show_letter::current_x#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 ] ) always clobbers reg byte a +Statement [178] (word) bitmap_line::y2#0 ← (word)(signed word) show_letter::current_y#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 bitmap_line::y2#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 bitmap_line::y2#0 ] ) always clobbers reg byte a +Statement [183] (signed word~) show_letter::current_x#11 ← (signed word) show_letter::current_x#10 [ show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#10 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#10 ] ) always clobbers reg byte a +Statement [184] (signed word~) show_letter::current_y#11 ← (signed word) show_letter::current_y#10 [ show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#11 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#11 ] ) always clobbers reg byte a +Statement [185] (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 ] ) always clobbers reg byte a +Statement [186] (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 ] ) always clobbers reg byte a +Statement [187] (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 ] ) always clobbers reg byte a +Statement [188] (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 ] ) always clobbers reg byte a +Statement [189] (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::current_x#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 ] ) always clobbers reg byte a +Statement [190] (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::current_y#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 ] ) always clobbers reg byte a +Statement [194] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0) [ bitmap_plot_spline_8seg::current_x#0 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::current_x#0 ] ) always clobbers reg byte a +Statement [195] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) [ bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_y#0 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_y#0 ] ) always clobbers reg byte a +Statement [197] (word) bitmap_line::x1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 [ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +Statement [198] (word) bitmap_line::y1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 ] ) always clobbers reg byte a +Statement [199] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 ] ) always clobbers reg byte a +Statement [200] (word~) bitmap_line::x2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$8) [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 bitmap_line::x2#13 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 bitmap_line::x2#13 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:143 [ bitmap_plot_spline_8seg::$8 ] +Statement [201] (word~) bitmap_line::y2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$8) [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_line::x2#13 bitmap_line::y2#13 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_line::x2#13 bitmap_line::y2#13 ] ) always clobbers reg byte a +Statement [203] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::$9 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::$9 ] ) always clobbers reg byte a +Statement [204] (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$9) [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::$9 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::$9 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:144 [ bitmap_plot_spline_8seg::$9 ] +Statement [205] (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$9) [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::current_y#1 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::current_y#1 ] ) always clobbers reg byte a +Statement [210] (word) abs_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#0 ] ) always clobbers reg byte a +Statement [212] (word) abs_u16::return#0 ← (word) abs_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#0 ] ) always clobbers reg byte a +Statement [213] (word) bitmap_line::dx#0 ← (word) abs_u16::return#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 ] ) always clobbers reg byte a +Statement [214] (word) abs_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#1 ] ) always clobbers reg byte a +Statement [216] (word) abs_u16::return#1 ← (word) abs_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#1 ] ) always clobbers reg byte a +Statement [217] (word) bitmap_line::dy#0 ← (word) abs_u16::return#1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ) always clobbers reg byte a +Statement [218] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ) always clobbers reg byte a +Statement [219] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ) always clobbers reg byte a +Statement [220] (word) sgn_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::w#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::w#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::w#0 ] ) always clobbers reg byte a +Statement [222] (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::return#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::return#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::return#0 ] ) always clobbers reg byte a +Statement [223] (word) bitmap_line::sx#0 ← (word) sgn_u16::return#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 ] ) always clobbers reg byte a +Statement [224] (word) sgn_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::w#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::w#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::w#1 ] ) always clobbers reg byte a +Statement [226] (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::return#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::return#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::return#1 ] ) always clobbers reg byte a +Statement [227] (word) bitmap_line::sy#0 ← (word) sgn_u16::return#1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ) always clobbers reg byte a +Statement [228] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ) always clobbers reg byte a +Statement [229] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 >> (byte) 1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e#0 ] ) always clobbers reg byte a +Statement [231] (byte) bitmap_plot::y#1 ← (byte)(word) bitmap_line::y#4 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 ] ) always clobbers reg byte a +Statement [232] (word) bitmap_plot::x#1 ← (word) bitmap_line::x#13 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 bitmap_plot::x#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 bitmap_plot::x#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 bitmap_plot::x#1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:26 [ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] +Statement [234] (word) bitmap_line::y#1 ← (word) bitmap_line::y#4 + (word) bitmap_line::sy#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::e#3 bitmap_line::y#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::e#3 bitmap_line::y#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::e#3 bitmap_line::y#1 ] ) always clobbers reg byte a +Statement [235] (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ) always clobbers reg byte a +Statement [236] if((word) bitmap_line::dy#0>=(word) bitmap_line::e#1) goto bitmap_line::@7 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ) always clobbers reg byte a +Statement [237] (word) bitmap_line::x#1 ← (word) bitmap_line::x#13 + (word) bitmap_line::sx#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::e#1 bitmap_line::x#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::e#1 bitmap_line::x#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::e#1 bitmap_line::x#1 ] ) always clobbers reg byte a +Statement [238] (word) bitmap_line::e#2 ← (word) bitmap_line::e#1 - (word) bitmap_line::dy#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#1 bitmap_line::e#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#1 bitmap_line::e#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#1 bitmap_line::e#2 ] ) always clobbers reg byte a +Statement [240] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@6 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#12 bitmap_line::e#6 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#12 bitmap_line::e#6 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#12 bitmap_line::e#6 ] ) always clobbers reg byte a +Statement [242] (byte) bitmap_plot::y#2 ← (byte)(word) bitmap_line::y#7 [ bitmap_line::x#6 bitmap_plot::y#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#6 bitmap_plot::y#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#6 bitmap_plot::y#2 ] ) always clobbers reg byte a +Statement [243] (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 [ bitmap_plot::y#2 bitmap_plot::x#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::y#2 bitmap_plot::x#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::y#2 bitmap_plot::x#2 ] ) always clobbers reg byte a +Statement [246] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 >> (byte) 1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e1#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e1#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e1#0 ] ) always clobbers reg byte a +Statement [248] (byte) bitmap_plot::y#3 ← (byte)(word) bitmap_line::y#15 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 ] ) always clobbers reg byte a +Statement [249] (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 bitmap_plot::x#3 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 bitmap_plot::x#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 bitmap_plot::x#3 ] ) always clobbers reg byte a +Statement [251] (word) bitmap_line::x#15 ← (word) bitmap_line::x#7 + (word) bitmap_line::sx#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#3 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#3 ] ) always clobbers reg byte a +Statement [252] (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ) always clobbers reg byte a +Statement [253] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@10 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ) always clobbers reg byte a +Statement [254] (word) bitmap_line::y#2 ← (word) bitmap_line::y#15 + (word) bitmap_line::sy#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::e1#1 bitmap_line::y#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::e1#1 bitmap_line::y#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::e1#1 bitmap_line::y#2 ] ) always clobbers reg byte a +Statement [255] (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#1 - (word) bitmap_line::dx#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#2 bitmap_line::e1#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#2 bitmap_line::e1#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#2 bitmap_line::e1#2 ] ) always clobbers reg byte a +Statement [257] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@9 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#13 bitmap_line::x#15 bitmap_line::e1#6 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#13 bitmap_line::x#15 bitmap_line::e1#6 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#13 bitmap_line::x#15 bitmap_line::e1#6 ] ) always clobbers reg byte a +Statement [258] (byte) bitmap_plot::y#0 ← (byte)(word) bitmap_line::y#0 [ bitmap_line::x#0 bitmap_plot::y#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_plot::y#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_plot::y#0 ] ) always clobbers reg byte a +Statement [259] (word) bitmap_plot::x#0 ← (word) bitmap_line::x#0 [ bitmap_plot::y#0 bitmap_plot::x#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::y#0 bitmap_plot::x#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::y#0 bitmap_plot::x#0 ] ) always clobbers reg byte a +Statement [262] (word) bitmap_plot::plotter#0 ← *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) w= *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) [ bitmap_plot::x#4 bitmap_plot::plotter#0 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 ] ) always clobbers reg byte a +Statement [263] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 [ bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] ) always clobbers reg byte a +Statement [264] (byte*) bitmap_plot::plotter#1 ← (byte*)(word) bitmap_plot::plotter#0 + (word~) bitmap_plot::$1 [ bitmap_plot::x#4 bitmap_plot::plotter#1 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#1 ] ) always clobbers reg byte a +Statement [265] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#4 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) always clobbers reg byte a +Statement [266] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[$100]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:83 [ show_letter::angle#0 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +Statement [269] (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 [ sgn_u16::$0 ] ( main:2::show_letter:129::bitmap_line:179::sgn_u16:221 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::sgn_u16:221 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::$0 ] main:2::show_letter:129::bitmap_line:179::sgn_u16:225 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::sgn_u16:225 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::$0 ] ) always clobbers reg byte a +Statement [276] (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 [ abs_u16::w#2 abs_u16::$0 ] ( main:2::show_letter:129::bitmap_line:179::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#2 abs_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#2 abs_u16::$0 ] main:2::show_letter:129::bitmap_line:179::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#2 abs_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#2 abs_u16::$0 ] ) always clobbers reg byte a +Statement [279] (word) abs_u16::return#2 ← - (word) abs_u16::w#2 [ abs_u16::return#2 ] ( main:2::show_letter:129::bitmap_line:179::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#2 ] main:2::show_letter:129::bitmap_line:179::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#2 ] ) always clobbers reg byte a +Statement [282] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 spline_8segB::$0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 spline_8segB::$0 ] ) always clobbers reg byte a +Statement [283] (signed word~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#0 - (signed word~) spline_8segB::$0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::$1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::$1 ] ) always clobbers reg byte a +Statement [284] (signed word) spline_8segB::a_x#0 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 ] ) always clobbers reg byte a +Statement [285] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 spline_8segB::$3 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 spline_8segB::$3 ] ) always clobbers reg byte a +Statement [286] (signed word~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#0 - (signed word~) spline_8segB::$3 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::$4 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::$4 ] ) always clobbers reg byte a +Statement [287] (signed word) spline_8segB::a_y#0 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 ] ) always clobbers reg byte a +Statement [288] (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#0 - (signed word) spline_8segB::p0_x#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::$6 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::$6 ] ) always clobbers reg byte a +Statement [289] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 ] ) always clobbers reg byte a +Statement [290] (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#0 - (signed word) spline_8segB::p0_y#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::$8 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::$8 ] ) always clobbers reg byte a +Statement [291] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::b_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::b_y#0 ] ) always clobbers reg byte a +Statement [292] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 << (byte) 3 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::$10 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::$10 ] ) always clobbers reg byte a +Statement [293] (signed word) spline_8segB::i_x#0 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::i_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::i_x#0 ] ) always clobbers reg byte a +Statement [294] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 << (byte) 3 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::$12 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::$12 ] ) always clobbers reg byte a +Statement [295] (signed word) spline_8segB::i_y#0 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 ] ) always clobbers reg byte a +Statement [296] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 ] ) always clobbers reg byte a +Statement [297] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 ] ) always clobbers reg byte a +Statement [298] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 << (byte) 6 [ spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 ] ) always clobbers reg byte a +Statement [299] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 << (byte) 6 [ spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 spline_8segB::p_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 spline_8segB::p_y#0 ] ) always clobbers reg byte a +Statement [301] (signed word~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$22 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$22 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:39 [ spline_8segB::n#2 spline_8segB::n#1 ] +Statement [302] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 >> (byte) 6 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 ] ) always clobbers reg byte a +Statement [303] (signed word~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$24 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$24 ] ) always clobbers reg byte a +Statement [304] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 >> (byte) 6 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 ] ) always clobbers reg byte a +Statement [305] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 << (byte) 2 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 spline_8segB::$31 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 spline_8segB::$31 ] ) always clobbers reg byte a +Statement [306] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$23 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$25 spline_8segB::$31 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$25 spline_8segB::$31 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:208 [ spline_8segB::$31 ] +Statement [307] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$25 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 ] ) always clobbers reg byte a +Statement [308] (signed word) spline_8segB::p_x#1 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 ] ) always clobbers reg byte a +Statement [309] (signed word) spline_8segB::p_y#1 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 ] ) always clobbers reg byte a +Statement [310] (signed word) spline_8segB::i_x#1 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#0 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 ] ) always clobbers reg byte a +Statement [311] (signed word) spline_8segB::i_y#1 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#0 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 spline_8segB::i_y#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 spline_8segB::i_y#1 ] ) always clobbers reg byte a +Statement [314] (signed word~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#1 + (signed byte) $20 [ spline_8segB::p_y#1 spline_8segB::$18 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p_y#1 spline_8segB::$18 ] ) always clobbers reg byte a +Statement [315] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 >> (byte) 6 [ spline_8segB::p_y#1 spline_8segB::$19 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p_y#1 spline_8segB::$19 ] ) always clobbers reg byte a +Statement [316] (signed word~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#1 + (signed byte) $20 [ spline_8segB::$19 spline_8segB::$20 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::$19 spline_8segB::$20 ] ) always clobbers reg byte a +Statement [317] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 >> (byte) 6 [ spline_8segB::$19 spline_8segB::$21 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::$19 spline_8segB::$21 ] ) always clobbers reg byte a +Statement [318] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$19 [ spline_8segB::$21 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::$21 ] ) always clobbers reg byte a +Statement [319] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$21 [ ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 ] ) always clobbers reg byte a +Statement [322] (signed word) rotate::cos_a#0 ← (signed word)*((const signed byte*) COS#0 + (byte) rotate::angle#2) [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:44 [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] +Statement [323] (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 ] ) always clobbers reg byte a +Statement [324] (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 mulf16s::b#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 mulf16s::b#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 mulf16s::b#0 ] ) always clobbers reg byte a +Statement [326] (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#2 ] ) always clobbers reg byte a +Statement [327] (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#2 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$1 ] ) always clobbers reg byte a +Statement [328] (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$2 ] ) always clobbers reg byte a +Statement [329] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 << (byte) 1 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::xr#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::xr#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::xr#0 ] ) always clobbers reg byte a +Statement [330] (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 ] ) always clobbers reg byte a +Statement [331] (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 mulf16s::b#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 mulf16s::b#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 mulf16s::b#1 ] ) always clobbers reg byte a +Statement [333] (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#3 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#3 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#3 ] ) always clobbers reg byte a +Statement [334] (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#3 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$4 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$4 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$4 ] ) always clobbers reg byte a +Statement [335] (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$5 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$5 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$5 ] ) always clobbers reg byte a +Statement [336] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 << (byte) 1 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 ] ) always clobbers reg byte a +Statement [337] (signed word) rotate::sin_a#0 ← (signed word)*((const signed byte[$140]) SIN#0 + (byte) rotate::angle#2) [ rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 ] ) always clobbers reg byte a +Statement [338] (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 [ rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 ] ) always clobbers reg byte a +Statement [339] (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#2 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 mulf16s::b#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 mulf16s::b#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 mulf16s::b#2 ] ) always clobbers reg byte a +Statement [341] (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#0 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#4 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#4 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#4 ] ) always clobbers reg byte a +Statement [342] (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#4 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$8 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$8 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$8 ] ) always clobbers reg byte a +Statement [343] (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$9 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$9 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$9 ] ) always clobbers reg byte a +Statement [344] (signed word~) rotate::$10 ← (signed word~) rotate::$9 << (byte) 1 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$10 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$10 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$10 ] ) always clobbers reg byte a +Statement [345] (signed word) rotate::xr#1 ← (signed word) rotate::xr#0 - (signed word~) rotate::$10 [ rotate::vector_x#2 rotate::yr#0 rotate::sin_a#0 rotate::xr#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::yr#0 rotate::sin_a#0 rotate::xr#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::yr#0 rotate::sin_a#0 rotate::xr#1 ] ) always clobbers reg byte a +Statement [346] (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#0 [ rotate::vector_x#2 rotate::yr#0 rotate::xr#1 mulf16s::a#3 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::yr#0 rotate::xr#1 mulf16s::a#3 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::yr#0 rotate::xr#1 mulf16s::a#3 ] ) always clobbers reg byte a +Statement [347] (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#2 [ rotate::yr#0 rotate::xr#1 mulf16s::a#3 mulf16s::b#3 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#3 mulf16s::b#3 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#3 mulf16s::b#3 ] ) always clobbers reg byte a +Statement [349] (signed dword) mulf16s::return#10 ← (signed dword) mulf16s::return#0 [ rotate::yr#0 rotate::xr#1 mulf16s::return#10 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::return#10 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::return#10 ] ) always clobbers reg byte a +Statement [350] (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 [ rotate::yr#0 rotate::xr#1 rotate::$11 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 rotate::$11 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 rotate::$11 ] ) always clobbers reg byte a +Statement [351] (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 [ rotate::yr#0 rotate::xr#1 rotate::$12 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 rotate::$12 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 rotate::$12 ] ) always clobbers reg byte a +Statement [352] (signed word~) rotate::$13 ← (signed word~) rotate::$12 << (byte) 1 [ rotate::yr#0 rotate::xr#1 rotate::$13 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 rotate::$13 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 rotate::$13 ] ) always clobbers reg byte a +Statement [353] (signed word) rotate::yr#1 ← (signed word) rotate::yr#0 + (signed word~) rotate::$13 [ rotate::xr#1 rotate::yr#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::xr#1 rotate::yr#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::xr#1 rotate::yr#1 ] ) always clobbers reg byte a +Statement [354] (byte~) rotate::$15 ← > (signed word) rotate::xr#1 [ rotate::yr#1 rotate::$15 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#1 rotate::$15 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#1 rotate::$15 ] ) always clobbers reg byte a +Statement [355] (signed word) rotate::return_x#2 ← (signed word)(signed byte)(byte~) rotate::$15 [ rotate::return_x#2 rotate::yr#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#2 rotate::yr#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#2 rotate::yr#1 ] ) always clobbers reg byte a +Statement [356] (byte~) rotate::$18 ← > (signed word) rotate::yr#1 [ rotate::return_x#2 rotate::$18 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#2 rotate::$18 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#2 rotate::$18 ] ) always clobbers reg byte a +Statement [357] (signed word) rotate::return_y#2 ← (signed word)(signed byte)(byte~) rotate::$18 [ rotate::return_x#2 rotate::return_y#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#2 rotate::return_y#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#2 rotate::return_y#2 ] ) always clobbers reg byte a +Statement [360] (word) mulf16u::a#0 ← (word)(signed word) mulf16s::a#4 [ mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] ) always clobbers reg byte a +Statement [361] (word) mulf16u::b#0 ← (word)(signed word) mulf16s::b#4 [ mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] ) always clobbers reg byte a +Statement [363] (dword) mulf16u::return#2 ← (dword) mulf16u::return#0 [ mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] ) always clobbers reg byte a +Statement [364] (dword) mulf16s::m#0 ← (dword) mulf16u::return#2 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ) always clobbers reg byte a +Statement [365] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ) always clobbers reg byte a +Statement [366] (word~) mulf16s::$9 ← > (dword) mulf16s::m#0 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] ) always clobbers reg byte a +Statement [367] (word~) mulf16s::$16 ← (word~) mulf16s::$9 - (word)(signed word) mulf16s::b#4 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] ) always clobbers reg byte a +Statement [368] (dword) mulf16s::m#1 ← (dword) mulf16s::m#0 hi= (word~) mulf16s::$16 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] ) always clobbers reg byte a +Statement [370] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 [ mulf16s::a#4 mulf16s::m#5 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 ] ) always clobbers reg byte a +Statement [371] (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 [ mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] ) always clobbers reg byte a +Statement [372] (word~) mulf16s::$17 ← (word~) mulf16s::$13 - (word)(signed word) mulf16s::a#4 [ mulf16s::m#5 mulf16s::$17 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::m#5 mulf16s::$17 ] ) always clobbers reg byte a +Statement [373] (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 [ mulf16s::m#2 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::m#2 ] ) always clobbers reg byte a +Statement [375] (signed dword) mulf16s::return#0 ← (signed dword)(dword) mulf16s::m#4 [ mulf16s::return#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::return#0 ] ) always clobbers reg byte a +Statement [377] *((const word*) mulf16u::memA#0) ← (word) mulf16u::a#0 [ mulf16u::b#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] ) always clobbers reg byte a +Statement [378] *((const word*) mulf16u::memB#0) ← (word) mulf16u::b#0 [ ] ( main:2::show_letter:129::rotate:147::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:147::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:147::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:147::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 ] ) always clobbers reg byte a +Statement asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } always clobbers reg byte a reg byte x +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:83 [ show_letter::angle#0 ] +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:44 [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] +Statement [380] (dword) mulf16u::return#0 ← *((const dword*) mulf16u::memR#0) [ mulf16u::return#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] ) always clobbers reg byte a +Statement [388] if((word) memset::num#2<=(byte) 0) goto memset::@return [ memset::num#2 memset::str#3 memset::c#3 ] ( main:2::bitmap_clear:118::memset:383 [ memset::num#2 memset::str#3 memset::c#3 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::num#2 memset::str#3 memset::c#3 ] main:2::bitmap_clear:118::memset:385 [ memset::num#2 memset::str#3 memset::c#3 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::num#2 memset::str#3 memset::c#3 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:61 [ memset::c#3 ] +Statement [389] (byte*) memset::end#0 ← (byte*)(void*) memset::str#3 + (word) memset::num#2 [ memset::str#3 memset::c#3 memset::end#0 ] ( main:2::bitmap_clear:118::memset:383 [ memset::str#3 memset::c#3 memset::end#0 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::str#3 memset::c#3 memset::end#0 ] main:2::bitmap_clear:118::memset:385 [ memset::str#3 memset::c#3 memset::end#0 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::str#3 memset::c#3 memset::end#0 ] ) always clobbers reg byte a +Statement [390] (byte*~) memset::dst#3 ← (byte*)(void*) memset::str#3 [ memset::c#3 memset::end#0 memset::dst#3 ] ( main:2::bitmap_clear:118::memset:383 [ memset::c#3 memset::end#0 memset::dst#3 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#3 ] main:2::bitmap_clear:118::memset:385 [ memset::c#3 memset::end#0 memset::dst#3 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#3 ] ) always clobbers reg byte a +Statement [392] *((byte*) memset::dst#2) ← (byte) memset::c#3 [ memset::c#3 memset::end#0 memset::dst#2 ] ( main:2::bitmap_clear:118::memset:383 [ memset::c#3 memset::end#0 memset::dst#2 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#2 ] main:2::bitmap_clear:118::memset:385 [ memset::c#3 memset::end#0 memset::dst#2 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#2 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:61 [ memset::c#3 ] +Statement [394] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@2 [ memset::c#3 memset::end#0 memset::dst#1 ] ( main:2::bitmap_clear:118::memset:383 [ memset::c#3 memset::end#0 memset::dst#1 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#1 ] main:2::bitmap_clear:118::memset:385 [ memset::c#3 memset::end#0 memset::dst#1 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#1 ] ) always clobbers reg byte a +Statement [413] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (word)(number) $28*(number) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:116 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:66 [ bitmap_init::y#2 bitmap_init::y#1 ] +Statement [426] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:69 [ mulf_init::c#2 mulf_init::c#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Statement [427] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:69 [ mulf_init::c#2 mulf_init::c#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Statement [428] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ) always clobbers reg byte a +Statement [429] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [431] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [433] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::mulf_init:114 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [435] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::mulf_init:114 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:77 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:77 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] +Statement [436] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::mulf_init:114 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [438] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ( main:2::mulf_init:114 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ) always clobbers reg byte a +Statement [443] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ( main:2::mulf_init:114 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ) always clobbers reg byte a +Statement [444] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) [ ] ( main:2::mulf_init:114 [ ] ) always clobbers reg byte a +Statement [445] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) [ ] ( main:2::mulf_init:114 [ ] ) always clobbers reg byte a +Statement [4] *((byte*)(const struct Segment[$16]) letter_c#0) ← (const byte) MOVE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [5] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO) ← (signed byte) $6c [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [6] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed word) $92 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [7] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [8] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [9] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [10] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $59 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [11] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b6 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [12] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [13] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [14] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [15] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3b [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [16] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [17] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4b [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [18] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [19] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [20] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $17 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [21] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b2 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [22] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $26 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [23] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [24] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [25] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [26] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $84 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [27] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [28] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a1 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [29] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [30] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $19 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [31] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $57 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [32] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [33] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [34] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [35] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $41 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [36] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [37] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $2a [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [38] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [39] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [40] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [41] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [42] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [43] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [44] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [45] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [46] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [47] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [48] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [49] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [50] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $66 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [51] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6a [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [52] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [53] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [54] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [55] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [56] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [57] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [58] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [59] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [60] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $51 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [61] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [62] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $55 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [63] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [64] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [65] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [66] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [67] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [68] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $65 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [69] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [70] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $49 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [71] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [72] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [73] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $56 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [74] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [75] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [76] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [77] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [78] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [79] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [80] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [81] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [82] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $30 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [83] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [84] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [85] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [86] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $79 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [87] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [88] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $64 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [89] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [90] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [91] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $9e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [92] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [93] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $8e [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [94] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [95] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $44 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [96] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [97] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $32 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [98] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [99] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [100] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5b [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [101] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a6 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [102] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $50 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [103] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [104] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [105] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [106] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $90 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [107] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [108] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [109] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) LINE_TO [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [110] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6c [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [111] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $92 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [112] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [113] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [119] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [121] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [123] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [124] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 [ ] ( main:2 [ ] ) always clobbers reg byte a +Statement [128] (byte) show_letter::angle#0 ← (byte) main::angle#2 [ main::angle#2 show_letter::angle#0 ] ( main:2 [ main::angle#2 show_letter::angle#0 ] ) always clobbers reg byte a +Statement [131] if(*((const byte*) RASTER#0)!=(byte) $fe) goto main::@3 [ main::angle#2 main::w#4 ] ( main:2 [ main::angle#2 main::w#4 ] ) always clobbers reg byte a +Statement [132] if(*((const byte*) RASTER#0)!=(byte) $ff) goto main::@4 [ main::angle#2 main::w#4 ] ( main:2 [ main::angle#2 main::w#4 ] ) always clobbers reg byte a +Statement [135] (byte) main::angle#1 ← (byte) main::angle#2 + (byte) 9 [ main::angle#1 ] ( main:2 [ main::angle#1 ] ) always clobbers reg byte a reg byte x +Statement [138] (byte) show_letter::$32 ← (byte) show_letter::i#10 << (byte) 3 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$32 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$32 ] ) always clobbers reg byte a +Statement [139] (byte~) show_letter::$20 ← (byte) show_letter::$32 + (byte) show_letter::i#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 ] ) always clobbers reg byte a +Statement [140] (signed word) show_letter::to_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO + (byte~) show_letter::$20) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 show_letter::to_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::$20 show_letter::to_x#0 ] ) always clobbers reg byte a +Statement [141] (signed word) show_letter::to_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$20) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#0 show_letter::to_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#0 show_letter::to_y#0 ] ) always clobbers reg byte a +Statement [142] (signed word) show_letter::to_x#1 ← (signed word) show_letter::to_x#0 - (signed byte) $32 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#0 show_letter::to_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#0 show_letter::to_x#1 ] ) always clobbers reg byte a +Statement [143] (signed word) show_letter::to_y#1 ← (signed word) show_letter::to_y#0 - (signed word) $96 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#1 show_letter::to_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#1 show_letter::to_y#1 ] ) always clobbers reg byte a +Statement [144] (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#1 rotate::vector_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#1 rotate::vector_x#0 ] ) always clobbers reg byte a +Statement [145] (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#0 rotate::vector_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#0 rotate::vector_y#0 ] ) always clobbers reg byte a +Statement [148] (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#2 ] ) always clobbers reg byte a +Statement [149] (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#0 rotate::return_y#0 ] ) always clobbers reg byte a +Statement [150] (signed word) show_letter::to_x#2 ← (signed word) rotate::return_x#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#0 show_letter::to_x#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#0 show_letter::to_x#2 ] ) always clobbers reg byte a +Statement [151] (signed word) show_letter::to_y#2 ← (signed word) rotate::return_y#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#2 show_letter::to_y#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_x#2 show_letter::to_y#2 ] ) always clobbers reg byte a +Statement [152] (signed word) show_letter::current_x#10 ← (signed word) show_letter::to_x#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#2 show_letter::current_x#10 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::to_y#2 show_letter::current_x#10 ] ) always clobbers reg byte a +Statement [153] (signed word) show_letter::current_y#10 ← (signed word) show_letter::to_y#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 ] ) always clobbers reg byte a +Statement [154] (byte) show_letter::$34 ← (byte) show_letter::i#10 << (byte) 3 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$34 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$34 ] ) always clobbers reg byte a +Statement [155] (byte~) show_letter::$21 ← (byte) show_letter::$34 + (byte) show_letter::i#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 ] ) always clobbers reg byte a +Statement [156] (signed word) show_letter::via_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA + (byte~) show_letter::$21) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 show_letter::via_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::$21 show_letter::via_x#0 ] ) always clobbers reg byte a +Statement [157] (signed word) show_letter::via_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$21) [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#0 show_letter::via_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#0 show_letter::via_y#0 ] ) always clobbers reg byte a +Statement [158] (signed word) show_letter::via_x#1 ← (signed word) show_letter::via_x#0 - (signed byte) $32 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#0 show_letter::via_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#0 show_letter::via_x#1 ] ) always clobbers reg byte a +Statement [159] (signed word) show_letter::via_y#1 ← (signed word) show_letter::via_y#0 - (signed word) $96 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#1 show_letter::via_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#1 show_letter::via_y#1 ] ) always clobbers reg byte a +Statement [160] (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#1 rotate::vector_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#1 rotate::vector_x#1 ] ) always clobbers reg byte a +Statement [161] (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#1 rotate::vector_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#1 rotate::vector_y#1 ] ) always clobbers reg byte a +Statement [164] (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#2 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_y#2 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 ] ) always clobbers reg byte a +Statement [165] (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#2 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 rotate::return_y#1 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#1 rotate::return_y#1 ] ) always clobbers reg byte a +Statement [166] (signed word) show_letter::via_x#2 ← (signed word) rotate::return_x#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_y#1 show_letter::via_x#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_y#1 show_letter::via_x#2 ] ) always clobbers reg byte a +Statement [167] (signed word) show_letter::via_y#2 ← (signed word) rotate::return_y#1 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#2 show_letter::via_y#2 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_x#2 show_letter::via_y#2 ] ) always clobbers reg byte a +Statement [168] (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#2 show_letter::segment_via_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::via_y#2 show_letter::segment_via_x#0 ] ) always clobbers reg byte a +Statement [169] (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#2 + (signed byte) $64 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 ] ) always clobbers reg byte a +Statement [170] (byte) show_letter::$36 ← (byte) show_letter::i#10 << (byte) 3 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$36 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$36 ] ) always clobbers reg byte a +Statement [171] (byte~) show_letter::$22 ← (byte) show_letter::$36 + (byte) show_letter::i#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$22 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 show_letter::$22 ] ) always clobbers reg byte a +Statement [175] (word) bitmap_line::x1#0 ← (word)(signed word) show_letter::current_x#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 ] ) always clobbers reg byte a +Statement [176] (word) bitmap_line::y1#0 ← (word)(signed word) show_letter::current_y#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 ] ) always clobbers reg byte a +Statement [177] (word) bitmap_line::x2#0 ← (word)(signed word) show_letter::current_x#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 ] ) always clobbers reg byte a +Statement [178] (word) bitmap_line::y2#0 ← (word)(signed word) show_letter::current_y#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 bitmap_line::y2#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x1#0 bitmap_line::y1#0 bitmap_line::x2#0 bitmap_line::y2#0 ] ) always clobbers reg byte a +Statement [181] if((byte) show_letter::i#1!=(byte) $16) goto show_letter::@9 [ show_letter::angle#0 show_letter::i#1 show_letter::current_x#10 show_letter::current_y#10 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#1 show_letter::current_x#10 show_letter::current_y#10 ] ) always clobbers reg byte a +Statement [183] (signed word~) show_letter::current_x#11 ← (signed word) show_letter::current_x#10 [ show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#10 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#10 ] ) always clobbers reg byte a +Statement [184] (signed word~) show_letter::current_y#11 ← (signed word) show_letter::current_y#10 [ show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#11 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#1 show_letter::current_x#11 show_letter::current_y#11 ] ) always clobbers reg byte a +Statement [185] (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 ] ) always clobbers reg byte a +Statement [186] (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_x#0 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 ] ) always clobbers reg byte a +Statement [187] (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 show_letter::segment_via_y#0 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 ] ) always clobbers reg byte a +Statement [188] (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#0 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 ] ) always clobbers reg byte a +Statement [189] (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::current_x#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 ] ) always clobbers reg byte a +Statement [190] (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::current_y#10 [ show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 ] ( main:2::show_letter:129 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 ] ) always clobbers reg byte a +Statement [194] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0) [ bitmap_plot_spline_8seg::current_x#0 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::current_x#0 ] ) always clobbers reg byte a +Statement [195] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) [ bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_y#0 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_y#0 ] ) always clobbers reg byte a +Statement [197] (word) bitmap_line::x1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 [ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 ] ) always clobbers reg byte a +Statement [198] (word) bitmap_line::y1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 ] ) always clobbers reg byte a +Statement [199] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 ] ) always clobbers reg byte a +Statement [200] (word~) bitmap_line::x2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$8) [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 bitmap_line::x2#13 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_plot_spline_8seg::$8 bitmap_line::x2#13 ] ) always clobbers reg byte a +Statement [201] (word~) bitmap_line::y2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$8) [ bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_line::x2#13 bitmap_line::y2#13 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x1#1 bitmap_line::y1#1 bitmap_line::x2#13 bitmap_line::y2#13 ] ) always clobbers reg byte a +Statement [203] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::$9 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::$9 ] ) always clobbers reg byte a +Statement [204] (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$9) [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::$9 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::$9 ] ) always clobbers reg byte a +Statement [205] (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$9) [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::current_y#1 ] ( main:2::show_letter:129::bitmap_plot_spline_8seg:193 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::current_x#1 bitmap_plot_spline_8seg::current_y#1 ] ) always clobbers reg byte a +Statement [210] (word) abs_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#0 ] ) always clobbers reg byte a +Statement [212] (word) abs_u16::return#0 ← (word) abs_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#0 ] ) always clobbers reg byte a +Statement [213] (word) bitmap_line::dx#0 ← (word) abs_u16::return#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 ] ) always clobbers reg byte a +Statement [214] (word) abs_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#1 ] ) always clobbers reg byte a +Statement [216] (word) abs_u16::return#1 ← (word) abs_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#1 ] ) always clobbers reg byte a +Statement [217] (word) bitmap_line::dy#0 ← (word) abs_u16::return#1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ) always clobbers reg byte a +Statement [218] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ) always clobbers reg byte a +Statement [219] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 ] ) always clobbers reg byte a +Statement [220] (word) sgn_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::w#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::w#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::w#0 ] ) always clobbers reg byte a +Statement [222] (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::return#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::return#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::return#0 ] ) always clobbers reg byte a +Statement [223] (word) bitmap_line::sx#0 ← (word) sgn_u16::return#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 ] ) always clobbers reg byte a +Statement [224] (word) sgn_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::w#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::w#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::w#1 ] ) always clobbers reg byte a +Statement [226] (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::return#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::return#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::return#1 ] ) always clobbers reg byte a +Statement [227] (word) bitmap_line::sy#0 ← (word) sgn_u16::return#1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ) always clobbers reg byte a +Statement [228] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 ] ) always clobbers reg byte a +Statement [229] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 >> (byte) 1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e#0 ] ) always clobbers reg byte a +Statement [231] (byte) bitmap_plot::y#1 ← (byte)(word) bitmap_line::y#4 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 ] ) always clobbers reg byte a +Statement [232] (word) bitmap_plot::x#1 ← (word) bitmap_line::x#13 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 bitmap_plot::x#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 bitmap_plot::x#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::y#1 bitmap_plot::x#1 ] ) always clobbers reg byte a +Statement [234] (word) bitmap_line::y#1 ← (word) bitmap_line::y#4 + (word) bitmap_line::sy#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::e#3 bitmap_line::y#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::e#3 bitmap_line::y#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::e#3 bitmap_line::y#1 ] ) always clobbers reg byte a +Statement [235] (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ) always clobbers reg byte a +Statement [236] if((word) bitmap_line::dy#0>=(word) bitmap_line::e#1) goto bitmap_line::@7 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#13 bitmap_line::y#1 bitmap_line::e#1 ] ) always clobbers reg byte a +Statement [237] (word) bitmap_line::x#1 ← (word) bitmap_line::x#13 + (word) bitmap_line::sx#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::e#1 bitmap_line::x#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::e#1 bitmap_line::x#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::e#1 bitmap_line::x#1 ] ) always clobbers reg byte a +Statement [238] (word) bitmap_line::e#2 ← (word) bitmap_line::e#1 - (word) bitmap_line::dy#0 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#1 bitmap_line::e#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#1 bitmap_line::e#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#1 bitmap_line::e#2 ] ) always clobbers reg byte a +Statement [240] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@6 [ bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#12 bitmap_line::e#6 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#12 bitmap_line::e#6 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#1 bitmap_line::x#12 bitmap_line::e#6 ] ) always clobbers reg byte a +Statement [242] (byte) bitmap_plot::y#2 ← (byte)(word) bitmap_line::y#7 [ bitmap_line::x#6 bitmap_plot::y#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#6 bitmap_plot::y#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#6 bitmap_plot::y#2 ] ) always clobbers reg byte a +Statement [243] (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 [ bitmap_plot::y#2 bitmap_plot::x#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::y#2 bitmap_plot::x#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::y#2 bitmap_plot::x#2 ] ) always clobbers reg byte a +Statement [246] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 >> (byte) 1 [ bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e1#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e1#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::e1#0 ] ) always clobbers reg byte a +Statement [248] (byte) bitmap_plot::y#3 ← (byte)(word) bitmap_line::y#15 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 ] ) always clobbers reg byte a +Statement [249] (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 bitmap_plot::x#3 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 bitmap_plot::x#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::y#3 bitmap_plot::x#3 ] ) always clobbers reg byte a +Statement [251] (word) bitmap_line::x#15 ← (word) bitmap_line::x#7 + (word) bitmap_line::sx#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#3 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#3 ] ) always clobbers reg byte a +Statement [252] (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ) always clobbers reg byte a +Statement [253] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@10 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#15 bitmap_line::e1#1 ] ) always clobbers reg byte a +Statement [254] (word) bitmap_line::y#2 ← (word) bitmap_line::y#15 + (word) bitmap_line::sy#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::e1#1 bitmap_line::y#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::e1#1 bitmap_line::y#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::e1#1 bitmap_line::y#2 ] ) always clobbers reg byte a +Statement [255] (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#1 - (word) bitmap_line::dx#0 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#2 bitmap_line::e1#2 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#2 bitmap_line::e1#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::x#15 bitmap_line::y#2 bitmap_line::e1#2 ] ) always clobbers reg byte a +Statement [257] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@9 [ bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#13 bitmap_line::x#15 bitmap_line::e1#6 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#13 bitmap_line::x#15 bitmap_line::e1#6 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#13 bitmap_line::x#15 bitmap_line::e1#6 ] ) always clobbers reg byte a +Statement [258] (byte) bitmap_plot::y#0 ← (byte)(word) bitmap_line::y#0 [ bitmap_line::x#0 bitmap_plot::y#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_plot::y#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_plot::y#0 ] ) always clobbers reg byte a +Statement [259] (word) bitmap_plot::x#0 ← (word) bitmap_line::x#0 [ bitmap_plot::y#0 bitmap_plot::x#0 ] ( main:2::show_letter:129::bitmap_line:179 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::y#0 bitmap_plot::x#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::y#0 bitmap_plot::x#0 ] ) always clobbers reg byte a +Statement [262] (word) bitmap_plot::plotter#0 ← *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) w= *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) [ bitmap_plot::x#4 bitmap_plot::plotter#0 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 ] ) always clobbers reg byte a +Statement [263] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 [ bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#0 bitmap_plot::$1 ] ) always clobbers reg byte a +Statement [264] (byte*) bitmap_plot::plotter#1 ← (byte*)(word) bitmap_plot::plotter#0 + (word~) bitmap_plot::$1 [ bitmap_plot::x#4 bitmap_plot::plotter#1 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::x#4 bitmap_plot::plotter#1 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::x#4 bitmap_plot::plotter#1 ] ) always clobbers reg byte a +Statement [265] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#4 [ bitmap_plot::plotter#1 bitmap_plot::$2 ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot::plotter#1 bitmap_plot::$2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_plot::plotter#1 bitmap_plot::$2 ] ) always clobbers reg byte a +Statement [266] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[$100]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) [ ] ( main:2::show_letter:129::bitmap_line:179::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:233 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#4 bitmap_line::x#13 bitmap_line::e#3 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:244 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:250 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x2#10 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 bitmap_line::sy#0 bitmap_line::y#15 bitmap_line::x#7 bitmap_line::e1#3 ] main:2::show_letter:129::bitmap_line:179::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::bitmap_plot:260 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 ] ) always clobbers reg byte a reg byte y +Statement [269] (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 [ sgn_u16::$0 ] ( main:2::show_letter:129::bitmap_line:179::sgn_u16:221 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::sgn_u16:221 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 sgn_u16::$0 ] main:2::show_letter:129::bitmap_line:179::sgn_u16:225 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::sgn_u16:225 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 bitmap_line::dy#0 bitmap_line::sx#0 sgn_u16::$0 ] ) always clobbers reg byte a +Statement [276] (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 [ abs_u16::w#2 abs_u16::$0 ] ( main:2::show_letter:129::bitmap_line:179::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#2 abs_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::w#2 abs_u16::$0 ] main:2::show_letter:129::bitmap_line:179::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#2 abs_u16::$0 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::w#2 abs_u16::$0 ] ) always clobbers reg byte a +Statement [279] (word) abs_u16::return#2 ← - (word) abs_u16::w#2 [ abs_u16::return#2 ] ( main:2::show_letter:129::bitmap_line:179::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:211 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 abs_u16::return#2 ] main:2::show_letter:129::bitmap_line:179::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#2 ] main:2::show_letter:129::bitmap_plot_spline_8seg:193::bitmap_line:202::abs_u16:215 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 bitmap_plot_spline_8seg::n#2 bitmap_line::x#0 bitmap_line::y#0 bitmap_line::x2#10 bitmap_line::y2#11 bitmap_line::dx#0 abs_u16::return#2 ] ) always clobbers reg byte a +Statement [282] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 spline_8segB::$0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_x#0 spline_8segB::p2_y#0 spline_8segB::$0 ] ) always clobbers reg byte a +Statement [283] (signed word~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#0 - (signed word~) spline_8segB::$0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::$1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::$1 ] ) always clobbers reg byte a +Statement [284] (signed word) spline_8segB::a_x#0 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 ] ) always clobbers reg byte a +Statement [285] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 spline_8segB::$3 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::p2_y#0 spline_8segB::a_x#0 spline_8segB::$3 ] ) always clobbers reg byte a +Statement [286] (signed word~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#0 - (signed word~) spline_8segB::$3 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::$4 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::$4 ] ) always clobbers reg byte a +Statement [287] (signed word) spline_8segB::a_y#0 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_x#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 ] ) always clobbers reg byte a +Statement [288] (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#0 - (signed word) spline_8segB::p0_x#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::$6 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::$6 ] ) always clobbers reg byte a +Statement [289] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::p1_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 ] ) always clobbers reg byte a +Statement [290] (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#0 - (signed word) spline_8segB::p0_y#0 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::$8 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::$8 ] ) always clobbers reg byte a +Statement [291] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::b_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_x#0 spline_8segB::b_y#0 ] ) always clobbers reg byte a +Statement [292] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 << (byte) 3 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::$10 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::$10 ] ) always clobbers reg byte a +Statement [293] (signed word) spline_8segB::i_x#0 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::i_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::b_y#0 spline_8segB::i_x#0 ] ) always clobbers reg byte a +Statement [294] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 << (byte) 3 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::$12 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::$12 ] ) always clobbers reg byte a +Statement [295] (signed word) spline_8segB::i_y#0 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_x#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 ] ) always clobbers reg byte a +Statement [296] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::a_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 ] ) always clobbers reg byte a +Statement [297] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 << (byte) 1 [ spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_x#0 spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 ] ) always clobbers reg byte a +Statement [298] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 << (byte) 6 [ spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p0_y#0 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 ] ) always clobbers reg byte a +Statement [299] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 << (byte) 6 [ spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 spline_8segB::p_y#0 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::i_x#0 spline_8segB::i_y#0 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#0 spline_8segB::p_y#0 ] ) always clobbers reg byte a +Statement [301] (signed word~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$22 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$22 ] ) always clobbers reg byte a +Statement [302] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 >> (byte) 6 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 ] ) always clobbers reg byte a +Statement [303] (signed word~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$24 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$24 ] ) always clobbers reg byte a +Statement [304] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 >> (byte) 6 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 ] ) always clobbers reg byte a +Statement [305] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 << (byte) 2 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 spline_8segB::$31 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$23 spline_8segB::$25 spline_8segB::$31 ] ) always clobbers reg byte a +Statement [306] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$23 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$25 spline_8segB::$31 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::$25 spline_8segB::$31 ] ) always clobbers reg byte a +Statement [307] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$25 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_x#2 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 ] ) always clobbers reg byte a +Statement [308] (signed word) spline_8segB::p_x#1 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::p_y#2 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 ] ) always clobbers reg byte a +Statement [309] (signed word) spline_8segB::p_y#1 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_x#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 ] ) always clobbers reg byte a +Statement [310] (signed word) spline_8segB::i_x#1 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#0 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::i_y#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 ] ) always clobbers reg byte a +Statement [311] (signed word) spline_8segB::i_y#1 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#0 [ spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 spline_8segB::i_y#1 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::j_x#0 spline_8segB::j_y#0 spline_8segB::n#2 spline_8segB::p_x#1 spline_8segB::p_y#1 spline_8segB::i_x#1 spline_8segB::i_y#1 ] ) always clobbers reg byte a +Statement [314] (signed word~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#1 + (signed byte) $20 [ spline_8segB::p_y#1 spline_8segB::$18 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p_y#1 spline_8segB::$18 ] ) always clobbers reg byte a +Statement [315] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 >> (byte) 6 [ spline_8segB::p_y#1 spline_8segB::$19 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::p_y#1 spline_8segB::$19 ] ) always clobbers reg byte a +Statement [316] (signed word~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#1 + (signed byte) $20 [ spline_8segB::$19 spline_8segB::$20 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::$19 spline_8segB::$20 ] ) always clobbers reg byte a +Statement [317] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 >> (byte) 6 [ spline_8segB::$19 spline_8segB::$21 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::$19 spline_8segB::$21 ] ) always clobbers reg byte a +Statement [318] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$19 [ spline_8segB::$21 ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 spline_8segB::$21 ] ) always clobbers reg byte a +Statement [319] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$21 [ ] ( main:2::show_letter:129::spline_8segB:191 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#10 show_letter::current_y#10 ] ) always clobbers reg byte a +Statement [322] (signed word) rotate::cos_a#0 ← (signed word)*((const signed byte*) COS#0 + (byte) rotate::angle#2) [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 ] ) always clobbers reg byte a +Statement [323] (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 ] ) always clobbers reg byte a +Statement [324] (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 mulf16s::b#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 mulf16s::b#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#0 mulf16s::b#0 ] ) always clobbers reg byte a +Statement [326] (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#2 ] ) always clobbers reg byte a +Statement [327] (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#2 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$1 ] ) always clobbers reg byte a +Statement [328] (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::$2 ] ) always clobbers reg byte a +Statement [329] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 << (byte) 1 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::xr#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::xr#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 rotate::xr#0 ] ) always clobbers reg byte a +Statement [330] (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 ] ) always clobbers reg byte a +Statement [331] (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 mulf16s::b#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 mulf16s::b#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#1 mulf16s::b#1 ] ) always clobbers reg byte a +Statement [333] (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#0 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#3 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#3 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#3 ] ) always clobbers reg byte a +Statement [334] (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#3 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$4 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$4 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$4 ] ) always clobbers reg byte a +Statement [335] (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$5 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$5 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::$5 ] ) always clobbers reg byte a +Statement [336] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 << (byte) 1 [ rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 ] ) always clobbers reg byte a +Statement [337] (signed word) rotate::sin_a#0 ← (signed word)*((const signed byte[$140]) SIN#0 + (byte) rotate::angle#2) [ rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 ] ) always clobbers reg byte a +Statement [338] (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 [ rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 ] ) always clobbers reg byte a +Statement [339] (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#2 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 mulf16s::b#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 mulf16s::b#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#2 mulf16s::b#2 ] ) always clobbers reg byte a +Statement [341] (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#0 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#4 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#4 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#4 ] ) always clobbers reg byte a +Statement [342] (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#4 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$8 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$8 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$8 ] ) always clobbers reg byte a +Statement [343] (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$9 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$9 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$9 ] ) always clobbers reg byte a +Statement [344] (signed word~) rotate::$10 ← (signed word~) rotate::$9 << (byte) 1 [ rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$10 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$10 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 rotate::$10 ] ) always clobbers reg byte a +Statement [345] (signed word) rotate::xr#1 ← (signed word) rotate::xr#0 - (signed word~) rotate::$10 [ rotate::vector_x#2 rotate::yr#0 rotate::sin_a#0 rotate::xr#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::yr#0 rotate::sin_a#0 rotate::xr#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::yr#0 rotate::sin_a#0 rotate::xr#1 ] ) always clobbers reg byte a +Statement [346] (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#0 [ rotate::vector_x#2 rotate::yr#0 rotate::xr#1 mulf16s::a#3 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::yr#0 rotate::xr#1 mulf16s::a#3 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::yr#0 rotate::xr#1 mulf16s::a#3 ] ) always clobbers reg byte a +Statement [347] (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#2 [ rotate::yr#0 rotate::xr#1 mulf16s::a#3 mulf16s::b#3 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#3 mulf16s::b#3 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#3 mulf16s::b#3 ] ) always clobbers reg byte a +Statement [349] (signed dword) mulf16s::return#10 ← (signed dword) mulf16s::return#0 [ rotate::yr#0 rotate::xr#1 mulf16s::return#10 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::return#10 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::return#10 ] ) always clobbers reg byte a +Statement [350] (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 [ rotate::yr#0 rotate::xr#1 rotate::$11 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 rotate::$11 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 rotate::$11 ] ) always clobbers reg byte a +Statement [351] (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 [ rotate::yr#0 rotate::xr#1 rotate::$12 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 rotate::$12 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 rotate::$12 ] ) always clobbers reg byte a +Statement [352] (signed word~) rotate::$13 ← (signed word~) rotate::$12 << (byte) 1 [ rotate::yr#0 rotate::xr#1 rotate::$13 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 rotate::$13 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 rotate::$13 ] ) always clobbers reg byte a +Statement [353] (signed word) rotate::yr#1 ← (signed word) rotate::yr#0 + (signed word~) rotate::$13 [ rotate::xr#1 rotate::yr#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::xr#1 rotate::yr#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::xr#1 rotate::yr#1 ] ) always clobbers reg byte a +Statement [354] (byte~) rotate::$15 ← > (signed word) rotate::xr#1 [ rotate::yr#1 rotate::$15 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#1 rotate::$15 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#1 rotate::$15 ] ) always clobbers reg byte a +Statement [355] (signed word) rotate::return_x#2 ← (signed word)(signed byte)(byte~) rotate::$15 [ rotate::return_x#2 rotate::yr#1 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#2 rotate::yr#1 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#2 rotate::yr#1 ] ) always clobbers reg byte a +Statement [356] (byte~) rotate::$18 ← > (signed word) rotate::yr#1 [ rotate::return_x#2 rotate::$18 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#2 rotate::$18 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#2 rotate::$18 ] ) always clobbers reg byte a +Statement [357] (signed word) rotate::return_y#2 ← (signed word)(signed byte)(byte~) rotate::$18 [ rotate::return_x#2 rotate::return_y#2 ] ( main:2::show_letter:129::rotate:147 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::return_x#2 rotate::return_y#2 ] main:2::show_letter:129::rotate:163 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::return_x#2 rotate::return_y#2 ] ) always clobbers reg byte a +Statement [360] (word) mulf16u::a#0 ← (word)(signed word) mulf16s::a#4 [ mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 ] ) always clobbers reg byte a +Statement [361] (word) mulf16u::b#0 ← (word)(signed word) mulf16s::b#4 [ mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::a#0 mulf16u::b#0 ] ) always clobbers reg byte a +Statement [363] (dword) mulf16u::return#2 ← (dword) mulf16u::return#0 [ mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#2 ] ) always clobbers reg byte a +Statement [364] (dword) mulf16s::m#0 ← (dword) mulf16u::return#2 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ) always clobbers reg byte a +Statement [365] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 ] ) always clobbers reg byte a +Statement [366] (word~) mulf16s::$9 ← > (dword) mulf16s::m#0 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$9 ] ) always clobbers reg byte a +Statement [367] (word~) mulf16s::$16 ← (word~) mulf16s::$9 - (word)(signed word) mulf16s::b#4 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#0 mulf16s::$16 ] ) always clobbers reg byte a +Statement [368] (dword) mulf16s::m#1 ← (dword) mulf16s::m#0 hi= (word~) mulf16s::$16 [ mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16s::m#1 ] ) always clobbers reg byte a +Statement [370] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 [ mulf16s::a#4 mulf16s::m#5 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 ] ) always clobbers reg byte a +Statement [371] (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 [ mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::m#5 mulf16s::$13 ] ) always clobbers reg byte a +Statement [372] (word~) mulf16s::$17 ← (word~) mulf16s::$13 - (word)(signed word) mulf16s::a#4 [ mulf16s::m#5 mulf16s::$17 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::m#5 mulf16s::$17 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::m#5 mulf16s::$17 ] ) always clobbers reg byte a +Statement [373] (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 [ mulf16s::m#2 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::m#2 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::m#2 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::m#2 ] ) always clobbers reg byte a +Statement [375] (signed dword) mulf16s::return#0 ← (signed dword)(dword) mulf16s::m#4 [ mulf16s::return#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:325 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:332 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:340 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:348 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::return#0 ] ) always clobbers reg byte a +Statement [377] *((const word*) mulf16u::memA#0) ← (word) mulf16u::a#0 [ mulf16u::b#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:147::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] main:2::show_letter:129::rotate:163::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::b#0 ] ) always clobbers reg byte a +Statement [378] *((const word*) mulf16u::memB#0) ← (word) mulf16u::b#0 [ ] ( main:2::show_letter:129::rotate:147::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:147::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:147::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:147::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 ] main:2::show_letter:129::rotate:163::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 ] ) always clobbers reg byte a +Statement asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } always clobbers reg byte a reg byte x +Statement [380] (dword) mulf16u::return#0 ← *((const dword*) mulf16u::memR#0) [ mulf16u::return#0 ] ( main:2::show_letter:129::rotate:147::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:325::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::cos_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:332::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::angle#2 rotate::vector_x#2 rotate::vector_y#2 rotate::xr#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:340::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::vector_x#2 rotate::xr#0 rotate::yr#0 rotate::sin_a#0 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:147::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] main:2::show_letter:129::rotate:163::mulf16s:348::mulf16u:362 [ main::angle#2 show_letter::angle#0 show_letter::i#10 show_letter::current_x#4 show_letter::current_y#4 show_letter::current_x#10 show_letter::current_y#10 rotate::yr#0 rotate::xr#1 mulf16s::a#4 mulf16s::b#4 mulf16u::return#0 ] ) always clobbers reg byte a +Statement [388] if((word) memset::num#2<=(byte) 0) goto memset::@return [ memset::num#2 memset::str#3 memset::c#3 ] ( main:2::bitmap_clear:118::memset:383 [ memset::num#2 memset::str#3 memset::c#3 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::num#2 memset::str#3 memset::c#3 ] main:2::bitmap_clear:118::memset:385 [ memset::num#2 memset::str#3 memset::c#3 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::num#2 memset::str#3 memset::c#3 ] ) always clobbers reg byte a +Statement [389] (byte*) memset::end#0 ← (byte*)(void*) memset::str#3 + (word) memset::num#2 [ memset::str#3 memset::c#3 memset::end#0 ] ( main:2::bitmap_clear:118::memset:383 [ memset::str#3 memset::c#3 memset::end#0 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::str#3 memset::c#3 memset::end#0 ] main:2::bitmap_clear:118::memset:385 [ memset::str#3 memset::c#3 memset::end#0 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::str#3 memset::c#3 memset::end#0 ] ) always clobbers reg byte a +Statement [390] (byte*~) memset::dst#3 ← (byte*)(void*) memset::str#3 [ memset::c#3 memset::end#0 memset::dst#3 ] ( main:2::bitmap_clear:118::memset:383 [ memset::c#3 memset::end#0 memset::dst#3 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#3 ] main:2::bitmap_clear:118::memset:385 [ memset::c#3 memset::end#0 memset::dst#3 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#3 ] ) always clobbers reg byte a +Statement [392] *((byte*) memset::dst#2) ← (byte) memset::c#3 [ memset::c#3 memset::end#0 memset::dst#2 ] ( main:2::bitmap_clear:118::memset:383 [ memset::c#3 memset::end#0 memset::dst#2 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#2 ] main:2::bitmap_clear:118::memset:385 [ memset::c#3 memset::end#0 memset::dst#2 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#2 ] ) always clobbers reg byte a reg byte y +Statement [394] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@2 [ memset::c#3 memset::end#0 memset::dst#1 ] ( main:2::bitmap_clear:118::memset:383 [ memset::c#3 memset::end#0 memset::dst#1 ] main:2::bitmap_clear:127::memset:383 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#1 ] main:2::bitmap_clear:118::memset:385 [ memset::c#3 memset::end#0 memset::dst#1 ] main:2::bitmap_clear:127::memset:385 [ main::angle#2 memset::c#3 memset::end#0 memset::dst#1 ] ) always clobbers reg byte a +Statement [406] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ( main:2::bitmap_init:116 [ bitmap_init::y#2 bitmap_init::yoffs#2 bitmap_init::$7 ] ) always clobbers reg byte a +Statement [413] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (word)(number) $28*(number) 8 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ( main:2::bitmap_init:116 [ bitmap_init::y#2 bitmap_init::yoffs#1 ] ) always clobbers reg byte a +Statement [421] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ( main:2::mulf_init:114 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ) always clobbers reg byte a +Statement [426] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ) always clobbers reg byte a +Statement [427] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [428] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ) always clobbers reg byte a +Statement [429] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [431] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::mulf_init:114 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [433] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::mulf_init:114 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [435] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::mulf_init:114 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [436] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::mulf_init:114 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [438] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ( main:2::mulf_init:114 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ) always clobbers reg byte a +Statement [443] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ( main:2::mulf_init:114 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ) always clobbers reg byte a +Statement [444] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) [ ] ( main:2::mulf_init:114 [ ] ) always clobbers reg byte a +Statement [445] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) [ ] ( main:2::mulf_init:114 [ ] ) always clobbers reg byte a +Potential registers zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] : zp ZP_BYTE:2 , +Potential registers zp ZP_BYTE:3 [ main::w#4 main::w#1 ] : zp ZP_BYTE:3 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] : zp ZP_BYTE:4 , +Potential registers zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 ] : zp ZP_WORD:5 , +Potential registers zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 ] : zp ZP_WORD:7 , +Potential registers zp ZP_WORD:9 [ bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] : zp ZP_WORD:9 , +Potential registers zp ZP_WORD:11 [ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] : zp ZP_WORD:11 , +Potential registers zp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] : zp ZP_BYTE:13 , reg byte x , +Potential registers zp ZP_WORD:14 [ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] : zp ZP_WORD:14 , +Potential registers zp ZP_WORD:16 [ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] : zp ZP_WORD:16 , +Potential registers zp ZP_WORD:18 [ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] : zp ZP_WORD:18 , +Potential registers zp ZP_WORD:20 [ bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] : zp ZP_WORD:20 , +Potential registers zp ZP_WORD:22 [ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 ] : zp ZP_WORD:22 , +Potential registers zp ZP_WORD:24 [ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] : zp ZP_WORD:24 , +Potential registers zp ZP_BYTE:26 [ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] : zp ZP_BYTE:26 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:27 [ bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] : zp ZP_WORD:27 , +Potential registers zp ZP_WORD:29 [ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] : zp ZP_WORD:29 , +Potential registers zp ZP_WORD:31 [ sgn_u16::return#4 ] : zp ZP_WORD:31 , +Potential registers zp ZP_WORD:33 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 ] : zp ZP_WORD:33 , +Potential registers zp ZP_WORD:35 [ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 ] : zp ZP_WORD:35 , +Potential registers zp ZP_WORD:37 [ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 ] : zp ZP_WORD:37 , +Potential registers zp ZP_BYTE:39 [ spline_8segB::n#2 spline_8segB::n#1 ] : zp ZP_BYTE:39 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 ] : zp ZP_WORD:40 , +Potential registers zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 ] : zp ZP_WORD:42 , +Potential registers zp ZP_BYTE:44 [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] : zp ZP_BYTE:44 , reg byte y , +Potential registers zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 ] : zp ZP_WORD:45 , +Potential registers zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 ] : zp ZP_WORD:47 , +Potential registers zp ZP_WORD:49 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 ] : zp ZP_WORD:49 , +Potential registers zp ZP_WORD:51 [ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] : zp ZP_WORD:51 , +Potential registers zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 ] : zp ZP_DWORD:53 , +Potential registers zp ZP_WORD:57 [ memset::num#2 ] : zp ZP_WORD:57 , +Potential registers zp ZP_WORD:59 [ memset::str#3 ] : zp ZP_WORD:59 , +Potential registers zp ZP_BYTE:61 [ memset::c#3 ] : zp ZP_BYTE:61 , reg byte x , +Potential registers zp ZP_WORD:62 [ memset::dst#2 memset::dst#3 memset::dst#1 ] : zp ZP_WORD:62 , +Potential registers zp ZP_BYTE:64 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] : zp ZP_BYTE:64 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:65 [ bitmap_init::x#2 bitmap_init::x#1 ] : zp ZP_BYTE:65 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:66 [ bitmap_init::y#2 bitmap_init::y#1 ] : zp ZP_BYTE:66 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:67 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] : zp ZP_WORD:67 , +Potential registers zp ZP_BYTE:69 [ mulf_init::c#2 mulf_init::c#1 ] : zp ZP_BYTE:69 , reg byte x , +Potential registers zp ZP_WORD:70 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] : zp ZP_WORD:70 , +Potential registers zp ZP_WORD:72 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] : zp ZP_WORD:72 , +Potential registers zp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] : zp ZP_BYTE:74 , reg byte x , +Potential registers zp ZP_WORD:75 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] : zp ZP_WORD:75 , +Potential registers zp ZP_BYTE:77 [ mulf_init::x_255#2 mulf_init::x_255#1 ] : zp ZP_BYTE:77 , reg byte x , +Potential registers zp ZP_WORD:78 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] : zp ZP_WORD:78 , +Potential registers zp ZP_WORD:80 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] : zp ZP_WORD:80 , +Potential registers zp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] : zp ZP_BYTE:82 , reg byte x , +Potential registers zp ZP_BYTE:83 [ show_letter::angle#0 ] : zp ZP_BYTE:83 , +Potential registers zp ZP_BYTE:84 [ show_letter::$32 ] : zp ZP_BYTE:84 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:85 [ show_letter::$20 ] : zp ZP_BYTE:85 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:86 [ show_letter::to_x#0 ] : zp ZP_WORD:86 , +Potential registers zp ZP_WORD:88 [ show_letter::to_y#0 ] : zp ZP_WORD:88 , +Potential registers zp ZP_WORD:90 [ show_letter::to_x#1 ] : zp ZP_WORD:90 , +Potential registers zp ZP_WORD:92 [ show_letter::to_y#1 ] : zp ZP_WORD:92 , +Potential registers zp ZP_WORD:94 [ rotate::return_x#0 ] : zp ZP_WORD:94 , +Potential registers zp ZP_WORD:96 [ rotate::return_y#0 ] : zp ZP_WORD:96 , +Potential registers zp ZP_WORD:98 [ show_letter::to_x#2 ] : zp ZP_WORD:98 , +Potential registers zp ZP_WORD:100 [ show_letter::to_y#2 ] : zp ZP_WORD:100 , +Potential registers zp ZP_WORD:102 [ show_letter::current_x#10 ] : zp ZP_WORD:102 , +Potential registers zp ZP_WORD:104 [ show_letter::current_y#10 ] : zp ZP_WORD:104 , +Potential registers zp ZP_BYTE:106 [ show_letter::$34 ] : zp ZP_BYTE:106 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:107 [ show_letter::$21 ] : zp ZP_BYTE:107 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:108 [ show_letter::via_x#0 ] : zp ZP_WORD:108 , +Potential registers zp ZP_WORD:110 [ show_letter::via_y#0 ] : zp ZP_WORD:110 , +Potential registers zp ZP_WORD:112 [ show_letter::via_x#1 ] : zp ZP_WORD:112 , +Potential registers zp ZP_WORD:114 [ show_letter::via_y#1 ] : zp ZP_WORD:114 , +Potential registers zp ZP_WORD:116 [ rotate::return_x#1 ] : zp ZP_WORD:116 , +Potential registers zp ZP_WORD:118 [ rotate::return_y#1 ] : zp ZP_WORD:118 , +Potential registers zp ZP_WORD:120 [ show_letter::via_x#2 ] : zp ZP_WORD:120 , +Potential registers zp ZP_WORD:122 [ show_letter::via_y#2 ] : zp ZP_WORD:122 , +Potential registers zp ZP_WORD:124 [ show_letter::segment_via_x#0 ] : zp ZP_WORD:124 , +Potential registers zp ZP_WORD:126 [ show_letter::segment_via_y#0 ] : zp ZP_WORD:126 , +Potential registers zp ZP_BYTE:128 [ show_letter::$36 ] : zp ZP_BYTE:128 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:129 [ show_letter::$22 ] : zp ZP_BYTE:129 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:130 [ show_letter::segment_type#0 ] : zp ZP_BYTE:130 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:131 [ spline_8segB::p0_x#0 ] : zp ZP_WORD:131 , +Potential registers zp ZP_WORD:133 [ spline_8segB::p0_y#0 ] : zp ZP_WORD:133 , +Potential registers zp ZP_WORD:135 [ spline_8segB::p1_x#0 ] : zp ZP_WORD:135 , +Potential registers zp ZP_WORD:137 [ spline_8segB::p1_y#0 ] : zp ZP_WORD:137 , +Potential registers zp ZP_WORD:139 [ spline_8segB::p2_x#0 ] : zp ZP_WORD:139 , +Potential registers zp ZP_WORD:141 [ spline_8segB::p2_y#0 ] : zp ZP_WORD:141 , +Potential registers zp ZP_BYTE:143 [ bitmap_plot_spline_8seg::$8 ] : zp ZP_BYTE:143 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:144 [ bitmap_plot_spline_8seg::$9 ] : zp ZP_BYTE:144 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:145 [ abs_u16::return#0 ] : zp ZP_WORD:145 , +Potential registers zp ZP_WORD:147 [ bitmap_line::dx#0 ] : zp ZP_WORD:147 , +Potential registers zp ZP_WORD:149 [ abs_u16::return#1 ] : zp ZP_WORD:149 , +Potential registers zp ZP_WORD:151 [ bitmap_line::dy#0 ] : zp ZP_WORD:151 , +Potential registers zp ZP_WORD:153 [ sgn_u16::return#0 ] : zp ZP_WORD:153 , +Potential registers zp ZP_WORD:155 [ bitmap_line::sx#0 ] : zp ZP_WORD:155 , +Potential registers zp ZP_WORD:157 [ sgn_u16::return#1 ] : zp ZP_WORD:157 , +Potential registers zp ZP_WORD:159 [ bitmap_line::sy#0 ] : zp ZP_WORD:159 , +Potential registers zp ZP_WORD:161 [ bitmap_plot::plotter#0 ] : zp ZP_WORD:161 , +Potential registers zp ZP_WORD:163 [ bitmap_plot::$1 ] : zp ZP_WORD:163 , +Potential registers zp ZP_WORD:165 [ bitmap_plot::plotter#1 ] : zp ZP_WORD:165 , +Potential registers zp ZP_BYTE:167 [ bitmap_plot::$2 ] : zp ZP_BYTE:167 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:168 [ sgn_u16::$0 ] : zp ZP_BYTE:168 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:169 [ sgn_u16::$1 ] : zp ZP_BYTE:169 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:170 [ abs_u16::$0 ] : zp ZP_BYTE:170 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:171 [ abs_u16::$1 ] : zp ZP_BYTE:171 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:172 [ spline_8segB::$0 ] : zp ZP_WORD:172 , +Potential registers zp ZP_WORD:174 [ spline_8segB::$1 ] : zp ZP_WORD:174 , +Potential registers zp ZP_WORD:176 [ spline_8segB::a_x#0 ] : zp ZP_WORD:176 , +Potential registers zp ZP_WORD:178 [ spline_8segB::$3 ] : zp ZP_WORD:178 , +Potential registers zp ZP_WORD:180 [ spline_8segB::$4 ] : zp ZP_WORD:180 , +Potential registers zp ZP_WORD:182 [ spline_8segB::a_y#0 ] : zp ZP_WORD:182 , +Potential registers zp ZP_WORD:184 [ spline_8segB::$6 ] : zp ZP_WORD:184 , +Potential registers zp ZP_WORD:186 [ spline_8segB::b_x#0 ] : zp ZP_WORD:186 , +Potential registers zp ZP_WORD:188 [ spline_8segB::$8 ] : zp ZP_WORD:188 , +Potential registers zp ZP_WORD:190 [ spline_8segB::b_y#0 ] : zp ZP_WORD:190 , +Potential registers zp ZP_WORD:192 [ spline_8segB::$10 ] : zp ZP_WORD:192 , +Potential registers zp ZP_WORD:194 [ spline_8segB::$12 ] : zp ZP_WORD:194 , +Potential registers zp ZP_WORD:196 [ spline_8segB::j_x#0 ] : zp ZP_WORD:196 , +Potential registers zp ZP_WORD:198 [ spline_8segB::j_y#0 ] : zp ZP_WORD:198 , +Potential registers zp ZP_WORD:200 [ spline_8segB::$22 ] : zp ZP_WORD:200 , +Potential registers zp ZP_WORD:202 [ spline_8segB::$23 ] : zp ZP_WORD:202 , +Potential registers zp ZP_WORD:204 [ spline_8segB::$24 ] : zp ZP_WORD:204 , +Potential registers zp ZP_WORD:206 [ spline_8segB::$25 ] : zp ZP_WORD:206 , +Potential registers zp ZP_BYTE:208 [ spline_8segB::$31 ] : zp ZP_BYTE:208 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:209 [ spline_8segB::$18 ] : zp ZP_WORD:209 , +Potential registers zp ZP_WORD:211 [ spline_8segB::$19 ] : zp ZP_WORD:211 , +Potential registers zp ZP_WORD:213 [ spline_8segB::$20 ] : zp ZP_WORD:213 , +Potential registers zp ZP_WORD:215 [ spline_8segB::$21 ] : zp ZP_WORD:215 , +Potential registers zp ZP_WORD:217 [ rotate::cos_a#0 ] : zp ZP_WORD:217 , +Potential registers zp ZP_DWORD:219 [ mulf16s::return#2 ] : zp ZP_DWORD:219 , +Potential registers zp ZP_DWORD:223 [ rotate::$1 ] : zp ZP_DWORD:223 , +Potential registers zp ZP_WORD:227 [ rotate::$2 ] : zp ZP_WORD:227 , +Potential registers zp ZP_WORD:229 [ rotate::xr#0 ] : zp ZP_WORD:229 , +Potential registers zp ZP_DWORD:231 [ mulf16s::return#3 ] : zp ZP_DWORD:231 , +Potential registers zp ZP_DWORD:235 [ rotate::$4 ] : zp ZP_DWORD:235 , +Potential registers zp ZP_WORD:239 [ rotate::$5 ] : zp ZP_WORD:239 , +Potential registers zp ZP_WORD:241 [ rotate::yr#0 ] : zp ZP_WORD:241 , +Potential registers zp ZP_WORD:243 [ rotate::sin_a#0 ] : zp ZP_WORD:243 , +Potential registers zp ZP_DWORD:245 [ mulf16s::return#4 ] : zp ZP_DWORD:245 , +Potential registers zp ZP_DWORD:249 [ rotate::$8 ] : zp ZP_DWORD:249 , +Potential registers zp ZP_WORD:253 [ rotate::$9 ] : zp ZP_WORD:253 , +Potential registers zp ZP_WORD:255 [ rotate::$10 ] : zp ZP_WORD:255 , +Potential registers zp ZP_WORD:257 [ rotate::xr#1 ] : zp ZP_WORD:257 , +Potential registers zp ZP_DWORD:259 [ mulf16s::return#10 ] : zp ZP_DWORD:259 , +Potential registers zp ZP_DWORD:263 [ rotate::$11 ] : zp ZP_DWORD:263 , +Potential registers zp ZP_WORD:267 [ rotate::$12 ] : zp ZP_WORD:267 , +Potential registers zp ZP_WORD:269 [ rotate::$13 ] : zp ZP_WORD:269 , +Potential registers zp ZP_WORD:271 [ rotate::yr#1 ] : zp ZP_WORD:271 , +Potential registers zp ZP_BYTE:273 [ rotate::$15 ] : zp ZP_BYTE:273 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:274 [ rotate::return_x#2 ] : zp ZP_WORD:274 , +Potential registers zp ZP_BYTE:276 [ rotate::$18 ] : zp ZP_BYTE:276 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:277 [ rotate::return_y#2 ] : zp ZP_WORD:277 , +Potential registers zp ZP_WORD:279 [ mulf16u::a#0 ] : zp ZP_WORD:279 , +Potential registers zp ZP_WORD:281 [ mulf16u::b#0 ] : zp ZP_WORD:281 , +Potential registers zp ZP_DWORD:283 [ mulf16u::return#2 ] : zp ZP_DWORD:283 , +Potential registers zp ZP_WORD:287 [ mulf16s::$9 ] : zp ZP_WORD:287 , +Potential registers zp ZP_WORD:289 [ mulf16s::$16 ] : zp ZP_WORD:289 , +Potential registers zp ZP_WORD:291 [ mulf16s::$13 ] : zp ZP_WORD:291 , +Potential registers zp ZP_WORD:293 [ mulf16s::$17 ] : zp ZP_WORD:293 , +Potential registers zp ZP_DWORD:295 [ mulf16s::return#0 ] : zp ZP_DWORD:295 , +Potential registers zp ZP_DWORD:299 [ mulf16u::return#0 ] : zp ZP_DWORD:299 , +Potential registers zp ZP_WORD:303 [ memset::end#0 ] : zp ZP_WORD:303 , +Potential registers zp ZP_BYTE:305 [ bitmap_init::$7 ] : zp ZP_BYTE:305 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:306 [ bitmap_init::$4 ] : zp ZP_BYTE:306 , reg byte a , reg byte x , reg byte y , reg byte alu , +Potential registers zp ZP_BYTE:307 [ bitmap_init::$5 ] : zp ZP_BYTE:307 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:308 [ bitmap_init::$6 ] : zp ZP_BYTE:308 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:309 [ mulf_init::$7 ] : zp ZP_BYTE:309 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:310 [ mulf_init::$10 ] : zp ZP_BYTE:310 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:311 [ mulf_init::$11 ] : zp ZP_BYTE:311 , reg byte a , reg byte x , reg byte y , + +REGISTER UPLIFT SCOPES +Uplift Scope [bitmap_line] 7,125.57: zp ZP_WORD:20 [ bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] 6,399.78: zp ZP_WORD:22 [ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 ] 5,242.97: zp ZP_WORD:18 [ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] 5,242.97: zp ZP_WORD:24 [ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] 2,269.84: zp ZP_WORD:16 [ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] 1,167.84: zp ZP_WORD:14 [ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] 83.64: zp ZP_WORD:151 [ bitmap_line::dy#0 ] 77.08: zp ZP_WORD:159 [ bitmap_line::sy#0 ] 75.28: zp ZP_WORD:147 [ bitmap_line::dx#0 ] 66.8: zp ZP_WORD:155 [ bitmap_line::sx#0 ] +Uplift Scope [spline_8segB] 2,002: zp ZP_WORD:200 [ spline_8segB::$22 ] 2,002: zp ZP_WORD:204 [ spline_8segB::$24 ] 1,751.75: zp ZP_BYTE:39 [ spline_8segB::n#2 spline_8segB::n#1 ] 1,501.5: zp ZP_BYTE:208 [ spline_8segB::$31 ] 941.32: zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 ] 801.57: zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 ] 711.62: zp ZP_WORD:35 [ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 ] 667.33: zp ZP_WORD:206 [ spline_8segB::$25 ] 624.17: zp ZP_WORD:37 [ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 ] 500.5: zp ZP_WORD:202 [ spline_8segB::$23 ] 59: zp ZP_WORD:198 [ spline_8segB::j_y#0 ] 55.72: zp ZP_WORD:196 [ spline_8segB::j_x#0 ] 34.33: zp ZP_WORD:139 [ spline_8segB::p2_x#0 ] 20.6: zp ZP_WORD:141 [ spline_8segB::p2_y#0 ] 10.5: zp ZP_WORD:135 [ spline_8segB::p1_x#0 ] 9.55: zp ZP_WORD:137 [ spline_8segB::p1_y#0 ] 4.86: zp ZP_WORD:131 [ spline_8segB::p0_x#0 ] 4.86: zp ZP_WORD:133 [ spline_8segB::p0_y#0 ] 4: zp ZP_WORD:172 [ spline_8segB::$0 ] 4: zp ZP_WORD:174 [ spline_8segB::$1 ] 4: zp ZP_WORD:178 [ spline_8segB::$3 ] 4: zp ZP_WORD:180 [ spline_8segB::$4 ] 4: zp ZP_WORD:184 [ spline_8segB::$6 ] 4: zp ZP_WORD:188 [ spline_8segB::$8 ] 4: zp ZP_WORD:192 [ spline_8segB::$10 ] 4: zp ZP_WORD:194 [ spline_8segB::$12 ] 4: zp ZP_WORD:209 [ spline_8segB::$18 ] 4: zp ZP_WORD:213 [ spline_8segB::$20 ] 2: zp ZP_WORD:215 [ spline_8segB::$21 ] 1.33: zp ZP_WORD:186 [ spline_8segB::b_x#0 ] 1.33: zp ZP_WORD:190 [ spline_8segB::b_y#0 ] 1.33: zp ZP_WORD:211 [ spline_8segB::$19 ] 0.6: zp ZP_WORD:182 [ spline_8segB::a_y#0 ] 0.5: zp ZP_WORD:176 [ spline_8segB::a_x#0 ] +Uplift Scope [bitmap_plot] 4,514.5: zp ZP_WORD:27 [ bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] 4,016: zp ZP_BYTE:26 [ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] 4: zp ZP_WORD:163 [ bitmap_plot::$1 ] 4: zp ZP_BYTE:167 [ bitmap_plot::$2 ] 3: zp ZP_WORD:165 [ bitmap_plot::plotter#1 ] 1: zp ZP_WORD:161 [ bitmap_plot::plotter#0 ] +Uplift Scope [bitmap_plot_spline_8seg] 1,901.9: zp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] 1,505.5: zp ZP_WORD:9 [ bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] 1,501.5: zp ZP_BYTE:144 [ bitmap_plot_spline_8seg::$9 ] 1,172.83: zp ZP_WORD:11 [ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] 500.5: zp ZP_BYTE:143 [ bitmap_plot_spline_8seg::$8 ] +Uplift Scope [show_letter] 207.05: zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 ] 202: zp ZP_BYTE:84 [ show_letter::$32 ] 202: zp ZP_BYTE:106 [ show_letter::$34 ] 202: zp ZP_BYTE:128 [ show_letter::$36 ] 202: zp ZP_BYTE:129 [ show_letter::$22 ] 151.5: zp ZP_BYTE:85 [ show_letter::$20 ] 151.5: zp ZP_BYTE:107 [ show_letter::$21 ] 151.5: zp ZP_BYTE:130 [ show_letter::segment_type#0 ] 106.32: zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 ] 101: zp ZP_WORD:86 [ show_letter::to_x#0 ] 101: zp ZP_WORD:88 [ show_letter::to_y#0 ] 101: zp ZP_WORD:90 [ show_letter::to_x#1 ] 101: zp ZP_WORD:92 [ show_letter::to_y#1 ] 101: zp ZP_WORD:98 [ show_letter::to_x#2 ] 101: zp ZP_WORD:100 [ show_letter::to_y#2 ] 101: zp ZP_WORD:108 [ show_letter::via_x#0 ] 101: zp ZP_WORD:110 [ show_letter::via_y#0 ] 101: zp ZP_WORD:112 [ show_letter::via_x#1 ] 101: zp ZP_WORD:114 [ show_letter::via_y#1 ] 101: zp ZP_WORD:120 [ show_letter::via_x#2 ] 101: zp ZP_WORD:122 [ show_letter::via_y#2 ] 91.29: zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] 22.44: zp ZP_WORD:124 [ show_letter::segment_via_x#0 ] 22.44: zp ZP_WORD:126 [ show_letter::segment_via_y#0 ] 7.77: zp ZP_WORD:102 [ show_letter::current_x#10 ] 7.77: zp ZP_WORD:104 [ show_letter::current_y#10 ] 3.67: zp ZP_BYTE:83 [ show_letter::angle#0 ] +Uplift Scope [rotate] 416.62: zp ZP_BYTE:44 [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] 213.44: zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 ] 142.59: zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 ] 101: zp ZP_WORD:94 [ rotate::return_x#0 ] 101: zp ZP_WORD:96 [ rotate::return_y#0 ] 101: zp ZP_WORD:116 [ rotate::return_x#1 ] 101: zp ZP_WORD:118 [ rotate::return_y#1 ] 34: zp ZP_WORD:274 [ rotate::return_x#2 ] 34: zp ZP_WORD:277 [ rotate::return_y#2 ] 4: zp ZP_WORD:227 [ rotate::$2 ] 4: zp ZP_WORD:239 [ rotate::$5 ] 4: zp ZP_WORD:253 [ rotate::$9 ] 4: zp ZP_WORD:255 [ rotate::$10 ] 4: zp ZP_WORD:267 [ rotate::$12 ] 4: zp ZP_WORD:269 [ rotate::$13 ] 2: zp ZP_DWORD:223 [ rotate::$1 ] 2: zp ZP_DWORD:235 [ rotate::$4 ] 2: zp ZP_DWORD:249 [ rotate::$8 ] 2: zp ZP_DWORD:263 [ rotate::$11 ] 2: zp ZP_BYTE:273 [ rotate::$15 ] 2: zp ZP_BYTE:276 [ rotate::$18 ] 1.33: zp ZP_WORD:271 [ rotate::yr#1 ] 0.75: zp ZP_WORD:217 [ rotate::cos_a#0 ] 0.67: zp ZP_WORD:243 [ rotate::sin_a#0 ] 0.44: zp ZP_WORD:257 [ rotate::xr#1 ] 0.25: zp ZP_WORD:229 [ rotate::xr#0 ] 0.24: zp ZP_WORD:241 [ rotate::yr#0 ] +Uplift Scope [memset] 308: zp ZP_WORD:62 [ memset::dst#2 memset::dst#3 memset::dst#1 ] 17.17: zp ZP_WORD:303 [ memset::end#0 ] 12.62: zp ZP_BYTE:61 [ memset::c#3 ] 2: zp ZP_WORD:57 [ memset::num#2 ] 0: zp ZP_WORD:59 [ memset::str#3 ] +Uplift Scope [mulf_init] 45.1: zp ZP_WORD:75 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] 24.36: zp ZP_BYTE:69 [ mulf_init::c#2 mulf_init::c#1 ] 24.14: zp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] 22: zp ZP_BYTE:309 [ mulf_init::$7 ] 22: zp ZP_BYTE:310 [ mulf_init::$10 ] 22: zp ZP_BYTE:311 [ mulf_init::$11 ] 20.62: zp ZP_WORD:78 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] 19.04: zp ZP_WORD:70 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] 16.5: zp ZP_BYTE:77 [ mulf_init::x_255#2 mulf_init::x_255#1 ] 14.14: zp ZP_WORD:80 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] 12.05: zp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] 8.5: zp ZP_WORD:72 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Uplift Scope [main] 218.83: zp ZP_BYTE:3 [ main::w#4 main::w#1 ] 25.3: zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Uplift Scope [bitmap_init] 39.88: zp ZP_WORD:67 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] 34.83: zp ZP_BYTE:64 [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] 22: zp ZP_BYTE:65 [ bitmap_init::x#2 bitmap_init::x#1 ] 22: zp ZP_BYTE:66 [ bitmap_init::y#2 bitmap_init::y#1 ] 22: zp ZP_BYTE:306 [ bitmap_init::$4 ] 22: zp ZP_BYTE:307 [ bitmap_init::$5 ] 22: zp ZP_BYTE:308 [ bitmap_init::$6 ] 5.5: zp ZP_BYTE:305 [ bitmap_init::$7 ] +Uplift Scope [mulf16s] 16.91: zp ZP_WORD:51 [ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] 16.5: zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 ] 8.77: zp ZP_WORD:49 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 ] 4: zp ZP_DWORD:219 [ mulf16s::return#2 ] 4: zp ZP_DWORD:231 [ mulf16s::return#3 ] 4: zp ZP_DWORD:245 [ mulf16s::return#4 ] 4: zp ZP_DWORD:259 [ mulf16s::return#10 ] 4: zp ZP_WORD:287 [ mulf16s::$9 ] 4: zp ZP_WORD:289 [ mulf16s::$16 ] 4: zp ZP_WORD:291 [ mulf16s::$13 ] 4: zp ZP_WORD:293 [ mulf16s::$17 ] 1.67: zp ZP_DWORD:295 [ mulf16s::return#0 ] +Uplift Scope [abs_u16] 16.5: zp ZP_WORD:33 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 ] 4: zp ZP_WORD:145 [ abs_u16::return#0 ] 4: zp ZP_WORD:149 [ abs_u16::return#1 ] 4: zp ZP_BYTE:170 [ abs_u16::$0 ] 4: zp ZP_BYTE:171 [ abs_u16::$1 ] +Uplift Scope [sgn_u16] 14: zp ZP_WORD:29 [ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] 4: zp ZP_WORD:153 [ sgn_u16::return#0 ] 4: zp ZP_WORD:157 [ sgn_u16::return#1 ] 4: zp ZP_BYTE:168 [ sgn_u16::$0 ] 4: zp ZP_BYTE:169 [ sgn_u16::$1 ] 1: zp ZP_WORD:31 [ sgn_u16::return#4 ] +Uplift Scope [mulf16u] 4: zp ZP_DWORD:283 [ mulf16u::return#2 ] 2: zp ZP_WORD:279 [ mulf16u::a#0 ] 2: zp ZP_WORD:281 [ mulf16u::b#0 ] 1.33: zp ZP_DWORD:299 [ mulf16u::return#0 ] +Uplift Scope [SplineVector16] +Uplift Scope [SplineVector32] +Uplift Scope [bitmap_clear] +Uplift Scope [RADIX] +Uplift Scope [Segment] +Uplift Scope [Segment::SegmentType] +Uplift Scope [] + +Uplifting [bitmap_line] best 853271 combination zp ZP_WORD:20 [ bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] zp ZP_WORD:22 [ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 ] zp ZP_WORD:18 [ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] zp ZP_WORD:24 [ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] zp ZP_WORD:16 [ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] zp ZP_WORD:14 [ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] zp ZP_WORD:151 [ bitmap_line::dy#0 ] zp ZP_WORD:159 [ bitmap_line::sy#0 ] zp ZP_WORD:147 [ bitmap_line::dx#0 ] zp ZP_WORD:155 [ bitmap_line::sx#0 ] +Uplifting [spline_8segB] best 836271 combination zp ZP_WORD:200 [ spline_8segB::$22 ] zp ZP_WORD:204 [ spline_8segB::$24 ] reg byte y [ spline_8segB::n#2 spline_8segB::n#1 ] reg byte x [ spline_8segB::$31 ] zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 ] zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 ] zp ZP_WORD:35 [ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 ] zp ZP_WORD:206 [ spline_8segB::$25 ] zp ZP_WORD:37 [ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 ] zp ZP_WORD:202 [ spline_8segB::$23 ] zp ZP_WORD:198 [ spline_8segB::j_y#0 ] zp ZP_WORD:196 [ spline_8segB::j_x#0 ] zp ZP_WORD:139 [ spline_8segB::p2_x#0 ] zp ZP_WORD:141 [ spline_8segB::p2_y#0 ] zp ZP_WORD:135 [ spline_8segB::p1_x#0 ] zp ZP_WORD:137 [ spline_8segB::p1_y#0 ] zp ZP_WORD:131 [ spline_8segB::p0_x#0 ] zp ZP_WORD:133 [ spline_8segB::p0_y#0 ] zp ZP_WORD:172 [ spline_8segB::$0 ] zp ZP_WORD:174 [ spline_8segB::$1 ] zp ZP_WORD:178 [ spline_8segB::$3 ] zp ZP_WORD:180 [ spline_8segB::$4 ] zp ZP_WORD:184 [ spline_8segB::$6 ] zp ZP_WORD:188 [ spline_8segB::$8 ] zp ZP_WORD:192 [ spline_8segB::$10 ] zp ZP_WORD:194 [ spline_8segB::$12 ] zp ZP_WORD:209 [ spline_8segB::$18 ] zp ZP_WORD:213 [ spline_8segB::$20 ] zp ZP_WORD:215 [ spline_8segB::$21 ] zp ZP_WORD:186 [ spline_8segB::b_x#0 ] zp ZP_WORD:190 [ spline_8segB::b_y#0 ] zp ZP_WORD:211 [ spline_8segB::$19 ] zp ZP_WORD:182 [ spline_8segB::a_y#0 ] zp ZP_WORD:176 [ spline_8segB::a_x#0 ] +Uplifting [bitmap_plot] best 834262 combination zp ZP_WORD:27 [ bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] reg byte x [ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] zp ZP_WORD:163 [ bitmap_plot::$1 ] reg byte a [ bitmap_plot::$2 ] zp ZP_WORD:165 [ bitmap_plot::plotter#1 ] zp ZP_WORD:161 [ bitmap_plot::plotter#0 ] +Uplifting [bitmap_plot_spline_8seg] best 820262 combination zp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] zp ZP_WORD:9 [ bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] reg byte x [ bitmap_plot_spline_8seg::$9 ] zp ZP_WORD:11 [ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] reg byte x [ bitmap_plot_spline_8seg::$8 ] +Uplifting [show_letter] best 818062 combination zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 ] reg byte a [ show_letter::$32 ] reg byte a [ show_letter::$34 ] reg byte a [ show_letter::$36 ] reg byte a [ show_letter::$22 ] zp ZP_BYTE:85 [ show_letter::$20 ] zp ZP_BYTE:107 [ show_letter::$21 ] zp ZP_BYTE:130 [ show_letter::segment_type#0 ] zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 ] zp ZP_WORD:86 [ show_letter::to_x#0 ] zp ZP_WORD:88 [ show_letter::to_y#0 ] zp ZP_WORD:90 [ show_letter::to_x#1 ] zp ZP_WORD:92 [ show_letter::to_y#1 ] zp ZP_WORD:98 [ show_letter::to_x#2 ] zp ZP_WORD:100 [ show_letter::to_y#2 ] zp ZP_WORD:108 [ show_letter::via_x#0 ] zp ZP_WORD:110 [ show_letter::via_y#0 ] zp ZP_WORD:112 [ show_letter::via_x#1 ] zp ZP_WORD:114 [ show_letter::via_y#1 ] zp ZP_WORD:120 [ show_letter::via_x#2 ] zp ZP_WORD:122 [ show_letter::via_y#2 ] zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] zp ZP_WORD:124 [ show_letter::segment_via_x#0 ] zp ZP_WORD:126 [ show_letter::segment_via_y#0 ] zp ZP_WORD:102 [ show_letter::current_x#10 ] zp ZP_WORD:104 [ show_letter::current_y#10 ] zp ZP_BYTE:83 [ show_letter::angle#0 ] +Limited combination testing to 100 combinations of 9216 possible. +Uplifting [rotate] best 817444 combination reg byte y [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 ] zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 ] zp ZP_WORD:94 [ rotate::return_x#0 ] zp ZP_WORD:96 [ rotate::return_y#0 ] zp ZP_WORD:116 [ rotate::return_x#1 ] zp ZP_WORD:118 [ rotate::return_y#1 ] zp ZP_WORD:274 [ rotate::return_x#2 ] zp ZP_WORD:277 [ rotate::return_y#2 ] zp ZP_WORD:227 [ rotate::$2 ] zp ZP_WORD:239 [ rotate::$5 ] zp ZP_WORD:253 [ rotate::$9 ] zp ZP_WORD:255 [ rotate::$10 ] zp ZP_WORD:267 [ rotate::$12 ] zp ZP_WORD:269 [ rotate::$13 ] zp ZP_DWORD:223 [ rotate::$1 ] zp ZP_DWORD:235 [ rotate::$4 ] zp ZP_DWORD:249 [ rotate::$8 ] zp ZP_DWORD:263 [ rotate::$11 ] reg byte a [ rotate::$15 ] reg byte a [ rotate::$18 ] zp ZP_WORD:271 [ rotate::yr#1 ] zp ZP_WORD:217 [ rotate::cos_a#0 ] zp ZP_WORD:243 [ rotate::sin_a#0 ] zp ZP_WORD:257 [ rotate::xr#1 ] zp ZP_WORD:229 [ rotate::xr#0 ] zp ZP_WORD:241 [ rotate::yr#0 ] +Uplifting [memset] best 817338 combination zp ZP_WORD:62 [ memset::dst#2 memset::dst#3 memset::dst#1 ] zp ZP_WORD:303 [ memset::end#0 ] reg byte x [ memset::c#3 ] zp ZP_WORD:57 [ memset::num#2 ] zp ZP_WORD:59 [ memset::str#3 ] +Uplifting [mulf_init] best 817088 combination zp ZP_WORD:75 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] reg byte x [ mulf_init::c#2 mulf_init::c#1 ] zp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] reg byte a [ mulf_init::$7 ] reg byte a [ mulf_init::$10 ] reg byte a [ mulf_init::$11 ] zp ZP_WORD:78 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] zp ZP_WORD:70 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] zp ZP_BYTE:77 [ mulf_init::x_255#2 mulf_init::x_255#1 ] zp ZP_WORD:80 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] zp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] zp ZP_WORD:72 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Limited combination testing to 100 combinations of 1024 possible. +Uplifting [main] best 813488 combination reg byte x [ main::w#4 main::w#1 ] zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Uplifting [bitmap_init] best 812978 combination zp ZP_WORD:67 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] reg byte a [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] reg byte x [ bitmap_init::x#2 bitmap_init::x#1 ] reg byte x [ bitmap_init::y#2 bitmap_init::y#1 ] reg byte a [ bitmap_init::$4 ] zp ZP_BYTE:307 [ bitmap_init::$5 ] zp ZP_BYTE:308 [ bitmap_init::$6 ] zp ZP_BYTE:305 [ bitmap_init::$7 ] +Limited combination testing to 100 combinations of 15360 possible. +Uplifting [mulf16s] best 812978 combination zp ZP_WORD:51 [ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 ] zp ZP_WORD:49 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 ] zp ZP_DWORD:219 [ mulf16s::return#2 ] zp ZP_DWORD:231 [ mulf16s::return#3 ] zp ZP_DWORD:245 [ mulf16s::return#4 ] zp ZP_DWORD:259 [ mulf16s::return#10 ] zp ZP_WORD:287 [ mulf16s::$9 ] zp ZP_WORD:289 [ mulf16s::$16 ] zp ZP_WORD:291 [ mulf16s::$13 ] zp ZP_WORD:293 [ mulf16s::$17 ] zp ZP_DWORD:295 [ mulf16s::return#0 ] +Uplifting [abs_u16] best 812966 combination zp ZP_WORD:33 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 ] zp ZP_WORD:145 [ abs_u16::return#0 ] zp ZP_WORD:149 [ abs_u16::return#1 ] reg byte a [ abs_u16::$0 ] reg byte a [ abs_u16::$1 ] +Uplifting [sgn_u16] best 812954 combination zp ZP_WORD:29 [ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] zp ZP_WORD:153 [ sgn_u16::return#0 ] zp ZP_WORD:157 [ sgn_u16::return#1 ] reg byte a [ sgn_u16::$0 ] reg byte a [ sgn_u16::$1 ] zp ZP_WORD:31 [ sgn_u16::return#4 ] +Uplifting [mulf16u] best 812954 combination zp ZP_DWORD:283 [ mulf16u::return#2 ] zp ZP_WORD:279 [ mulf16u::a#0 ] zp ZP_WORD:281 [ mulf16u::b#0 ] zp ZP_DWORD:299 [ mulf16u::return#0 ] +Uplifting [SplineVector16] best 812954 combination +Uplifting [SplineVector32] best 812954 combination +Uplifting [bitmap_clear] best 812954 combination +Uplifting [RADIX] best 812954 combination +Uplifting [Segment] best 812954 combination +Uplifting [Segment::SegmentType] best 812954 combination +Uplifting [] best 812954 combination +Attempting to uplift remaining variables inzp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +Uplifting [bitmap_plot_spline_8seg] best 812954 combination zp ZP_BYTE:13 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:85 [ show_letter::$20 ] +Uplifting [show_letter] best 812254 combination reg byte x [ show_letter::$20 ] +Attempting to uplift remaining variables inzp ZP_BYTE:107 [ show_letter::$21 ] +Uplifting [show_letter] best 811554 combination reg byte x [ show_letter::$21 ] +Attempting to uplift remaining variables inzp ZP_BYTE:130 [ show_letter::segment_type#0 ] +Uplifting [show_letter] best 810654 combination reg byte a [ show_letter::segment_type#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] +Uplifting [show_letter] best 810654 combination zp ZP_BYTE:4 [ show_letter::i#10 show_letter::i#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Uplifting [main] best 810654 combination zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Uplifting [mulf_init] best 810654 combination zp ZP_BYTE:74 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:307 [ bitmap_init::$5 ] +Uplifting [bitmap_init] best 810594 combination reg byte a [ bitmap_init::$5 ] +Attempting to uplift remaining variables inzp ZP_BYTE:308 [ bitmap_init::$6 ] +Uplifting [bitmap_init] best 810534 combination reg byte a [ bitmap_init::$6 ] +Attempting to uplift remaining variables inzp ZP_BYTE:77 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Uplifting [mulf_init] best 810394 combination reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] +Uplifting [mulf_init] best 810394 combination zp ZP_BYTE:82 [ mulf_init::dir#2 mulf_init::dir#3 ] +Attempting to uplift remaining variables inzp ZP_BYTE:305 [ bitmap_init::$7 ] +Uplifting [bitmap_init] best 810394 combination zp ZP_BYTE:305 [ bitmap_init::$7 ] +Attempting to uplift remaining variables inzp ZP_BYTE:83 [ show_letter::angle#0 ] +Uplifting [show_letter] best 810394 combination zp ZP_BYTE:83 [ show_letter::angle#0 ] +Coalescing zero page register with common assignment [ zp ZP_WORD:22 [ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 ] ] with [ zp ZP_WORD:27 [ bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] ] - score: 4 +Coalescing zero page register with common assignment [ zp ZP_WORD:49 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 ] ] with [ zp ZP_WORD:217 [ rotate::cos_a#0 ] ] - score: 2 +Coalescing zero page register with common assignment [ zp ZP_WORD:49 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 rotate::cos_a#0 ] ] with [ zp ZP_WORD:243 [ rotate::sin_a#0 ] ] - score: 2 +Coalescing zero page register with common assignment [ zp ZP_BYTE:2 [ main::angle#2 main::angle#1 ] ] with [ zp ZP_BYTE:83 [ show_letter::angle#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 ] ] with [ zp ZP_WORD:22 [ bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 ] ] with [ zp ZP_WORD:131 [ spline_8segB::p0_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 ] ] with [ zp ZP_WORD:20 [ bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 ] ] with [ zp ZP_WORD:133 [ spline_8segB::p0_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:31 [ sgn_u16::return#4 ] ] with [ zp ZP_WORD:153 [ sgn_u16::return#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:31 [ sgn_u16::return#4 sgn_u16::return#0 ] ] with [ zp ZP_WORD:157 [ sgn_u16::return#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:33 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 ] ] with [ zp ZP_WORD:145 [ abs_u16::return#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:33 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 abs_u16::return#0 ] ] with [ zp ZP_WORD:149 [ abs_u16::return#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:35 [ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 ] ] with [ zp ZP_WORD:209 [ spline_8segB::$18 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:37 [ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 ] ] with [ zp ZP_WORD:213 [ spline_8segB::$20 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 ] ] with [ zp ZP_WORD:192 [ spline_8segB::$10 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 ] ] with [ zp ZP_WORD:194 [ spline_8segB::$12 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 ] ] with [ zp ZP_WORD:90 [ show_letter::to_x#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 show_letter::to_x#1 ] ] with [ zp ZP_WORD:112 [ show_letter::via_x#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 ] ] with [ zp ZP_WORD:92 [ show_letter::to_y#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 show_letter::to_y#1 ] ] with [ zp ZP_WORD:114 [ show_letter::via_y#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 ] ] with [ zp ZP_DWORD:283 [ mulf16u::return#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 ] ] with [ zp ZP_DWORD:295 [ mulf16s::return#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:57 [ memset::num#2 ] ] with [ zp ZP_WORD:303 [ memset::end#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:59 [ memset::str#3 ] ] with [ zp ZP_WORD:62 [ memset::dst#2 memset::dst#3 memset::dst#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:94 [ rotate::return_x#0 ] ] with [ zp ZP_WORD:98 [ show_letter::to_x#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:94 [ rotate::return_x#0 show_letter::to_x#2 ] ] with [ zp ZP_WORD:274 [ rotate::return_x#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:96 [ rotate::return_y#0 ] ] with [ zp ZP_WORD:100 [ show_letter::to_y#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:96 [ rotate::return_y#0 show_letter::to_y#2 ] ] with [ zp ZP_WORD:277 [ rotate::return_y#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:102 [ show_letter::current_x#10 ] ] with [ zp ZP_WORD:139 [ spline_8segB::p2_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:104 [ show_letter::current_y#10 ] ] with [ zp ZP_WORD:141 [ spline_8segB::p2_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:116 [ rotate::return_x#1 ] ] with [ zp ZP_WORD:120 [ show_letter::via_x#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:118 [ rotate::return_y#1 ] ] with [ zp ZP_WORD:122 [ show_letter::via_y#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:124 [ show_letter::segment_via_x#0 ] ] with [ zp ZP_WORD:135 [ spline_8segB::p1_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:126 [ show_letter::segment_via_y#0 ] ] with [ zp ZP_WORD:137 [ spline_8segB::p1_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:161 [ bitmap_plot::plotter#0 ] ] with [ zp ZP_WORD:165 [ bitmap_plot::plotter#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:172 [ spline_8segB::$0 ] ] with [ zp ZP_WORD:174 [ spline_8segB::$1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:176 [ spline_8segB::a_x#0 ] ] with [ zp ZP_WORD:196 [ spline_8segB::j_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:178 [ spline_8segB::$3 ] ] with [ zp ZP_WORD:180 [ spline_8segB::$4 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:182 [ spline_8segB::a_y#0 ] ] with [ zp ZP_WORD:198 [ spline_8segB::j_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:184 [ spline_8segB::$6 ] ] with [ zp ZP_WORD:186 [ spline_8segB::b_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:188 [ spline_8segB::$8 ] ] with [ zp ZP_WORD:190 [ spline_8segB::b_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:200 [ spline_8segB::$22 ] ] with [ zp ZP_WORD:202 [ spline_8segB::$23 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:204 [ spline_8segB::$24 ] ] with [ zp ZP_WORD:206 [ spline_8segB::$25 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:219 [ mulf16s::return#2 ] ] with [ zp ZP_DWORD:223 [ rotate::$1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:227 [ rotate::$2 ] ] with [ zp ZP_WORD:229 [ rotate::xr#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:231 [ mulf16s::return#3 ] ] with [ zp ZP_DWORD:235 [ rotate::$4 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:239 [ rotate::$5 ] ] with [ zp ZP_WORD:241 [ rotate::yr#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:245 [ mulf16s::return#4 ] ] with [ zp ZP_DWORD:249 [ rotate::$8 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:253 [ rotate::$9 ] ] with [ zp ZP_WORD:255 [ rotate::$10 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:259 [ mulf16s::return#10 ] ] with [ zp ZP_DWORD:263 [ rotate::$11 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:267 [ rotate::$12 ] ] with [ zp ZP_WORD:269 [ rotate::$13 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:287 [ mulf16s::$9 ] ] with [ zp ZP_WORD:289 [ mulf16s::$16 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:291 [ mulf16s::$13 ] ] with [ zp ZP_WORD:293 [ mulf16s::$17 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 spline_8segB::p0_x#0 ] ] with [ zp ZP_WORD:9 [ bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 spline_8segB::p0_x#0 bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 ] ] with [ zp ZP_WORD:35 [ spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 spline_8segB::$18 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 spline_8segB::p0_y#0 ] ] with [ zp ZP_WORD:11 [ bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 spline_8segB::p0_y#0 bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 ] ] with [ zp ZP_WORD:37 [ spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 spline_8segB::$20 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:31 [ sgn_u16::return#4 sgn_u16::return#0 sgn_u16::return#1 ] ] with [ zp ZP_WORD:159 [ bitmap_line::sy#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:33 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 abs_u16::return#0 abs_u16::return#1 ] ] with [ zp ZP_WORD:151 [ bitmap_line::dy#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 spline_8segB::$10 ] ] with [ zp ZP_WORD:184 [ spline_8segB::$6 spline_8segB::b_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 spline_8segB::$12 ] ] with [ zp ZP_WORD:188 [ spline_8segB::$8 spline_8segB::b_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 show_letter::to_x#1 show_letter::via_x#1 ] ] with [ zp ZP_WORD:86 [ show_letter::to_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:45 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 show_letter::to_x#1 show_letter::via_x#1 show_letter::to_x#0 ] ] with [ zp ZP_WORD:108 [ show_letter::via_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 show_letter::to_y#1 show_letter::via_y#1 ] ] with [ zp ZP_WORD:88 [ show_letter::to_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:47 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 show_letter::to_y#1 show_letter::via_y#1 show_letter::to_y#0 ] ] with [ zp ZP_WORD:110 [ show_letter::via_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 ] ] with [ zp ZP_DWORD:219 [ mulf16s::return#2 rotate::$1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 mulf16s::return#2 rotate::$1 ] ] with [ zp ZP_DWORD:231 [ mulf16s::return#3 rotate::$4 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 mulf16s::return#2 rotate::$1 mulf16s::return#3 rotate::$4 ] ] with [ zp ZP_DWORD:245 [ mulf16s::return#4 rotate::$8 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 mulf16s::return#2 rotate::$1 mulf16s::return#3 rotate::$4 mulf16s::return#4 rotate::$8 ] ] with [ zp ZP_DWORD:259 [ mulf16s::return#10 rotate::$11 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:53 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 mulf16s::return#2 rotate::$1 mulf16s::return#3 rotate::$4 mulf16s::return#4 rotate::$8 mulf16s::return#10 rotate::$11 ] ] with [ zp ZP_DWORD:299 [ mulf16u::return#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:94 [ rotate::return_x#0 show_letter::to_x#2 rotate::return_x#2 ] ] with [ zp ZP_WORD:116 [ rotate::return_x#1 show_letter::via_x#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:96 [ rotate::return_y#0 show_letter::to_y#2 rotate::return_y#2 ] ] with [ zp ZP_WORD:118 [ rotate::return_y#1 show_letter::via_y#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:172 [ spline_8segB::$0 spline_8segB::$1 ] ] with [ zp ZP_WORD:176 [ spline_8segB::a_x#0 spline_8segB::j_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:178 [ spline_8segB::$3 spline_8segB::$4 ] ] with [ zp ZP_WORD:182 [ spline_8segB::a_y#0 spline_8segB::j_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:227 [ rotate::$2 rotate::xr#0 ] ] with [ zp ZP_WORD:257 [ rotate::xr#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:239 [ rotate::$5 rotate::yr#0 ] ] with [ zp ZP_WORD:271 [ rotate::yr#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:5 [ show_letter::current_x#4 show_letter::current_x#11 bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 spline_8segB::p0_x#0 bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 spline_8segB::$18 ] ] with [ zp ZP_WORD:211 [ spline_8segB::$19 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:7 [ show_letter::current_y#4 show_letter::current_y#11 bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 spline_8segB::p0_y#0 bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 spline_8segB::$20 ] ] with [ zp ZP_WORD:215 [ spline_8segB::$21 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 spline_8segB::$10 spline_8segB::$6 spline_8segB::b_x#0 ] ] with [ zp ZP_WORD:124 [ show_letter::segment_via_x#0 spline_8segB::p1_x#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 spline_8segB::$12 spline_8segB::$8 spline_8segB::b_y#0 ] ] with [ zp ZP_WORD:126 [ show_letter::segment_via_y#0 spline_8segB::p1_y#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:40 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 spline_8segB::$10 spline_8segB::$6 spline_8segB::b_x#0 show_letter::segment_via_x#0 spline_8segB::p1_x#0 ] ] with [ zp ZP_WORD:94 [ rotate::return_x#0 show_letter::to_x#2 rotate::return_x#2 rotate::return_x#1 show_letter::via_x#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:42 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 spline_8segB::$12 spline_8segB::$8 spline_8segB::b_y#0 show_letter::segment_via_y#0 spline_8segB::p1_y#0 ] ] with [ zp ZP_WORD:96 [ rotate::return_y#0 show_letter::to_y#2 rotate::return_y#2 rotate::return_y#1 show_letter::via_y#2 ] ] - score: 1 +Allocated (was zp ZP_BYTE:4) zp ZP_BYTE:3 [ show_letter::i#10 show_letter::i#1 ] +Allocated (was zp ZP_WORD:5) zp ZP_WORD:4 [ show_letter::current_x#4 show_letter::current_x#11 bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 spline_8segB::p0_x#0 bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 spline_8segB::$18 spline_8segB::$19 ] +Allocated (was zp ZP_WORD:7) zp ZP_WORD:6 [ show_letter::current_y#4 show_letter::current_y#11 bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 spline_8segB::p0_y#0 bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 spline_8segB::$20 spline_8segB::$21 ] +Allocated (was zp ZP_BYTE:13) zp ZP_BYTE:8 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +Allocated (was zp ZP_WORD:14) zp ZP_WORD:9 [ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] +Allocated (was zp ZP_WORD:16) zp ZP_WORD:11 [ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] +Allocated (was zp ZP_WORD:18) zp ZP_WORD:13 [ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] +Allocated (was zp ZP_WORD:24) zp ZP_WORD:15 [ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] +Allocated (was zp ZP_WORD:29) zp ZP_WORD:17 [ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] +Allocated (was zp ZP_WORD:31) zp ZP_WORD:19 [ sgn_u16::return#4 sgn_u16::return#0 sgn_u16::return#1 bitmap_line::sy#0 ] +Allocated (was zp ZP_WORD:33) zp ZP_WORD:21 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 abs_u16::return#0 abs_u16::return#1 bitmap_line::dy#0 ] +Allocated (was zp ZP_WORD:40) zp ZP_WORD:23 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 spline_8segB::$10 spline_8segB::$6 spline_8segB::b_x#0 show_letter::segment_via_x#0 spline_8segB::p1_x#0 rotate::return_x#0 show_letter::to_x#2 rotate::return_x#2 rotate::return_x#1 show_letter::via_x#2 ] +Allocated (was zp ZP_WORD:42) zp ZP_WORD:25 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 spline_8segB::$12 spline_8segB::$8 spline_8segB::b_y#0 show_letter::segment_via_y#0 spline_8segB::p1_y#0 rotate::return_y#0 show_letter::to_y#2 rotate::return_y#2 rotate::return_y#1 show_letter::via_y#2 ] +Allocated (was zp ZP_WORD:45) zp ZP_WORD:27 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 show_letter::to_x#1 show_letter::via_x#1 show_letter::to_x#0 show_letter::via_x#0 ] +Allocated (was zp ZP_WORD:47) zp ZP_WORD:29 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 show_letter::to_y#1 show_letter::via_y#1 show_letter::to_y#0 show_letter::via_y#0 ] +Allocated (was zp ZP_WORD:49) zp ZP_WORD:31 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 rotate::cos_a#0 rotate::sin_a#0 ] +Allocated (was zp ZP_WORD:51) zp ZP_WORD:33 [ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] +Allocated (was zp ZP_DWORD:53) zp ZP_DWORD:35 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 mulf16s::return#2 rotate::$1 mulf16s::return#3 rotate::$4 mulf16s::return#4 rotate::$8 mulf16s::return#10 rotate::$11 mulf16u::return#0 ] +Allocated (was zp ZP_WORD:57) zp ZP_WORD:39 [ memset::num#2 memset::end#0 ] +Allocated (was zp ZP_WORD:59) zp ZP_WORD:41 [ memset::str#3 memset::dst#2 memset::dst#3 memset::dst#1 ] +Allocated (was zp ZP_WORD:67) zp ZP_WORD:43 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +Allocated (was zp ZP_WORD:70) zp ZP_WORD:45 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +Allocated (was zp ZP_WORD:72) zp ZP_WORD:47 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Allocated (was zp ZP_BYTE:74) zp ZP_BYTE:49 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Allocated (was zp ZP_WORD:75) zp ZP_WORD:50 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +Allocated (was zp ZP_WORD:78) zp ZP_WORD:52 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +Allocated (was zp ZP_WORD:80) zp ZP_WORD:54 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +Allocated (was zp ZP_BYTE:82) zp ZP_BYTE:56 [ mulf_init::dir#2 mulf_init::dir#3 ] +Allocated (was zp ZP_WORD:102) zp ZP_WORD:57 [ show_letter::current_x#10 spline_8segB::p2_x#0 ] +Allocated (was zp ZP_WORD:104) zp ZP_WORD:59 [ show_letter::current_y#10 spline_8segB::p2_y#0 ] +Allocated (was zp ZP_WORD:147) zp ZP_WORD:61 [ bitmap_line::dx#0 ] +Allocated (was zp ZP_WORD:155) zp ZP_WORD:63 [ bitmap_line::sx#0 ] +Allocated (was zp ZP_WORD:161) zp ZP_WORD:65 [ bitmap_plot::plotter#0 bitmap_plot::plotter#1 ] +Allocated (was zp ZP_WORD:163) zp ZP_WORD:67 [ bitmap_plot::$1 ] +Allocated (was zp ZP_WORD:172) zp ZP_WORD:69 [ spline_8segB::$0 spline_8segB::$1 spline_8segB::a_x#0 spline_8segB::j_x#0 ] +Allocated (was zp ZP_WORD:178) zp ZP_WORD:71 [ spline_8segB::$3 spline_8segB::$4 spline_8segB::a_y#0 spline_8segB::j_y#0 ] +Allocated (was zp ZP_WORD:200) zp ZP_WORD:73 [ spline_8segB::$22 spline_8segB::$23 ] +Allocated (was zp ZP_WORD:204) zp ZP_WORD:75 [ spline_8segB::$24 spline_8segB::$25 ] +Allocated (was zp ZP_WORD:227) zp ZP_WORD:77 [ rotate::$2 rotate::xr#0 rotate::xr#1 ] +Allocated (was zp ZP_WORD:239) zp ZP_WORD:79 [ rotate::$5 rotate::yr#0 rotate::yr#1 ] +Allocated (was zp ZP_WORD:253) zp ZP_WORD:81 [ rotate::$9 rotate::$10 ] +Allocated (was zp ZP_WORD:267) zp ZP_WORD:83 [ rotate::$12 rotate::$13 ] +Allocated (was zp ZP_WORD:279) zp ZP_WORD:85 [ mulf16u::a#0 ] +Allocated (was zp ZP_WORD:281) zp ZP_WORD:87 [ mulf16u::b#0 ] +Allocated (was zp ZP_WORD:287) zp ZP_WORD:89 [ mulf16s::$9 mulf16s::$16 ] +Allocated (was zp ZP_WORD:291) zp ZP_WORD:91 [ mulf16s::$13 mulf16s::$17 ] +Allocated (was zp ZP_BYTE:305) zp ZP_BYTE:93 [ bitmap_init::$7 ] + +ASSEMBLER BEFORE OPTIMIZATION + // File Comments +// Show a few simple splines using the splines library + // Basic Upstart +.pc = $801 "Basic" +:BasicUpstart(bbegin) +.pc = $80d "Program" + // Global Constants & labels + .const MOVE_TO = 0 + .const SPLINE_TO = 1 + .const LINE_TO = 2 + .const SIZEOF_STRUCT_SPLINEVECTOR16 = 4 + .const SIZEOF_STRUCT_SEGMENT = 9 + .const OFFSET_STRUCT_SPLINEVECTOR16_Y = 2 + .const OFFSET_STRUCT_SEGMENT_TO = 1 + .const OFFSET_STRUCT_SEGMENT_VIA = 5 + .label RASTER = $d012 + .label D011 = $d011 + .const VIC_BMM = $20 + .const VIC_DEN = $10 + .const VIC_RSEL = 8 + .label D018 = $d018 + // CIA#2 Port A: Serial bus, RS-232, VIC memory bank + .label CIA2_PORT_A = $dd00 + // CIA #2 Port A data direction register. + .label CIA2_PORT_A_DDR = $dd02 + .const WHITE = 1 + .label BITMAP_SCREEN = $5c00 + .label BITMAP_GRAPHICS = $6000 + .label COS = SIN+$40 + // @begin +bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +b1_from_bbegin: + jmp b1 + // @1 +b1: + // [2] call main + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +bend_from_b1: + jmp bend + // @end +bend: + // main +main: { + .const vicSelectGfxBank1_toDd001_return = 3^(>BITMAP_SCREEN)/$40 + .const toD0181_return = (>(BITMAP_SCREEN&$3fff)*4)|(>BITMAP_GRAPHICS)/4&$f + .label angle = 2 + // [4] *((byte*)(const struct Segment[$16]) letter_c#0) ← (const byte) MOVE_TO -- _deref_pbuc1=vbuc2 + lda #MOVE_TO + sta letter_c + // [5] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO) ← (signed byte) $6c -- _deref_pwsc1=vwsc2 + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1 + // [6] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed word) $92 -- _deref_pwsc1=vwsc2 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + // [7] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1 + // [8] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + // [9] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+1*SIZEOF_STRUCT_SEGMENT + // [10] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $59 -- _deref_pwsc1=vwsc2 + lda #<$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT + lda #>$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT+1 + // [11] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b6 -- _deref_pwsc1=vwsc2 + lda #<$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + // [12] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 -- _deref_pwsc1=vwsc2 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT+1 + // [13] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a9 -- _deref_pwsc1=vwsc2 + lda #<$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + // [14] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+2*SIZEOF_STRUCT_SEGMENT + // [15] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3b -- _deref_pwsc1=vwsc2 + lda #<$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT + lda #>$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT+1 + // [16] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + // [17] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4b -- _deref_pwsc1=vwsc2 + lda #<$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT + lda #>$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT+1 + // [18] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + // [19] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+3*SIZEOF_STRUCT_SEGMENT + // [20] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $17 -- _deref_pwsc1=vwsc2 + lda #<$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT + lda #>$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT+1 + // [21] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b2 -- _deref_pwsc1=vwsc2 + lda #<$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + // [22] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $26 -- _deref_pwsc1=vwsc2 + lda #<$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT + lda #>$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT+1 + // [23] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + // [24] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+4*SIZEOF_STRUCT_SEGMENT + // [25] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT+1 + // [26] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $84 -- _deref_pwsc1=vwsc2 + lda #<$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + // [27] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT+1 + // [28] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a1 -- _deref_pwsc1=vwsc2 + lda #<$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + // [29] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+5*SIZEOF_STRUCT_SEGMENT + // [30] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $19 -- _deref_pwsc1=vwsc2 + lda #<$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT + lda #>$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT+1 + // [31] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $57 -- _deref_pwsc1=vwsc2 + lda #<$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + // [32] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT+1 + // [33] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + // [34] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+6*SIZEOF_STRUCT_SEGMENT + // [35] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $41 -- _deref_pwsc1=vwsc2 + lda #<$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT + lda #>$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT+1 + // [36] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + // [37] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $2a -- _deref_pwsc1=vwsc2 + lda #<$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT + lda #>$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT+1 + // [38] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + // [39] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+7*SIZEOF_STRUCT_SEGMENT + // [40] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT+1 + // [41] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f -- _deref_pwsc1=vwsc2 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + // [42] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 -- _deref_pwsc1=vwsc2 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT+1 + // [43] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + // [44] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+8*SIZEOF_STRUCT_SEGMENT + // [45] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT+1 + // [46] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + // [47] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT+1 + // [48] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 -- _deref_pwsc1=vwsc2 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + // [49] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+9*SIZEOF_STRUCT_SEGMENT + // [50] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $66 -- _deref_pwsc1=vwsc2 + lda #<$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT + lda #>$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT+1 + // [51] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6a -- _deref_pwsc1=vwsc2 + lda #<$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + // [52] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT+1 + // [53] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 -- _deref_pwsc1=vwsc2 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + // [54] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$a*SIZEOF_STRUCT_SEGMENT + // [55] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT+1 + // [56] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + // [57] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT+1 + // [58] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + // [59] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$b*SIZEOF_STRUCT_SEGMENT + // [60] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $51 -- _deref_pwsc1=vwsc2 + lda #<$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT + lda #>$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT+1 + // [61] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + // [62] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $55 -- _deref_pwsc1=vwsc2 + lda #<$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT + lda #>$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT+1 + // [63] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + // [64] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$c*SIZEOF_STRUCT_SEGMENT + // [65] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT+1 + // [66] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + // [67] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f -- _deref_pwsc1=vwsc2 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT+1 + // [68] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $65 -- _deref_pwsc1=vwsc2 + lda #<$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + // [69] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$d*SIZEOF_STRUCT_SEGMENT + // [70] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $49 -- _deref_pwsc1=vwsc2 + lda #<$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT + lda #>$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT+1 + // [71] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 -- _deref_pwsc1=vwsc2 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + // [72] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT+1 + // [73] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $56 -- _deref_pwsc1=vwsc2 + lda #<$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + // [74] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$e*SIZEOF_STRUCT_SEGMENT + // [75] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3d -- _deref_pwsc1=vwsc2 + lda #<$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT + lda #>$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT+1 + // [76] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + // [77] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT+1 + // [78] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + // [79] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$f*SIZEOF_STRUCT_SEGMENT + // [80] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 -- _deref_pwsc1=vwsc2 + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT+1 + // [81] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 -- _deref_pwsc1=vwsc2 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + // [82] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $30 -- _deref_pwsc1=vwsc2 + lda #<$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT + lda #>$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT+1 + // [83] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + // [84] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$10*SIZEOF_STRUCT_SEGMENT + // [85] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT+1 + // [86] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $79 -- _deref_pwsc1=vwsc2 + lda #<$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + // [87] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT+1 + // [88] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $64 -- _deref_pwsc1=vwsc2 + lda #<$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + // [89] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$11*SIZEOF_STRUCT_SEGMENT + // [90] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 -- _deref_pwsc1=vwsc2 + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT+1 + // [91] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $9e -- _deref_pwsc1=vwsc2 + lda #<$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + // [92] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT+1 + // [93] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $8e -- _deref_pwsc1=vwsc2 + lda #<$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + // [94] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$12*SIZEOF_STRUCT_SEGMENT + // [95] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $44 -- _deref_pwsc1=vwsc2 + lda #<$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT + lda #>$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT+1 + // [96] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + // [97] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $32 -- _deref_pwsc1=vwsc2 + lda #<$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT + lda #>$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT+1 + // [98] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + // [99] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$13*SIZEOF_STRUCT_SEGMENT + // [100] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5b -- _deref_pwsc1=vwsc2 + lda #<$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT + lda #>$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT+1 + // [101] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a6 -- _deref_pwsc1=vwsc2 + lda #<$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + // [102] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $50 -- _deref_pwsc1=vwsc2 + lda #<$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT + lda #>$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT+1 + // [103] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + // [104] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$14*SIZEOF_STRUCT_SEGMENT + // [105] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT+1 + // [106] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $90 -- _deref_pwsc1=vwsc2 + lda #<$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + // [107] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT+1 + // [108] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a0 -- _deref_pwsc1=vwsc2 + lda #<$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + // [109] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) LINE_TO -- _deref_pbuc1=vbuc2 + lda #LINE_TO + sta letter_c+$15*SIZEOF_STRUCT_SEGMENT + // [110] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6c -- _deref_pwsc1=vwsc2 + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT+1 + // [111] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $92 -- _deref_pwsc1=vwsc2 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + // [112] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT+1 + // [113] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + lda #>0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + // [114] call mulf_init + // [418] phi from main to mulf_init [phi:main->mulf_init] + mulf_init_from_main: + jsr mulf_init + // [115] phi from main to main::@8 [phi:main->main::@8] + b8_from_main: + jmp b8 + // main::@8 + b8: + // [116] call bitmap_init + // [396] phi from main::@8 to bitmap_init [phi:main::@8->bitmap_init] + bitmap_init_from_b8: + jsr bitmap_init + // [117] phi from main::@8 to main::@9 [phi:main::@8->main::@9] + b9_from_b8: + jmp b9 + // main::@9 + b9: + // [118] call bitmap_clear + // [382] phi from main::@9 to bitmap_clear [phi:main::@9->bitmap_clear] + bitmap_clear_from_b9: + jsr bitmap_clear + jmp vicSelectGfxBank1 + // main::vicSelectGfxBank1 + vicSelectGfxBank1: + // [119] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte) 3 -- _deref_pbuc1=vbuc2 + lda #3 + sta CIA2_PORT_A_DDR + // [120] phi from main::vicSelectGfxBank1 to main::vicSelectGfxBank1_toDd001 [phi:main::vicSelectGfxBank1->main::vicSelectGfxBank1_toDd001] + vicSelectGfxBank1_toDd001_from_vicSelectGfxBank1: + jmp vicSelectGfxBank1_toDd001 + // main::vicSelectGfxBank1_toDd001 + vicSelectGfxBank1_toDd001: + jmp vicSelectGfxBank1_b1 + // main::vicSelectGfxBank1_@1 + vicSelectGfxBank1_b1: + // [121] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 -- _deref_pbuc1=vbuc2 + lda #vicSelectGfxBank1_toDd001_return + sta CIA2_PORT_A + // [122] phi from main::vicSelectGfxBank1_@1 to main::toD0181 [phi:main::vicSelectGfxBank1_@1->main::toD0181] + toD0181_from_vicSelectGfxBank1_b1: + jmp toD0181 + // main::toD0181 + toD0181: + jmp b7 + // main::@7 + b7: + // [123] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 -- _deref_pbuc1=vbuc2 + lda #toD0181_return + sta D018 + // [124] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 -- _deref_pbuc1=vbuc2 + lda #VIC_BMM|VIC_DEN|VIC_RSEL|3 + sta D011 + // [125] phi from main::@7 to main::@1 [phi:main::@7->main::@1] + b1_from_b7: + // [125] phi (byte) main::angle#2 = (byte) 0 [phi:main::@7->main::@1#0] -- vbuz1=vbuc1 + lda #0 + sta angle + jmp b1 + // main::@1 + b1: + // [126] phi from main::@1 to main::@2 [phi:main::@1->main::@2] + b2_from_b1: + jmp b2 + // main::@2 + b2: + // [127] call bitmap_clear + // [382] phi from main::@2 to bitmap_clear [phi:main::@2->bitmap_clear] + bitmap_clear_from_b2: + jsr bitmap_clear + jmp b10 + // main::@10 + b10: + // [128] (byte) show_letter::angle#0 ← (byte) main::angle#2 + // [129] call show_letter + // [136] phi from main::@10 to show_letter [phi:main::@10->show_letter] + show_letter_from_b10: + jsr show_letter + // [130] phi from main::@10 to main::@3 [phi:main::@10->main::@3] + b3_from_b10: + // [130] phi (byte) main::w#4 = (byte) 0 [phi:main::@10->main::@3#0] -- vbuxx=vbuc1 + ldx #0 + jmp b3 + // [130] phi from main::@3 to main::@3 [phi:main::@3->main::@3] + b3_from_b3: + jmp b3 + // [130] phi from main::@5 to main::@3 [phi:main::@5->main::@3] + b3_from_b5: + // [130] phi (byte) main::w#4 = (byte) main::w#1 [phi:main::@5->main::@3#0] -- register_copy + jmp b3 + // main::@3 + b3: + // [131] if(*((const byte*) RASTER#0)!=(byte) $fe) goto main::@3 -- _deref_pbuc1_neq_vbuc2_then_la1 + lda #$fe + cmp RASTER + bne b3_from_b3 + jmp b4 + // main::@4 + b4: + // [132] if(*((const byte*) RASTER#0)!=(byte) $ff) goto main::@4 -- _deref_pbuc1_neq_vbuc2_then_la1 + lda #$ff + cmp RASTER + bne b4 + jmp b5 + // main::@5 + b5: + // [133] (byte) main::w#1 ← ++ (byte) main::w#4 -- vbuxx=_inc_vbuxx + inx + // [134] if((byte) main::w#1!=(byte) $3d) goto main::@3 -- vbuxx_neq_vbuc1_then_la1 + cpx #$3d + bne b3_from_b5 + jmp b6 + // main::@6 + b6: + // [135] (byte) main::angle#1 ← (byte) main::angle#2 + (byte) 9 -- vbuz1=vbuz1_plus_vbuc1 + lax angle + axs #-[9] + stx angle + // [125] phi from main::@6 to main::@1 [phi:main::@6->main::@1] + b1_from_b6: + // [125] phi (byte) main::angle#2 = (byte) main::angle#1 [phi:main::@6->main::@1#0] -- register_copy + jmp b1 +} + // show_letter +// show_letter(byte zeropage(2) angle) +show_letter: { + .label angle = 2 + .label to_x = $1b + .label to_y = $1d + .label to_x_2 = $17 + .label to_y_2 = $19 + .label via_x = $1b + .label via_y = $1d + .label via_x_2 = $17 + .label via_y_2 = $19 + .label segment_via_x = $17 + .label segment_via_y = $19 + .label i = 3 + .label current_x = 4 + .label current_y = 6 + .label current_x_10 = $39 + .label current_y_10 = $3b + // [137] phi from show_letter to show_letter::@1 [phi:show_letter->show_letter::@1] + b1_from_show_letter: + // [137] phi (signed word) show_letter::current_y#4 = (signed byte) 0 [phi:show_letter->show_letter::@1#0] -- vwsz1=vbsc1 + lda #<0 + sta current_y + lda #>0 + sta current_y+1 + // [137] phi (signed word) show_letter::current_x#4 = (signed byte) 0 [phi:show_letter->show_letter::@1#1] -- vwsz1=vbsc1 + lda #<0 + sta current_x + lda #>0 + sta current_x+1 + // [137] phi (byte) show_letter::i#10 = (byte) 0 [phi:show_letter->show_letter::@1#2] -- vbuz1=vbuc1 + lda #0 + sta i + jmp b1 + // show_letter::@1 + b1: + // [138] (byte) show_letter::$32 ← (byte) show_letter::i#10 << (byte) 3 -- vbuaa=vbuz1_rol_3 + lda i + asl + asl + asl + // [139] (byte~) show_letter::$20 ← (byte) show_letter::$32 + (byte) show_letter::i#10 -- vbuxx=vbuaa_plus_vbuz1 + clc + adc i + tax + // [140] (signed word) show_letter::to_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO + (byte~) show_letter::$20) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_TO,x + sta to_x + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+1,x + sta to_x+1 + // [141] (signed word) show_letter::to_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$20) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta to_y + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta to_y+1 + // [142] (signed word) show_letter::to_x#1 ← (signed word) show_letter::to_x#0 - (signed byte) $32 -- vwsz1=vwsz1_minus_vbsc1 + lda to_x + sec + sbc #$32 + sta to_x + lda to_x+1 + sbc #>$32 + sta to_x+1 + // [143] (signed word) show_letter::to_y#1 ← (signed word) show_letter::to_y#0 - (signed word) $96 -- vwsz1=vwsz1_minus_vwsc1 + lda to_y + sec + sbc #<$96 + sta to_y + lda to_y+1 + sbc #>$96 + sta to_y+1 + // [144] (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 + // [145] (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 + // [146] (byte) rotate::angle#0 ← (byte) show_letter::angle#0 -- vbuyy=vbuz1 + ldy angle + // [147] call rotate + // [321] phi from show_letter::@1 to rotate [phi:show_letter::@1->rotate] + rotate_from_b1: + // [321] phi (signed word) rotate::vector_y#2 = (signed word) rotate::vector_y#0 [phi:show_letter::@1->rotate#0] -- register_copy + // [321] phi (signed word) rotate::vector_x#2 = (signed word) rotate::vector_x#0 [phi:show_letter::@1->rotate#1] -- register_copy + // [321] phi (byte) rotate::angle#2 = (byte) rotate::angle#0 [phi:show_letter::@1->rotate#2] -- register_copy + jsr rotate + // [148] (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#2 + // [149] (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#2 + jmp b6 + // show_letter::@6 + b6: + // [150] (signed word) show_letter::to_x#2 ← (signed word) rotate::return_x#0 + // [151] (signed word) show_letter::to_y#2 ← (signed word) rotate::return_y#0 + // [152] (signed word) show_letter::current_x#10 ← (signed word) show_letter::to_x#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda to_x_2 + clc + adc #<$64 + sta current_x_10 + lda to_x_2+1 + adc #>$64 + sta current_x_10+1 + // [153] (signed word) show_letter::current_y#10 ← (signed word) show_letter::to_y#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda to_y_2 + clc + adc #<$64 + sta current_y_10 + lda to_y_2+1 + adc #>$64 + sta current_y_10+1 + // [154] (byte) show_letter::$34 ← (byte) show_letter::i#10 << (byte) 3 -- vbuaa=vbuz1_rol_3 + lda i + asl + asl + asl + // [155] (byte~) show_letter::$21 ← (byte) show_letter::$34 + (byte) show_letter::i#10 -- vbuxx=vbuaa_plus_vbuz1 + clc + adc i + tax + // [156] (signed word) show_letter::via_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA + (byte~) show_letter::$21) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA,x + sta via_x + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+1,x + sta via_x+1 + // [157] (signed word) show_letter::via_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$21) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta via_y + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta via_y+1 + // [158] (signed word) show_letter::via_x#1 ← (signed word) show_letter::via_x#0 - (signed byte) $32 -- vwsz1=vwsz1_minus_vbsc1 + lda via_x + sec + sbc #$32 + sta via_x + lda via_x+1 + sbc #>$32 + sta via_x+1 + // [159] (signed word) show_letter::via_y#1 ← (signed word) show_letter::via_y#0 - (signed word) $96 -- vwsz1=vwsz1_minus_vwsc1 + lda via_y + sec + sbc #<$96 + sta via_y + lda via_y+1 + sbc #>$96 + sta via_y+1 + // [160] (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 + // [161] (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 + // [162] (byte) rotate::angle#1 ← (byte) show_letter::angle#0 -- vbuyy=vbuz1 + ldy angle + // [163] call rotate + // [321] phi from show_letter::@6 to rotate [phi:show_letter::@6->rotate] + rotate_from_b6: + // [321] phi (signed word) rotate::vector_y#2 = (signed word) rotate::vector_y#1 [phi:show_letter::@6->rotate#0] -- register_copy + // [321] phi (signed word) rotate::vector_x#2 = (signed word) rotate::vector_x#1 [phi:show_letter::@6->rotate#1] -- register_copy + // [321] phi (byte) rotate::angle#2 = (byte) rotate::angle#1 [phi:show_letter::@6->rotate#2] -- register_copy + jsr rotate + // [164] (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#2 + // [165] (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#2 + jmp b7 + // show_letter::@7 + b7: + // [166] (signed word) show_letter::via_x#2 ← (signed word) rotate::return_x#1 + // [167] (signed word) show_letter::via_y#2 ← (signed word) rotate::return_y#1 + // [168] (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#2 + (signed byte) $64 -- vwsz1=vwsz1_plus_vbsc1 + lda segment_via_x + clc + adc #<$64 + sta segment_via_x + lda segment_via_x+1 + adc #>$64 + sta segment_via_x+1 + // [169] (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#2 + (signed byte) $64 -- vwsz1=vwsz1_plus_vbsc1 + lda segment_via_y + clc + adc #<$64 + sta segment_via_y + lda segment_via_y+1 + adc #>$64 + sta segment_via_y+1 + // [170] (byte) show_letter::$36 ← (byte) show_letter::i#10 << (byte) 3 -- vbuaa=vbuz1_rol_3 + lda i + asl + asl + asl + // [171] (byte~) show_letter::$22 ← (byte) show_letter::$36 + (byte) show_letter::i#10 -- vbuaa=vbuaa_plus_vbuz1 + clc + adc i + // [172] (byte) show_letter::segment_type#0 ← *((byte*)(const struct Segment[$16]) letter_c#0 + (byte~) show_letter::$22) -- vbuaa=pbuc1_derefidx_vbuaa + tay + lda letter_c,y + // [173] if((byte) show_letter::segment_type#0==(const byte) MOVE_TO) goto show_letter::@3 -- vbuaa_eq_vbuc1_then_la1 + cmp #MOVE_TO + beq b3 + jmp b4 + // show_letter::@4 + b4: + // [174] if((byte) show_letter::segment_type#0==(const byte) SPLINE_TO) goto show_letter::@2 -- vbuaa_eq_vbuc1_then_la1 + cmp #SPLINE_TO + beq b2 + jmp b5 + // show_letter::@5 + b5: + // [175] (word) bitmap_line::x1#0 ← (word)(signed word) show_letter::current_x#4 + // [176] (word) bitmap_line::y1#0 ← (word)(signed word) show_letter::current_y#4 + // [177] (word) bitmap_line::x2#0 ← (word)(signed word) show_letter::current_x#10 -- vwuz1=vwuz2 + lda current_x_10 + sta bitmap_line.x2 + lda current_x_10+1 + sta bitmap_line.x2+1 + // [178] (word) bitmap_line::y2#0 ← (word)(signed word) show_letter::current_y#10 -- vwuz1=vwuz2 + lda current_y_10 + sta bitmap_line.y2 + lda current_y_10+1 + sta bitmap_line.y2+1 + // [179] call bitmap_line + // [209] phi from show_letter::@5 to bitmap_line [phi:show_letter::@5->bitmap_line] + bitmap_line_from_b5: + // [209] phi (word) bitmap_line::y2#11 = (word) bitmap_line::y2#0 [phi:show_letter::@5->bitmap_line#0] -- register_copy + // [209] phi (word) bitmap_line::x2#10 = (word) bitmap_line::x2#0 [phi:show_letter::@5->bitmap_line#1] -- register_copy + // [209] phi (word) bitmap_line::y#0 = (word) bitmap_line::y1#0 [phi:show_letter::@5->bitmap_line#2] -- register_copy + // [209] phi (word) bitmap_line::x#0 = (word) bitmap_line::x1#0 [phi:show_letter::@5->bitmap_line#3] -- register_copy + jsr bitmap_line + jmp b3 + // show_letter::@3 + b3: + // [180] (byte) show_letter::i#1 ← ++ (byte) show_letter::i#10 -- vbuz1=_inc_vbuz1 + inc i + // [181] if((byte) show_letter::i#1!=(byte) $16) goto show_letter::@9 -- vbuz1_neq_vbuc1_then_la1 + lda #$16 + cmp i + bne b9 + jmp breturn + // show_letter::@return + breturn: + // [182] return + rts + // show_letter::@9 + b9: + // [183] (signed word~) show_letter::current_x#11 ← (signed word) show_letter::current_x#10 -- vwsz1=vwsz2 + lda current_x_10 + sta current_x + lda current_x_10+1 + sta current_x+1 + // [184] (signed word~) show_letter::current_y#11 ← (signed word) show_letter::current_y#10 -- vwsz1=vwsz2 + lda current_y_10 + sta current_y + lda current_y_10+1 + sta current_y+1 + // [137] phi from show_letter::@9 to show_letter::@1 [phi:show_letter::@9->show_letter::@1] + b1_from_b9: + // [137] phi (signed word) show_letter::current_y#4 = (signed word~) show_letter::current_y#11 [phi:show_letter::@9->show_letter::@1#0] -- register_copy + // [137] phi (signed word) show_letter::current_x#4 = (signed word~) show_letter::current_x#11 [phi:show_letter::@9->show_letter::@1#1] -- register_copy + // [137] phi (byte) show_letter::i#10 = (byte) show_letter::i#1 [phi:show_letter::@9->show_letter::@1#2] -- register_copy + jmp b1 + // show_letter::@2 + b2: + // [185] (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 + // [186] (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 + // [187] (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#0 + // [188] (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#0 + // [189] (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::current_x#10 + // [190] (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::current_y#10 + // [191] call spline_8segB + jsr spline_8segB + // [192] phi from show_letter::@2 to show_letter::@8 [phi:show_letter::@2->show_letter::@8] + b8_from_b2: + jmp b8 + // show_letter::@8 + b8: + // [193] call bitmap_plot_spline_8seg + jsr bitmap_plot_spline_8seg + jmp b3 +} + // bitmap_plot_spline_8seg +// Plot the spline in the SPLINE_8SEG array +bitmap_plot_spline_8seg: { + .label current_x = 4 + .label current_y = 6 + .label n = 8 + // [194] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0) -- vwsz1=_deref_pwsc1 + lda SPLINE_8SEG + sta current_x + lda SPLINE_8SEG+1 + sta current_x+1 + // [195] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) -- vwsz1=_deref_pwsc1 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + sta current_y+1 + // [196] phi from bitmap_plot_spline_8seg to bitmap_plot_spline_8seg::@1 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1] + b1_from_bitmap_plot_spline_8seg: + // [196] phi (byte) bitmap_plot_spline_8seg::n#2 = (byte) 1 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#0] -- vbuz1=vbuc1 + lda #1 + sta n + // [196] phi (signed word) bitmap_plot_spline_8seg::current_y#2 = (signed word) bitmap_plot_spline_8seg::current_y#0 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#1] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_x#2 = (signed word) bitmap_plot_spline_8seg::current_x#0 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#2] -- register_copy + jmp b1 + // [196] phi from bitmap_plot_spline_8seg::@2 to bitmap_plot_spline_8seg::@1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1] + b1_from_b2: + // [196] phi (byte) bitmap_plot_spline_8seg::n#2 = (byte) bitmap_plot_spline_8seg::n#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#0] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_y#2 = (signed word) bitmap_plot_spline_8seg::current_y#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#1] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_x#2 = (signed word) bitmap_plot_spline_8seg::current_x#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#2] -- register_copy + jmp b1 + // bitmap_plot_spline_8seg::@1 + b1: + // [197] (word) bitmap_line::x1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 + // [198] (word) bitmap_line::y1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 + // [199] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 -- vbuxx=vbuz1_rol_2 + lda n + asl + asl + tax + // [200] (word~) bitmap_line::x2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$8) -- vwuz1=pwuc1_derefidx_vbuxx + lda SPLINE_8SEG,x + sta bitmap_line.x2 + lda SPLINE_8SEG+1,x + sta bitmap_line.x2+1 + // [201] (word~) bitmap_line::y2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$8) -- vwuz1=pwuc1_derefidx_vbuxx + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta bitmap_line.y2 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta bitmap_line.y2+1 + // [202] call bitmap_line + // [209] phi from bitmap_plot_spline_8seg::@1 to bitmap_line [phi:bitmap_plot_spline_8seg::@1->bitmap_line] + bitmap_line_from_b1: + // [209] phi (word) bitmap_line::y2#11 = (word~) bitmap_line::y2#13 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#0] -- register_copy + // [209] phi (word) bitmap_line::x2#10 = (word~) bitmap_line::x2#13 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#1] -- register_copy + // [209] phi (word) bitmap_line::y#0 = (word) bitmap_line::y1#1 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#2] -- register_copy + // [209] phi (word) bitmap_line::x#0 = (word) bitmap_line::x1#1 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#3] -- register_copy + jsr bitmap_line + jmp b2 + // bitmap_plot_spline_8seg::@2 + b2: + // [203] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 -- vbuxx=vbuz1_rol_2 + lda n + asl + asl + tax + // [204] (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$9) -- vwsz1=pwsc1_derefidx_vbuxx + lda SPLINE_8SEG,x + sta current_x + lda SPLINE_8SEG+1,x + sta current_x+1 + // [205] (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$9) -- vwsz1=pwsc1_derefidx_vbuxx + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta current_y+1 + // [206] (byte) bitmap_plot_spline_8seg::n#1 ← ++ (byte) bitmap_plot_spline_8seg::n#2 -- vbuz1=_inc_vbuz1 + inc n + // [207] if((byte) bitmap_plot_spline_8seg::n#1!=(byte) 9) goto bitmap_plot_spline_8seg::@1 -- vbuz1_neq_vbuc1_then_la1 + lda #9 + cmp n + bne b1_from_b2 + jmp breturn + // bitmap_plot_spline_8seg::@return + breturn: + // [208] return + rts +} + // bitmap_line +// Draw a line on the bitmap using bresenhams algorithm +// bitmap_line(word zeropage(4) x1, word zeropage(6) y1, word zeropage(9) x2, word zeropage($b) y2) +bitmap_line: { + .label x = 4 + .label y = 6 + .label dx = $3d + .label dy = $15 + .label sx = $3f + .label sy = $13 + .label e1 = $f + .label e = $d + .label x1 = 4 + .label y1 = 6 + .label x2 = 9 + .label y2 = $b + // [210] (word) abs_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 -- vwuz1=vwuz2_minus_vwuz3 + lda x2 + sec + sbc x + sta abs_u16.w + lda x2+1 + sbc x+1 + sta abs_u16.w+1 + // [211] call abs_u16 + // [275] phi from bitmap_line to abs_u16 [phi:bitmap_line->abs_u16] + abs_u16_from_bitmap_line: + // [275] phi (word) abs_u16::w#2 = (word) abs_u16::w#0 [phi:bitmap_line->abs_u16#0] -- register_copy + jsr abs_u16 + // [212] (word) abs_u16::return#0 ← (word) abs_u16::return#4 + jmp b12 + // bitmap_line::@12 + b12: + // [213] (word) bitmap_line::dx#0 ← (word) abs_u16::return#0 -- vwuz1=vwuz2 + lda abs_u16.return + sta dx + lda abs_u16.return+1 + sta dx+1 + // [214] (word) abs_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 -- vwuz1=vwuz2_minus_vwuz3 + lda y2 + sec + sbc y + sta abs_u16.w + lda y2+1 + sbc y+1 + sta abs_u16.w+1 + // [215] call abs_u16 + // [275] phi from bitmap_line::@12 to abs_u16 [phi:bitmap_line::@12->abs_u16] + abs_u16_from_b12: + // [275] phi (word) abs_u16::w#2 = (word) abs_u16::w#1 [phi:bitmap_line::@12->abs_u16#0] -- register_copy + jsr abs_u16 + // [216] (word) abs_u16::return#1 ← (word) abs_u16::return#4 + jmp b13 + // bitmap_line::@13 + b13: + // [217] (word) bitmap_line::dy#0 ← (word) abs_u16::return#1 + // [218] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 -- vwuz1_neq_0_then_la1 + lda dx + bne b1 + lda dx+1 + bne b1 + jmp b18 + // bitmap_line::@18 + b18: + // [219] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 -- vwuz1_eq_0_then_la1 + lda dy + bne !+ + lda dy+1 + beq b4 + !: + jmp b1 + // bitmap_line::@1 + b1: + // [220] (word) sgn_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 -- vwuz1=vwuz2_minus_vwuz3 + lda x2 + sec + sbc x + sta sgn_u16.w + lda x2+1 + sbc x+1 + sta sgn_u16.w+1 + // [221] call sgn_u16 + // [268] phi from bitmap_line::@1 to sgn_u16 [phi:bitmap_line::@1->sgn_u16] + sgn_u16_from_b1: + // [268] phi (word) sgn_u16::w#2 = (word) sgn_u16::w#0 [phi:bitmap_line::@1->sgn_u16#0] -- register_copy + jsr sgn_u16 + // [222] (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 + jmp b14 + // bitmap_line::@14 + b14: + // [223] (word) bitmap_line::sx#0 ← (word) sgn_u16::return#0 -- vwuz1=vwuz2 + lda sgn_u16.return + sta sx + lda sgn_u16.return+1 + sta sx+1 + // [224] (word) sgn_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 -- vwuz1=vwuz2_minus_vwuz3 + lda y2 + sec + sbc y + sta sgn_u16.w + lda y2+1 + sbc y+1 + sta sgn_u16.w+1 + // [225] call sgn_u16 + // [268] phi from bitmap_line::@14 to sgn_u16 [phi:bitmap_line::@14->sgn_u16] + sgn_u16_from_b14: + // [268] phi (word) sgn_u16::w#2 = (word) sgn_u16::w#1 [phi:bitmap_line::@14->sgn_u16#0] -- register_copy + jsr sgn_u16 + // [226] (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 + jmp b15 + // bitmap_line::@15 + b15: + // [227] (word) bitmap_line::sy#0 ← (word) sgn_u16::return#1 + // [228] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 -- vwuz1_gt_vwuz2_then_la1 + lda dy+1 + cmp dx+1 + bcc b2 + bne !+ + lda dy + cmp dx + bcc b2 + !: + jmp b5 + // bitmap_line::@5 + b5: + // [229] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 >> (byte) 1 -- vwuz1=vwuz2_ror_1 + lda dx+1 + lsr + sta e+1 + lda dx + ror + sta e + // [230] phi from bitmap_line::@5 bitmap_line::@7 to bitmap_line::@6 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6] + b6_from_b5: + b6_from_b7: + // [230] phi (word) bitmap_line::e#3 = (word) bitmap_line::e#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#0] -- register_copy + // [230] phi (word) bitmap_line::x#13 = (word) bitmap_line::x#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#1] -- register_copy + // [230] phi (word) bitmap_line::y#4 = (word) bitmap_line::y#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#2] -- register_copy + jmp b6 + // bitmap_line::@6 + b6: + // [231] (byte) bitmap_plot::y#1 ← (byte)(word) bitmap_line::y#4 -- vbuxx=_byte_vwuz1 + lda y + tax + // [232] (word) bitmap_plot::x#1 ← (word) bitmap_line::x#13 + // [233] call bitmap_plot + // [261] phi from bitmap_line::@6 to bitmap_plot [phi:bitmap_line::@6->bitmap_plot] + bitmap_plot_from_b6: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#1 [phi:bitmap_line::@6->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#1 [phi:bitmap_line::@6->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp b16 + // bitmap_line::@16 + b16: + // [234] (word) bitmap_line::y#1 ← (word) bitmap_line::y#4 + (word) bitmap_line::sy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + // [235] (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda e + clc + adc dx + sta e + lda e+1 + adc dx+1 + sta e+1 + // [236] if((word) bitmap_line::dy#0>=(word) bitmap_line::e#1) goto bitmap_line::@7 -- vwuz1_ge_vwuz2_then_la1 + lda e+1 + cmp dy+1 + bne !+ + lda e + cmp dy + beq b7_from_b16 + !: + bcc b7_from_b16 + jmp b8 + // bitmap_line::@8 + b8: + // [237] (word) bitmap_line::x#1 ← (word) bitmap_line::x#13 + (word) bitmap_line::sx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + // [238] (word) bitmap_line::e#2 ← (word) bitmap_line::e#1 - (word) bitmap_line::dy#0 -- vwuz1=vwuz1_minus_vwuz2 + lda e + sec + sbc dy + sta e + lda e+1 + sbc dy+1 + sta e+1 + // [239] phi from bitmap_line::@16 bitmap_line::@8 to bitmap_line::@7 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7] + b7_from_b16: + b7_from_b8: + // [239] phi (word) bitmap_line::e#6 = (word) bitmap_line::e#1 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7#0] -- register_copy + // [239] phi (word) bitmap_line::x#12 = (word) bitmap_line::x#13 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7#1] -- register_copy + jmp b7 + // bitmap_line::@7 + b7: + // [240] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@6 -- vwuz1_neq_vwuz2_then_la1 + lda y+1 + cmp y2+1 + bne b6_from_b7 + lda y + cmp y2 + bne b6_from_b7 + // [241] phi from bitmap_line::@10 bitmap_line::@7 to bitmap_line::@3 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3] + b3_from_b10: + b3_from_b7: + // [241] phi (word) bitmap_line::x#6 = (word) bitmap_line::x#15 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3#0] -- register_copy + // [241] phi (word) bitmap_line::y#7 = (word) bitmap_line::y#13 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3#1] -- register_copy + jmp b3 + // bitmap_line::@3 + b3: + // [242] (byte) bitmap_plot::y#2 ← (byte)(word) bitmap_line::y#7 -- vbuxx=_byte_vwuz1 + lda y + tax + // [243] (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 + // [244] call bitmap_plot + // [261] phi from bitmap_line::@3 to bitmap_plot [phi:bitmap_line::@3->bitmap_plot] + bitmap_plot_from_b3: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#2 [phi:bitmap_line::@3->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#2 [phi:bitmap_line::@3->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp breturn + // bitmap_line::@return + breturn: + // [245] return + rts + // bitmap_line::@2 + b2: + // [246] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 >> (byte) 1 -- vwuz1=vwuz2_ror_1 + lda dy+1 + lsr + sta e1+1 + lda dy + ror + sta e1 + // [247] phi from bitmap_line::@10 bitmap_line::@2 to bitmap_line::@9 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9] + b9_from_b10: + b9_from_b2: + // [247] phi (word) bitmap_line::e1#3 = (word) bitmap_line::e1#6 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#0] -- register_copy + // [247] phi (word) bitmap_line::x#7 = (word) bitmap_line::x#15 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#1] -- register_copy + // [247] phi (word) bitmap_line::y#15 = (word) bitmap_line::y#13 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#2] -- register_copy + jmp b9 + // bitmap_line::@9 + b9: + // [248] (byte) bitmap_plot::y#3 ← (byte)(word) bitmap_line::y#15 -- vbuxx=_byte_vwuz1 + lda y + tax + // [249] (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 + // [250] call bitmap_plot + // [261] phi from bitmap_line::@9 to bitmap_plot [phi:bitmap_line::@9->bitmap_plot] + bitmap_plot_from_b9: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#3 [phi:bitmap_line::@9->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#3 [phi:bitmap_line::@9->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp b17 + // bitmap_line::@17 + b17: + // [251] (word) bitmap_line::x#15 ← (word) bitmap_line::x#7 + (word) bitmap_line::sx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + // [252] (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda e1 + clc + adc dy + sta e1 + lda e1+1 + adc dy+1 + sta e1+1 + // [253] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@10 -- vwuz1_ge_vwuz2_then_la1 + lda e1+1 + cmp dx+1 + bne !+ + lda e1 + cmp dx + beq b10_from_b17 + !: + bcc b10_from_b17 + jmp b11 + // bitmap_line::@11 + b11: + // [254] (word) bitmap_line::y#2 ← (word) bitmap_line::y#15 + (word) bitmap_line::sy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + // [255] (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#1 - (word) bitmap_line::dx#0 -- vwuz1=vwuz1_minus_vwuz2 + lda e1 + sec + sbc dx + sta e1 + lda e1+1 + sbc dx+1 + sta e1+1 + // [256] phi from bitmap_line::@11 bitmap_line::@17 to bitmap_line::@10 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10] + b10_from_b11: + b10_from_b17: + // [256] phi (word) bitmap_line::e1#6 = (word) bitmap_line::e1#2 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10#0] -- register_copy + // [256] phi (word) bitmap_line::y#13 = (word) bitmap_line::y#2 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10#1] -- register_copy + jmp b10 + // bitmap_line::@10 + b10: + // [257] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@9 -- vwuz1_neq_vwuz2_then_la1 + lda x+1 + cmp x2+1 + bne b9_from_b10 + lda x + cmp x2 + bne b9_from_b10 + jmp b3_from_b10 + // bitmap_line::@4 + b4: + // [258] (byte) bitmap_plot::y#0 ← (byte)(word) bitmap_line::y#0 -- vbuxx=_byte_vwuz1 + lda y + tax + // [259] (word) bitmap_plot::x#0 ← (word) bitmap_line::x#0 + // [260] call bitmap_plot + // [261] phi from bitmap_line::@4 to bitmap_plot [phi:bitmap_line::@4->bitmap_plot] + bitmap_plot_from_b4: + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#0 [phi:bitmap_line::@4->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#0 [phi:bitmap_line::@4->bitmap_plot#1] -- register_copy + jsr bitmap_plot + jmp breturn +} + // bitmap_plot +// Plot a single dot in the bitmap +// bitmap_plot(word zeropage(4) x, byte register(X) y) +bitmap_plot: { + .label _1 = $43 + .label plotter = $41 + .label x = 4 + // [262] (word) bitmap_plot::plotter#0 ← *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) w= *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) -- vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx + lda bitmap_plot_yhi,x + sta plotter+1 + lda bitmap_plot_ylo,x + sta plotter + // [263] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 -- vwuz1=vwuz2_band_vwuc1 + lda x + and #<$fff8 + sta _1 + lda x+1 + and #>$fff8 + sta _1+1 + // [264] (byte*) bitmap_plot::plotter#1 ← (byte*)(word) bitmap_plot::plotter#0 + (word~) bitmap_plot::$1 -- pbuz1=pbuz1_plus_vwuz2 + lda plotter + clc + adc _1 + sta plotter + lda plotter+1 + adc _1+1 + sta plotter+1 + // [265] (byte~) bitmap_plot::$2 ← < (word) bitmap_plot::x#4 -- vbuaa=_lo_vwuz1 + lda x + // [266] *((byte*) bitmap_plot::plotter#1) ← *((byte*) bitmap_plot::plotter#1) | *((const byte[$100]) bitmap_plot_bit#0 + (byte~) bitmap_plot::$2) -- _deref_pbuz1=_deref_pbuz1_bor_pbuc1_derefidx_vbuaa + tay + lda bitmap_plot_bit,y + ldy #0 + ora (plotter),y + ldy #0 + sta (plotter),y + jmp breturn + // bitmap_plot::@return + breturn: + // [267] return + rts +} + // sgn_u16 +// Get the sign of a 16-bit unsigned number treated as a signed number. +// Returns unsigned -1 if the number is +// sgn_u16(word zeropage($11) w) +sgn_u16: { + .label w = $11 + .label return = $13 + // [269] (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 -- vbuaa=_hi_vwuz1 + lda w+1 + // [270] (byte~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (byte) $80 -- vbuaa=vbuaa_band_vbuc1 + and #$80 + // [271] if((byte) 0!=(byte~) sgn_u16::$1) goto sgn_u16::@1 -- vbuc1_neq_vbuaa_then_la1 + cmp #0 + bne b1_from_sgn_u16 + // [273] phi from sgn_u16 to sgn_u16::@return [phi:sgn_u16->sgn_u16::@return] + breturn_from_sgn_u16: + // [273] phi (word) sgn_u16::return#4 = (byte) 1 [phi:sgn_u16->sgn_u16::@return#0] -- vwuz1=vbuc1 + lda #<1 + sta return + lda #>1 + sta return+1 + jmp breturn + // [272] phi from sgn_u16 to sgn_u16::@1 [phi:sgn_u16->sgn_u16::@1] + b1_from_sgn_u16: + jmp b1 + // sgn_u16::@1 + b1: + // [273] phi from sgn_u16::@1 to sgn_u16::@return [phi:sgn_u16::@1->sgn_u16::@return] + breturn_from_b1: + // [273] phi (word) sgn_u16::return#4 = (byte) -1 [phi:sgn_u16::@1->sgn_u16::@return#0] -- vwuz1=vbuc1 + lda #<-1 + sta return + lda #>-1 + sta return+1 + jmp breturn + // sgn_u16::@return + breturn: + // [274] return + rts +} + // abs_u16 +// Get the absolute value of a 16-bit unsigned number treated as a signed number. +// abs_u16(word zeropage($15) w) +abs_u16: { + .label w = $15 + .label return = $15 + // [276] (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 -- vbuaa=_hi_vwuz1 + lda w+1 + // [277] (byte~) abs_u16::$1 ← (byte~) abs_u16::$0 & (byte) $80 -- vbuaa=vbuaa_band_vbuc1 + and #$80 + // [278] if((byte) 0!=(byte~) abs_u16::$1) goto abs_u16::@1 -- vbuc1_neq_vbuaa_then_la1 + cmp #0 + bne b1 + // [280] phi from abs_u16 abs_u16::@1 to abs_u16::@return [phi:abs_u16/abs_u16::@1->abs_u16::@return] + breturn_from_abs_u16: + breturn_from_b1: + // [280] phi (word) abs_u16::return#4 = (word) abs_u16::w#2 [phi:abs_u16/abs_u16::@1->abs_u16::@return#0] -- register_copy + jmp breturn + // abs_u16::@1 + b1: + // [279] (word) abs_u16::return#2 ← - (word) abs_u16::w#2 -- vwuz1=_neg_vwuz1 + sec + lda #0 + sbc return + sta return + lda #0 + sbc return+1 + sta return+1 + jmp breturn_from_b1 + // abs_u16::@return + breturn: + // [281] return + rts +} + // spline_8segB +// Generate a 8-segment quadratic spline using 16-bit fixed point 1/64-format math (6 decimal bits). +// The resulting spline segment points are returned in SPLINE_8SEG[] +// Point values must be within [-200 ; 1ff] for the calculation to not overflow. +// A quadratic spline is a curve defined by 3 points: P0, P1 and P2. +// The curve connects P0 to P2 through a smooth curve that moves towards P1, but does usually not touch it. +// spline_8segB(signed word zeropage(4) p0_x, signed word zeropage(6) p0_y, signed word zeropage($17) p1_x, signed word zeropage($19) p1_y, signed word zeropage($39) p2_x, signed word zeropage($3b) p2_y) +spline_8segB: { + .label _0 = $45 + .label _1 = $45 + .label _3 = $47 + .label _4 = $47 + .label _6 = $17 + .label _8 = $19 + .label _10 = $17 + .label _12 = $19 + .label _18 = 4 + .label _19 = 4 + .label _20 = 6 + .label _21 = 6 + .label _22 = $49 + .label _23 = $49 + .label _24 = $4b + .label _25 = $4b + .label a_x = $45 + .label a_y = $47 + .label b_x = $17 + .label b_y = $19 + .label i_x = $17 + .label i_y = $19 + .label j_x = $45 + .label j_y = $47 + .label p_x = 4 + .label p_y = 6 + .label p0_x = 4 + .label p0_y = 6 + .label p1_x = $17 + .label p1_y = $19 + .label p2_x = $39 + .label p2_y = $3b + // [282] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda p1_x + asl + sta _0 + lda p1_x+1 + rol + sta _0+1 + // [283] (signed word~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#0 - (signed word~) spline_8segB::$0 -- vwsz1=vwsz2_minus_vwsz1 + lda p2_x + sec + sbc _1 + sta _1 + lda p2_x+1 + sbc _1+1 + sta _1+1 + // [284] (signed word) spline_8segB::a_x#0 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#0 -- vwsz1=vwsz1_plus_vwsz2 + lda a_x + clc + adc p0_x + sta a_x + lda a_x+1 + adc p0_x+1 + sta a_x+1 + // [285] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda p1_y + asl + sta _3 + lda p1_y+1 + rol + sta _3+1 + // [286] (signed word~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#0 - (signed word~) spline_8segB::$3 -- vwsz1=vwsz2_minus_vwsz1 + lda p2_y + sec + sbc _4 + sta _4 + lda p2_y+1 + sbc _4+1 + sta _4+1 + // [287] (signed word) spline_8segB::a_y#0 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#0 -- vwsz1=vwsz1_plus_vwsz2 + lda a_y + clc + adc p0_y + sta a_y + lda a_y+1 + adc p0_y+1 + sta a_y+1 + // [288] (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#0 - (signed word) spline_8segB::p0_x#0 -- vwsz1=vwsz1_minus_vwsz2 + lda _6 + sec + sbc p0_x + sta _6 + lda _6+1 + sbc p0_x+1 + sta _6+1 + // [289] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl b_x + rol b_x+1 + // [290] (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#0 - (signed word) spline_8segB::p0_y#0 -- vwsz1=vwsz1_minus_vwsz2 + lda _8 + sec + sbc p0_y + sta _8 + lda _8+1 + sbc p0_y+1 + sta _8+1 + // [291] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl b_y + rol b_y+1 + // [292] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 << (byte) 3 -- vwsz1=vwsz1_rol_3 + asl _10 + rol _10+1 + asl _10 + rol _10+1 + asl _10 + rol _10+1 + // [293] (signed word) spline_8segB::i_x#0 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 -- vwsz1=vwsz2_plus_vwsz1 + lda i_x + clc + adc a_x + sta i_x + lda i_x+1 + adc a_x+1 + sta i_x+1 + // [294] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 << (byte) 3 -- vwsz1=vwsz1_rol_3 + asl _12 + rol _12+1 + asl _12 + rol _12+1 + asl _12 + rol _12+1 + // [295] (signed word) spline_8segB::i_y#0 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 -- vwsz1=vwsz2_plus_vwsz1 + lda i_y + clc + adc a_y + sta i_y + lda i_y+1 + adc a_y+1 + sta i_y+1 + // [296] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl j_x + rol j_x+1 + // [297] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl j_y + rol j_y+1 + // [298] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 << (byte) 6 -- vwsz1=vwsz1_rol_6 + lda p_x+1 + sta $ff + lda p_x + sta p_x+1 + lda #0 + sta p_x + lsr $ff + ror p_x+1 + ror p_x + lsr $ff + ror p_x+1 + ror p_x + // [299] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 << (byte) 6 -- vwsz1=vwsz1_rol_6 + lda p_y+1 + sta $ff + lda p_y + sta p_y+1 + lda #0 + sta p_y + lsr $ff + ror p_y+1 + ror p_y + lsr $ff + ror p_y+1 + ror p_y + // [300] phi from spline_8segB to spline_8segB::@1 [phi:spline_8segB->spline_8segB::@1] + b1_from_spline_8segB: + // [300] phi (signed word) spline_8segB::i_y#2 = (signed word) spline_8segB::i_y#0 [phi:spline_8segB->spline_8segB::@1#0] -- register_copy + // [300] phi (signed word) spline_8segB::i_x#2 = (signed word) spline_8segB::i_x#0 [phi:spline_8segB->spline_8segB::@1#1] -- register_copy + // [300] phi (byte) spline_8segB::n#2 = (byte) 0 [phi:spline_8segB->spline_8segB::@1#2] -- vbuyy=vbuc1 + ldy #0 + // [300] phi (signed word) spline_8segB::p_y#2 = (signed word) spline_8segB::p_y#0 [phi:spline_8segB->spline_8segB::@1#3] -- register_copy + // [300] phi (signed word) spline_8segB::p_x#2 = (signed word) spline_8segB::p_x#0 [phi:spline_8segB->spline_8segB::@1#4] -- register_copy + jmp b1 + // [300] phi from spline_8segB::@1 to spline_8segB::@1 [phi:spline_8segB::@1->spline_8segB::@1] + b1_from_b1: + // [300] phi (signed word) spline_8segB::i_y#2 = (signed word) spline_8segB::i_y#1 [phi:spline_8segB::@1->spline_8segB::@1#0] -- register_copy + // [300] phi (signed word) spline_8segB::i_x#2 = (signed word) spline_8segB::i_x#1 [phi:spline_8segB::@1->spline_8segB::@1#1] -- register_copy + // [300] phi (byte) spline_8segB::n#2 = (byte) spline_8segB::n#1 [phi:spline_8segB::@1->spline_8segB::@1#2] -- register_copy + // [300] phi (signed word) spline_8segB::p_y#2 = (signed word) spline_8segB::p_y#1 [phi:spline_8segB::@1->spline_8segB::@1#3] -- register_copy + // [300] phi (signed word) spline_8segB::p_x#2 = (signed word) spline_8segB::p_x#1 [phi:spline_8segB::@1->spline_8segB::@1#4] -- register_copy + jmp b1 + // spline_8segB::@1 + b1: + // [301] (signed word~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_x + clc + adc #<$20 + sta _22 + lda p_x+1 + adc #>$20 + sta _22+1 + // [302] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _23 + sta $ff + lda _23+1 + sta _23 + lda #0 + bit _23+1 + bpl !+ + lda #$ff + !: + sta _23+1 + rol $ff + rol _23 + rol _23+1 + rol $ff + rol _23 + rol _23+1 + // [303] (signed word~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_y + clc + adc #<$20 + sta _24 + lda p_y+1 + adc #>$20 + sta _24+1 + // [304] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _25 + sta $ff + lda _25+1 + sta _25 + lda #0 + bit _25+1 + bpl !+ + lda #$ff + !: + sta _25+1 + rol $ff + rol _25 + rol _25+1 + rol $ff + rol _25 + rol _25+1 + // [305] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 << (byte) 2 -- vbuxx=vbuyy_rol_2 + tya + asl + asl + tax + // [306] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$23 -- pwsc1_derefidx_vbuxx=vwsz1 + lda _23 + sta SPLINE_8SEG,x + lda _23+1 + sta SPLINE_8SEG+1,x + // [307] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$25 -- pwsc1_derefidx_vbuxx=vwsz1 + lda _25 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + lda _25+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + // [308] (signed word) spline_8segB::p_x#1 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 -- vwsz1=vwsz1_plus_vwsz2 + lda p_x + clc + adc i_x + sta p_x + lda p_x+1 + adc i_x+1 + sta p_x+1 + // [309] (signed word) spline_8segB::p_y#1 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 -- vwsz1=vwsz1_plus_vwsz2 + lda p_y + clc + adc i_y + sta p_y + lda p_y+1 + adc i_y+1 + sta p_y+1 + // [310] (signed word) spline_8segB::i_x#1 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#0 -- vwsz1=vwsz1_plus_vwsz2 + lda i_x + clc + adc j_x + sta i_x + lda i_x+1 + adc j_x+1 + sta i_x+1 + // [311] (signed word) spline_8segB::i_y#1 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#0 -- vwsz1=vwsz1_plus_vwsz2 + lda i_y + clc + adc j_y + sta i_y + lda i_y+1 + adc j_y+1 + sta i_y+1 + // [312] (byte) spline_8segB::n#1 ← ++ (byte) spline_8segB::n#2 -- vbuyy=_inc_vbuyy + iny + // [313] if((byte) spline_8segB::n#1!=(byte) 8) goto spline_8segB::@1 -- vbuyy_neq_vbuc1_then_la1 + cpy #8 + bne b1_from_b1 + jmp b2 + // spline_8segB::@2 + b2: + // [314] (signed word~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#1 + (signed byte) $20 -- vwsz1=vwsz1_plus_vbsc1 + lda _18 + clc + adc #<$20 + sta _18 + lda _18+1 + adc #>$20 + sta _18+1 + // [315] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _19 + sta $ff + lda _19+1 + sta _19 + lda #0 + bit _19+1 + bpl !+ + lda #$ff + !: + sta _19+1 + rol $ff + rol _19 + rol _19+1 + rol $ff + rol _19 + rol _19+1 + // [316] (signed word~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#1 + (signed byte) $20 -- vwsz1=vwsz1_plus_vbsc1 + lda _20 + clc + adc #<$20 + sta _20 + lda _20+1 + adc #>$20 + sta _20+1 + // [317] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _21 + sta $ff + lda _21+1 + sta _21 + lda #0 + bit _21+1 + bpl !+ + lda #$ff + !: + sta _21+1 + rol $ff + rol _21 + rol _21+1 + rol $ff + rol _21 + rol _21+1 + // [318] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$19 -- _deref_pwsc1=vwsz1 + lda _19 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _19+1 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + // [319] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$21 -- _deref_pwsc1=vwsz1 + lda _21 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _21+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + jmp breturn + // spline_8segB::@return + breturn: + // [320] return + rts +} + // rotate +// 2D-rotate a vector by an angle +// rotate(signed word zeropage($1b) vector_x, signed word zeropage($1d) vector_y, byte register(Y) angle) +rotate: { + .label _1 = $23 + .label _2 = $4d + .label _4 = $23 + .label _5 = $4f + .label _8 = $23 + .label _9 = $51 + .label _10 = $51 + .label _11 = $23 + .label _12 = $53 + .label _13 = $53 + .label vector_x = $1b + .label vector_y = $1d + .label return_x = $17 + .label return_y = $19 + .label cos_a = $1f + .label xr = $4d + .label yr = $4f + .label sin_a = $1f + // [322] (signed word) rotate::cos_a#0 ← (signed word)*((const signed byte*) COS#0 + (byte) rotate::angle#2) -- vwsz1=_sword_pbsc1_derefidx_vbuyy + lda COS,y + sta cos_a + ora #$7f + bmi !+ + lda #0 + !: + sta cos_a+1 + // [323] (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 + // [324] (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 -- vwsz1=vwsz2 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + // [325] call mulf16s + // [359] phi from rotate to mulf16s [phi:rotate->mulf16s] + mulf16s_from_rotate: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#0 [phi:rotate->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#0 [phi:rotate->mulf16s#1] -- register_copy + jsr mulf16s + // [326] (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#0 + jmp b1 + // rotate::@1 + b1: + // [327] (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#2 + // [328] (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 -- vwsz1=_sword_vdsz2 + lda _1 + sta _2 + lda _1+1 + sta _2+1 + // [329] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl xr + rol xr+1 + // [330] (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#0 + // [331] (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 -- vwsz1=vwsz2 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + // [332] call mulf16s + // [359] phi from rotate::@1 to mulf16s [phi:rotate::@1->mulf16s] + mulf16s_from_b1: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#1 [phi:rotate::@1->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#1 [phi:rotate::@1->mulf16s#1] -- register_copy + jsr mulf16s + // [333] (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#0 + jmp b2 + // rotate::@2 + b2: + // [334] (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#3 + // [335] (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 -- vwsz1=_sword_vdsz2 + lda _4 + sta _5 + lda _4+1 + sta _5+1 + // [336] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl yr + rol yr+1 + // [337] (signed word) rotate::sin_a#0 ← (signed word)*((const signed byte[$140]) SIN#0 + (byte) rotate::angle#2) -- vwsz1=_sword_pbsc1_derefidx_vbuyy + lda SIN,y + sta sin_a + ora #$7f + bmi !+ + lda #0 + !: + sta sin_a+1 + // [338] (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 + // [339] (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#2 -- vwsz1=vwsz2 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + // [340] call mulf16s + // [359] phi from rotate::@2 to mulf16s [phi:rotate::@2->mulf16s] + mulf16s_from_b2: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#2 [phi:rotate::@2->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#2 [phi:rotate::@2->mulf16s#1] -- register_copy + jsr mulf16s + // [341] (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#0 + jmp b3 + // rotate::@3 + b3: + // [342] (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#4 + // [343] (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 -- vwsz1=_sword_vdsz2 + lda _8 + sta _9 + lda _8+1 + sta _9+1 + // [344] (signed word~) rotate::$10 ← (signed word~) rotate::$9 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _10 + rol _10+1 + // [345] (signed word) rotate::xr#1 ← (signed word) rotate::xr#0 - (signed word~) rotate::$10 -- vwsz1=vwsz1_minus_vwsz2 + // signed fixed[0.7] + lda xr + sec + sbc _10 + sta xr + lda xr+1 + sbc _10+1 + sta xr+1 + // [346] (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#0 + // [347] (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#2 -- vwsz1=vwsz2 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + // [348] call mulf16s + // [359] phi from rotate::@3 to mulf16s [phi:rotate::@3->mulf16s] + mulf16s_from_b3: + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#3 [phi:rotate::@3->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#3 [phi:rotate::@3->mulf16s#1] -- register_copy + jsr mulf16s + // [349] (signed dword) mulf16s::return#10 ← (signed dword) mulf16s::return#0 + jmp b4 + // rotate::@4 + b4: + // [350] (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 + // [351] (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 -- vwsz1=_sword_vdsz2 + lda _11 + sta _12 + lda _11+1 + sta _12+1 + // [352] (signed word~) rotate::$13 ← (signed word~) rotate::$12 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _13 + rol _13+1 + // [353] (signed word) rotate::yr#1 ← (signed word) rotate::yr#0 + (signed word~) rotate::$13 -- vwsz1=vwsz1_plus_vwsz2 + // signed fixed[8.8] + lda yr + clc + adc _13 + sta yr + lda yr+1 + adc _13+1 + sta yr+1 + // [354] (byte~) rotate::$15 ← > (signed word) rotate::xr#1 -- vbuaa=_hi_vwsz1 + lda xr+1 + // [355] (signed word) rotate::return_x#2 ← (signed word)(signed byte)(byte~) rotate::$15 -- vwsz1=_sword_vbsaa + sta return_x + ora #$7f + bmi !+ + lda #0 + !: + sta return_x+1 + // [356] (byte~) rotate::$18 ← > (signed word) rotate::yr#1 -- vbuaa=_hi_vwsz1 + lda yr+1 + // [357] (signed word) rotate::return_y#2 ← (signed word)(signed byte)(byte~) rotate::$18 -- vwsz1=_sword_vbsaa + sta return_y + ora #$7f + bmi !+ + lda #0 + !: + sta return_y+1 + jmp breturn + // rotate::@return + breturn: + // [358] return + rts +} + // mulf16s +// Fast multiply two signed words to a signed double word result +// Fixes offsets introduced by using unsigned multiplication +// mulf16s(signed word zeropage($1f) a, signed word zeropage($21) b) +mulf16s: { + .label _9 = $59 + .label _13 = $5b + .label _16 = $59 + .label _17 = $5b + .label m = $23 + .label return = $23 + .label a = $1f + .label b = $21 + // [360] (word) mulf16u::a#0 ← (word)(signed word) mulf16s::a#4 -- vwuz1=vwuz2 + lda a + sta mulf16u.a + lda a+1 + sta mulf16u.a+1 + // [361] (word) mulf16u::b#0 ← (word)(signed word) mulf16s::b#4 -- vwuz1=vwuz2 + lda b + sta mulf16u.b + lda b+1 + sta mulf16u.b+1 + // [362] call mulf16u + jsr mulf16u + // [363] (dword) mulf16u::return#2 ← (dword) mulf16u::return#0 + jmp b5 + // mulf16s::@5 + b5: + // [364] (dword) mulf16s::m#0 ← (dword) mulf16u::return#2 + // [365] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 -- vwsz1_ge_0_then_la1 + lda a+1 + bpl b1_from_b5 + jmp b3 + // mulf16s::@3 + b3: + // [366] (word~) mulf16s::$9 ← > (dword) mulf16s::m#0 -- vwuz1=_hi_vduz2 + lda m+2 + sta _9 + lda m+3 + sta _9+1 + // [367] (word~) mulf16s::$16 ← (word~) mulf16s::$9 - (word)(signed word) mulf16s::b#4 -- vwuz1=vwuz1_minus_vwuz2 + lda _16 + sec + sbc b + sta _16 + lda _16+1 + sbc b+1 + sta _16+1 + // [368] (dword) mulf16s::m#1 ← (dword) mulf16s::m#0 hi= (word~) mulf16s::$16 -- vduz1=vduz1_sethi_vwuz2 + lda _16 + sta m+2 + lda _16+1 + sta m+3 + // [369] phi from mulf16s::@3 mulf16s::@5 to mulf16s::@1 [phi:mulf16s::@3/mulf16s::@5->mulf16s::@1] + b1_from_b3: + b1_from_b5: + // [369] phi (dword) mulf16s::m#5 = (dword) mulf16s::m#1 [phi:mulf16s::@3/mulf16s::@5->mulf16s::@1#0] -- register_copy + jmp b1 + // mulf16s::@1 + b1: + // [370] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 -- vwsz1_ge_0_then_la1 + lda b+1 + bpl b2_from_b1 + jmp b4 + // mulf16s::@4 + b4: + // [371] (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 -- vwuz1=_hi_vduz2 + lda m+2 + sta _13 + lda m+3 + sta _13+1 + // [372] (word~) mulf16s::$17 ← (word~) mulf16s::$13 - (word)(signed word) mulf16s::a#4 -- vwuz1=vwuz1_minus_vwuz2 + lda _17 + sec + sbc a + sta _17 + lda _17+1 + sbc a+1 + sta _17+1 + // [373] (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 -- vduz1=vduz1_sethi_vwuz2 + lda _17 + sta m+2 + lda _17+1 + sta m+3 + // [374] phi from mulf16s::@1 mulf16s::@4 to mulf16s::@2 [phi:mulf16s::@1/mulf16s::@4->mulf16s::@2] + b2_from_b1: + b2_from_b4: + // [374] phi (dword) mulf16s::m#4 = (dword) mulf16s::m#5 [phi:mulf16s::@1/mulf16s::@4->mulf16s::@2#0] -- register_copy + jmp b2 + // mulf16s::@2 + b2: + // [375] (signed dword) mulf16s::return#0 ← (signed dword)(dword) mulf16s::m#4 + jmp breturn + // mulf16s::@return + breturn: + // [376] return + rts +} + // mulf16u +// Fast multiply two unsigned words to a double word result +// Done in assembler to utilize fast addition A+X +// mulf16u(word zeropage($55) a, word zeropage($57) b) +mulf16u: { + .label memA = $f8 + .label memB = $fa + .label memR = $fc + .label return = $23 + .label a = $55 + .label b = $57 + // [377] *((const word*) mulf16u::memA#0) ← (word) mulf16u::a#0 -- _deref_pwuc1=vwuz1 + lda a + sta memA + lda a+1 + sta memA+1 + // [378] *((const word*) mulf16u::memB#0) ← (word) mulf16u::b#0 -- _deref_pwuc1=vwuz1 + lda b + sta memB + lda b+1 + sta memB+1 + // asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } + lda memA + sta sm1a+1 + sta sm3a+1 + sta sm5a+1 + sta sm7a+1 + eor #$ff + sta sm2a+1 + sta sm4a+1 + sta sm6a+1 + sta sm8a+1 + lda memA+1 + sta sm1b+1 + sta sm3b+1 + sta sm5b+1 + sta sm7b+1 + eor #$ff + sta sm2b+1 + sta sm4b+1 + sta sm6b+1 + sta sm8b+1 + ldx memB + sec + sm1a: + lda mulf_sqr1_lo,x + sm2a: + sbc mulf_sqr2_lo,x + sta memR+0 + sm3a: + lda mulf_sqr1_hi,x + sm4a: + sbc mulf_sqr2_hi,x + sta _AA+1 + sec + sm1b: + lda mulf_sqr1_lo,x + sm2b: + sbc mulf_sqr2_lo,x + sta _cc+1 + sm3b: + lda mulf_sqr1_hi,x + sm4b: + sbc mulf_sqr2_hi,x + sta _CC+1 + ldx memB+1 + sec + sm5a: + lda mulf_sqr1_lo,x + sm6a: + sbc mulf_sqr2_lo,x + sta _bb+1 + sm7a: + lda mulf_sqr1_hi,x + sm8a: + sbc mulf_sqr2_hi,x + sta _BB+1 + sec + sm5b: + lda mulf_sqr1_lo,x + sm6b: + sbc mulf_sqr2_lo,x + sta _dd+1 + sm7b: + lda mulf_sqr1_hi,x + sm8b: + sbc mulf_sqr2_hi,x + sta memR+3 + clc + _AA: + lda #0 + _bb: + adc #0 + sta memR+1 + _BB: + lda #0 + _CC: + adc #0 + sta memR+2 + bcc !+ + inc memR+3 + clc + !: + _cc: + lda #0 + adc memR+1 + sta memR+1 + _dd: + lda #0 + adc memR+2 + sta memR+2 + bcc !+ + inc memR+3 + !: + // [380] (dword) mulf16u::return#0 ← *((const dword*) mulf16u::memR#0) -- vduz1=_deref_pduc1 + lda memR + sta return + lda memR+1 + sta return+1 + lda memR+2 + sta return+2 + lda memR+3 + sta return+3 + jmp breturn + // mulf16u::@return + breturn: + // [381] return + rts +} + // bitmap_clear +// Clear all graphics on the bitmap +// bgcol - the background color to fill the screen with +// fgcol - the foreground color to fill the screen with +bitmap_clear: { + .const col = WHITE<<4 + // [383] call memset + // [387] phi from bitmap_clear to memset [phi:bitmap_clear->memset] + memset_from_bitmap_clear: + // [387] phi (byte) memset::c#3 = (const byte) bitmap_clear::col#0 [phi:bitmap_clear->memset#0] -- vbuxx=vbuc1 + ldx #col + // [387] phi (void*) memset::str#3 = (void*)(const byte*) BITMAP_SCREEN#0 [phi:bitmap_clear->memset#1] -- pvoz1=pvoc1 + lda #BITMAP_SCREEN + sta memset.str+1 + // [387] phi (word) memset::num#2 = (word) $3e8 [phi:bitmap_clear->memset#2] -- vwuz1=vwuc1 + lda #<$3e8 + sta memset.num + lda #>$3e8 + sta memset.num+1 + jsr memset + // [384] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] + b1_from_bitmap_clear: + jmp b1 + // bitmap_clear::@1 + b1: + // [385] call memset + // [387] phi from bitmap_clear::@1 to memset [phi:bitmap_clear::@1->memset] + memset_from_b1: + // [387] phi (byte) memset::c#3 = (byte) 0 [phi:bitmap_clear::@1->memset#0] -- vbuxx=vbuc1 + ldx #0 + // [387] phi (void*) memset::str#3 = (void*)(const byte*) BITMAP_GRAPHICS#0 [phi:bitmap_clear::@1->memset#1] -- pvoz1=pvoc1 + lda #BITMAP_GRAPHICS + sta memset.str+1 + // [387] phi (word) memset::num#2 = (word) $1f40 [phi:bitmap_clear::@1->memset#2] -- vwuz1=vwuc1 + lda #<$1f40 + sta memset.num + lda #>$1f40 + sta memset.num+1 + jsr memset + jmp breturn + // bitmap_clear::@return + breturn: + // [386] return + rts +} + // memset +// Copies the character c (an unsigned char) to the first num characters of the object pointed to by the argument str. +// memset(void* zeropage($29) str, byte register(X) c, word zeropage($27) num) +memset: { + .label end = $27 + .label dst = $29 + .label num = $27 + .label str = $29 + // [388] if((word) memset::num#2<=(byte) 0) goto memset::@return -- vwuz1_le_0_then_la1 + lda num + bne !+ + lda num+1 + beq breturn + !: + jmp b1 + // memset::@1 + b1: + // [389] (byte*) memset::end#0 ← (byte*)(void*) memset::str#3 + (word) memset::num#2 -- pbuz1=pbuz2_plus_vwuz1 + lda end + clc + adc str + sta end + lda end+1 + adc str+1 + sta end+1 + // [390] (byte*~) memset::dst#3 ← (byte*)(void*) memset::str#3 + // [391] phi from memset::@1 memset::@2 to memset::@2 [phi:memset::@1/memset::@2->memset::@2] + b2_from_b1: + b2_from_b2: + // [391] phi (byte*) memset::dst#2 = (byte*~) memset::dst#3 [phi:memset::@1/memset::@2->memset::@2#0] -- register_copy + jmp b2 + // memset::@2 + b2: + // [392] *((byte*) memset::dst#2) ← (byte) memset::c#3 -- _deref_pbuz1=vbuxx + txa + ldy #0 + sta (dst),y + // [393] (byte*) memset::dst#1 ← ++ (byte*) memset::dst#2 -- pbuz1=_inc_pbuz1 + inc dst + bne !+ + inc dst+1 + !: + // [394] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@2 -- pbuz1_neq_pbuz2_then_la1 + lda dst+1 + cmp end+1 + bne b2_from_b2 + lda dst + cmp end + bne b2_from_b2 + jmp breturn + // memset::@return + breturn: + // [395] return + rts +} + // bitmap_init +// Initialize bitmap plotting tables +bitmap_init: { + .label _7 = $5d + .label yoffs = $2b + // [397] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] + b1_from_bitmap_init: + // [397] phi (byte) bitmap_init::x#2 = (byte) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuxx=vbuc1 + ldx #0 + // [397] phi (byte) bitmap_init::bits#3 = (byte) $80 [phi:bitmap_init->bitmap_init::@1#1] -- vbuaa=vbuc1 + lda #$80 + jmp b1 + // [397] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] + b1_from_b2: + // [397] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy + // [397] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy + jmp b1 + // bitmap_init::@1 + b1: + // [398] *((const byte[$100]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 -- pbuc1_derefidx_vbuxx=vbuaa + sta bitmap_plot_bit,x + // [399] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte) 1 -- vbuaa=vbuaa_ror_1 + lsr + // [400] if((byte) bitmap_init::bits#1!=(byte) 0) goto bitmap_init::@6 -- vbuaa_neq_0_then_la1 + cmp #0 + bne b6_from_b1 + // [402] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] + b2_from_b1: + // [402] phi (byte) bitmap_init::bits#4 = (byte) $80 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuaa=vbuc1 + lda #$80 + jmp b2 + // [401] phi from bitmap_init::@1 to bitmap_init::@6 [phi:bitmap_init::@1->bitmap_init::@6] + b6_from_b1: + jmp b6 + // bitmap_init::@6 + b6: + // [402] phi from bitmap_init::@6 to bitmap_init::@2 [phi:bitmap_init::@6->bitmap_init::@2] + b2_from_b6: + // [402] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@6->bitmap_init::@2#0] -- register_copy + jmp b2 + // bitmap_init::@2 + b2: + // [403] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 -- vbuxx=_inc_vbuxx + inx + // [404] if((byte) bitmap_init::x#1!=(byte) 0) goto bitmap_init::@1 -- vbuxx_neq_0_then_la1 + cpx #0 + bne b1_from_b2 + // [405] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] + b3_from_b2: + // [405] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP_GRAPHICS#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 + lda #BITMAP_GRAPHICS + sta yoffs+1 + // [405] phi (byte) bitmap_init::y#2 = (byte) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuxx=vbuc1 + ldx #0 + jmp b3 + // [405] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] + b3_from_b4: + // [405] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy + // [405] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy + jmp b3 + // bitmap_init::@3 + b3: + // [406] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 -- vbuz1=vbuxx_band_vbuc1 + lda #7 + sax _7 + // [407] (byte~) bitmap_init::$4 ← < (byte*) bitmap_init::yoffs#2 -- vbuaa=_lo_pbuz1 + lda yoffs + // [408] (byte~) bitmap_init::$5 ← (byte~) bitmap_init::$7 | (byte~) bitmap_init::$4 -- vbuaa=vbuz1_bor_vbuaa + ora _7 + // [409] *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$5 -- pbuc1_derefidx_vbuxx=vbuaa + sta bitmap_plot_ylo,x + // [410] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 -- vbuaa=_hi_pbuz1 + lda yoffs+1 + // [411] *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 -- pbuc1_derefidx_vbuxx=vbuaa + sta bitmap_plot_yhi,x + // [412] if((byte~) bitmap_init::$7!=(byte) 7) goto bitmap_init::@4 -- vbuz1_neq_vbuc1_then_la1 + lda #7 + cmp _7 + bne b4_from_b3 + jmp b5 + // bitmap_init::@5 + b5: + // [413] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (word)(number) $28*(number) 8 -- pbuz1=pbuz1_plus_vwuc1 + clc + lda yoffs + adc #<$28*8 + sta yoffs + lda yoffs+1 + adc #>$28*8 + sta yoffs+1 + // [414] phi from bitmap_init::@3 bitmap_init::@5 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@5->bitmap_init::@4] + b4_from_b3: + b4_from_b5: + // [414] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@5->bitmap_init::@4#0] -- register_copy + jmp b4 + // bitmap_init::@4 + b4: + // [415] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 -- vbuxx=_inc_vbuxx + inx + // [416] if((byte) bitmap_init::y#1!=(byte) 0) goto bitmap_init::@3 -- vbuxx_neq_0_then_la1 + cpx #0 + bne b3_from_b4 + jmp breturn + // bitmap_init::@return + breturn: + // [417] return + rts +} + // mulf_init +// Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) +mulf_init: { + .label sqr1_hi = $2f + .label sqr = $32 + .label sqr1_lo = $2d + .label x_2 = $31 + .label sqr2_hi = $36 + .label sqr2_lo = $34 + .label dir = $38 + // [419] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] + b1_from_mulf_init: + // [419] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 + lda #0 + sta x_2 + // [419] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 + lda #mulf_sqr1_hi+1 + sta sqr1_hi+1 + // [419] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 + lda #mulf_sqr1_lo+1 + sta sqr1_lo+1 + // [419] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 + lda #<0 + sta sqr + lda #>0 + sta sqr+1 + // [419] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuxx=vbuc1 + ldx #0 + jmp b1 + // [419] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] + b1_from_b2: + // [419] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy + // [419] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy + // [419] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy + // [419] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy + // [419] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy + jmp b1 + // mulf_init::@1 + b1: + // [420] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuxx=_inc_vbuxx + inx + // [421] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuaa=vbuxx_band_vbuc1 + txa + and #1 + // [422] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuaa_neq_0_then_la1 + cmp #0 + bne b2_from_b1 + jmp b3 + // mulf_init::@3 + b3: + // [423] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 + inc x_2 + // [424] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 + inc sqr + bne !+ + inc sqr+1 + !: + // [425] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] + b2_from_b1: + b2_from_b3: + // [425] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy + // [425] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy + jmp b2 + // mulf_init::@2 + b2: + // [426] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 -- vbuaa=_lo_vwuz1 + lda sqr + // [427] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 -- _deref_pbuz1=vbuaa + ldy #0 + sta (sqr1_lo),y + // [428] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuaa=_hi_vwuz1 + lda sqr+1 + // [429] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuaa + ldy #0 + sta (sqr1_hi),y + // [430] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 + inc sqr1_hi + bne !+ + inc sqr1_hi+1 + !: + // [431] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 + lda x_2 + clc + adc sqr + sta sqr + bcc !+ + inc sqr+1 + !: + // [432] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 + inc sqr1_lo + bne !+ + inc sqr1_lo+1 + !: + // [433] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 + lda sqr1_lo+1 + cmp #>mulf_sqr1_lo+$200 + bne b1_from_b2 + lda sqr1_lo + cmp #mulf_init::@4] + b4_from_b2: + // [434] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 + lda #$ff + sta dir + // [434] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 + lda #mulf_sqr2_hi + sta sqr2_hi+1 + // [434] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 + lda #mulf_sqr2_lo + sta sqr2_lo+1 + // [434] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuxx=vbuc1 + ldx #-1 + jmp b4 + // [434] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] + b4_from_b5: + // [434] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy + // [434] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy + // [434] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy + // [434] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy + jmp b4 + // mulf_init::@4 + b4: + // [435] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + lda mulf_sqr1_lo,x + ldy #0 + sta (sqr2_lo),y + // [436] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + lda mulf_sqr1_hi,x + ldy #0 + sta (sqr2_hi),y + // [437] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 + inc sqr2_hi + bne !+ + inc sqr2_hi+1 + !: + // [438] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuxx=vbuxx_plus_vbuz1 + txa + clc + adc dir + tax + // [439] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuxx_neq_0_then_la1 + cpx #0 + bne b7_from_b4 + // [441] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] + b5_from_b4: + // [441] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 + lda #1 + sta dir + jmp b5 + // [440] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] + b7_from_b4: + jmp b7 + // mulf_init::@7 + b7: + // [441] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] + b5_from_b7: + // [441] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy + jmp b5 + // mulf_init::@5 + b5: + // [442] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 + inc sqr2_lo + bne !+ + inc sqr2_lo+1 + !: + // [443] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 + lda sqr2_lo+1 + cmp #>mulf_sqr2_lo+$1ff + bne b4_from_b5 + lda sqr2_lo + cmp #f(x) = >(( x * x )/4) + .align $100 + mulf_sqr1_hi: .fill $200, 0 + // g(x) = >((( x - 255) * ( x - 255 ))/4) + .align $100 + mulf_sqr2_hi: .fill $200, 0 + // True type letter c + letter_c: .fill 9*$16, 0 + // Sine and Cosine tables + // Angles: $00=0, $80=PI,$100=2*PI + // Sine/Cosine: signed fixed [-$7f,$7f] + .align $40 +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + + +ASSEMBLER OPTIMIZATIONS +Removing instruction jmp b1 +Removing instruction jmp bend +Removing instruction jmp b8 +Removing instruction jmp b9 +Removing instruction jmp vicSelectGfxBank1 +Removing instruction jmp vicSelectGfxBank1_toDd001 +Removing instruction jmp vicSelectGfxBank1_b1 +Removing instruction jmp toD0181 +Removing instruction jmp b7 +Removing instruction jmp b1 +Removing instruction jmp b2 +Removing instruction jmp b10 +Removing instruction jmp b3 +Removing instruction jmp b4 +Removing instruction jmp b5 +Removing instruction jmp b6 +Removing instruction jmp b1 +Removing instruction jmp b6 +Removing instruction jmp b7 +Removing instruction jmp b4 +Removing instruction jmp b5 +Removing instruction jmp b3 +Removing instruction jmp breturn +Removing instruction jmp b8 +Removing instruction jmp b1 +Removing instruction jmp b2 +Removing instruction jmp breturn +Removing instruction jmp b12 +Removing instruction jmp b13 +Removing instruction jmp b18 +Removing instruction jmp b1 +Removing instruction jmp b14 +Removing instruction jmp b15 +Removing instruction jmp b5 +Removing instruction jmp b6 +Removing instruction jmp b16 +Removing instruction jmp b8 +Removing instruction jmp b7 +Removing instruction jmp b3 +Removing instruction jmp breturn +Removing instruction jmp b9 +Removing instruction jmp b17 +Removing instruction jmp b11 +Removing instruction jmp b10 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp b2 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp b2 +Removing instruction jmp b3 +Removing instruction jmp b4 +Removing instruction jmp breturn +Removing instruction jmp b5 +Removing instruction jmp b3 +Removing instruction jmp b1 +Removing instruction jmp b4 +Removing instruction jmp b2 +Removing instruction jmp breturn +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp b2 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp b6 +Removing instruction jmp b2 +Removing instruction jmp b3 +Removing instruction jmp b5 +Removing instruction jmp b4 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp b3 +Removing instruction jmp b2 +Removing instruction jmp b4 +Removing instruction jmp b7 +Removing instruction jmp b5 +Removing instruction jmp b6 +Removing instruction jmp breturn +Succesful ASM optimization Pass5NextJumpElimination +Removing instruction lda #>0 +Removing instruction lda #<0 +Removing instruction lda #>0 +Removing instruction lda #>0 +Removing instruction lda #<0 +Removing instruction lda #>0 +Removing instruction lda #>0 +Removing instruction lda #<0 +Removing instruction lda #>0 +Removing instruction lda #0 +Removing instruction lda e+1 +Removing instruction lda e1+1 +Removing instruction ldy #0 +Removing instruction lda #>0 +Replacing instruction ldx #0 with TAX +Removing instruction ldy #0 +Removing instruction ldy #0 +Succesful ASM optimization Pass5UnnecesaryLoadElimination +Replacing label b3_from_b5 with b3 +Replacing label b1 with b2 +Replacing label b1_from_b2 with b1 +Replacing label b7_from_b16 with b7 +Replacing label b7_from_b16 with b7 +Replacing label b6_from_b7 with b6 +Replacing label b6_from_b7 with b6 +Replacing label b10_from_b17 with b10 +Replacing label b10_from_b17 with b10 +Replacing label b9_from_b10 with b9 +Replacing label b9_from_b10 with b9 +Replacing label b3_from_b10 with b3 +Replacing label b1_from_sgn_u16 with b1 +Replacing label b1_from_b1 with b1 +Replacing label b1_from_b5 with b1 +Replacing label b2_from_b1 with b2 +Replacing label b2_from_b2 with b2 +Replacing label b2_from_b2 with b2 +Replacing label b6_from_b1 with b2 +Replacing label b1_from_b2 with b1 +Replacing label b4_from_b3 with b4 +Replacing label b3_from_b4 with b3 +Replacing label b2_from_b1 with b2 +Replacing label b1_from_b2 with b1 +Replacing label b1_from_b2 with b1 +Replacing label b7_from_b4 with b5 +Replacing label b4_from_b5 with b4 +Replacing label b4_from_b5 with b4 +Removing instruction b1_from_bbegin: +Removing instruction b1: +Removing instruction bend_from_b1: +Removing instruction b8_from_main: +Removing instruction bitmap_init_from_b8: +Removing instruction b9_from_b8: +Removing instruction bitmap_clear_from_b9: +Removing instruction vicSelectGfxBank1_toDd001_from_vicSelectGfxBank1: +Removing instruction vicSelectGfxBank1_toDd001: +Removing instruction toD0181_from_vicSelectGfxBank1_b1: +Removing instruction toD0181: +Removing instruction b1: +Removing instruction b2_from_b1: +Removing instruction bitmap_clear_from_b2: +Removing instruction show_letter_from_b10: +Removing instruction b3_from_b5: +Removing instruction b8_from_b2: +Removing instruction b1_from_b2: +Removing instruction b6_from_b5: +Removing instruction b6_from_b7: +Removing instruction b7_from_b16: +Removing instruction b7_from_b8: +Removing instruction b3_from_b10: +Removing instruction b3_from_b7: +Removing instruction b9_from_b10: +Removing instruction b9_from_b2: +Removing instruction b10_from_b11: +Removing instruction b10_from_b17: +Removing instruction b1_from_sgn_u16: +Removing instruction breturn_from_b1: +Removing instruction breturn_from_abs_u16: +Removing instruction b1_from_b1: +Removing instruction b1_from_b3: +Removing instruction b1_from_b5: +Removing instruction b2_from_b1: +Removing instruction b2_from_b4: +Removing instruction breturn: +Removing instruction b1_from_bitmap_clear: +Removing instruction memset_from_b1: +Removing instruction b2_from_b1: +Removing instruction b2_from_b2: +Removing instruction b1_from_b2: +Removing instruction b6_from_b1: +Removing instruction b6: +Removing instruction b2_from_b6: +Removing instruction b3_from_b4: +Removing instruction b4_from_b3: +Removing instruction b4_from_b5: +Removing instruction b1_from_b2: +Removing instruction b2_from_b1: +Removing instruction b2_from_b3: +Removing instruction b4_from_b5: +Removing instruction b7_from_b4: +Removing instruction b7: +Removing instruction b5_from_b7: +Succesful ASM optimization Pass5RedundantLabelElimination +Removing instruction bend: +Removing instruction mulf_init_from_main: +Removing instruction b8: +Removing instruction b9: +Removing instruction vicSelectGfxBank1: +Removing instruction vicSelectGfxBank1_b1: +Removing instruction b7: +Removing instruction b1_from_b7: +Removing instruction b10: +Removing instruction b3_from_b10: +Removing instruction b5: +Removing instruction b6: +Removing instruction b1_from_b6: +Removing instruction b1_from_show_letter: +Removing instruction rotate_from_b1: +Removing instruction b6: +Removing instruction rotate_from_b6: +Removing instruction b7: +Removing instruction b4: +Removing instruction b5: +Removing instruction bitmap_line_from_b5: +Removing instruction breturn: +Removing instruction b1_from_b9: +Removing instruction b8: +Removing instruction b1_from_bitmap_plot_spline_8seg: +Removing instruction bitmap_line_from_b1: +Removing instruction b2: +Removing instruction breturn: +Removing instruction abs_u16_from_bitmap_line: +Removing instruction b12: +Removing instruction abs_u16_from_b12: +Removing instruction b13: +Removing instruction b18: +Removing instruction sgn_u16_from_b1: +Removing instruction b14: +Removing instruction sgn_u16_from_b14: +Removing instruction b15: +Removing instruction b5: +Removing instruction bitmap_plot_from_b6: +Removing instruction b16: +Removing instruction b8: +Removing instruction bitmap_plot_from_b3: +Removing instruction bitmap_plot_from_b9: +Removing instruction b17: +Removing instruction b11: +Removing instruction bitmap_plot_from_b4: +Removing instruction breturn: +Removing instruction breturn_from_sgn_u16: +Removing instruction b1_from_spline_8segB: +Removing instruction b2: +Removing instruction breturn: +Removing instruction mulf16s_from_rotate: +Removing instruction b1: +Removing instruction mulf16s_from_b1: +Removing instruction b2: +Removing instruction mulf16s_from_b2: +Removing instruction b3: +Removing instruction mulf16s_from_b3: +Removing instruction b4: +Removing instruction breturn: +Removing instruction b5: +Removing instruction b3: +Removing instruction b4: +Removing instruction breturn: +Removing instruction memset_from_bitmap_clear: +Removing instruction b1: +Removing instruction breturn: +Removing instruction b1: +Removing instruction b1_from_bitmap_init: +Removing instruction b2_from_b1: +Removing instruction b3_from_b2: +Removing instruction b5: +Removing instruction breturn: +Removing instruction b1_from_mulf_init: +Removing instruction b3: +Removing instruction b4_from_b2: +Removing instruction b5_from_b4: +Removing instruction b6: +Removing instruction breturn: +Succesful ASM optimization Pass5UnusedLabelElimination +Updating BasicUpstart to call main directly +Removing instruction jsr main +Succesful ASM optimization Pass5SkipBegin +Skipping double jump to b3 in bne b3_from_b3 +Replacing jump to rts with rts in jmp breturn +Replacing jump to rts with rts in jmp breturn +Replacing jump to rts with rts in jmp breturn +Skipping double jump to breturn in jmp breturn_from_b1 +Succesful ASM optimization Pass5DoubleJumpElimination +Relabelling long label b3_from_b3 to b1 +Relabelling long label breturn_from_b1 to b2 +Succesful ASM optimization Pass5RelabelLongLabels +Removing instruction jmp b3 +Removing instruction jmp b1 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp b1 +Removing instruction jmp b2 +Removing instruction jmp b3 +Removing instruction jmp b1 +Removing instruction jmp b4 +Removing instruction jmp b5 +Succesful ASM optimization Pass5NextJumpElimination +Replacing instruction ldy #0 with TAY +Removing instruction b1: +Succesful ASM optimization Pass5RedundantLabelElimination +Removing instruction bbegin: +Removing instruction breturn: +Removing instruction breturn: +Removing instruction b2: +Removing instruction breturn: +Succesful ASM optimization Pass5UnusedLabelElimination +Removing instruction jmp b3 +Succesful ASM optimization Pass5NextJumpElimination +Fixing long branch [1161] bne b1 to beq +Fixing long branch [699] beq b4 to bne + +FINAL SYMBOL TABLE +(label) @1 +(label) @begin +(label) @end +(byte*) BITMAP_GRAPHICS +(const byte*) BITMAP_GRAPHICS#0 BITMAP_GRAPHICS = (byte*) 24576 +(byte*) BITMAP_SCREEN +(const byte*) BITMAP_SCREEN#0 BITMAP_SCREEN = (byte*) 23552 +(byte) BLACK +(byte*) CIA2_PORT_A +(const byte*) CIA2_PORT_A#0 CIA2_PORT_A = (byte*) 56576 +(byte*) CIA2_PORT_A_DDR +(const byte*) CIA2_PORT_A_DDR#0 CIA2_PORT_A_DDR = (byte*) 56578 +(signed byte*) COS +(const signed byte*) COS#0 COS = (const signed byte[$140]) SIN#0+(byte) $40 +(byte*) D011 +(const byte*) D011#0 D011 = (byte*) 53265 +(byte*) D018 +(const byte*) D018#0 D018 = (byte*) 53272 +(const byte) LINE_TO LINE_TO = (byte) 2 +(const byte) MOVE_TO MOVE_TO = (byte) 0 +(const byte) OFFSET_STRUCT_SEGMENT_TO OFFSET_STRUCT_SEGMENT_TO = (byte) 1 +(const byte) OFFSET_STRUCT_SEGMENT_VIA OFFSET_STRUCT_SEGMENT_VIA = (byte) 5 +(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y OFFSET_STRUCT_SPLINEVECTOR16_Y = (byte) 2 +(byte*) PRINT_SCREEN +(const byte) RADIX::BINARY BINARY = (number) 2 +(const byte) RADIX::DECIMAL DECIMAL = (number) $a +(const byte) RADIX::HEXADECIMAL HEXADECIMAL = (number) $10 +(const byte) RADIX::OCTAL OCTAL = (number) 8 +(byte*) RASTER +(const byte*) RASTER#0 RASTER = (byte*) 53266 +(signed byte[$140]) SIN +(const signed byte[$140]) SIN#0 SIN = kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + }} +(const byte) SIZEOF_STRUCT_SEGMENT SIZEOF_STRUCT_SEGMENT = (byte) 9 +(const byte) SIZEOF_STRUCT_SPLINEVECTOR16 SIZEOF_STRUCT_SPLINEVECTOR16 = (byte) 4 +(struct SplineVector16[9]) SPLINE_8SEG +(const struct SplineVector16[9]) SPLINE_8SEG#0 SPLINE_8SEG = { fill( 9, 0) } +(const byte) SPLINE_TO SPLINE_TO = (byte) 1 +(const byte) Segment::SegmentType::LINE_TO LINE_TO = (byte) 2 +(const byte) Segment::SegmentType::MOVE_TO MOVE_TO = (byte) 0 +(const byte) Segment::SegmentType::SPLINE_TO SPLINE_TO = (byte) 1 +(struct SplineVector16) Segment::to +(byte) Segment::type +(struct SplineVector16) Segment::via +(signed word) SplineVector16::x +(signed word) SplineVector16::y +(signed dword) SplineVector32::x +(signed dword) SplineVector32::y +(byte) VIC_BMM +(const byte) VIC_BMM#0 VIC_BMM = (byte) $20 +(byte) VIC_DEN +(const byte) VIC_DEN#0 VIC_DEN = (byte) $10 +(byte) VIC_RSEL +(const byte) VIC_RSEL#0 VIC_RSEL = (byte) 8 +(byte) WHITE +(const byte) WHITE#0 WHITE = (byte) 1 +(word()) abs_u16((word) abs_u16::w) +(byte~) abs_u16::$0 reg byte a 4.0 +(byte~) abs_u16::$1 reg byte a 4.0 +(label) abs_u16::@1 +(label) abs_u16::@return +(word) abs_u16::return +(word) abs_u16::return#0 return zp ZP_WORD:21 4.0 +(word) abs_u16::return#1 return zp ZP_WORD:21 4.0 +(word) abs_u16::return#2 return zp ZP_WORD:21 4.0 +(word) abs_u16::return#4 return zp ZP_WORD:21 2.0 +(word) abs_u16::w +(word) abs_u16::w#0 w zp ZP_WORD:21 4.0 +(word) abs_u16::w#1 w zp ZP_WORD:21 4.0 +(word) abs_u16::w#2 w zp ZP_WORD:21 2.5 +(void()) bitmap_clear((byte) bitmap_clear::bgcol , (byte) bitmap_clear::fgcol) +(label) bitmap_clear::@1 +(label) bitmap_clear::@return +(byte) bitmap_clear::bgcol +(byte) bitmap_clear::col +(const byte) bitmap_clear::col#0 col = (const byte) WHITE#0<<(byte) 4 +(byte) bitmap_clear::fgcol +(byte*) bitmap_gfx +(void()) bitmap_init((byte*) bitmap_init::gfx , (byte*) bitmap_init::screen) +(byte~) bitmap_init::$4 reg byte a 22.0 +(byte~) bitmap_init::$5 reg byte a 22.0 +(byte~) bitmap_init::$6 reg byte a 22.0 +(byte~) bitmap_init::$7 $7 zp ZP_BYTE:93 5.5 +(label) bitmap_init::@1 +(label) bitmap_init::@2 +(label) bitmap_init::@3 +(label) bitmap_init::@4 +(label) bitmap_init::@5 +(label) bitmap_init::@6 +(label) bitmap_init::@return +(byte) bitmap_init::bits +(byte) bitmap_init::bits#1 reg byte a 11.0 +(byte) bitmap_init::bits#3 reg byte a 16.5 +(byte) bitmap_init::bits#4 reg byte a 7.333333333333333 +(byte*) bitmap_init::gfx +(byte*) bitmap_init::screen +(byte) bitmap_init::x +(byte) bitmap_init::x#1 reg byte x 16.5 +(byte) bitmap_init::x#2 reg byte x 5.5 +(byte) bitmap_init::y +(byte) bitmap_init::y#1 reg byte x 16.5 +(byte) bitmap_init::y#2 reg byte x 5.5 +(byte*) bitmap_init::yoffs +(byte*) bitmap_init::yoffs#1 yoffs zp ZP_WORD:43 22.0 +(byte*) bitmap_init::yoffs#2 yoffs zp ZP_WORD:43 6.875 +(byte*) bitmap_init::yoffs#4 yoffs zp ZP_WORD:43 11.0 +(void()) bitmap_line((word) bitmap_line::x1 , (word) bitmap_line::y1 , (word) bitmap_line::x2 , (word) bitmap_line::y2) +(label) bitmap_line::@1 +(label) bitmap_line::@10 +(label) bitmap_line::@11 +(label) bitmap_line::@12 +(label) bitmap_line::@13 +(label) bitmap_line::@14 +(label) bitmap_line::@15 +(label) bitmap_line::@16 +(label) bitmap_line::@17 +(label) bitmap_line::@18 +(label) bitmap_line::@2 +(label) bitmap_line::@3 +(label) bitmap_line::@4 +(label) bitmap_line::@5 +(label) bitmap_line::@6 +(label) bitmap_line::@7 +(label) bitmap_line::@8 +(label) bitmap_line::@9 +(label) bitmap_line::@return +(word) bitmap_line::dx +(word) bitmap_line::dx#0 dx zp ZP_WORD:61 75.275 +(word) bitmap_line::dy +(word) bitmap_line::dy#0 dy zp ZP_WORD:21 83.6388888888889 +(word) bitmap_line::e +(word) bitmap_line::e#0 e zp ZP_WORD:13 4.0 +(word) bitmap_line::e#1 e zp ZP_WORD:13 1334.6666666666667 +(word) bitmap_line::e#2 e zp ZP_WORD:13 2002.0 +(word) bitmap_line::e#3 e zp ZP_WORD:13 400.79999999999995 +(word) bitmap_line::e#6 e zp ZP_WORD:13 1501.5 +(word) bitmap_line::e1 +(word) bitmap_line::e1#0 e1 zp ZP_WORD:15 4.0 +(word) bitmap_line::e1#1 e1 zp ZP_WORD:15 1334.6666666666667 +(word) bitmap_line::e1#2 e1 zp ZP_WORD:15 2002.0 +(word) bitmap_line::e1#3 e1 zp ZP_WORD:15 400.79999999999995 +(word) bitmap_line::e1#6 e1 zp ZP_WORD:15 1501.5 +(word) bitmap_line::sx +(word) bitmap_line::sx#0 sx zp ZP_WORD:63 66.80000000000001 +(word) bitmap_line::sy +(word) bitmap_line::sy#0 sy zp ZP_WORD:19 77.07692307692308 +(word) bitmap_line::x +(word) bitmap_line::x#0 x zp ZP_WORD:4 48.34782608695653 +(word) bitmap_line::x#1 x zp ZP_WORD:4 1001.0 +(word) bitmap_line::x#12 x zp ZP_WORD:4 2002.0 +(word) bitmap_line::x#13 x zp ZP_WORD:4 572.2857142857142 +(word) bitmap_line::x#15 x zp ZP_WORD:4 572.0 +(word) bitmap_line::x#6 x zp ZP_WORD:4 1002.0 +(word) bitmap_line::x#7 x zp ZP_WORD:4 751.25 +(word) bitmap_line::x1 +(word) bitmap_line::x1#0 x1 zp ZP_WORD:4 50.5 +(word) bitmap_line::x1#1 x1 zp ZP_WORD:4 400.4 +(word) bitmap_line::x2 +(word) bitmap_line::x2#0 x2 zp ZP_WORD:9 101.0 +(word) bitmap_line::x2#10 x2 zp ZP_WORD:9 65.84375 +(word~) bitmap_line::x2#13 x2 zp ZP_WORD:9 1001.0 +(word) bitmap_line::y +(word) bitmap_line::y#0 y zp ZP_WORD:6 50.45454545454547 +(word) bitmap_line::y#1 y zp ZP_WORD:6 572.0 +(word) bitmap_line::y#13 y zp ZP_WORD:6 2002.0 +(word) bitmap_line::y#15 y zp ZP_WORD:6 429.2857142857143 +(word) bitmap_line::y#2 y zp ZP_WORD:6 1001.0 +(word) bitmap_line::y#4 y zp ZP_WORD:6 501.0 +(word) bitmap_line::y#7 y zp ZP_WORD:6 2002.0 +(word) bitmap_line::y1 +(word) bitmap_line::y1#0 y1 zp ZP_WORD:6 67.33333333333333 +(word) bitmap_line::y1#1 y1 zp ZP_WORD:6 500.5 +(word) bitmap_line::y2 +(word) bitmap_line::y2#0 y2 zp ZP_WORD:11 202.0 +(word) bitmap_line::y2#11 y2 zp ZP_WORD:11 65.84375 +(word~) bitmap_line::y2#13 y2 zp ZP_WORD:11 2002.0 +(void()) bitmap_plot((word) bitmap_plot::x , (byte) bitmap_plot::y) +(word~) bitmap_plot::$1 $1 zp ZP_WORD:67 4.0 +(byte~) bitmap_plot::$2 reg byte a 4.0 +(label) bitmap_plot::@return +(byte*) bitmap_plot::plotter +(word) bitmap_plot::plotter#0 plotter zp ZP_WORD:65 1.0 +(byte*) bitmap_plot::plotter#1 plotter zp ZP_WORD:65 3.0 +(word) bitmap_plot::x +(word) bitmap_plot::x#0 x zp ZP_WORD:4 4.0 +(word) bitmap_plot::x#1 x zp ZP_WORD:4 2002.0 +(word) bitmap_plot::x#2 x zp ZP_WORD:4 4.0 +(word) bitmap_plot::x#3 x zp ZP_WORD:4 2002.0 +(word) bitmap_plot::x#4 x zp ZP_WORD:4 502.5 +(byte) bitmap_plot::y +(byte) bitmap_plot::y#0 reg byte x 2.0 +(byte) bitmap_plot::y#1 reg byte x 1001.0 +(byte) bitmap_plot::y#2 reg byte x 2.0 +(byte) bitmap_plot::y#3 reg byte x 1001.0 +(byte) bitmap_plot::y#4 reg byte x 2010.0 +(byte[$100]) bitmap_plot_bit +(const byte[$100]) bitmap_plot_bit#0 bitmap_plot_bit = { fill( $100, 0) } +(void()) bitmap_plot_spline_8seg() +(byte~) bitmap_plot_spline_8seg::$8 reg byte x 500.5 +(byte~) bitmap_plot_spline_8seg::$9 reg byte x 1501.5 +(label) bitmap_plot_spline_8seg::@1 +(label) bitmap_plot_spline_8seg::@2 +(label) bitmap_plot_spline_8seg::@return +(signed word) bitmap_plot_spline_8seg::current_x +(signed word) bitmap_plot_spline_8seg::current_x#0 current_x zp ZP_WORD:4 2.0 +(signed word) bitmap_plot_spline_8seg::current_x#1 current_x zp ZP_WORD:4 500.5 +(signed word) bitmap_plot_spline_8seg::current_x#2 current_x zp ZP_WORD:4 1003.0 +(signed word) bitmap_plot_spline_8seg::current_y +(signed word) bitmap_plot_spline_8seg::current_y#0 current_y zp ZP_WORD:6 4.0 +(signed word) bitmap_plot_spline_8seg::current_y#1 current_y zp ZP_WORD:6 667.3333333333334 +(signed word) bitmap_plot_spline_8seg::current_y#2 current_y zp ZP_WORD:6 501.5 +(byte) bitmap_plot_spline_8seg::n +(byte) bitmap_plot_spline_8seg::n#1 n zp ZP_BYTE:8 1501.5 +(byte) bitmap_plot_spline_8seg::n#2 n zp ZP_BYTE:8 400.4 +(byte[$100]) bitmap_plot_yhi +(const byte[$100]) bitmap_plot_yhi#0 bitmap_plot_yhi = { fill( $100, 0) } +(byte[$100]) bitmap_plot_ylo +(const byte[$100]) bitmap_plot_ylo#0 bitmap_plot_ylo = { fill( $100, 0) } +(byte*) bitmap_screen +(struct Segment[$16]) letter_c +(const struct Segment[$16]) letter_c#0 letter_c = { fill( $16, 0) } +(void()) main() +(label) main::@1 +(label) main::@10 +(label) main::@2 +(label) main::@3 +(label) main::@4 +(label) main::@5 +(label) main::@6 +(label) main::@7 +(label) main::@8 +(label) main::@9 +(byte) main::angle +(byte) main::angle#1 angle zp ZP_BYTE:2 22.0 +(byte) main::angle#2 angle zp ZP_BYTE:2 3.3000000000000003 +(label) main::toD0181 +(word~) main::toD0181_$0 +(number~) main::toD0181_$1 +(number~) main::toD0181_$2 +(number~) main::toD0181_$3 +(word~) main::toD0181_$4 +(byte~) main::toD0181_$5 +(number~) main::toD0181_$6 +(number~) main::toD0181_$7 +(number~) main::toD0181_$8 +(byte*) main::toD0181_gfx +(byte) main::toD0181_return +(const byte) main::toD0181_return#0 toD0181_return = >(word)(const byte*) BITMAP_SCREEN#0&(word) $3fff*(byte) 4|>(word)(const byte*) BITMAP_GRAPHICS#0/(byte) 4&(byte) $f +(byte*) main::toD0181_screen +(label) main::vicSelectGfxBank1 +(byte~) main::vicSelectGfxBank1_$0 +(label) main::vicSelectGfxBank1_@1 +(byte*) main::vicSelectGfxBank1_gfx +(label) main::vicSelectGfxBank1_toDd001 +(word~) main::vicSelectGfxBank1_toDd001_$0 +(byte~) main::vicSelectGfxBank1_toDd001_$1 +(number~) main::vicSelectGfxBank1_toDd001_$2 +(number~) main::vicSelectGfxBank1_toDd001_$3 +(byte*) main::vicSelectGfxBank1_toDd001_gfx +(byte) main::vicSelectGfxBank1_toDd001_return +(const byte) main::vicSelectGfxBank1_toDd001_return#0 vicSelectGfxBank1_toDd001_return = (byte) 3^>(word)(const byte*) BITMAP_SCREEN#0/(byte) $40 +(byte) main::w +(byte) main::w#1 reg byte x 151.5 +(byte) main::w#4 reg byte x 67.33333333333333 +(void*()) memset((void*) memset::str , (byte) memset::c , (word) memset::num) +(label) memset::@1 +(label) memset::@2 +(label) memset::@return +(byte) memset::c +(byte) memset::c#3 reg byte x 12.625 +(byte*) memset::dst +(byte*) memset::dst#1 dst zp ZP_WORD:41 151.5 +(byte*) memset::dst#2 dst zp ZP_WORD:41 152.5 +(byte*~) memset::dst#3 dst zp ZP_WORD:41 4.0 +(byte*) memset::end +(byte*) memset::end#0 end zp ZP_WORD:39 17.166666666666664 +(word) memset::num +(word) memset::num#2 num zp ZP_WORD:39 2.0 +(void*) memset::return +(void*) memset::str +(void*) memset::str#3 str zp ZP_WORD:41 +(signed dword()) mulf16s((signed word) mulf16s::a , (signed word) mulf16s::b) +(word~) mulf16s::$13 $13 zp ZP_WORD:91 4.0 +(word~) mulf16s::$16 $16 zp ZP_WORD:89 4.0 +(word~) mulf16s::$17 $17 zp ZP_WORD:91 4.0 +(word~) mulf16s::$9 $9 zp ZP_WORD:89 4.0 +(label) mulf16s::@1 +(label) mulf16s::@2 +(label) mulf16s::@3 +(label) mulf16s::@4 +(label) mulf16s::@5 +(label) mulf16s::@return +(signed word) mulf16s::a +(signed word) mulf16s::a#0 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#1 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#2 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#3 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#4 a zp ZP_WORD:31 0.7692307692307693 +(signed word) mulf16s::b +(signed word) mulf16s::b#0 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#1 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#2 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#3 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#4 b zp ZP_WORD:33 0.9090909090909092 +(dword) mulf16s::m +(dword) mulf16s::m#0 m zp ZP_DWORD:35 2.0 +(dword) mulf16s::m#1 m zp ZP_DWORD:35 4.0 +(dword) mulf16s::m#2 m zp ZP_DWORD:35 4.0 +(dword) mulf16s::m#4 m zp ZP_DWORD:35 4.0 +(dword) mulf16s::m#5 m zp ZP_DWORD:35 2.5 +(signed dword) mulf16s::return +(signed dword) mulf16s::return#0 return zp ZP_DWORD:35 1.6666666666666665 +(signed dword) mulf16s::return#10 return zp ZP_DWORD:35 4.0 +(signed dword) mulf16s::return#2 return zp ZP_DWORD:35 4.0 +(signed dword) mulf16s::return#3 return zp ZP_DWORD:35 4.0 +(signed dword) mulf16s::return#4 return zp ZP_DWORD:35 4.0 +(dword()) mulf16u((word) mulf16u::a , (word) mulf16u::b) +(label) mulf16u::@return +(word) mulf16u::a +(word) mulf16u::a#0 a zp ZP_WORD:85 2.0 +(word) mulf16u::b +(word) mulf16u::b#0 b zp ZP_WORD:87 2.0 +(word*) mulf16u::memA +(const word*) mulf16u::memA#0 memA = (word*) 248 +(word*) mulf16u::memB +(const word*) mulf16u::memB#0 memB = (word*) 250 +(dword*) mulf16u::memR +(const dword*) mulf16u::memR#0 memR = (dword*) 252 +(dword) mulf16u::return +(dword) mulf16u::return#0 return zp ZP_DWORD:35 1.3333333333333333 +(dword) mulf16u::return#2 return zp ZP_DWORD:35 4.0 +(void()) mulf_init() +(byte~) mulf_init::$10 reg byte a 22.0 +(byte~) mulf_init::$11 reg byte a 22.0 +(byte~) mulf_init::$7 reg byte a 22.0 +(label) mulf_init::@1 +(label) mulf_init::@2 +(label) mulf_init::@3 +(label) mulf_init::@4 +(label) mulf_init::@5 +(label) mulf_init::@6 +(label) mulf_init::@7 +(label) mulf_init::@return +(byte) mulf_init::c +(byte) mulf_init::c#1 reg byte x 2.357142857142857 +(byte) mulf_init::c#2 reg byte x 22.0 +(byte) mulf_init::dir +(byte) mulf_init::dir#2 dir zp ZP_BYTE:56 4.714285714285714 +(byte) mulf_init::dir#3 dir zp ZP_BYTE:56 7.333333333333333 +(word) mulf_init::sqr +(word) mulf_init::sqr#1 sqr zp ZP_WORD:50 7.333333333333333 +(word) mulf_init::sqr#2 sqr zp ZP_WORD:50 22.0 +(word) mulf_init::sqr#3 sqr zp ZP_WORD:50 9.166666666666666 +(word) mulf_init::sqr#4 sqr zp ZP_WORD:50 6.6000000000000005 +(byte*) mulf_init::sqr1_hi +(byte*) mulf_init::sqr1_hi#1 sqr1_hi zp ZP_WORD:47 5.5 +(byte*) mulf_init::sqr1_hi#2 sqr1_hi zp ZP_WORD:47 3.0 +(byte*) mulf_init::sqr1_lo +(byte*) mulf_init::sqr1_lo#1 sqr1_lo zp ZP_WORD:45 16.5 +(byte*) mulf_init::sqr1_lo#2 sqr1_lo zp ZP_WORD:45 2.5384615384615383 +(byte*) mulf_init::sqr2_hi +(byte*) mulf_init::sqr2_hi#1 sqr2_hi zp ZP_WORD:54 3.142857142857143 +(byte*) mulf_init::sqr2_hi#2 sqr2_hi zp ZP_WORD:54 11.0 +(byte*) mulf_init::sqr2_lo +(byte*) mulf_init::sqr2_lo#1 sqr2_lo zp ZP_WORD:52 16.5 +(byte*) mulf_init::sqr2_lo#2 sqr2_lo zp ZP_WORD:52 4.125 +(byte) mulf_init::x_2 +(byte) mulf_init::x_2#1 x_2 zp ZP_BYTE:49 11.0 +(byte) mulf_init::x_2#2 x_2 zp ZP_BYTE:49 4.888888888888889 +(byte) mulf_init::x_2#3 x_2 zp ZP_BYTE:49 8.25 +(byte) mulf_init::x_255 +(byte) mulf_init::x_255#1 reg byte x 5.5 +(byte) mulf_init::x_255#2 reg byte x 11.0 +(byte[$200]) mulf_sqr1_hi +(const byte[$200]) mulf_sqr1_hi#0 mulf_sqr1_hi = { fill( $200, 0) } +(byte[$200]) mulf_sqr1_lo +(const byte[$200]) mulf_sqr1_lo#0 mulf_sqr1_lo = { fill( $200, 0) } +(byte[$200]) mulf_sqr2_hi +(const byte[$200]) mulf_sqr2_hi#0 mulf_sqr2_hi = { fill( $200, 0) } +(byte[$200]) mulf_sqr2_lo +(const byte[$200]) mulf_sqr2_lo#0 mulf_sqr2_lo = { fill( $200, 0) } +(struct SplineVector16()) rotate((signed word) rotate::vector_x , (signed word) rotate::vector_y , (byte) rotate::angle) +(signed dword~) rotate::$1 $1 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$10 $10 zp ZP_WORD:81 4.0 +(signed dword~) rotate::$11 $11 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$12 $12 zp ZP_WORD:83 4.0 +(signed word~) rotate::$13 $13 zp ZP_WORD:83 4.0 +(byte~) rotate::$15 reg byte a 2.0 +(byte~) rotate::$18 reg byte a 2.0 +(signed word~) rotate::$2 $2 zp ZP_WORD:77 4.0 +(signed dword~) rotate::$4 $4 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$5 $5 zp ZP_WORD:79 4.0 +(signed dword~) rotate::$8 $8 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$9 $9 zp ZP_WORD:81 4.0 +(label) rotate::@1 +(label) rotate::@2 +(label) rotate::@3 +(label) rotate::@4 +(label) rotate::@return +(byte) rotate::angle +(byte) rotate::angle#0 reg byte y 202.0 +(byte) rotate::angle#1 reg byte y 202.0 +(byte) rotate::angle#2 reg byte y 12.625 +(signed word) rotate::cos_a +(signed word) rotate::cos_a#0 cos_a zp ZP_WORD:31 0.75 +(struct SplineVector16) rotate::return +(signed word) rotate::return_x +(signed word) rotate::return_x#0 return_x zp ZP_WORD:23 101.0 +(signed word) rotate::return_x#1 return_x zp ZP_WORD:23 101.0 +(signed word) rotate::return_x#2 return_x zp ZP_WORD:23 34.0 +(signed word) rotate::return_y +(signed word) rotate::return_y#0 return_y zp ZP_WORD:25 101.0 +(signed word) rotate::return_y#1 return_y zp ZP_WORD:25 101.0 +(signed word) rotate::return_y#2 return_y zp ZP_WORD:25 34.0 +(signed word) rotate::rotated_x +(signed word) rotate::rotated_y +(signed word) rotate::sin_a +(signed word) rotate::sin_a#0 sin_a zp ZP_WORD:31 0.6666666666666666 +(struct SplineVector16) rotate::vector +(signed word) rotate::vector_x +(signed word) rotate::vector_x#0 vector_x zp ZP_WORD:27 67.33333333333333 +(signed word) rotate::vector_x#1 vector_x zp ZP_WORD:27 67.33333333333333 +(signed word) rotate::vector_x#2 vector_x zp ZP_WORD:27 7.9230769230769225 +(signed word) rotate::vector_y +(signed word) rotate::vector_y#0 vector_y zp ZP_WORD:29 101.0 +(signed word) rotate::vector_y#1 vector_y zp ZP_WORD:29 101.0 +(signed word) rotate::vector_y#2 vector_y zp ZP_WORD:29 11.444444444444443 +(signed word) rotate::xr +(signed word) rotate::xr#0 xr zp ZP_WORD:77 0.25 +(signed word) rotate::xr#1 xr zp ZP_WORD:77 0.4444444444444444 +(signed word) rotate::yr +(signed word) rotate::yr#0 yr zp ZP_WORD:79 0.23529411764705882 +(signed word) rotate::yr#1 yr zp ZP_WORD:79 1.3333333333333333 +(word()) sgn_u16((word) sgn_u16::w) +(byte~) sgn_u16::$0 reg byte a 4.0 +(byte~) sgn_u16::$1 reg byte a 4.0 +(label) sgn_u16::@1 +(label) sgn_u16::@return +(word) sgn_u16::return +(word) sgn_u16::return#0 return zp ZP_WORD:19 4.0 +(word) sgn_u16::return#1 return zp ZP_WORD:19 4.0 +(word) sgn_u16::return#4 return zp ZP_WORD:19 1.0 +(word) sgn_u16::w +(word) sgn_u16::w#0 w zp ZP_WORD:17 4.0 +(word) sgn_u16::w#1 w zp ZP_WORD:17 4.0 +(word) sgn_u16::w#2 w zp ZP_WORD:17 6.0 +(void()) show_letter((byte) show_letter::angle) +(struct SplineVector16~) show_letter::$2 +(byte~) show_letter::$20 reg byte x 151.5 +(byte~) show_letter::$21 reg byte x 151.5 +(byte~) show_letter::$22 reg byte a 202.0 +(byte) show_letter::$32 reg byte a 202.0 +(byte) show_letter::$34 reg byte a 202.0 +(byte) show_letter::$36 reg byte a 202.0 +(struct SplineVector16~) show_letter::$7 +(label) show_letter::@1 +(label) show_letter::@2 +(label) show_letter::@3 +(label) show_letter::@4 +(label) show_letter::@5 +(label) show_letter::@6 +(label) show_letter::@7 +(label) show_letter::@8 +(label) show_letter::@9 +(label) show_letter::@return +(byte) show_letter::angle +(byte) show_letter::angle#0 angle zp ZP_BYTE:2 3.6724137931034484 +(signed word) show_letter::current_x +(signed word) show_letter::current_x#10 current_x#10 zp ZP_WORD:57 7.76923076923077 +(signed word~) show_letter::current_x#11 current_x zp ZP_WORD:4 101.0 +(signed word) show_letter::current_x#4 current_x zp ZP_WORD:4 5.315789473684211 +(signed word) show_letter::current_y +(signed word) show_letter::current_y#10 current_y#10 zp ZP_WORD:59 7.76923076923077 +(signed word~) show_letter::current_y#11 current_y zp ZP_WORD:6 202.0 +(signed word) show_letter::current_y#4 current_y zp ZP_WORD:6 5.05 +(byte) show_letter::i +(byte) show_letter::i#1 i zp ZP_BYTE:3 75.75 +(byte) show_letter::i#10 i zp ZP_BYTE:3 15.538461538461537 +(signed word) show_letter::segment_to_x +(signed word) show_letter::segment_to_y +(byte) show_letter::segment_type +(byte) show_letter::segment_type#0 reg byte a 151.5 +(signed word) show_letter::segment_via_x +(signed word) show_letter::segment_via_x#0 segment_via_x zp ZP_WORD:23 22.444444444444443 +(signed word) show_letter::segment_via_y +(signed word) show_letter::segment_via_y#0 segment_via_y zp ZP_WORD:25 22.444444444444443 +(signed word) show_letter::to_x +(signed word) show_letter::to_x#0 to_x zp ZP_WORD:27 101.0 +(signed word) show_letter::to_x#1 to_x zp ZP_WORD:27 101.0 +(signed word) show_letter::to_x#2 to_x#2 zp ZP_WORD:23 101.0 +(signed word) show_letter::to_y +(signed word) show_letter::to_y#0 to_y zp ZP_WORD:29 101.0 +(signed word) show_letter::to_y#1 to_y zp ZP_WORD:29 101.0 +(signed word) show_letter::to_y#2 to_y#2 zp ZP_WORD:25 101.0 +(signed word) show_letter::via_x +(signed word) show_letter::via_x#0 via_x zp ZP_WORD:27 101.0 +(signed word) show_letter::via_x#1 via_x zp ZP_WORD:27 101.0 +(signed word) show_letter::via_x#2 via_x#2 zp ZP_WORD:23 101.0 +(signed word) show_letter::via_y +(signed word) show_letter::via_y#0 via_y zp ZP_WORD:29 101.0 +(signed word) show_letter::via_y#1 via_y zp ZP_WORD:29 101.0 +(signed word) show_letter::via_y#2 via_y#2 zp ZP_WORD:25 101.0 +(void()) spline_8segB((signed word) spline_8segB::p0_x , (signed word) spline_8segB::p0_y , (signed word) spline_8segB::p1_x , (signed word) spline_8segB::p1_y , (signed word) spline_8segB::p2_x , (signed word) spline_8segB::p2_y) +(signed word~) spline_8segB::$0 $0 zp ZP_WORD:69 4.0 +(signed word~) spline_8segB::$1 $1 zp ZP_WORD:69 4.0 +(signed word~) spline_8segB::$10 $10 zp ZP_WORD:23 4.0 +(signed word~) spline_8segB::$12 $12 zp ZP_WORD:25 4.0 +(signed word~) spline_8segB::$18 $18 zp ZP_WORD:4 4.0 +(signed word~) spline_8segB::$19 $19 zp ZP_WORD:4 1.3333333333333333 +(signed word~) spline_8segB::$20 $20 zp ZP_WORD:6 4.0 +(signed word~) spline_8segB::$21 $21 zp ZP_WORD:6 2.0 +(signed word~) spline_8segB::$22 $22 zp ZP_WORD:73 2002.0 +(signed word~) spline_8segB::$23 $23 zp ZP_WORD:73 500.5 +(signed word~) spline_8segB::$24 $24 zp ZP_WORD:75 2002.0 +(signed word~) spline_8segB::$25 $25 zp ZP_WORD:75 667.3333333333334 +(signed word~) spline_8segB::$3 $3 zp ZP_WORD:71 4.0 +(byte~) spline_8segB::$31 reg byte x 1501.5 +(signed word~) spline_8segB::$4 $4 zp ZP_WORD:71 4.0 +(signed word~) spline_8segB::$6 $6 zp ZP_WORD:23 4.0 +(signed word~) spline_8segB::$8 $8 zp ZP_WORD:25 4.0 +(label) spline_8segB::@1 +(label) spline_8segB::@2 +(label) spline_8segB::@return +(signed word) spline_8segB::a_x +(signed word) spline_8segB::a_x#0 a_x zp ZP_WORD:69 0.5 +(signed word) spline_8segB::a_y +(signed word) spline_8segB::a_y#0 a_y zp ZP_WORD:71 0.6000000000000001 +(signed word) spline_8segB::b_x +(signed word) spline_8segB::b_x#0 b_x zp ZP_WORD:23 1.3333333333333333 +(signed word) spline_8segB::b_y +(signed word) spline_8segB::b_y#0 b_y zp ZP_WORD:25 1.3333333333333333 +(signed word) spline_8segB::i_x +(signed word) spline_8segB::i_x#0 i_x zp ZP_WORD:23 0.5714285714285714 +(signed word) spline_8segB::i_x#1 i_x zp ZP_WORD:23 500.5 +(signed word) spline_8segB::i_x#2 i_x zp ZP_WORD:23 300.5 +(signed word) spline_8segB::i_y +(signed word) spline_8segB::i_y#0 i_y zp ZP_WORD:25 0.8 +(signed word) spline_8segB::i_y#1 i_y zp ZP_WORD:25 667.3333333333334 +(signed word) spline_8segB::i_y#2 i_y zp ZP_WORD:25 273.1818181818182 +(signed word) spline_8segB::j_x +(signed word) spline_8segB::j_x#0 j_x zp ZP_WORD:69 55.72222222222223 +(signed word) spline_8segB::j_y +(signed word) spline_8segB::j_y#0 j_y zp ZP_WORD:71 59.0 +(byte) spline_8segB::n +(byte) spline_8segB::n#1 reg byte y 1501.5 +(byte) spline_8segB::n#2 reg byte y 250.25 +(struct SplineVector16) spline_8segB::p0 +(signed word) spline_8segB::p0_x +(signed word) spline_8segB::p0_x#0 p0_x zp ZP_WORD:4 4.863636363636363 +(signed word) spline_8segB::p0_y +(signed word) spline_8segB::p0_y#0 p0_y zp ZP_WORD:6 4.863636363636363 +(struct SplineVector16) spline_8segB::p1 +(signed word) spline_8segB::p1_x +(signed word) spline_8segB::p1_x#0 p1_x zp ZP_WORD:23 10.499999999999998 +(signed word) spline_8segB::p1_y +(signed word) spline_8segB::p1_y#0 p1_y zp ZP_WORD:25 9.545454545454545 +(struct SplineVector16) spline_8segB::p2 +(signed word) spline_8segB::p2_x +(signed word) spline_8segB::p2_x#0 p2_x zp ZP_WORD:57 34.33333333333333 +(signed word) spline_8segB::p2_y +(signed word) spline_8segB::p2_y#0 p2_y zp ZP_WORD:59 20.599999999999998 +(signed word) spline_8segB::p_x +(signed word) spline_8segB::p_x#0 p_x zp ZP_WORD:4 2.0 +(signed word) spline_8segB::p_x#1 p_x zp ZP_WORD:4 334.0 +(signed word) spline_8segB::p_x#2 p_x zp ZP_WORD:4 375.625 +(signed word) spline_8segB::p_y +(signed word) spline_8segB::p_y#0 p_y zp ZP_WORD:6 4.0 +(signed word) spline_8segB::p_y#1 p_y zp ZP_WORD:6 286.2857142857143 +(signed word) spline_8segB::p_y#2 p_y zp ZP_WORD:6 333.8888888888889 + +zp ZP_BYTE:2 [ main::angle#2 main::angle#1 show_letter::angle#0 ] +reg byte x [ main::w#4 main::w#1 ] +zp ZP_BYTE:3 [ show_letter::i#10 show_letter::i#1 ] +zp ZP_WORD:4 [ show_letter::current_x#4 show_letter::current_x#11 bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 spline_8segB::p0_x#0 bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 spline_8segB::$18 spline_8segB::$19 ] +zp ZP_WORD:6 [ show_letter::current_y#4 show_letter::current_y#11 bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 spline_8segB::p0_y#0 bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 spline_8segB::$20 spline_8segB::$21 ] +zp ZP_BYTE:8 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +zp ZP_WORD:9 [ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] +zp ZP_WORD:11 [ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] +zp ZP_WORD:13 [ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] +zp ZP_WORD:15 [ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] +reg byte x [ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] +zp ZP_WORD:17 [ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] +zp ZP_WORD:19 [ sgn_u16::return#4 sgn_u16::return#0 sgn_u16::return#1 bitmap_line::sy#0 ] +zp ZP_WORD:21 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 abs_u16::return#0 abs_u16::return#1 bitmap_line::dy#0 ] +reg byte y [ spline_8segB::n#2 spline_8segB::n#1 ] +zp ZP_WORD:23 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 spline_8segB::$10 spline_8segB::$6 spline_8segB::b_x#0 show_letter::segment_via_x#0 spline_8segB::p1_x#0 rotate::return_x#0 show_letter::to_x#2 rotate::return_x#2 rotate::return_x#1 show_letter::via_x#2 ] +zp ZP_WORD:25 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 spline_8segB::$12 spline_8segB::$8 spline_8segB::b_y#0 show_letter::segment_via_y#0 spline_8segB::p1_y#0 rotate::return_y#0 show_letter::to_y#2 rotate::return_y#2 rotate::return_y#1 show_letter::via_y#2 ] +reg byte y [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] +zp ZP_WORD:27 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 show_letter::to_x#1 show_letter::via_x#1 show_letter::to_x#0 show_letter::via_x#0 ] +zp ZP_WORD:29 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 show_letter::to_y#1 show_letter::via_y#1 show_letter::to_y#0 show_letter::via_y#0 ] +zp ZP_WORD:31 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 rotate::cos_a#0 rotate::sin_a#0 ] +zp ZP_WORD:33 [ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] +zp ZP_DWORD:35 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 mulf16s::return#2 rotate::$1 mulf16s::return#3 rotate::$4 mulf16s::return#4 rotate::$8 mulf16s::return#10 rotate::$11 mulf16u::return#0 ] +zp ZP_WORD:39 [ memset::num#2 memset::end#0 ] +zp ZP_WORD:41 [ memset::str#3 memset::dst#2 memset::dst#3 memset::dst#1 ] +reg byte x [ memset::c#3 ] +reg byte a [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] +reg byte x [ bitmap_init::x#2 bitmap_init::x#1 ] +reg byte x [ bitmap_init::y#2 bitmap_init::y#1 ] +zp ZP_WORD:43 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +reg byte x [ mulf_init::c#2 mulf_init::c#1 ] +zp ZP_WORD:45 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +zp ZP_WORD:47 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +zp ZP_BYTE:49 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +zp ZP_WORD:50 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ] +zp ZP_WORD:52 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +zp ZP_WORD:54 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +zp ZP_BYTE:56 [ mulf_init::dir#2 mulf_init::dir#3 ] +reg byte a [ show_letter::$32 ] +reg byte x [ show_letter::$20 ] +zp ZP_WORD:57 [ show_letter::current_x#10 spline_8segB::p2_x#0 ] +zp ZP_WORD:59 [ show_letter::current_y#10 spline_8segB::p2_y#0 ] +reg byte a [ show_letter::$34 ] +reg byte x [ show_letter::$21 ] +reg byte a [ show_letter::$36 ] +reg byte a [ show_letter::$22 ] +reg byte a [ show_letter::segment_type#0 ] +reg byte x [ bitmap_plot_spline_8seg::$8 ] +reg byte x [ bitmap_plot_spline_8seg::$9 ] +zp ZP_WORD:61 [ bitmap_line::dx#0 ] +zp ZP_WORD:63 [ bitmap_line::sx#0 ] +zp ZP_WORD:65 [ bitmap_plot::plotter#0 bitmap_plot::plotter#1 ] +zp ZP_WORD:67 [ bitmap_plot::$1 ] +reg byte a [ bitmap_plot::$2 ] +reg byte a [ sgn_u16::$0 ] +reg byte a [ sgn_u16::$1 ] +reg byte a [ abs_u16::$0 ] +reg byte a [ abs_u16::$1 ] +zp ZP_WORD:69 [ spline_8segB::$0 spline_8segB::$1 spline_8segB::a_x#0 spline_8segB::j_x#0 ] +zp ZP_WORD:71 [ spline_8segB::$3 spline_8segB::$4 spline_8segB::a_y#0 spline_8segB::j_y#0 ] +zp ZP_WORD:73 [ spline_8segB::$22 spline_8segB::$23 ] +zp ZP_WORD:75 [ spline_8segB::$24 spline_8segB::$25 ] +reg byte x [ spline_8segB::$31 ] +zp ZP_WORD:77 [ rotate::$2 rotate::xr#0 rotate::xr#1 ] +zp ZP_WORD:79 [ rotate::$5 rotate::yr#0 rotate::yr#1 ] +zp ZP_WORD:81 [ rotate::$9 rotate::$10 ] +zp ZP_WORD:83 [ rotate::$12 rotate::$13 ] +reg byte a [ rotate::$15 ] +reg byte a [ rotate::$18 ] +zp ZP_WORD:85 [ mulf16u::a#0 ] +zp ZP_WORD:87 [ mulf16u::b#0 ] +zp ZP_WORD:89 [ mulf16s::$9 mulf16s::$16 ] +zp ZP_WORD:91 [ mulf16s::$13 mulf16s::$17 ] +zp ZP_BYTE:93 [ bitmap_init::$7 ] +reg byte a [ bitmap_init::$4 ] +reg byte a [ bitmap_init::$5 ] +reg byte a [ bitmap_init::$6 ] +reg byte a [ mulf_init::$7 ] +reg byte a [ mulf_init::$10 ] +reg byte a [ mulf_init::$11 ] + + +FINAL ASSEMBLER +Score: 678994 + + // File Comments +// Show a few simple splines using the splines library + // Basic Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels + .const MOVE_TO = 0 + .const SPLINE_TO = 1 + .const LINE_TO = 2 + .const SIZEOF_STRUCT_SPLINEVECTOR16 = 4 + .const SIZEOF_STRUCT_SEGMENT = 9 + .const OFFSET_STRUCT_SPLINEVECTOR16_Y = 2 + .const OFFSET_STRUCT_SEGMENT_TO = 1 + .const OFFSET_STRUCT_SEGMENT_VIA = 5 + .label RASTER = $d012 + .label D011 = $d011 + .const VIC_BMM = $20 + .const VIC_DEN = $10 + .const VIC_RSEL = 8 + .label D018 = $d018 + // CIA#2 Port A: Serial bus, RS-232, VIC memory bank + .label CIA2_PORT_A = $dd00 + // CIA #2 Port A data direction register. + .label CIA2_PORT_A_DDR = $dd02 + .const WHITE = 1 + .label BITMAP_SCREEN = $5c00 + .label BITMAP_GRAPHICS = $6000 + .label COS = SIN+$40 + // @begin + // [1] phi from @begin to @1 [phi:@begin->@1] + // @1 + // [2] call main + // [3] phi from @1 to @end [phi:@1->@end] + // @end + // main +main: { + .const vicSelectGfxBank1_toDd001_return = 3^(>BITMAP_SCREEN)/$40 + .const toD0181_return = (>(BITMAP_SCREEN&$3fff)*4)|(>BITMAP_GRAPHICS)/4&$f + .label angle = 2 + // letter_c[0] = { MOVE_TO, {108,146}, {0,0} } + // [4] *((byte*)(const struct Segment[$16]) letter_c#0) ← (const byte) MOVE_TO -- _deref_pbuc1=vbuc2 + lda #MOVE_TO + sta letter_c + // [5] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO) ← (signed byte) $6c -- _deref_pwsc1=vwsc2 + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1 + // [6] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed word) $92 -- _deref_pwsc1=vwsc2 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + // [7] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1 + // [8] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + // letter_c[1] = { SPLINE_TO, {89,182}, {103,169} } + // [9] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+1*SIZEOF_STRUCT_SEGMENT + // [10] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $59 -- _deref_pwsc1=vwsc2 + lda #<$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT + lda #>$59 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+1*SIZEOF_STRUCT_SEGMENT+1 + // [11] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b6 -- _deref_pwsc1=vwsc2 + lda #<$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$b6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + // [12] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 -- _deref_pwsc1=vwsc2 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+1*SIZEOF_STRUCT_SEGMENT+1 + // [13] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 1*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a9 -- _deref_pwsc1=vwsc2 + lda #<$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT + lda #>$a9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[2] = { SPLINE_TO, {59,195}, {75,195} } + // [14] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+2*SIZEOF_STRUCT_SEGMENT + // [15] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3b -- _deref_pwsc1=vwsc2 + lda #<$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT + lda #>$3b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+2*SIZEOF_STRUCT_SEGMENT+1 + // [16] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + // [17] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4b -- _deref_pwsc1=vwsc2 + lda #<$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT + lda #>$4b + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+2*SIZEOF_STRUCT_SEGMENT+1 + // [18] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 2*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+2*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[3] = { SPLINE_TO, {23,178}, {38,195} } + // [19] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+3*SIZEOF_STRUCT_SEGMENT + // [20] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $17 -- _deref_pwsc1=vwsc2 + lda #<$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT + lda #>$17 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+3*SIZEOF_STRUCT_SEGMENT+1 + // [21] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $b2 -- _deref_pwsc1=vwsc2 + lda #<$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$b2 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + // [22] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $26 -- _deref_pwsc1=vwsc2 + lda #<$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT + lda #>$26 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+3*SIZEOF_STRUCT_SEGMENT+1 + // [23] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 3*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $c3 -- _deref_pwsc1=vwsc2 + lda #<$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT + lda #>$c3 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+3*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[4] = { SPLINE_TO, {9,132}, {9,161} } + // [24] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+4*SIZEOF_STRUCT_SEGMENT + // [25] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+4*SIZEOF_STRUCT_SEGMENT+1 + // [26] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $84 -- _deref_pwsc1=vwsc2 + lda #<$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$84 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + // [27] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+4*SIZEOF_STRUCT_SEGMENT+1 + // [28] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 4*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a1 -- _deref_pwsc1=vwsc2 + lda #<$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT + lda #>$a1 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+4*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[5] = { SPLINE_TO, {25,87}, {9,104} } + // [29] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+5*SIZEOF_STRUCT_SEGMENT + // [30] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $19 -- _deref_pwsc1=vwsc2 + lda #<$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT + lda #>$19 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+5*SIZEOF_STRUCT_SEGMENT+1 + // [31] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $57 -- _deref_pwsc1=vwsc2 + lda #<$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$57 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + // [32] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 9 -- _deref_pwsc1=vwsc2 + lda #<9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT + lda #>9 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+5*SIZEOF_STRUCT_SEGMENT+1 + // [33] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 5*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+5*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[6] = { SPLINE_TO, {65,69}, {42,69} } + // [34] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+6*SIZEOF_STRUCT_SEGMENT + // [35] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $41 -- _deref_pwsc1=vwsc2 + lda #<$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT + lda #>$41 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+6*SIZEOF_STRUCT_SEGMENT+1 + // [36] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + // [37] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $2a -- _deref_pwsc1=vwsc2 + lda #<$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT + lda #>$2a + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+6*SIZEOF_STRUCT_SEGMENT+1 + // [38] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 6*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+6*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[7] = { SPLINE_TO, {93,79}, {82,69} } + // [39] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+7*SIZEOF_STRUCT_SEGMENT + // [40] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+7*SIZEOF_STRUCT_SEGMENT+1 + // [41] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f -- _deref_pwsc1=vwsc2 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + // [42] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 -- _deref_pwsc1=vwsc2 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+7*SIZEOF_STRUCT_SEGMENT+1 + // [43] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 7*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+7*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[8] = { SPLINE_TO, {105,98}, {105,88} } + // [44] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+8*SIZEOF_STRUCT_SEGMENT + // [45] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+8*SIZEOF_STRUCT_SEGMENT+1 + // [46] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + // [47] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+8*SIZEOF_STRUCT_SEGMENT+1 + // [48] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 -- _deref_pwsc1=vwsc2 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[9] = { SPLINE_TO, {102,106}, {105,103} } + // [49] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+9*SIZEOF_STRUCT_SEGMENT + // [50] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $66 -- _deref_pwsc1=vwsc2 + lda #<$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT + lda #>$66 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+9*SIZEOF_STRUCT_SEGMENT+1 + // [51] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6a -- _deref_pwsc1=vwsc2 + lda #<$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$6a + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + // [52] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $69 -- _deref_pwsc1=vwsc2 + lda #<$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT + lda #>$69 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+9*SIZEOF_STRUCT_SEGMENT+1 + // [53] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 9*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $67 -- _deref_pwsc1=vwsc2 + lda #<$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT + lda #>$67 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+9*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[10] = { SPLINE_TO, {93,109}, {98,109} } + // [54] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$a*SIZEOF_STRUCT_SEGMENT + // [55] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$a*SIZEOF_STRUCT_SEGMENT+1 + // [56] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + // [57] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$a*SIZEOF_STRUCT_SEGMENT+1 + // [58] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $a*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$a*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[11] = { SPLINE_TO, {81,104}, {85,109} } + // [59] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$b*SIZEOF_STRUCT_SEGMENT + // [60] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $51 -- _deref_pwsc1=vwsc2 + lda #<$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT + lda #>$51 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$b*SIZEOF_STRUCT_SEGMENT+1 + // [61] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + // [62] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $55 -- _deref_pwsc1=vwsc2 + lda #<$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT + lda #>$55 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$b*SIZEOF_STRUCT_SEGMENT+1 + // [63] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $b*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6d -- _deref_pwsc1=vwsc2 + lda #<$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT + lda #>$6d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$b*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[12] = { SPLINE_TO, {78,93}, {79,101} } + // [64] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$c*SIZEOF_STRUCT_SEGMENT + // [65] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$c*SIZEOF_STRUCT_SEGMENT+1 + // [66] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5d -- _deref_pwsc1=vwsc2 + lda #<$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$5d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + // [67] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4f -- _deref_pwsc1=vwsc2 + lda #<$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT + lda #>$4f + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$c*SIZEOF_STRUCT_SEGMENT+1 + // [68] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $c*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $65 -- _deref_pwsc1=vwsc2 + lda #<$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT + lda #>$65 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$c*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[13] = { SPLINE_TO, {73,82}, {78,86} } + // [69] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$d*SIZEOF_STRUCT_SEGMENT + // [70] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $49 -- _deref_pwsc1=vwsc2 + lda #<$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT + lda #>$49 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$d*SIZEOF_STRUCT_SEGMENT+1 + // [71] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $52 -- _deref_pwsc1=vwsc2 + lda #<$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$52 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + // [72] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$d*SIZEOF_STRUCT_SEGMENT+1 + // [73] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $d*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $56 -- _deref_pwsc1=vwsc2 + lda #<$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT + lda #>$56 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$d*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[14] = { SPLINE_TO, {61,78}, {69,78} } + // [74] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$e*SIZEOF_STRUCT_SEGMENT + // [75] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $3d -- _deref_pwsc1=vwsc2 + lda #<$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT + lda #>$3d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$e*SIZEOF_STRUCT_SEGMENT+1 + // [76] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + // [77] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $45 -- _deref_pwsc1=vwsc2 + lda #<$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT + lda #>$45 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$e*SIZEOF_STRUCT_SEGMENT+1 + // [78] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $e*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$e*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[15] = { SPLINE_TO, {40,88}, {48,78} } + // [79] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$f*SIZEOF_STRUCT_SEGMENT + // [80] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 -- _deref_pwsc1=vwsc2 + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$f*SIZEOF_STRUCT_SEGMENT+1 + // [81] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $58 -- _deref_pwsc1=vwsc2 + lda #<$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$58 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + // [82] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $30 -- _deref_pwsc1=vwsc2 + lda #<$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT + lda #>$30 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$f*SIZEOF_STRUCT_SEGMENT+1 + // [83] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $f*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $4e -- _deref_pwsc1=vwsc2 + lda #<$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT + lda #>$4e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$f*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[16] = { SPLINE_TO, {29,121}, {29,100} } + // [84] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$10*SIZEOF_STRUCT_SEGMENT + // [85] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$10*SIZEOF_STRUCT_SEGMENT+1 + // [86] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $79 -- _deref_pwsc1=vwsc2 + lda #<$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$79 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + // [87] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$10*SIZEOF_STRUCT_SEGMENT+1 + // [88] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $10*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $64 -- _deref_pwsc1=vwsc2 + lda #<$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT + lda #>$64 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$10*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[17] = { SPLINE_TO, {40,158}, {29,142} } + // [89] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$11*SIZEOF_STRUCT_SEGMENT + // [90] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $28 -- _deref_pwsc1=vwsc2 + lda #<$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT + lda #>$28 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$11*SIZEOF_STRUCT_SEGMENT+1 + // [91] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $9e -- _deref_pwsc1=vwsc2 + lda #<$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$9e + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + // [92] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $1d -- _deref_pwsc1=vwsc2 + lda #<$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT + lda #>$1d + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$11*SIZEOF_STRUCT_SEGMENT+1 + // [93] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $11*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $8e -- _deref_pwsc1=vwsc2 + lda #<$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT + lda #>$8e + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$11*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[18] = { SPLINE_TO, {68,174}, {50,174} } + // [94] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$12*SIZEOF_STRUCT_SEGMENT + // [95] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $44 -- _deref_pwsc1=vwsc2 + lda #<$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT + lda #>$44 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$12*SIZEOF_STRUCT_SEGMENT+1 + // [96] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + // [97] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $32 -- _deref_pwsc1=vwsc2 + lda #<$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT + lda #>$32 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$12*SIZEOF_STRUCT_SEGMENT+1 + // [98] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $12*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$12*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[19] = { SPLINE_TO, {91,166}, {80,174} } + // [99] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$13*SIZEOF_STRUCT_SEGMENT + // [100] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $5b -- _deref_pwsc1=vwsc2 + lda #<$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT + lda #>$5b + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$13*SIZEOF_STRUCT_SEGMENT+1 + // [101] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a6 -- _deref_pwsc1=vwsc2 + lda #<$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$a6 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + // [102] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $50 -- _deref_pwsc1=vwsc2 + lda #<$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT + lda #>$50 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$13*SIZEOF_STRUCT_SEGMENT+1 + // [103] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $13*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $ae -- _deref_pwsc1=vwsc2 + lda #<$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT + lda #>$ae + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$13*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[20] = { SPLINE_TO, {104,144}, {98,160} } + // [104] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) SPLINE_TO -- _deref_pbuc1=vbuc2 + lda #SPLINE_TO + sta letter_c+$14*SIZEOF_STRUCT_SEGMENT + // [105] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $68 -- _deref_pwsc1=vwsc2 + lda #<$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT + lda #>$68 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$14*SIZEOF_STRUCT_SEGMENT+1 + // [106] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $90 -- _deref_pwsc1=vwsc2 + lda #<$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$90 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + // [107] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $62 -- _deref_pwsc1=vwsc2 + lda #<$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT + lda #>$62 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$14*SIZEOF_STRUCT_SEGMENT+1 + // [108] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $14*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $a0 -- _deref_pwsc1=vwsc2 + lda #<$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT + lda #>$a0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$14*SIZEOF_STRUCT_SEGMENT+1 + // letter_c[21] = { LINE_TO, {108,146}, {0,0} } + // [109] *((byte*)(const struct Segment[$16]) letter_c#0+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (const byte) LINE_TO -- _deref_pbuc1=vbuc2 + lda #LINE_TO + sta letter_c+$15*SIZEOF_STRUCT_SEGMENT + // [110] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) $6c -- _deref_pwsc1=vwsc2 + lda #<$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT + lda #>$6c + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+$15*SIZEOF_STRUCT_SEGMENT+1 + // [111] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed word) $92 -- _deref_pwsc1=vwsc2 + lda #<$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + lda #>$92 + sta letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + // [112] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + lda #<0 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+$15*SIZEOF_STRUCT_SEGMENT+1 + // [113] *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) $15*(const byte) SIZEOF_STRUCT_SEGMENT) ← (signed byte) 0 -- _deref_pwsc1=vwsc2 + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT + sta letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+$15*SIZEOF_STRUCT_SEGMENT+1 + // mulf_init() + // [114] call mulf_init + // [418] phi from main to mulf_init [phi:main->mulf_init] + jsr mulf_init + // [115] phi from main to main::@8 [phi:main->main::@8] + // main::@8 + // bitmap_init(BITMAP_GRAPHICS, BITMAP_SCREEN) + // [116] call bitmap_init + // [396] phi from main::@8 to bitmap_init [phi:main::@8->bitmap_init] + jsr bitmap_init + // [117] phi from main::@8 to main::@9 [phi:main::@8->main::@9] + // main::@9 + // bitmap_clear(BLACK, WHITE) + // [118] call bitmap_clear + // [382] phi from main::@9 to bitmap_clear [phi:main::@9->bitmap_clear] + jsr bitmap_clear + // main::vicSelectGfxBank1 + // *CIA2_PORT_A_DDR = %00000011 + // [119] *((const byte*) CIA2_PORT_A_DDR#0) ← (byte) 3 -- _deref_pbuc1=vbuc2 + lda #3 + sta CIA2_PORT_A_DDR + // [120] phi from main::vicSelectGfxBank1 to main::vicSelectGfxBank1_toDd001 [phi:main::vicSelectGfxBank1->main::vicSelectGfxBank1_toDd001] + // main::vicSelectGfxBank1_toDd001 + // main::vicSelectGfxBank1_@1 + // *CIA2_PORT_A = toDd00(gfx) + // [121] *((const byte*) CIA2_PORT_A#0) ← (const byte) main::vicSelectGfxBank1_toDd001_return#0 -- _deref_pbuc1=vbuc2 + lda #vicSelectGfxBank1_toDd001_return + sta CIA2_PORT_A + // [122] phi from main::vicSelectGfxBank1_@1 to main::toD0181 [phi:main::vicSelectGfxBank1_@1->main::toD0181] + // main::toD0181 + // main::@7 + // *D018 = toD018(BITMAP_SCREEN, BITMAP_GRAPHICS) + // [123] *((const byte*) D018#0) ← (const byte) main::toD0181_return#0 -- _deref_pbuc1=vbuc2 + lda #toD0181_return + sta D018 + // *D011 = VIC_BMM|VIC_DEN|VIC_RSEL|3 + // [124] *((const byte*) D011#0) ← (const byte) VIC_BMM#0|(const byte) VIC_DEN#0|(const byte) VIC_RSEL#0|(byte) 3 -- _deref_pbuc1=vbuc2 + lda #VIC_BMM|VIC_DEN|VIC_RSEL|3 + sta D011 + // [125] phi from main::@7 to main::@1 [phi:main::@7->main::@1] + // [125] phi (byte) main::angle#2 = (byte) 0 [phi:main::@7->main::@1#0] -- vbuz1=vbuc1 + lda #0 + sta angle + // main::@1 + // [126] phi from main::@1 to main::@2 [phi:main::@1->main::@2] + // main::@2 + b2: + // bitmap_clear(BLACK, WHITE) + // [127] call bitmap_clear + // [382] phi from main::@2 to bitmap_clear [phi:main::@2->bitmap_clear] + jsr bitmap_clear + // main::@10 + // show_letter(angle) + // [128] (byte) show_letter::angle#0 ← (byte) main::angle#2 + // [129] call show_letter + // [136] phi from main::@10 to show_letter [phi:main::@10->show_letter] + jsr show_letter + // [130] phi from main::@10 to main::@3 [phi:main::@10->main::@3] + // [130] phi (byte) main::w#4 = (byte) 0 [phi:main::@10->main::@3#0] -- vbuxx=vbuc1 + ldx #0 + // [130] phi from main::@3 to main::@3 [phi:main::@3->main::@3] + // [130] phi from main::@5 to main::@3 [phi:main::@5->main::@3] + // [130] phi (byte) main::w#4 = (byte) main::w#1 [phi:main::@5->main::@3#0] -- register_copy + // main::@3 + b3: + // while(*RASTER!=0xfe) + // [131] if(*((const byte*) RASTER#0)!=(byte) $fe) goto main::@3 -- _deref_pbuc1_neq_vbuc2_then_la1 + lda #$fe + cmp RASTER + bne b3 + // main::@4 + b4: + // while(*RASTER!=0xff) + // [132] if(*((const byte*) RASTER#0)!=(byte) $ff) goto main::@4 -- _deref_pbuc1_neq_vbuc2_then_la1 + lda #$ff + cmp RASTER + bne b4 + // main::@5 + // for ( byte w: 0..60) + // [133] (byte) main::w#1 ← ++ (byte) main::w#4 -- vbuxx=_inc_vbuxx + inx + // [134] if((byte) main::w#1!=(byte) $3d) goto main::@3 -- vbuxx_neq_vbuc1_then_la1 + cpx #$3d + bne b3 + // main::@6 + // angle += 9 + // [135] (byte) main::angle#1 ← (byte) main::angle#2 + (byte) 9 -- vbuz1=vbuz1_plus_vbuc1 + lax angle + axs #-[9] + stx angle + // [125] phi from main::@6 to main::@1 [phi:main::@6->main::@1] + // [125] phi (byte) main::angle#2 = (byte) main::angle#1 [phi:main::@6->main::@1#0] -- register_copy + jmp b2 +} + // show_letter +// show_letter(byte zeropage(2) angle) +show_letter: { + .label angle = 2 + .label to_x = $1b + .label to_y = $1d + .label to_x_2 = $17 + .label to_y_2 = $19 + .label via_x = $1b + .label via_y = $1d + .label via_x_2 = $17 + .label via_y_2 = $19 + .label segment_via_x = $17 + .label segment_via_y = $19 + .label i = 3 + .label current_x = 4 + .label current_y = 6 + .label current_x_10 = $39 + .label current_y_10 = $3b + // [137] phi from show_letter to show_letter::@1 [phi:show_letter->show_letter::@1] + // [137] phi (signed word) show_letter::current_y#4 = (signed byte) 0 [phi:show_letter->show_letter::@1#0] -- vwsz1=vbsc1 + lda #<0 + sta current_y + sta current_y+1 + // [137] phi (signed word) show_letter::current_x#4 = (signed byte) 0 [phi:show_letter->show_letter::@1#1] -- vwsz1=vbsc1 + sta current_x + sta current_x+1 + // [137] phi (byte) show_letter::i#10 = (byte) 0 [phi:show_letter->show_letter::@1#2] -- vbuz1=vbuc1 + sta i + // show_letter::@1 + b1: + // to = { letter_c[i].to.x, letter_c[i].to.y } + // [138] (byte) show_letter::$32 ← (byte) show_letter::i#10 << (byte) 3 -- vbuaa=vbuz1_rol_3 + lda i + asl + asl + asl + // [139] (byte~) show_letter::$20 ← (byte) show_letter::$32 + (byte) show_letter::i#10 -- vbuxx=vbuaa_plus_vbuz1 + clc + adc i + tax + // [140] (signed word) show_letter::to_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO + (byte~) show_letter::$20) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_TO,x + sta to_x + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+1,x + sta to_x+1 + // [141] (signed word) show_letter::to_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_TO+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$20) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta to_y + lda letter_c+OFFSET_STRUCT_SEGMENT_TO+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta to_y+1 + // to = { to.x - 50, to.y - 150} + // [142] (signed word) show_letter::to_x#1 ← (signed word) show_letter::to_x#0 - (signed byte) $32 -- vwsz1=vwsz1_minus_vbsc1 + lda to_x + sec + sbc #$32 + sta to_x + lda to_x+1 + sbc #>$32 + sta to_x+1 + // [143] (signed word) show_letter::to_y#1 ← (signed word) show_letter::to_y#0 - (signed word) $96 -- vwsz1=vwsz1_minus_vwsc1 + lda to_y + sec + sbc #<$96 + sta to_y + lda to_y+1 + sbc #>$96 + sta to_y+1 + // rotate(to, angle) + // [144] (signed word) rotate::vector_x#0 ← (signed word) show_letter::to_x#1 + // [145] (signed word) rotate::vector_y#0 ← (signed word) show_letter::to_y#1 + // [146] (byte) rotate::angle#0 ← (byte) show_letter::angle#0 -- vbuyy=vbuz1 + ldy angle + // [147] call rotate + // [321] phi from show_letter::@1 to rotate [phi:show_letter::@1->rotate] + // [321] phi (signed word) rotate::vector_y#2 = (signed word) rotate::vector_y#0 [phi:show_letter::@1->rotate#0] -- register_copy + // [321] phi (signed word) rotate::vector_x#2 = (signed word) rotate::vector_x#0 [phi:show_letter::@1->rotate#1] -- register_copy + // [321] phi (byte) rotate::angle#2 = (byte) rotate::angle#0 [phi:show_letter::@1->rotate#2] -- register_copy + jsr rotate + // rotate(to, angle) + // [148] (signed word) rotate::return_x#0 ← (signed word) rotate::return_x#2 + // [149] (signed word) rotate::return_y#0 ← (signed word) rotate::return_y#2 + // show_letter::@6 + // to = rotate(to, angle) + // [150] (signed word) show_letter::to_x#2 ← (signed word) rotate::return_x#0 + // [151] (signed word) show_letter::to_y#2 ← (signed word) rotate::return_y#0 + // to.x + 100 + // [152] (signed word) show_letter::current_x#10 ← (signed word) show_letter::to_x#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda to_x_2 + clc + adc #<$64 + sta current_x_10 + lda to_x_2+1 + adc #>$64 + sta current_x_10+1 + // to.y + 100 + // [153] (signed word) show_letter::current_y#10 ← (signed word) show_letter::to_y#2 + (signed byte) $64 -- vwsz1=vwsz2_plus_vbsc1 + lda to_y_2 + clc + adc #<$64 + sta current_y_10 + lda to_y_2+1 + adc #>$64 + sta current_y_10+1 + // via = { letter_c[i].via.x, letter_c[i].via.y } + // [154] (byte) show_letter::$34 ← (byte) show_letter::i#10 << (byte) 3 -- vbuaa=vbuz1_rol_3 + lda i + asl + asl + asl + // [155] (byte~) show_letter::$21 ← (byte) show_letter::$34 + (byte) show_letter::i#10 -- vbuxx=vbuaa_plus_vbuz1 + clc + adc i + tax + // [156] (signed word) show_letter::via_x#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA + (byte~) show_letter::$21) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA,x + sta via_x + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+1,x + sta via_x+1 + // [157] (signed word) show_letter::via_y#0 ← *((signed word*)(struct SplineVector16*)(const struct Segment[$16]) letter_c#0+(const byte) OFFSET_STRUCT_SEGMENT_VIA+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) show_letter::$21) -- vwsz1=pwsc1_derefidx_vbuxx + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta via_y + lda letter_c+OFFSET_STRUCT_SEGMENT_VIA+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta via_y+1 + // via = { via.x - 50, via.y - 150} + // [158] (signed word) show_letter::via_x#1 ← (signed word) show_letter::via_x#0 - (signed byte) $32 -- vwsz1=vwsz1_minus_vbsc1 + lda via_x + sec + sbc #$32 + sta via_x + lda via_x+1 + sbc #>$32 + sta via_x+1 + // [159] (signed word) show_letter::via_y#1 ← (signed word) show_letter::via_y#0 - (signed word) $96 -- vwsz1=vwsz1_minus_vwsc1 + lda via_y + sec + sbc #<$96 + sta via_y + lda via_y+1 + sbc #>$96 + sta via_y+1 + // rotate(via, angle) + // [160] (signed word) rotate::vector_x#1 ← (signed word) show_letter::via_x#1 + // [161] (signed word) rotate::vector_y#1 ← (signed word) show_letter::via_y#1 + // [162] (byte) rotate::angle#1 ← (byte) show_letter::angle#0 -- vbuyy=vbuz1 + ldy angle + // [163] call rotate + // [321] phi from show_letter::@6 to rotate [phi:show_letter::@6->rotate] + // [321] phi (signed word) rotate::vector_y#2 = (signed word) rotate::vector_y#1 [phi:show_letter::@6->rotate#0] -- register_copy + // [321] phi (signed word) rotate::vector_x#2 = (signed word) rotate::vector_x#1 [phi:show_letter::@6->rotate#1] -- register_copy + // [321] phi (byte) rotate::angle#2 = (byte) rotate::angle#1 [phi:show_letter::@6->rotate#2] -- register_copy + jsr rotate + // rotate(via, angle) + // [164] (signed word) rotate::return_x#1 ← (signed word) rotate::return_x#2 + // [165] (signed word) rotate::return_y#1 ← (signed word) rotate::return_y#2 + // show_letter::@7 + // via = rotate(via, angle) + // [166] (signed word) show_letter::via_x#2 ← (signed word) rotate::return_x#1 + // [167] (signed word) show_letter::via_y#2 ← (signed word) rotate::return_y#1 + // via.x + 100 + // [168] (signed word) show_letter::segment_via_x#0 ← (signed word) show_letter::via_x#2 + (signed byte) $64 -- vwsz1=vwsz1_plus_vbsc1 + lda segment_via_x + clc + adc #<$64 + sta segment_via_x + lda segment_via_x+1 + adc #>$64 + sta segment_via_x+1 + // via.y + 100 + // [169] (signed word) show_letter::segment_via_y#0 ← (signed word) show_letter::via_y#2 + (signed byte) $64 -- vwsz1=vwsz1_plus_vbsc1 + lda segment_via_y + clc + adc #<$64 + sta segment_via_y + lda segment_via_y+1 + adc #>$64 + sta segment_via_y+1 + // segment = { letter_c[i].type, to, via} + // [170] (byte) show_letter::$36 ← (byte) show_letter::i#10 << (byte) 3 -- vbuaa=vbuz1_rol_3 + lda i + asl + asl + asl + // [171] (byte~) show_letter::$22 ← (byte) show_letter::$36 + (byte) show_letter::i#10 -- vbuaa=vbuaa_plus_vbuz1 + clc + adc i + // [172] (byte) show_letter::segment_type#0 ← *((byte*)(const struct Segment[$16]) letter_c#0 + (byte~) show_letter::$22) -- vbuaa=pbuc1_derefidx_vbuaa + tay + lda letter_c,y + // if(segment.type==MOVE_TO) + // [173] if((byte) show_letter::segment_type#0==(const byte) MOVE_TO) goto show_letter::@3 -- vbuaa_eq_vbuc1_then_la1 + cmp #MOVE_TO + beq b3 + // show_letter::@4 + // if(segment.type==SPLINE_TO) + // [174] if((byte) show_letter::segment_type#0==(const byte) SPLINE_TO) goto show_letter::@2 -- vbuaa_eq_vbuc1_then_la1 + cmp #SPLINE_TO + beq b2 + // show_letter::@5 + // bitmap_line((unsigned int)current.x, (unsigned int)current.y, (unsigned int)segment.to.x, (unsigned int)segment.to.y) + // [175] (word) bitmap_line::x1#0 ← (word)(signed word) show_letter::current_x#4 + // [176] (word) bitmap_line::y1#0 ← (word)(signed word) show_letter::current_y#4 + // [177] (word) bitmap_line::x2#0 ← (word)(signed word) show_letter::current_x#10 -- vwuz1=vwuz2 + lda current_x_10 + sta bitmap_line.x2 + lda current_x_10+1 + sta bitmap_line.x2+1 + // [178] (word) bitmap_line::y2#0 ← (word)(signed word) show_letter::current_y#10 -- vwuz1=vwuz2 + lda current_y_10 + sta bitmap_line.y2 + lda current_y_10+1 + sta bitmap_line.y2+1 + // [179] call bitmap_line + // [209] phi from show_letter::@5 to bitmap_line [phi:show_letter::@5->bitmap_line] + // [209] phi (word) bitmap_line::y2#11 = (word) bitmap_line::y2#0 [phi:show_letter::@5->bitmap_line#0] -- register_copy + // [209] phi (word) bitmap_line::x2#10 = (word) bitmap_line::x2#0 [phi:show_letter::@5->bitmap_line#1] -- register_copy + // [209] phi (word) bitmap_line::y#0 = (word) bitmap_line::y1#0 [phi:show_letter::@5->bitmap_line#2] -- register_copy + // [209] phi (word) bitmap_line::x#0 = (word) bitmap_line::x1#0 [phi:show_letter::@5->bitmap_line#3] -- register_copy + jsr bitmap_line + // show_letter::@3 + b3: + // for( byte i: 0..21) + // [180] (byte) show_letter::i#1 ← ++ (byte) show_letter::i#10 -- vbuz1=_inc_vbuz1 + inc i + // [181] if((byte) show_letter::i#1!=(byte) $16) goto show_letter::@9 -- vbuz1_neq_vbuc1_then_la1 + lda #$16 + cmp i + bne b9 + // show_letter::@return + // } + // [182] return + rts + // show_letter::@9 + b9: + // [183] (signed word~) show_letter::current_x#11 ← (signed word) show_letter::current_x#10 -- vwsz1=vwsz2 + lda current_x_10 + sta current_x + lda current_x_10+1 + sta current_x+1 + // [184] (signed word~) show_letter::current_y#11 ← (signed word) show_letter::current_y#10 -- vwsz1=vwsz2 + lda current_y_10 + sta current_y + lda current_y_10+1 + sta current_y+1 + // [137] phi from show_letter::@9 to show_letter::@1 [phi:show_letter::@9->show_letter::@1] + // [137] phi (signed word) show_letter::current_y#4 = (signed word~) show_letter::current_y#11 [phi:show_letter::@9->show_letter::@1#0] -- register_copy + // [137] phi (signed word) show_letter::current_x#4 = (signed word~) show_letter::current_x#11 [phi:show_letter::@9->show_letter::@1#1] -- register_copy + // [137] phi (byte) show_letter::i#10 = (byte) show_letter::i#1 [phi:show_letter::@9->show_letter::@1#2] -- register_copy + jmp b1 + // show_letter::@2 + b2: + // spline_8segB(current, segment.via, segment.to) + // [185] (signed word) spline_8segB::p0_x#0 ← (signed word) show_letter::current_x#4 + // [186] (signed word) spline_8segB::p0_y#0 ← (signed word) show_letter::current_y#4 + // [187] (signed word) spline_8segB::p1_x#0 ← (signed word) show_letter::segment_via_x#0 + // [188] (signed word) spline_8segB::p1_y#0 ← (signed word) show_letter::segment_via_y#0 + // [189] (signed word) spline_8segB::p2_x#0 ← (signed word) show_letter::current_x#10 + // [190] (signed word) spline_8segB::p2_y#0 ← (signed word) show_letter::current_y#10 + // [191] call spline_8segB + jsr spline_8segB + // [192] phi from show_letter::@2 to show_letter::@8 [phi:show_letter::@2->show_letter::@8] + // show_letter::@8 + // bitmap_plot_spline_8seg() + // [193] call bitmap_plot_spline_8seg + jsr bitmap_plot_spline_8seg + jmp b3 +} + // bitmap_plot_spline_8seg +// Plot the spline in the SPLINE_8SEG array +bitmap_plot_spline_8seg: { + .label current_x = 4 + .label current_y = 6 + .label n = 8 + // current = SPLINE_8SEG[0] + // [194] (signed word) bitmap_plot_spline_8seg::current_x#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0) -- vwsz1=_deref_pwsc1 + lda SPLINE_8SEG + sta current_x + lda SPLINE_8SEG+1 + sta current_x+1 + // [195] (signed word) bitmap_plot_spline_8seg::current_y#0 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y) -- vwsz1=_deref_pwsc1 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1 + sta current_y+1 + // [196] phi from bitmap_plot_spline_8seg to bitmap_plot_spline_8seg::@1 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1] + // [196] phi (byte) bitmap_plot_spline_8seg::n#2 = (byte) 1 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#0] -- vbuz1=vbuc1 + lda #1 + sta n + // [196] phi (signed word) bitmap_plot_spline_8seg::current_y#2 = (signed word) bitmap_plot_spline_8seg::current_y#0 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#1] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_x#2 = (signed word) bitmap_plot_spline_8seg::current_x#0 [phi:bitmap_plot_spline_8seg->bitmap_plot_spline_8seg::@1#2] -- register_copy + // [196] phi from bitmap_plot_spline_8seg::@2 to bitmap_plot_spline_8seg::@1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1] + // [196] phi (byte) bitmap_plot_spline_8seg::n#2 = (byte) bitmap_plot_spline_8seg::n#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#0] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_y#2 = (signed word) bitmap_plot_spline_8seg::current_y#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#1] -- register_copy + // [196] phi (signed word) bitmap_plot_spline_8seg::current_x#2 = (signed word) bitmap_plot_spline_8seg::current_x#1 [phi:bitmap_plot_spline_8seg::@2->bitmap_plot_spline_8seg::@1#2] -- register_copy + // bitmap_plot_spline_8seg::@1 + b1: + // bitmap_line((unsigned int)current.x, (unsigned int)current.y, (unsigned int)SPLINE_8SEG[n].x, (unsigned int)SPLINE_8SEG[n].y) + // [197] (word) bitmap_line::x1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_x#2 + // [198] (word) bitmap_line::y1#1 ← (word)(signed word) bitmap_plot_spline_8seg::current_y#2 + // (unsigned int)SPLINE_8SEG[n].x + // [199] (byte~) bitmap_plot_spline_8seg::$8 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 -- vbuxx=vbuz1_rol_2 + lda n + asl + asl + tax + // [200] (word~) bitmap_line::x2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$8) -- vwuz1=pwuc1_derefidx_vbuxx + lda SPLINE_8SEG,x + sta bitmap_line.x2 + lda SPLINE_8SEG+1,x + sta bitmap_line.x2+1 + // [201] (word~) bitmap_line::y2#13 ← (word)*((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$8) -- vwuz1=pwuc1_derefidx_vbuxx + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta bitmap_line.y2 + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta bitmap_line.y2+1 + // bitmap_line((unsigned int)current.x, (unsigned int)current.y, (unsigned int)SPLINE_8SEG[n].x, (unsigned int)SPLINE_8SEG[n].y) + // [202] call bitmap_line + // [209] phi from bitmap_plot_spline_8seg::@1 to bitmap_line [phi:bitmap_plot_spline_8seg::@1->bitmap_line] + // [209] phi (word) bitmap_line::y2#11 = (word~) bitmap_line::y2#13 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#0] -- register_copy + // [209] phi (word) bitmap_line::x2#10 = (word~) bitmap_line::x2#13 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#1] -- register_copy + // [209] phi (word) bitmap_line::y#0 = (word) bitmap_line::y1#1 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#2] -- register_copy + // [209] phi (word) bitmap_line::x#0 = (word) bitmap_line::x1#1 [phi:bitmap_plot_spline_8seg::@1->bitmap_line#3] -- register_copy + jsr bitmap_line + // bitmap_plot_spline_8seg::@2 + // current = SPLINE_8SEG[n] + // [203] (byte~) bitmap_plot_spline_8seg::$9 ← (byte) bitmap_plot_spline_8seg::n#2 << (byte) 2 -- vbuxx=vbuz1_rol_2 + lda n + asl + asl + tax + // [204] (signed word) bitmap_plot_spline_8seg::current_x#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) bitmap_plot_spline_8seg::$9) -- vwsz1=pwsc1_derefidx_vbuxx + lda SPLINE_8SEG,x + sta current_x + lda SPLINE_8SEG+1,x + sta current_x+1 + // [205] (signed word) bitmap_plot_spline_8seg::current_y#1 ← *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) bitmap_plot_spline_8seg::$9) -- vwsz1=pwsc1_derefidx_vbuxx + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + sta current_y + lda SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + sta current_y+1 + // for(char n:1..8) + // [206] (byte) bitmap_plot_spline_8seg::n#1 ← ++ (byte) bitmap_plot_spline_8seg::n#2 -- vbuz1=_inc_vbuz1 + inc n + // [207] if((byte) bitmap_plot_spline_8seg::n#1!=(byte) 9) goto bitmap_plot_spline_8seg::@1 -- vbuz1_neq_vbuc1_then_la1 + lda #9 + cmp n + bne b1 + // bitmap_plot_spline_8seg::@return + // } + // [208] return + rts +} + // bitmap_line +// Draw a line on the bitmap using bresenhams algorithm +// bitmap_line(word zeropage(4) x1, word zeropage(6) y1, word zeropage(9) x2, word zeropage($b) y2) +bitmap_line: { + .label x = 4 + .label y = 6 + .label dx = $3d + .label dy = $15 + .label sx = $3f + .label sy = $13 + .label e1 = $f + .label e = $d + .label x1 = 4 + .label y1 = 6 + .label x2 = 9 + .label y2 = $b + // abs_u16(x2-x1) + // [210] (word) abs_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 -- vwuz1=vwuz2_minus_vwuz3 + lda x2 + sec + sbc x + sta abs_u16.w + lda x2+1 + sbc x+1 + sta abs_u16.w+1 + // [211] call abs_u16 + // [275] phi from bitmap_line to abs_u16 [phi:bitmap_line->abs_u16] + // [275] phi (word) abs_u16::w#2 = (word) abs_u16::w#0 [phi:bitmap_line->abs_u16#0] -- register_copy + jsr abs_u16 + // abs_u16(x2-x1) + // [212] (word) abs_u16::return#0 ← (word) abs_u16::return#4 + // bitmap_line::@12 + // dx = abs_u16(x2-x1) + // [213] (word) bitmap_line::dx#0 ← (word) abs_u16::return#0 -- vwuz1=vwuz2 + lda abs_u16.return + sta dx + lda abs_u16.return+1 + sta dx+1 + // abs_u16(y2-y1) + // [214] (word) abs_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 -- vwuz1=vwuz2_minus_vwuz3 + lda y2 + sec + sbc y + sta abs_u16.w + lda y2+1 + sbc y+1 + sta abs_u16.w+1 + // [215] call abs_u16 + // [275] phi from bitmap_line::@12 to abs_u16 [phi:bitmap_line::@12->abs_u16] + // [275] phi (word) abs_u16::w#2 = (word) abs_u16::w#1 [phi:bitmap_line::@12->abs_u16#0] -- register_copy + jsr abs_u16 + // abs_u16(y2-y1) + // [216] (word) abs_u16::return#1 ← (word) abs_u16::return#4 + // bitmap_line::@13 + // dy = abs_u16(y2-y1) + // [217] (word) bitmap_line::dy#0 ← (word) abs_u16::return#1 + // if(dx==0 && dy==0) + // [218] if((word) bitmap_line::dx#0!=(byte) 0) goto bitmap_line::@1 -- vwuz1_neq_0_then_la1 + lda dx + bne b1 + lda dx+1 + bne b1 + // bitmap_line::@18 + // [219] if((word) bitmap_line::dy#0==(byte) 0) goto bitmap_line::@4 -- vwuz1_eq_0_then_la1 + lda dy + bne !+ + lda dy+1 + bne !b4+ + jmp b4 + !b4: + !: + // bitmap_line::@1 + b1: + // sgn_u16(x2-x1) + // [220] (word) sgn_u16::w#0 ← (word) bitmap_line::x2#10 - (word) bitmap_line::x#0 -- vwuz1=vwuz2_minus_vwuz3 + lda x2 + sec + sbc x + sta sgn_u16.w + lda x2+1 + sbc x+1 + sta sgn_u16.w+1 + // [221] call sgn_u16 + // [268] phi from bitmap_line::@1 to sgn_u16 [phi:bitmap_line::@1->sgn_u16] + // [268] phi (word) sgn_u16::w#2 = (word) sgn_u16::w#0 [phi:bitmap_line::@1->sgn_u16#0] -- register_copy + jsr sgn_u16 + // sgn_u16(x2-x1) + // [222] (word) sgn_u16::return#0 ← (word) sgn_u16::return#4 + // bitmap_line::@14 + // sx = sgn_u16(x2-x1) + // [223] (word) bitmap_line::sx#0 ← (word) sgn_u16::return#0 -- vwuz1=vwuz2 + lda sgn_u16.return + sta sx + lda sgn_u16.return+1 + sta sx+1 + // sgn_u16(y2-y1) + // [224] (word) sgn_u16::w#1 ← (word) bitmap_line::y2#11 - (word) bitmap_line::y#0 -- vwuz1=vwuz2_minus_vwuz3 + lda y2 + sec + sbc y + sta sgn_u16.w + lda y2+1 + sbc y+1 + sta sgn_u16.w+1 + // [225] call sgn_u16 + // [268] phi from bitmap_line::@14 to sgn_u16 [phi:bitmap_line::@14->sgn_u16] + // [268] phi (word) sgn_u16::w#2 = (word) sgn_u16::w#1 [phi:bitmap_line::@14->sgn_u16#0] -- register_copy + jsr sgn_u16 + // sgn_u16(y2-y1) + // [226] (word) sgn_u16::return#1 ← (word) sgn_u16::return#4 + // bitmap_line::@15 + // sy = sgn_u16(y2-y1) + // [227] (word) bitmap_line::sy#0 ← (word) sgn_u16::return#1 + // if(dx > dy) + // [228] if((word) bitmap_line::dx#0>(word) bitmap_line::dy#0) goto bitmap_line::@2 -- vwuz1_gt_vwuz2_then_la1 + lda dy+1 + cmp dx+1 + bcc b2 + bne !+ + lda dy + cmp dx + bcc b2 + !: + // bitmap_line::@5 + // e = dx/2 + // [229] (word) bitmap_line::e#0 ← (word) bitmap_line::dx#0 >> (byte) 1 -- vwuz1=vwuz2_ror_1 + lda dx+1 + lsr + sta e+1 + lda dx + ror + sta e + // [230] phi from bitmap_line::@5 bitmap_line::@7 to bitmap_line::@6 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6] + // [230] phi (word) bitmap_line::e#3 = (word) bitmap_line::e#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#0] -- register_copy + // [230] phi (word) bitmap_line::x#13 = (word) bitmap_line::x#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#1] -- register_copy + // [230] phi (word) bitmap_line::y#4 = (word) bitmap_line::y#0 [phi:bitmap_line::@5/bitmap_line::@7->bitmap_line::@6#2] -- register_copy + // bitmap_line::@6 + b6: + // bitmap_plot(x,(byte)y) + // [231] (byte) bitmap_plot::y#1 ← (byte)(word) bitmap_line::y#4 -- vbuxx=_byte_vwuz1 + lda y + tax + // [232] (word) bitmap_plot::x#1 ← (word) bitmap_line::x#13 + // [233] call bitmap_plot + // [261] phi from bitmap_line::@6 to bitmap_plot [phi:bitmap_line::@6->bitmap_plot] + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#1 [phi:bitmap_line::@6->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#1 [phi:bitmap_line::@6->bitmap_plot#1] -- register_copy + jsr bitmap_plot + // bitmap_line::@16 + // y += sy + // [234] (word) bitmap_line::y#1 ← (word) bitmap_line::y#4 + (word) bitmap_line::sy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + // e += dx + // [235] (word) bitmap_line::e#1 ← (word) bitmap_line::e#3 + (word) bitmap_line::dx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda e + clc + adc dx + sta e + lda e+1 + adc dx+1 + sta e+1 + // if(dy=(word) bitmap_line::e#1) goto bitmap_line::@7 -- vwuz1_ge_vwuz2_then_la1 + cmp dy+1 + bne !+ + lda e + cmp dy + beq b7 + !: + bcc b7 + // bitmap_line::@8 + // x += sx + // [237] (word) bitmap_line::x#1 ← (word) bitmap_line::x#13 + (word) bitmap_line::sx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + // e -= dy + // [238] (word) bitmap_line::e#2 ← (word) bitmap_line::e#1 - (word) bitmap_line::dy#0 -- vwuz1=vwuz1_minus_vwuz2 + lda e + sec + sbc dy + sta e + lda e+1 + sbc dy+1 + sta e+1 + // [239] phi from bitmap_line::@16 bitmap_line::@8 to bitmap_line::@7 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7] + // [239] phi (word) bitmap_line::e#6 = (word) bitmap_line::e#1 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7#0] -- register_copy + // [239] phi (word) bitmap_line::x#12 = (word) bitmap_line::x#13 [phi:bitmap_line::@16/bitmap_line::@8->bitmap_line::@7#1] -- register_copy + // bitmap_line::@7 + b7: + // while (y != y2) + // [240] if((word) bitmap_line::y#1!=(word) bitmap_line::y2#11) goto bitmap_line::@6 -- vwuz1_neq_vwuz2_then_la1 + lda y+1 + cmp y2+1 + bne b6 + lda y + cmp y2 + bne b6 + // [241] phi from bitmap_line::@10 bitmap_line::@7 to bitmap_line::@3 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3] + // [241] phi (word) bitmap_line::x#6 = (word) bitmap_line::x#15 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3#0] -- register_copy + // [241] phi (word) bitmap_line::y#7 = (word) bitmap_line::y#13 [phi:bitmap_line::@10/bitmap_line::@7->bitmap_line::@3#1] -- register_copy + // bitmap_line::@3 + b3: + // bitmap_plot(x,(byte)y) + // [242] (byte) bitmap_plot::y#2 ← (byte)(word) bitmap_line::y#7 -- vbuxx=_byte_vwuz1 + lda y + tax + // [243] (word) bitmap_plot::x#2 ← (word) bitmap_line::x#6 + // [244] call bitmap_plot + // [261] phi from bitmap_line::@3 to bitmap_plot [phi:bitmap_line::@3->bitmap_plot] + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#2 [phi:bitmap_line::@3->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#2 [phi:bitmap_line::@3->bitmap_plot#1] -- register_copy + jsr bitmap_plot + // bitmap_line::@return + // } + // [245] return + rts + // bitmap_line::@2 + b2: + // e = dy/2 + // [246] (word) bitmap_line::e1#0 ← (word) bitmap_line::dy#0 >> (byte) 1 -- vwuz1=vwuz2_ror_1 + lda dy+1 + lsr + sta e1+1 + lda dy + ror + sta e1 + // [247] phi from bitmap_line::@10 bitmap_line::@2 to bitmap_line::@9 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9] + // [247] phi (word) bitmap_line::e1#3 = (word) bitmap_line::e1#6 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#0] -- register_copy + // [247] phi (word) bitmap_line::x#7 = (word) bitmap_line::x#15 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#1] -- register_copy + // [247] phi (word) bitmap_line::y#15 = (word) bitmap_line::y#13 [phi:bitmap_line::@10/bitmap_line::@2->bitmap_line::@9#2] -- register_copy + // bitmap_line::@9 + b9: + // bitmap_plot(x,(byte)y) + // [248] (byte) bitmap_plot::y#3 ← (byte)(word) bitmap_line::y#15 -- vbuxx=_byte_vwuz1 + lda y + tax + // [249] (word) bitmap_plot::x#3 ← (word) bitmap_line::x#7 + // [250] call bitmap_plot + // [261] phi from bitmap_line::@9 to bitmap_plot [phi:bitmap_line::@9->bitmap_plot] + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#3 [phi:bitmap_line::@9->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#3 [phi:bitmap_line::@9->bitmap_plot#1] -- register_copy + jsr bitmap_plot + // bitmap_line::@17 + // x += sx + // [251] (word) bitmap_line::x#15 ← (word) bitmap_line::x#7 + (word) bitmap_line::sx#0 -- vwuz1=vwuz1_plus_vwuz2 + lda x + clc + adc sx + sta x + lda x+1 + adc sx+1 + sta x+1 + // e += dy + // [252] (word) bitmap_line::e1#1 ← (word) bitmap_line::e1#3 + (word) bitmap_line::dy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda e1 + clc + adc dy + sta e1 + lda e1+1 + adc dy+1 + sta e1+1 + // if(dx < e) + // [253] if((word) bitmap_line::dx#0>=(word) bitmap_line::e1#1) goto bitmap_line::@10 -- vwuz1_ge_vwuz2_then_la1 + cmp dx+1 + bne !+ + lda e1 + cmp dx + beq b10 + !: + bcc b10 + // bitmap_line::@11 + // y += sy + // [254] (word) bitmap_line::y#2 ← (word) bitmap_line::y#15 + (word) bitmap_line::sy#0 -- vwuz1=vwuz1_plus_vwuz2 + lda y + clc + adc sy + sta y + lda y+1 + adc sy+1 + sta y+1 + // e -= dx + // [255] (word) bitmap_line::e1#2 ← (word) bitmap_line::e1#1 - (word) bitmap_line::dx#0 -- vwuz1=vwuz1_minus_vwuz2 + lda e1 + sec + sbc dx + sta e1 + lda e1+1 + sbc dx+1 + sta e1+1 + // [256] phi from bitmap_line::@11 bitmap_line::@17 to bitmap_line::@10 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10] + // [256] phi (word) bitmap_line::e1#6 = (word) bitmap_line::e1#2 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10#0] -- register_copy + // [256] phi (word) bitmap_line::y#13 = (word) bitmap_line::y#2 [phi:bitmap_line::@11/bitmap_line::@17->bitmap_line::@10#1] -- register_copy + // bitmap_line::@10 + b10: + // while (x != x2) + // [257] if((word) bitmap_line::x#15!=(word) bitmap_line::x2#10) goto bitmap_line::@9 -- vwuz1_neq_vwuz2_then_la1 + lda x+1 + cmp x2+1 + bne b9 + lda x + cmp x2 + bne b9 + jmp b3 + // bitmap_line::@4 + b4: + // bitmap_plot(x,(byte)y) + // [258] (byte) bitmap_plot::y#0 ← (byte)(word) bitmap_line::y#0 -- vbuxx=_byte_vwuz1 + lda y + tax + // [259] (word) bitmap_plot::x#0 ← (word) bitmap_line::x#0 + // [260] call bitmap_plot + // [261] phi from bitmap_line::@4 to bitmap_plot [phi:bitmap_line::@4->bitmap_plot] + // [261] phi (word) bitmap_plot::x#4 = (word) bitmap_plot::x#0 [phi:bitmap_line::@4->bitmap_plot#0] -- register_copy + // [261] phi (byte) bitmap_plot::y#4 = (byte) bitmap_plot::y#0 [phi:bitmap_line::@4->bitmap_plot#1] -- register_copy + jsr bitmap_plot + rts +} + // bitmap_plot +// Plot a single dot in the bitmap +// bitmap_plot(word zeropage(4) x, byte register(X) y) +bitmap_plot: { + .label _1 = $43 + .label plotter = $41 + .label x = 4 + // (byte*) { bitmap_plot_yhi[y], bitmap_plot_ylo[y] } + // [262] (word) bitmap_plot::plotter#0 ← *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_plot::y#4) w= *((const byte[$100]) bitmap_plot_ylo#0 + (byte) bitmap_plot::y#4) -- vwuz1=pbuc1_derefidx_vbuxx_word_pbuc2_derefidx_vbuxx + lda bitmap_plot_yhi,x + sta plotter+1 + lda bitmap_plot_ylo,x + sta plotter + // x & $fff8 + // [263] (word~) bitmap_plot::$1 ← (word) bitmap_plot::x#4 & (word) $fff8 -- vwuz1=vwuz2_band_vwuc1 + lda x + and #<$fff8 + sta _1 + lda x+1 + and #>$fff8 + sta _1+1 + // plotter += ( x & $fff8 ) + // [264] (byte*) bitmap_plot::plotter#1 ← (byte*)(word) bitmap_plot::plotter#0 + (word~) bitmap_plot::$1 -- pbuz1=pbuz1_plus_vwuz2 + lda plotter + clc + adc _1 + sta plotter + lda plotter+1 + adc _1+1 + sta plotter+1 + // w + // [269] (byte~) sgn_u16::$0 ← > (word) sgn_u16::w#2 -- vbuaa=_hi_vwuz1 + lda w+1 + // >w&0x80 + // [270] (byte~) sgn_u16::$1 ← (byte~) sgn_u16::$0 & (byte) $80 -- vbuaa=vbuaa_band_vbuc1 + and #$80 + // if(>w&0x80) + // [271] if((byte) 0!=(byte~) sgn_u16::$1) goto sgn_u16::@1 -- vbuc1_neq_vbuaa_then_la1 + cmp #0 + bne b1 + // [273] phi from sgn_u16 to sgn_u16::@return [phi:sgn_u16->sgn_u16::@return] + // [273] phi (word) sgn_u16::return#4 = (byte) 1 [phi:sgn_u16->sgn_u16::@return#0] -- vwuz1=vbuc1 + lda #<1 + sta return + lda #>1 + sta return+1 + rts + // [272] phi from sgn_u16 to sgn_u16::@1 [phi:sgn_u16->sgn_u16::@1] + // sgn_u16::@1 + b1: + // [273] phi from sgn_u16::@1 to sgn_u16::@return [phi:sgn_u16::@1->sgn_u16::@return] + // [273] phi (word) sgn_u16::return#4 = (byte) -1 [phi:sgn_u16::@1->sgn_u16::@return#0] -- vwuz1=vbuc1 + lda #<-1 + sta return + lda #>-1 + sta return+1 + // sgn_u16::@return + // } + // [274] return + rts +} + // abs_u16 +// Get the absolute value of a 16-bit unsigned number treated as a signed number. +// abs_u16(word zeropage($15) w) +abs_u16: { + .label w = $15 + .label return = $15 + // >w + // [276] (byte~) abs_u16::$0 ← > (word) abs_u16::w#2 -- vbuaa=_hi_vwuz1 + lda w+1 + // >w&0x80 + // [277] (byte~) abs_u16::$1 ← (byte~) abs_u16::$0 & (byte) $80 -- vbuaa=vbuaa_band_vbuc1 + and #$80 + // if(>w&0x80) + // [278] if((byte) 0!=(byte~) abs_u16::$1) goto abs_u16::@1 -- vbuc1_neq_vbuaa_then_la1 + cmp #0 + bne b1 + // [280] phi from abs_u16 abs_u16::@1 to abs_u16::@return [phi:abs_u16/abs_u16::@1->abs_u16::@return] + // [280] phi (word) abs_u16::return#4 = (word) abs_u16::w#2 [phi:abs_u16/abs_u16::@1->abs_u16::@return#0] -- register_copy + rts + // abs_u16::@1 + b1: + // return -w; + // [279] (word) abs_u16::return#2 ← - (word) abs_u16::w#2 -- vwuz1=_neg_vwuz1 + sec + lda #0 + sbc return + sta return + lda #0 + sbc return+1 + sta return+1 + // abs_u16::@return + // } + // [281] return + rts +} + // spline_8segB +// Generate a 8-segment quadratic spline using 16-bit fixed point 1/64-format math (6 decimal bits). +// The resulting spline segment points are returned in SPLINE_8SEG[] +// Point values must be within [-200 ; 1ff] for the calculation to not overflow. +// A quadratic spline is a curve defined by 3 points: P0, P1 and P2. +// The curve connects P0 to P2 through a smooth curve that moves towards P1, but does usually not touch it. +// spline_8segB(signed word zeropage(4) p0_x, signed word zeropage(6) p0_y, signed word zeropage($17) p1_x, signed word zeropage($19) p1_y, signed word zeropage($39) p2_x, signed word zeropage($3b) p2_y) +spline_8segB: { + .label _0 = $45 + .label _1 = $45 + .label _3 = $47 + .label _4 = $47 + .label _6 = $17 + .label _8 = $19 + .label _10 = $17 + .label _12 = $19 + .label _18 = 4 + .label _19 = 4 + .label _20 = 6 + .label _21 = 6 + .label _22 = $49 + .label _23 = $49 + .label _24 = $4b + .label _25 = $4b + .label a_x = $45 + .label a_y = $47 + .label b_x = $17 + .label b_y = $19 + .label i_x = $17 + .label i_y = $19 + .label j_x = $45 + .label j_y = $47 + .label p_x = 4 + .label p_y = 6 + .label p0_x = 4 + .label p0_y = 6 + .label p1_x = $17 + .label p1_y = $19 + .label p2_x = $39 + .label p2_y = $3b + // p1.x*2 + // [282] (signed word~) spline_8segB::$0 ← (signed word) spline_8segB::p1_x#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda p1_x + asl + sta _0 + lda p1_x+1 + rol + sta _0+1 + // p2.x - p1.x*2 + // [283] (signed word~) spline_8segB::$1 ← (signed word) spline_8segB::p2_x#0 - (signed word~) spline_8segB::$0 -- vwsz1=vwsz2_minus_vwsz1 + lda p2_x + sec + sbc _1 + sta _1 + lda p2_x+1 + sbc _1+1 + sta _1+1 + // a = { p2.x - p1.x*2 + p0.x, p2.y - p1.y*2 + p0.y} + // [284] (signed word) spline_8segB::a_x#0 ← (signed word~) spline_8segB::$1 + (signed word) spline_8segB::p0_x#0 -- vwsz1=vwsz1_plus_vwsz2 + lda a_x + clc + adc p0_x + sta a_x + lda a_x+1 + adc p0_x+1 + sta a_x+1 + // p1.y*2 + // [285] (signed word~) spline_8segB::$3 ← (signed word) spline_8segB::p1_y#0 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda p1_y + asl + sta _3 + lda p1_y+1 + rol + sta _3+1 + // p2.y - p1.y*2 + // [286] (signed word~) spline_8segB::$4 ← (signed word) spline_8segB::p2_y#0 - (signed word~) spline_8segB::$3 -- vwsz1=vwsz2_minus_vwsz1 + lda p2_y + sec + sbc _4 + sta _4 + lda p2_y+1 + sbc _4+1 + sta _4+1 + // a = { p2.x - p1.x*2 + p0.x, p2.y - p1.y*2 + p0.y} + // [287] (signed word) spline_8segB::a_y#0 ← (signed word~) spline_8segB::$4 + (signed word) spline_8segB::p0_y#0 -- vwsz1=vwsz1_plus_vwsz2 + lda a_y + clc + adc p0_y + sta a_y + lda a_y+1 + adc p0_y+1 + sta a_y+1 + // p1.x - p0.x + // [288] (signed word~) spline_8segB::$6 ← (signed word) spline_8segB::p1_x#0 - (signed word) spline_8segB::p0_x#0 -- vwsz1=vwsz1_minus_vwsz2 + lda _6 + sec + sbc p0_x + sta _6 + lda _6+1 + sbc p0_x+1 + sta _6+1 + // b = { (p1.x - p0.x)*2, (p1.y - p0.y)*2 } + // [289] (signed word) spline_8segB::b_x#0 ← (signed word~) spline_8segB::$6 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl b_x + rol b_x+1 + // p1.y - p0.y + // [290] (signed word~) spline_8segB::$8 ← (signed word) spline_8segB::p1_y#0 - (signed word) spline_8segB::p0_y#0 -- vwsz1=vwsz1_minus_vwsz2 + lda _8 + sec + sbc p0_y + sta _8 + lda _8+1 + sbc p0_y+1 + sta _8+1 + // b = { (p1.x - p0.x)*2, (p1.y - p0.y)*2 } + // [291] (signed word) spline_8segB::b_y#0 ← (signed word~) spline_8segB::$8 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl b_y + rol b_y+1 + // b.x*8 + // [292] (signed word~) spline_8segB::$10 ← (signed word) spline_8segB::b_x#0 << (byte) 3 -- vwsz1=vwsz1_rol_3 + asl _10 + rol _10+1 + asl _10 + rol _10+1 + asl _10 + rol _10+1 + // i = { a.x + b.x*8, a.y + b.y*8} + // [293] (signed word) spline_8segB::i_x#0 ← (signed word) spline_8segB::a_x#0 + (signed word~) spline_8segB::$10 -- vwsz1=vwsz2_plus_vwsz1 + lda i_x + clc + adc a_x + sta i_x + lda i_x+1 + adc a_x+1 + sta i_x+1 + // b.y*8 + // [294] (signed word~) spline_8segB::$12 ← (signed word) spline_8segB::b_y#0 << (byte) 3 -- vwsz1=vwsz1_rol_3 + asl _12 + rol _12+1 + asl _12 + rol _12+1 + asl _12 + rol _12+1 + // i = { a.x + b.x*8, a.y + b.y*8} + // [295] (signed word) spline_8segB::i_y#0 ← (signed word) spline_8segB::a_y#0 + (signed word~) spline_8segB::$12 -- vwsz1=vwsz2_plus_vwsz1 + lda i_y + clc + adc a_y + sta i_y + lda i_y+1 + adc a_y+1 + sta i_y+1 + // j = { a.x*2, a.y*2 } + // [296] (signed word) spline_8segB::j_x#0 ← (signed word) spline_8segB::a_x#0 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl j_x + rol j_x+1 + // [297] (signed word) spline_8segB::j_y#0 ← (signed word) spline_8segB::a_y#0 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl j_y + rol j_y+1 + // p = { p0.x*0x40, p0.y*0x40 } + // [298] (signed word) spline_8segB::p_x#0 ← (signed word) spline_8segB::p0_x#0 << (byte) 6 -- vwsz1=vwsz1_rol_6 + lda p_x+1 + sta $ff + lda p_x + sta p_x+1 + lda #0 + sta p_x + lsr $ff + ror p_x+1 + ror p_x + lsr $ff + ror p_x+1 + ror p_x + // [299] (signed word) spline_8segB::p_y#0 ← (signed word) spline_8segB::p0_y#0 << (byte) 6 -- vwsz1=vwsz1_rol_6 + lda p_y+1 + sta $ff + lda p_y + sta p_y+1 + lda #0 + sta p_y + lsr $ff + ror p_y+1 + ror p_y + lsr $ff + ror p_y+1 + ror p_y + // [300] phi from spline_8segB to spline_8segB::@1 [phi:spline_8segB->spline_8segB::@1] + // [300] phi (signed word) spline_8segB::i_y#2 = (signed word) spline_8segB::i_y#0 [phi:spline_8segB->spline_8segB::@1#0] -- register_copy + // [300] phi (signed word) spline_8segB::i_x#2 = (signed word) spline_8segB::i_x#0 [phi:spline_8segB->spline_8segB::@1#1] -- register_copy + // [300] phi (byte) spline_8segB::n#2 = (byte) 0 [phi:spline_8segB->spline_8segB::@1#2] -- vbuyy=vbuc1 + tay + // [300] phi (signed word) spline_8segB::p_y#2 = (signed word) spline_8segB::p_y#0 [phi:spline_8segB->spline_8segB::@1#3] -- register_copy + // [300] phi (signed word) spline_8segB::p_x#2 = (signed word) spline_8segB::p_x#0 [phi:spline_8segB->spline_8segB::@1#4] -- register_copy + // [300] phi from spline_8segB::@1 to spline_8segB::@1 [phi:spline_8segB::@1->spline_8segB::@1] + // [300] phi (signed word) spline_8segB::i_y#2 = (signed word) spline_8segB::i_y#1 [phi:spline_8segB::@1->spline_8segB::@1#0] -- register_copy + // [300] phi (signed word) spline_8segB::i_x#2 = (signed word) spline_8segB::i_x#1 [phi:spline_8segB::@1->spline_8segB::@1#1] -- register_copy + // [300] phi (byte) spline_8segB::n#2 = (byte) spline_8segB::n#1 [phi:spline_8segB::@1->spline_8segB::@1#2] -- register_copy + // [300] phi (signed word) spline_8segB::p_y#2 = (signed word) spline_8segB::p_y#1 [phi:spline_8segB::@1->spline_8segB::@1#3] -- register_copy + // [300] phi (signed word) spline_8segB::p_x#2 = (signed word) spline_8segB::p_x#1 [phi:spline_8segB::@1->spline_8segB::@1#4] -- register_copy + // spline_8segB::@1 + b1: + // p.x+0x20 + // [301] (signed word~) spline_8segB::$22 ← (signed word) spline_8segB::p_x#2 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_x + clc + adc #<$20 + sta _22 + lda p_x+1 + adc #>$20 + sta _22+1 + // (p.x+0x20)/0x40 + // [302] (signed word~) spline_8segB::$23 ← (signed word~) spline_8segB::$22 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _23 + sta $ff + lda _23+1 + sta _23 + lda #0 + bit _23+1 + bpl !+ + lda #$ff + !: + sta _23+1 + rol $ff + rol _23 + rol _23+1 + rol $ff + rol _23 + rol _23+1 + // p.y+0x20 + // [303] (signed word~) spline_8segB::$24 ← (signed word) spline_8segB::p_y#2 + (signed byte) $20 -- vwsz1=vwsz2_plus_vbsc1 + lda p_y + clc + adc #<$20 + sta _24 + lda p_y+1 + adc #>$20 + sta _24+1 + // (p.y+0x20)/0x40 + // [304] (signed word~) spline_8segB::$25 ← (signed word~) spline_8segB::$24 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _25 + sta $ff + lda _25+1 + sta _25 + lda #0 + bit _25+1 + bpl !+ + lda #$ff + !: + sta _25+1 + rol $ff + rol _25 + rol _25+1 + rol $ff + rol _25 + rol _25+1 + // SPLINE_8SEG[n] = { (p.x+0x20)/0x40, (p.y+0x20)/0x40 } + // [305] (byte~) spline_8segB::$31 ← (byte) spline_8segB::n#2 << (byte) 2 -- vbuxx=vbuyy_rol_2 + tya + asl + asl + tax + // [306] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0 + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$23 -- pwsc1_derefidx_vbuxx=vwsz1 + lda _23 + sta SPLINE_8SEG,x + lda _23+1 + sta SPLINE_8SEG+1,x + // [307] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y + (byte~) spline_8segB::$31) ← (signed word~) spline_8segB::$25 -- pwsc1_derefidx_vbuxx=vwsz1 + lda _25 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y,x + lda _25+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+1,x + // p = { p.x+i.x, p.y+i.y } + // [308] (signed word) spline_8segB::p_x#1 ← (signed word) spline_8segB::p_x#2 + (signed word) spline_8segB::i_x#2 -- vwsz1=vwsz1_plus_vwsz2 + lda p_x + clc + adc i_x + sta p_x + lda p_x+1 + adc i_x+1 + sta p_x+1 + // [309] (signed word) spline_8segB::p_y#1 ← (signed word) spline_8segB::p_y#2 + (signed word) spline_8segB::i_y#2 -- vwsz1=vwsz1_plus_vwsz2 + lda p_y + clc + adc i_y + sta p_y + lda p_y+1 + adc i_y+1 + sta p_y+1 + // i = { i.x+j.x, i.y+j.y } + // [310] (signed word) spline_8segB::i_x#1 ← (signed word) spline_8segB::i_x#2 + (signed word) spline_8segB::j_x#0 -- vwsz1=vwsz1_plus_vwsz2 + lda i_x + clc + adc j_x + sta i_x + lda i_x+1 + adc j_x+1 + sta i_x+1 + // [311] (signed word) spline_8segB::i_y#1 ← (signed word) spline_8segB::i_y#2 + (signed word) spline_8segB::j_y#0 -- vwsz1=vwsz1_plus_vwsz2 + lda i_y + clc + adc j_y + sta i_y + lda i_y+1 + adc j_y+1 + sta i_y+1 + // for( char n: 0..7) + // [312] (byte) spline_8segB::n#1 ← ++ (byte) spline_8segB::n#2 -- vbuyy=_inc_vbuyy + iny + // [313] if((byte) spline_8segB::n#1!=(byte) 8) goto spline_8segB::@1 -- vbuyy_neq_vbuc1_then_la1 + cpy #8 + beq !b1+ + jmp b1 + !b1: + // spline_8segB::@2 + // p.x+0x20 + // [314] (signed word~) spline_8segB::$18 ← (signed word) spline_8segB::p_x#1 + (signed byte) $20 -- vwsz1=vwsz1_plus_vbsc1 + lda _18 + clc + adc #<$20 + sta _18 + lda _18+1 + adc #>$20 + sta _18+1 + // (p.x+0x20)/0x40 + // [315] (signed word~) spline_8segB::$19 ← (signed word~) spline_8segB::$18 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _19 + sta $ff + lda _19+1 + sta _19 + lda #0 + bit _19+1 + bpl !+ + lda #$ff + !: + sta _19+1 + rol $ff + rol _19 + rol _19+1 + rol $ff + rol _19 + rol _19+1 + // p.y+0x20 + // [316] (signed word~) spline_8segB::$20 ← (signed word) spline_8segB::p_y#1 + (signed byte) $20 -- vwsz1=vwsz1_plus_vbsc1 + lda _20 + clc + adc #<$20 + sta _20 + lda _20+1 + adc #>$20 + sta _20+1 + // (p.y+0x20)/0x40 + // [317] (signed word~) spline_8segB::$21 ← (signed word~) spline_8segB::$20 >> (byte) 6 -- vwsz1=vwsz1_ror_6 + lda _21 + sta $ff + lda _21+1 + sta _21 + lda #0 + bit _21+1 + bpl !+ + lda #$ff + !: + sta _21+1 + rol $ff + rol _21 + rol _21+1 + rol $ff + rol _21 + rol _21+1 + // SPLINE_8SEG[8] = { (p.x+0x20)/0x40, (p.y+0x20)/0x40 } + // [318] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$19 -- _deref_pwsc1=vwsz1 + lda _19 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _19+1 + sta SPLINE_8SEG+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + // [319] *((signed word*)(const struct SplineVector16[9]) SPLINE_8SEG#0+(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y+(byte) 8*(const byte) SIZEOF_STRUCT_SPLINEVECTOR16) ← (signed word~) spline_8segB::$21 -- _deref_pwsc1=vwsz1 + lda _21 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16 + lda _21+1 + sta SPLINE_8SEG+OFFSET_STRUCT_SPLINEVECTOR16_Y+8*SIZEOF_STRUCT_SPLINEVECTOR16+1 + // spline_8segB::@return + // } + // [320] return + rts +} + // rotate +// 2D-rotate a vector by an angle +// rotate(signed word zeropage($1b) vector_x, signed word zeropage($1d) vector_y, byte register(Y) angle) +rotate: { + .label _1 = $23 + .label _2 = $4d + .label _4 = $23 + .label _5 = $4f + .label _8 = $23 + .label _9 = $51 + .label _10 = $51 + .label _11 = $23 + .label _12 = $53 + .label _13 = $53 + .label vector_x = $1b + .label vector_y = $1d + .label return_x = $17 + .label return_y = $19 + .label cos_a = $1f + .label xr = $4d + .label yr = $4f + .label sin_a = $1f + // cos_a = (signed int) COS[angle] + // [322] (signed word) rotate::cos_a#0 ← (signed word)*((const signed byte*) COS#0 + (byte) rotate::angle#2) -- vwsz1=_sword_pbsc1_derefidx_vbuyy + lda COS,y + sta cos_a + ora #$7f + bmi !+ + lda #0 + !: + sta cos_a+1 + // mulf16s(cos_a, vector.x) + // [323] (signed word) mulf16s::a#0 ← (signed word) rotate::cos_a#0 + // [324] (signed word) mulf16s::b#0 ← (signed word) rotate::vector_x#2 -- vwsz1=vwsz2 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + // [325] call mulf16s + // [359] phi from rotate to mulf16s [phi:rotate->mulf16s] + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#0 [phi:rotate->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#0 [phi:rotate->mulf16s#1] -- register_copy + jsr mulf16s + // mulf16s(cos_a, vector.x) + // [326] (signed dword) mulf16s::return#2 ← (signed dword) mulf16s::return#0 + // rotate::@1 + // [327] (signed dword~) rotate::$1 ← (signed dword) mulf16s::return#2 + // (signed int )mulf16s(cos_a, vector.x) + // [328] (signed word~) rotate::$2 ← (signed word)(signed dword~) rotate::$1 -- vwsz1=_sword_vdsz2 + lda _1 + sta _2 + lda _1+1 + sta _2+1 + // xr = (signed int )mulf16s(cos_a, vector.x)*2 + // [329] (signed word) rotate::xr#0 ← (signed word~) rotate::$2 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl xr + rol xr+1 + // mulf16s(cos_a, vector.y) + // [330] (signed word) mulf16s::a#1 ← (signed word) rotate::cos_a#0 + // [331] (signed word) mulf16s::b#1 ← (signed word) rotate::vector_y#2 -- vwsz1=vwsz2 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + // [332] call mulf16s + // [359] phi from rotate::@1 to mulf16s [phi:rotate::@1->mulf16s] + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#1 [phi:rotate::@1->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#1 [phi:rotate::@1->mulf16s#1] -- register_copy + jsr mulf16s + // mulf16s(cos_a, vector.y) + // [333] (signed dword) mulf16s::return#3 ← (signed dword) mulf16s::return#0 + // rotate::@2 + // [334] (signed dword~) rotate::$4 ← (signed dword) mulf16s::return#3 + // (signed int )mulf16s(cos_a, vector.y) + // [335] (signed word~) rotate::$5 ← (signed word)(signed dword~) rotate::$4 -- vwsz1=_sword_vdsz2 + lda _4 + sta _5 + lda _4+1 + sta _5+1 + // yr = (signed int )mulf16s(cos_a, vector.y)*2 + // [336] (signed word) rotate::yr#0 ← (signed word~) rotate::$5 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl yr + rol yr+1 + // sin_a = (signed int) SIN[angle] + // [337] (signed word) rotate::sin_a#0 ← (signed word)*((const signed byte[$140]) SIN#0 + (byte) rotate::angle#2) -- vwsz1=_sword_pbsc1_derefidx_vbuyy + lda SIN,y + sta sin_a + ora #$7f + bmi !+ + lda #0 + !: + sta sin_a+1 + // mulf16s(sin_a, vector.y) + // [338] (signed word) mulf16s::a#2 ← (signed word) rotate::sin_a#0 + // [339] (signed word) mulf16s::b#2 ← (signed word) rotate::vector_y#2 -- vwsz1=vwsz2 + lda vector_y + sta mulf16s.b + lda vector_y+1 + sta mulf16s.b+1 + // [340] call mulf16s + // [359] phi from rotate::@2 to mulf16s [phi:rotate::@2->mulf16s] + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#2 [phi:rotate::@2->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#2 [phi:rotate::@2->mulf16s#1] -- register_copy + jsr mulf16s + // mulf16s(sin_a, vector.y) + // [341] (signed dword) mulf16s::return#4 ← (signed dword) mulf16s::return#0 + // rotate::@3 + // [342] (signed dword~) rotate::$8 ← (signed dword) mulf16s::return#4 + // (signed int)mulf16s(sin_a, vector.y) + // [343] (signed word~) rotate::$9 ← (signed word)(signed dword~) rotate::$8 -- vwsz1=_sword_vdsz2 + lda _8 + sta _9 + lda _8+1 + sta _9+1 + // (signed int)mulf16s(sin_a, vector.y)*2 + // [344] (signed word~) rotate::$10 ← (signed word~) rotate::$9 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _10 + rol _10+1 + // xr -= (signed int)mulf16s(sin_a, vector.y)*2 + // [345] (signed word) rotate::xr#1 ← (signed word) rotate::xr#0 - (signed word~) rotate::$10 -- vwsz1=vwsz1_minus_vwsz2 + // signed fixed[0.7] + lda xr + sec + sbc _10 + sta xr + lda xr+1 + sbc _10+1 + sta xr+1 + // mulf16s(sin_a, vector.x) + // [346] (signed word) mulf16s::a#3 ← (signed word) rotate::sin_a#0 + // [347] (signed word) mulf16s::b#3 ← (signed word) rotate::vector_x#2 -- vwsz1=vwsz2 + lda vector_x + sta mulf16s.b + lda vector_x+1 + sta mulf16s.b+1 + // [348] call mulf16s + // [359] phi from rotate::@3 to mulf16s [phi:rotate::@3->mulf16s] + // [359] phi (signed word) mulf16s::b#4 = (signed word) mulf16s::b#3 [phi:rotate::@3->mulf16s#0] -- register_copy + // [359] phi (signed word) mulf16s::a#4 = (signed word) mulf16s::a#3 [phi:rotate::@3->mulf16s#1] -- register_copy + jsr mulf16s + // mulf16s(sin_a, vector.x) + // [349] (signed dword) mulf16s::return#10 ← (signed dword) mulf16s::return#0 + // rotate::@4 + // [350] (signed dword~) rotate::$11 ← (signed dword) mulf16s::return#10 + // (signed int)mulf16s(sin_a, vector.x) + // [351] (signed word~) rotate::$12 ← (signed word)(signed dword~) rotate::$11 -- vwsz1=_sword_vdsz2 + lda _11 + sta _12 + lda _11+1 + sta _12+1 + // (signed int)mulf16s(sin_a, vector.x)*2 + // [352] (signed word~) rotate::$13 ← (signed word~) rotate::$12 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _13 + rol _13+1 + // yr += (signed int)mulf16s(sin_a, vector.x)*2 + // [353] (signed word) rotate::yr#1 ← (signed word) rotate::yr#0 + (signed word~) rotate::$13 -- vwsz1=vwsz1_plus_vwsz2 + // signed fixed[8.8] + lda yr + clc + adc _13 + sta yr + lda yr+1 + adc _13+1 + sta yr+1 + // >xr + // [354] (byte~) rotate::$15 ← > (signed word) rotate::xr#1 -- vbuaa=_hi_vwsz1 + lda xr+1 + // (signed int)(signed char)>xr + // [355] (signed word) rotate::return_x#2 ← (signed word)(signed byte)(byte~) rotate::$15 -- vwsz1=_sword_vbsaa + sta return_x + ora #$7f + bmi !+ + lda #0 + !: + sta return_x+1 + // >yr + // [356] (byte~) rotate::$18 ← > (signed word) rotate::yr#1 -- vbuaa=_hi_vwsz1 + lda yr+1 + // (signed int)(signed char)>yr + // [357] (signed word) rotate::return_y#2 ← (signed word)(signed byte)(byte~) rotate::$18 -- vwsz1=_sword_vbsaa + sta return_y + ora #$7f + bmi !+ + lda #0 + !: + sta return_y+1 + // rotate::@return + // } + // [358] return + rts +} + // mulf16s +// Fast multiply two signed words to a signed double word result +// Fixes offsets introduced by using unsigned multiplication +// mulf16s(signed word zeropage($1f) a, signed word zeropage($21) b) +mulf16s: { + .label _9 = $59 + .label _13 = $5b + .label _16 = $59 + .label _17 = $5b + .label m = $23 + .label return = $23 + .label a = $1f + .label b = $21 + // mulf16u((word)a, (word)b) + // [360] (word) mulf16u::a#0 ← (word)(signed word) mulf16s::a#4 -- vwuz1=vwuz2 + lda a + sta mulf16u.a + lda a+1 + sta mulf16u.a+1 + // [361] (word) mulf16u::b#0 ← (word)(signed word) mulf16s::b#4 -- vwuz1=vwuz2 + lda b + sta mulf16u.b + lda b+1 + sta mulf16u.b+1 + // [362] call mulf16u + jsr mulf16u + // [363] (dword) mulf16u::return#2 ← (dword) mulf16u::return#0 + // mulf16s::@5 + // m = mulf16u((word)a, (word)b) + // [364] (dword) mulf16s::m#0 ← (dword) mulf16u::return#2 + // if(a<0) + // [365] if((signed word) mulf16s::a#4>=(signed byte) 0) goto mulf16s::@1 -- vwsz1_ge_0_then_la1 + lda a+1 + bpl b1 + // mulf16s::@3 + // >m + // [366] (word~) mulf16s::$9 ← > (dword) mulf16s::m#0 -- vwuz1=_hi_vduz2 + lda m+2 + sta _9 + lda m+3 + sta _9+1 + // >m = (>m)-(word)b + // [367] (word~) mulf16s::$16 ← (word~) mulf16s::$9 - (word)(signed word) mulf16s::b#4 -- vwuz1=vwuz1_minus_vwuz2 + lda _16 + sec + sbc b + sta _16 + lda _16+1 + sbc b+1 + sta _16+1 + // [368] (dword) mulf16s::m#1 ← (dword) mulf16s::m#0 hi= (word~) mulf16s::$16 -- vduz1=vduz1_sethi_vwuz2 + lda _16 + sta m+2 + lda _16+1 + sta m+3 + // [369] phi from mulf16s::@3 mulf16s::@5 to mulf16s::@1 [phi:mulf16s::@3/mulf16s::@5->mulf16s::@1] + // [369] phi (dword) mulf16s::m#5 = (dword) mulf16s::m#1 [phi:mulf16s::@3/mulf16s::@5->mulf16s::@1#0] -- register_copy + // mulf16s::@1 + b1: + // if(b<0) + // [370] if((signed word) mulf16s::b#4>=(signed byte) 0) goto mulf16s::@2 -- vwsz1_ge_0_then_la1 + lda b+1 + bpl b2 + // mulf16s::@4 + // >m + // [371] (word~) mulf16s::$13 ← > (dword) mulf16s::m#5 -- vwuz1=_hi_vduz2 + lda m+2 + sta _13 + lda m+3 + sta _13+1 + // >m = (>m)-(word)a + // [372] (word~) mulf16s::$17 ← (word~) mulf16s::$13 - (word)(signed word) mulf16s::a#4 -- vwuz1=vwuz1_minus_vwuz2 + lda _17 + sec + sbc a + sta _17 + lda _17+1 + sbc a+1 + sta _17+1 + // [373] (dword) mulf16s::m#2 ← (dword) mulf16s::m#5 hi= (word~) mulf16s::$17 -- vduz1=vduz1_sethi_vwuz2 + lda _17 + sta m+2 + lda _17+1 + sta m+3 + // [374] phi from mulf16s::@1 mulf16s::@4 to mulf16s::@2 [phi:mulf16s::@1/mulf16s::@4->mulf16s::@2] + // [374] phi (dword) mulf16s::m#4 = (dword) mulf16s::m#5 [phi:mulf16s::@1/mulf16s::@4->mulf16s::@2#0] -- register_copy + // mulf16s::@2 + b2: + // (signed dword)m + // [375] (signed dword) mulf16s::return#0 ← (signed dword)(dword) mulf16s::m#4 + // mulf16s::@return + // } + // [376] return + rts +} + // mulf16u +// Fast multiply two unsigned words to a double word result +// Done in assembler to utilize fast addition A+X +// mulf16u(word zeropage($55) a, word zeropage($57) b) +mulf16u: { + .label memA = $f8 + .label memB = $fa + .label memR = $fc + .label return = $23 + .label a = $55 + .label b = $57 + // *memA = a + // [377] *((const word*) mulf16u::memA#0) ← (word) mulf16u::a#0 -- _deref_pwuc1=vwuz1 + lda a + sta memA + lda a+1 + sta memA+1 + // *memB = b + // [378] *((const word*) mulf16u::memB#0) ← (word) mulf16u::b#0 -- _deref_pwuc1=vwuz1 + lda b + sta memB + lda b+1 + sta memB+1 + // asm + // asm { ldamemA stasm1a+1 stasm3a+1 stasm5a+1 stasm7a+1 eor#$ff stasm2a+1 stasm4a+1 stasm6a+1 stasm8a+1 ldamemA+1 stasm1b+1 stasm3b+1 stasm5b+1 stasm7b+1 eor#$ff stasm2b+1 stasm4b+1 stasm6b+1 stasm8b+1 ldxmemB sec sm1a: ldamulf_sqr1_lo,x sm2a: sbcmulf_sqr2_lo,x stamemR+0 sm3a: ldamulf_sqr1_hi,x sm4a: sbcmulf_sqr2_hi,x sta_AA+1 sec sm1b: ldamulf_sqr1_lo,x sm2b: sbcmulf_sqr2_lo,x sta_cc+1 sm3b: ldamulf_sqr1_hi,x sm4b: sbcmulf_sqr2_hi,x sta_CC+1 ldxmemB+1 sec sm5a: ldamulf_sqr1_lo,x sm6a: sbcmulf_sqr2_lo,x sta_bb+1 sm7a: ldamulf_sqr1_hi,x sm8a: sbcmulf_sqr2_hi,x sta_BB+1 sec sm5b: ldamulf_sqr1_lo,x sm6b: sbcmulf_sqr2_lo,x sta_dd+1 sm7b: ldamulf_sqr1_hi,x sm8b: sbcmulf_sqr2_hi,x stamemR+3 clc _AA: lda#0 _bb: adc#0 stamemR+1 _BB: lda#0 _CC: adc#0 stamemR+2 bcc!+ incmemR+3 clc !: _cc: lda#0 adcmemR+1 stamemR+1 _dd: lda#0 adcmemR+2 stamemR+2 bcc!+ incmemR+3 !: } + lda memA + sta sm1a+1 + sta sm3a+1 + sta sm5a+1 + sta sm7a+1 + eor #$ff + sta sm2a+1 + sta sm4a+1 + sta sm6a+1 + sta sm8a+1 + lda memA+1 + sta sm1b+1 + sta sm3b+1 + sta sm5b+1 + sta sm7b+1 + eor #$ff + sta sm2b+1 + sta sm4b+1 + sta sm6b+1 + sta sm8b+1 + ldx memB + sec + sm1a: + lda mulf_sqr1_lo,x + sm2a: + sbc mulf_sqr2_lo,x + sta memR+0 + sm3a: + lda mulf_sqr1_hi,x + sm4a: + sbc mulf_sqr2_hi,x + sta _AA+1 + sec + sm1b: + lda mulf_sqr1_lo,x + sm2b: + sbc mulf_sqr2_lo,x + sta _cc+1 + sm3b: + lda mulf_sqr1_hi,x + sm4b: + sbc mulf_sqr2_hi,x + sta _CC+1 + ldx memB+1 + sec + sm5a: + lda mulf_sqr1_lo,x + sm6a: + sbc mulf_sqr2_lo,x + sta _bb+1 + sm7a: + lda mulf_sqr1_hi,x + sm8a: + sbc mulf_sqr2_hi,x + sta _BB+1 + sec + sm5b: + lda mulf_sqr1_lo,x + sm6b: + sbc mulf_sqr2_lo,x + sta _dd+1 + sm7b: + lda mulf_sqr1_hi,x + sm8b: + sbc mulf_sqr2_hi,x + sta memR+3 + clc + _AA: + lda #0 + _bb: + adc #0 + sta memR+1 + _BB: + lda #0 + _CC: + adc #0 + sta memR+2 + bcc !+ + inc memR+3 + clc + !: + _cc: + lda #0 + adc memR+1 + sta memR+1 + _dd: + lda #0 + adc memR+2 + sta memR+2 + bcc !+ + inc memR+3 + !: + // return *memR; + // [380] (dword) mulf16u::return#0 ← *((const dword*) mulf16u::memR#0) -- vduz1=_deref_pduc1 + lda memR + sta return + lda memR+1 + sta return+1 + lda memR+2 + sta return+2 + lda memR+3 + sta return+3 + // mulf16u::@return + // } + // [381] return + rts +} + // bitmap_clear +// Clear all graphics on the bitmap +// bgcol - the background color to fill the screen with +// fgcol - the foreground color to fill the screen with +bitmap_clear: { + .const col = WHITE<<4 + // memset(bitmap_screen, col, 1000uw) + // [383] call memset + // [387] phi from bitmap_clear to memset [phi:bitmap_clear->memset] + // [387] phi (byte) memset::c#3 = (const byte) bitmap_clear::col#0 [phi:bitmap_clear->memset#0] -- vbuxx=vbuc1 + ldx #col + // [387] phi (void*) memset::str#3 = (void*)(const byte*) BITMAP_SCREEN#0 [phi:bitmap_clear->memset#1] -- pvoz1=pvoc1 + lda #BITMAP_SCREEN + sta memset.str+1 + // [387] phi (word) memset::num#2 = (word) $3e8 [phi:bitmap_clear->memset#2] -- vwuz1=vwuc1 + lda #<$3e8 + sta memset.num + lda #>$3e8 + sta memset.num+1 + jsr memset + // [384] phi from bitmap_clear to bitmap_clear::@1 [phi:bitmap_clear->bitmap_clear::@1] + // bitmap_clear::@1 + // memset(bitmap_gfx, 0, 8000uw) + // [385] call memset + // [387] phi from bitmap_clear::@1 to memset [phi:bitmap_clear::@1->memset] + // [387] phi (byte) memset::c#3 = (byte) 0 [phi:bitmap_clear::@1->memset#0] -- vbuxx=vbuc1 + ldx #0 + // [387] phi (void*) memset::str#3 = (void*)(const byte*) BITMAP_GRAPHICS#0 [phi:bitmap_clear::@1->memset#1] -- pvoz1=pvoc1 + lda #BITMAP_GRAPHICS + sta memset.str+1 + // [387] phi (word) memset::num#2 = (word) $1f40 [phi:bitmap_clear::@1->memset#2] -- vwuz1=vwuc1 + lda #<$1f40 + sta memset.num + lda #>$1f40 + sta memset.num+1 + jsr memset + // bitmap_clear::@return + // } + // [386] return + rts +} + // memset +// Copies the character c (an unsigned char) to the first num characters of the object pointed to by the argument str. +// memset(void* zeropage($29) str, byte register(X) c, word zeropage($27) num) +memset: { + .label end = $27 + .label dst = $29 + .label num = $27 + .label str = $29 + // if(num>0) + // [388] if((word) memset::num#2<=(byte) 0) goto memset::@return -- vwuz1_le_0_then_la1 + lda num + bne !+ + lda num+1 + beq breturn + !: + // memset::@1 + // end = (char*)str + num + // [389] (byte*) memset::end#0 ← (byte*)(void*) memset::str#3 + (word) memset::num#2 -- pbuz1=pbuz2_plus_vwuz1 + lda end + clc + adc str + sta end + lda end+1 + adc str+1 + sta end+1 + // [390] (byte*~) memset::dst#3 ← (byte*)(void*) memset::str#3 + // [391] phi from memset::@1 memset::@2 to memset::@2 [phi:memset::@1/memset::@2->memset::@2] + // [391] phi (byte*) memset::dst#2 = (byte*~) memset::dst#3 [phi:memset::@1/memset::@2->memset::@2#0] -- register_copy + // memset::@2 + b2: + // *dst = c + // [392] *((byte*) memset::dst#2) ← (byte) memset::c#3 -- _deref_pbuz1=vbuxx + txa + ldy #0 + sta (dst),y + // for(char* dst = str; dst!=end; dst++) + // [393] (byte*) memset::dst#1 ← ++ (byte*) memset::dst#2 -- pbuz1=_inc_pbuz1 + inc dst + bne !+ + inc dst+1 + !: + // [394] if((byte*) memset::dst#1!=(byte*) memset::end#0) goto memset::@2 -- pbuz1_neq_pbuz2_then_la1 + lda dst+1 + cmp end+1 + bne b2 + lda dst + cmp end + bne b2 + // memset::@return + breturn: + // } + // [395] return + rts +} + // bitmap_init +// Initialize bitmap plotting tables +bitmap_init: { + .label _7 = $5d + .label yoffs = $2b + // [397] phi from bitmap_init to bitmap_init::@1 [phi:bitmap_init->bitmap_init::@1] + // [397] phi (byte) bitmap_init::x#2 = (byte) 0 [phi:bitmap_init->bitmap_init::@1#0] -- vbuxx=vbuc1 + ldx #0 + // [397] phi (byte) bitmap_init::bits#3 = (byte) $80 [phi:bitmap_init->bitmap_init::@1#1] -- vbuaa=vbuc1 + lda #$80 + // [397] phi from bitmap_init::@2 to bitmap_init::@1 [phi:bitmap_init::@2->bitmap_init::@1] + // [397] phi (byte) bitmap_init::x#2 = (byte) bitmap_init::x#1 [phi:bitmap_init::@2->bitmap_init::@1#0] -- register_copy + // [397] phi (byte) bitmap_init::bits#3 = (byte) bitmap_init::bits#4 [phi:bitmap_init::@2->bitmap_init::@1#1] -- register_copy + // bitmap_init::@1 + b1: + // bitmap_plot_bit[x] = bits + // [398] *((const byte[$100]) bitmap_plot_bit#0 + (byte) bitmap_init::x#2) ← (byte) bitmap_init::bits#3 -- pbuc1_derefidx_vbuxx=vbuaa + sta bitmap_plot_bit,x + // bits >>= 1 + // [399] (byte) bitmap_init::bits#1 ← (byte) bitmap_init::bits#3 >> (byte) 1 -- vbuaa=vbuaa_ror_1 + lsr + // if(bits==0) + // [400] if((byte) bitmap_init::bits#1!=(byte) 0) goto bitmap_init::@6 -- vbuaa_neq_0_then_la1 + cmp #0 + bne b2 + // [402] phi from bitmap_init::@1 to bitmap_init::@2 [phi:bitmap_init::@1->bitmap_init::@2] + // [402] phi (byte) bitmap_init::bits#4 = (byte) $80 [phi:bitmap_init::@1->bitmap_init::@2#0] -- vbuaa=vbuc1 + lda #$80 + // [401] phi from bitmap_init::@1 to bitmap_init::@6 [phi:bitmap_init::@1->bitmap_init::@6] + // bitmap_init::@6 + // [402] phi from bitmap_init::@6 to bitmap_init::@2 [phi:bitmap_init::@6->bitmap_init::@2] + // [402] phi (byte) bitmap_init::bits#4 = (byte) bitmap_init::bits#1 [phi:bitmap_init::@6->bitmap_init::@2#0] -- register_copy + // bitmap_init::@2 + b2: + // for(byte x : 0..255) + // [403] (byte) bitmap_init::x#1 ← ++ (byte) bitmap_init::x#2 -- vbuxx=_inc_vbuxx + inx + // [404] if((byte) bitmap_init::x#1!=(byte) 0) goto bitmap_init::@1 -- vbuxx_neq_0_then_la1 + cpx #0 + bne b1 + // [405] phi from bitmap_init::@2 to bitmap_init::@3 [phi:bitmap_init::@2->bitmap_init::@3] + // [405] phi (byte*) bitmap_init::yoffs#2 = (const byte*) BITMAP_GRAPHICS#0 [phi:bitmap_init::@2->bitmap_init::@3#0] -- pbuz1=pbuc1 + lda #BITMAP_GRAPHICS + sta yoffs+1 + // [405] phi (byte) bitmap_init::y#2 = (byte) 0 [phi:bitmap_init::@2->bitmap_init::@3#1] -- vbuxx=vbuc1 + ldx #0 + // [405] phi from bitmap_init::@4 to bitmap_init::@3 [phi:bitmap_init::@4->bitmap_init::@3] + // [405] phi (byte*) bitmap_init::yoffs#2 = (byte*) bitmap_init::yoffs#4 [phi:bitmap_init::@4->bitmap_init::@3#0] -- register_copy + // [405] phi (byte) bitmap_init::y#2 = (byte) bitmap_init::y#1 [phi:bitmap_init::@4->bitmap_init::@3#1] -- register_copy + // bitmap_init::@3 + b3: + // y&$7 + // [406] (byte~) bitmap_init::$7 ← (byte) bitmap_init::y#2 & (byte) 7 -- vbuz1=vbuxx_band_vbuc1 + lda #7 + sax _7 + // yoffs + // [410] (byte~) bitmap_init::$6 ← > (byte*) bitmap_init::yoffs#2 -- vbuaa=_hi_pbuz1 + lda yoffs+1 + // bitmap_plot_yhi[y] = >yoffs + // [411] *((const byte[$100]) bitmap_plot_yhi#0 + (byte) bitmap_init::y#2) ← (byte~) bitmap_init::$6 -- pbuc1_derefidx_vbuxx=vbuaa + sta bitmap_plot_yhi,x + // if((y&$7)==7) + // [412] if((byte~) bitmap_init::$7!=(byte) 7) goto bitmap_init::@4 -- vbuz1_neq_vbuc1_then_la1 + lda #7 + cmp _7 + bne b4 + // bitmap_init::@5 + // yoffs = yoffs + 40*8 + // [413] (byte*) bitmap_init::yoffs#1 ← (byte*) bitmap_init::yoffs#2 + (word)(number) $28*(number) 8 -- pbuz1=pbuz1_plus_vwuc1 + clc + lda yoffs + adc #<$28*8 + sta yoffs + lda yoffs+1 + adc #>$28*8 + sta yoffs+1 + // [414] phi from bitmap_init::@3 bitmap_init::@5 to bitmap_init::@4 [phi:bitmap_init::@3/bitmap_init::@5->bitmap_init::@4] + // [414] phi (byte*) bitmap_init::yoffs#4 = (byte*) bitmap_init::yoffs#2 [phi:bitmap_init::@3/bitmap_init::@5->bitmap_init::@4#0] -- register_copy + // bitmap_init::@4 + b4: + // for(byte y : 0..255) + // [415] (byte) bitmap_init::y#1 ← ++ (byte) bitmap_init::y#2 -- vbuxx=_inc_vbuxx + inx + // [416] if((byte) bitmap_init::y#1!=(byte) 0) goto bitmap_init::@3 -- vbuxx_neq_0_then_la1 + cpx #0 + bne b3 + // bitmap_init::@return + // } + // [417] return + rts +} + // mulf_init +// Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) +mulf_init: { + .label sqr1_hi = $2f + .label sqr = $32 + .label sqr1_lo = $2d + .label x_2 = $31 + .label sqr2_hi = $36 + .label sqr2_lo = $34 + .label dir = $38 + // [419] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] + // [419] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 + lda #0 + sta x_2 + // [419] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 + lda #mulf_sqr1_hi+1 + sta sqr1_hi+1 + // [419] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 + lda #mulf_sqr1_lo+1 + sta sqr1_lo+1 + // [419] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 + lda #<0 + sta sqr + sta sqr+1 + // [419] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuxx=vbuc1 + tax + // [419] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] + // [419] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy + // [419] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy + // [419] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy + // [419] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy + // [419] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy + // mulf_init::@1 + b1: + // if((++c&1)==0) + // [420] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuxx=_inc_vbuxx + inx + // ++c&1 + // [421] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuaa=vbuxx_band_vbuc1 + txa + and #1 + // if((++c&1)==0) + // [422] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuaa_neq_0_then_la1 + cmp #0 + bne b2 + // mulf_init::@3 + // x_2++; + // [423] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 + inc x_2 + // sqr++; + // [424] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 + inc sqr + bne !+ + inc sqr+1 + !: + // [425] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] + // [425] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy + // [425] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy + // mulf_init::@2 + b2: + // sqr + // [428] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuaa=_hi_vwuz1 + lda sqr+1 + // *sqr1_hi++ = >sqr + // [429] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuaa + sta (sqr1_hi),y + // *sqr1_hi++ = >sqr; + // [430] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 + inc sqr1_hi + bne !+ + inc sqr1_hi+1 + !: + // sqr = sqr + x_2 + // [431] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 + lda x_2 + clc + adc sqr + sta sqr + bcc !+ + inc sqr+1 + !: + // for(byte* sqr1_lo = mulf_sqr1_lo+1; sqr1_lo!=mulf_sqr1_lo+512; sqr1_lo++) + // [432] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 + inc sqr1_lo + bne !+ + inc sqr1_lo+1 + !: + // [433] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 + lda sqr1_lo+1 + cmp #>mulf_sqr1_lo+$200 + bne b1 + lda sqr1_lo + cmp #mulf_init::@4] + // [434] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 + lda #$ff + sta dir + // [434] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 + lda #mulf_sqr2_hi + sta sqr2_hi+1 + // [434] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 + lda #mulf_sqr2_lo + sta sqr2_lo+1 + // [434] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuxx=vbuc1 + ldx #-1 + // [434] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] + // [434] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy + // [434] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy + // [434] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy + // [434] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy + // mulf_init::@4 + b4: + // *sqr2_lo = mulf_sqr1_lo[x_255] + // [435] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + lda mulf_sqr1_lo,x + ldy #0 + sta (sqr2_lo),y + // *sqr2_hi++ = mulf_sqr1_hi[x_255] + // [436] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + lda mulf_sqr1_hi,x + sta (sqr2_hi),y + // *sqr2_hi++ = mulf_sqr1_hi[x_255]; + // [437] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 + inc sqr2_hi + bne !+ + inc sqr2_hi+1 + !: + // x_255 = x_255 + dir + // [438] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuxx=vbuxx_plus_vbuz1 + txa + clc + adc dir + tax + // if(x_255==0) + // [439] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuxx_neq_0_then_la1 + cpx #0 + bne b5 + // [441] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] + // [441] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 + lda #1 + sta dir + // [440] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] + // mulf_init::@7 + // [441] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] + // [441] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy + // mulf_init::@5 + b5: + // for(byte* sqr2_lo = mulf_sqr2_lo; sqr2_lo!=mulf_sqr2_lo+511; sqr2_lo++) + // [442] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 + inc sqr2_lo + bne !+ + inc sqr2_lo+1 + !: + // [443] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 + lda sqr2_lo+1 + cmp #>mulf_sqr2_lo+$1ff + bne b4 + lda sqr2_lo + cmp #f(x) = >(( x * x )/4) + .align $100 + mulf_sqr1_hi: .fill $200, 0 + // g(x) = >((( x - 255) * ( x - 255 ))/4) + .align $100 + mulf_sqr2_hi: .fill $200, 0 + // True type letter c + letter_c: .fill 9*$16, 0 + // Sine and Cosine tables + // Angles: $00=0, $80=PI,$100=2*PI + // Sine/Cosine: signed fixed [-$7f,$7f] + .align $40 +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + + diff --git a/src/test/ref/complex/splines/truetype-splines.sym b/src/test/ref/complex/splines/truetype-splines.sym new file mode 100644 index 000000000..f7a65ae23 --- /dev/null +++ b/src/test/ref/complex/splines/truetype-splines.sym @@ -0,0 +1,652 @@ +(label) @1 +(label) @begin +(label) @end +(byte*) BITMAP_GRAPHICS +(const byte*) BITMAP_GRAPHICS#0 BITMAP_GRAPHICS = (byte*) 24576 +(byte*) BITMAP_SCREEN +(const byte*) BITMAP_SCREEN#0 BITMAP_SCREEN = (byte*) 23552 +(byte) BLACK +(byte*) CIA2_PORT_A +(const byte*) CIA2_PORT_A#0 CIA2_PORT_A = (byte*) 56576 +(byte*) CIA2_PORT_A_DDR +(const byte*) CIA2_PORT_A_DDR#0 CIA2_PORT_A_DDR = (byte*) 56578 +(signed byte*) COS +(const signed byte*) COS#0 COS = (const signed byte[$140]) SIN#0+(byte) $40 +(byte*) D011 +(const byte*) D011#0 D011 = (byte*) 53265 +(byte*) D018 +(const byte*) D018#0 D018 = (byte*) 53272 +(const byte) LINE_TO LINE_TO = (byte) 2 +(const byte) MOVE_TO MOVE_TO = (byte) 0 +(const byte) OFFSET_STRUCT_SEGMENT_TO OFFSET_STRUCT_SEGMENT_TO = (byte) 1 +(const byte) OFFSET_STRUCT_SEGMENT_VIA OFFSET_STRUCT_SEGMENT_VIA = (byte) 5 +(const byte) OFFSET_STRUCT_SPLINEVECTOR16_Y OFFSET_STRUCT_SPLINEVECTOR16_Y = (byte) 2 +(byte*) PRINT_SCREEN +(const byte) RADIX::BINARY BINARY = (number) 2 +(const byte) RADIX::DECIMAL DECIMAL = (number) $a +(const byte) RADIX::HEXADECIMAL HEXADECIMAL = (number) $10 +(const byte) RADIX::OCTAL OCTAL = (number) 8 +(byte*) RASTER +(const byte*) RASTER#0 RASTER = (byte*) 53266 +(signed byte[$140]) SIN +(const signed byte[$140]) SIN#0 SIN = kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + }} +(const byte) SIZEOF_STRUCT_SEGMENT SIZEOF_STRUCT_SEGMENT = (byte) 9 +(const byte) SIZEOF_STRUCT_SPLINEVECTOR16 SIZEOF_STRUCT_SPLINEVECTOR16 = (byte) 4 +(struct SplineVector16[9]) SPLINE_8SEG +(const struct SplineVector16[9]) SPLINE_8SEG#0 SPLINE_8SEG = { fill( 9, 0) } +(const byte) SPLINE_TO SPLINE_TO = (byte) 1 +(const byte) Segment::SegmentType::LINE_TO LINE_TO = (byte) 2 +(const byte) Segment::SegmentType::MOVE_TO MOVE_TO = (byte) 0 +(const byte) Segment::SegmentType::SPLINE_TO SPLINE_TO = (byte) 1 +(struct SplineVector16) Segment::to +(byte) Segment::type +(struct SplineVector16) Segment::via +(signed word) SplineVector16::x +(signed word) SplineVector16::y +(signed dword) SplineVector32::x +(signed dword) SplineVector32::y +(byte) VIC_BMM +(const byte) VIC_BMM#0 VIC_BMM = (byte) $20 +(byte) VIC_DEN +(const byte) VIC_DEN#0 VIC_DEN = (byte) $10 +(byte) VIC_RSEL +(const byte) VIC_RSEL#0 VIC_RSEL = (byte) 8 +(byte) WHITE +(const byte) WHITE#0 WHITE = (byte) 1 +(word()) abs_u16((word) abs_u16::w) +(byte~) abs_u16::$0 reg byte a 4.0 +(byte~) abs_u16::$1 reg byte a 4.0 +(label) abs_u16::@1 +(label) abs_u16::@return +(word) abs_u16::return +(word) abs_u16::return#0 return zp ZP_WORD:21 4.0 +(word) abs_u16::return#1 return zp ZP_WORD:21 4.0 +(word) abs_u16::return#2 return zp ZP_WORD:21 4.0 +(word) abs_u16::return#4 return zp ZP_WORD:21 2.0 +(word) abs_u16::w +(word) abs_u16::w#0 w zp ZP_WORD:21 4.0 +(word) abs_u16::w#1 w zp ZP_WORD:21 4.0 +(word) abs_u16::w#2 w zp ZP_WORD:21 2.5 +(void()) bitmap_clear((byte) bitmap_clear::bgcol , (byte) bitmap_clear::fgcol) +(label) bitmap_clear::@1 +(label) bitmap_clear::@return +(byte) bitmap_clear::bgcol +(byte) bitmap_clear::col +(const byte) bitmap_clear::col#0 col = (const byte) WHITE#0<<(byte) 4 +(byte) bitmap_clear::fgcol +(byte*) bitmap_gfx +(void()) bitmap_init((byte*) bitmap_init::gfx , (byte*) bitmap_init::screen) +(byte~) bitmap_init::$4 reg byte a 22.0 +(byte~) bitmap_init::$5 reg byte a 22.0 +(byte~) bitmap_init::$6 reg byte a 22.0 +(byte~) bitmap_init::$7 $7 zp ZP_BYTE:93 5.5 +(label) bitmap_init::@1 +(label) bitmap_init::@2 +(label) bitmap_init::@3 +(label) bitmap_init::@4 +(label) bitmap_init::@5 +(label) bitmap_init::@6 +(label) bitmap_init::@return +(byte) bitmap_init::bits +(byte) bitmap_init::bits#1 reg byte a 11.0 +(byte) bitmap_init::bits#3 reg byte a 16.5 +(byte) bitmap_init::bits#4 reg byte a 7.333333333333333 +(byte*) bitmap_init::gfx +(byte*) bitmap_init::screen +(byte) bitmap_init::x +(byte) bitmap_init::x#1 reg byte x 16.5 +(byte) bitmap_init::x#2 reg byte x 5.5 +(byte) bitmap_init::y +(byte) bitmap_init::y#1 reg byte x 16.5 +(byte) bitmap_init::y#2 reg byte x 5.5 +(byte*) bitmap_init::yoffs +(byte*) bitmap_init::yoffs#1 yoffs zp ZP_WORD:43 22.0 +(byte*) bitmap_init::yoffs#2 yoffs zp ZP_WORD:43 6.875 +(byte*) bitmap_init::yoffs#4 yoffs zp ZP_WORD:43 11.0 +(void()) bitmap_line((word) bitmap_line::x1 , (word) bitmap_line::y1 , (word) bitmap_line::x2 , (word) bitmap_line::y2) +(label) bitmap_line::@1 +(label) bitmap_line::@10 +(label) bitmap_line::@11 +(label) bitmap_line::@12 +(label) bitmap_line::@13 +(label) bitmap_line::@14 +(label) bitmap_line::@15 +(label) bitmap_line::@16 +(label) bitmap_line::@17 +(label) bitmap_line::@18 +(label) bitmap_line::@2 +(label) bitmap_line::@3 +(label) bitmap_line::@4 +(label) bitmap_line::@5 +(label) bitmap_line::@6 +(label) bitmap_line::@7 +(label) bitmap_line::@8 +(label) bitmap_line::@9 +(label) bitmap_line::@return +(word) bitmap_line::dx +(word) bitmap_line::dx#0 dx zp ZP_WORD:61 75.275 +(word) bitmap_line::dy +(word) bitmap_line::dy#0 dy zp ZP_WORD:21 83.6388888888889 +(word) bitmap_line::e +(word) bitmap_line::e#0 e zp ZP_WORD:13 4.0 +(word) bitmap_line::e#1 e zp ZP_WORD:13 1334.6666666666667 +(word) bitmap_line::e#2 e zp ZP_WORD:13 2002.0 +(word) bitmap_line::e#3 e zp ZP_WORD:13 400.79999999999995 +(word) bitmap_line::e#6 e zp ZP_WORD:13 1501.5 +(word) bitmap_line::e1 +(word) bitmap_line::e1#0 e1 zp ZP_WORD:15 4.0 +(word) bitmap_line::e1#1 e1 zp ZP_WORD:15 1334.6666666666667 +(word) bitmap_line::e1#2 e1 zp ZP_WORD:15 2002.0 +(word) bitmap_line::e1#3 e1 zp ZP_WORD:15 400.79999999999995 +(word) bitmap_line::e1#6 e1 zp ZP_WORD:15 1501.5 +(word) bitmap_line::sx +(word) bitmap_line::sx#0 sx zp ZP_WORD:63 66.80000000000001 +(word) bitmap_line::sy +(word) bitmap_line::sy#0 sy zp ZP_WORD:19 77.07692307692308 +(word) bitmap_line::x +(word) bitmap_line::x#0 x zp ZP_WORD:4 48.34782608695653 +(word) bitmap_line::x#1 x zp ZP_WORD:4 1001.0 +(word) bitmap_line::x#12 x zp ZP_WORD:4 2002.0 +(word) bitmap_line::x#13 x zp ZP_WORD:4 572.2857142857142 +(word) bitmap_line::x#15 x zp ZP_WORD:4 572.0 +(word) bitmap_line::x#6 x zp ZP_WORD:4 1002.0 +(word) bitmap_line::x#7 x zp ZP_WORD:4 751.25 +(word) bitmap_line::x1 +(word) bitmap_line::x1#0 x1 zp ZP_WORD:4 50.5 +(word) bitmap_line::x1#1 x1 zp ZP_WORD:4 400.4 +(word) bitmap_line::x2 +(word) bitmap_line::x2#0 x2 zp ZP_WORD:9 101.0 +(word) bitmap_line::x2#10 x2 zp ZP_WORD:9 65.84375 +(word~) bitmap_line::x2#13 x2 zp ZP_WORD:9 1001.0 +(word) bitmap_line::y +(word) bitmap_line::y#0 y zp ZP_WORD:6 50.45454545454547 +(word) bitmap_line::y#1 y zp ZP_WORD:6 572.0 +(word) bitmap_line::y#13 y zp ZP_WORD:6 2002.0 +(word) bitmap_line::y#15 y zp ZP_WORD:6 429.2857142857143 +(word) bitmap_line::y#2 y zp ZP_WORD:6 1001.0 +(word) bitmap_line::y#4 y zp ZP_WORD:6 501.0 +(word) bitmap_line::y#7 y zp ZP_WORD:6 2002.0 +(word) bitmap_line::y1 +(word) bitmap_line::y1#0 y1 zp ZP_WORD:6 67.33333333333333 +(word) bitmap_line::y1#1 y1 zp ZP_WORD:6 500.5 +(word) bitmap_line::y2 +(word) bitmap_line::y2#0 y2 zp ZP_WORD:11 202.0 +(word) bitmap_line::y2#11 y2 zp ZP_WORD:11 65.84375 +(word~) bitmap_line::y2#13 y2 zp ZP_WORD:11 2002.0 +(void()) bitmap_plot((word) bitmap_plot::x , (byte) bitmap_plot::y) +(word~) bitmap_plot::$1 $1 zp ZP_WORD:67 4.0 +(byte~) bitmap_plot::$2 reg byte a 4.0 +(label) bitmap_plot::@return +(byte*) bitmap_plot::plotter +(word) bitmap_plot::plotter#0 plotter zp ZP_WORD:65 1.0 +(byte*) bitmap_plot::plotter#1 plotter zp ZP_WORD:65 3.0 +(word) bitmap_plot::x +(word) bitmap_plot::x#0 x zp ZP_WORD:4 4.0 +(word) bitmap_plot::x#1 x zp ZP_WORD:4 2002.0 +(word) bitmap_plot::x#2 x zp ZP_WORD:4 4.0 +(word) bitmap_plot::x#3 x zp ZP_WORD:4 2002.0 +(word) bitmap_plot::x#4 x zp ZP_WORD:4 502.5 +(byte) bitmap_plot::y +(byte) bitmap_plot::y#0 reg byte x 2.0 +(byte) bitmap_plot::y#1 reg byte x 1001.0 +(byte) bitmap_plot::y#2 reg byte x 2.0 +(byte) bitmap_plot::y#3 reg byte x 1001.0 +(byte) bitmap_plot::y#4 reg byte x 2010.0 +(byte[$100]) bitmap_plot_bit +(const byte[$100]) bitmap_plot_bit#0 bitmap_plot_bit = { fill( $100, 0) } +(void()) bitmap_plot_spline_8seg() +(byte~) bitmap_plot_spline_8seg::$8 reg byte x 500.5 +(byte~) bitmap_plot_spline_8seg::$9 reg byte x 1501.5 +(label) bitmap_plot_spline_8seg::@1 +(label) bitmap_plot_spline_8seg::@2 +(label) bitmap_plot_spline_8seg::@return +(signed word) bitmap_plot_spline_8seg::current_x +(signed word) bitmap_plot_spline_8seg::current_x#0 current_x zp ZP_WORD:4 2.0 +(signed word) bitmap_plot_spline_8seg::current_x#1 current_x zp ZP_WORD:4 500.5 +(signed word) bitmap_plot_spline_8seg::current_x#2 current_x zp ZP_WORD:4 1003.0 +(signed word) bitmap_plot_spline_8seg::current_y +(signed word) bitmap_plot_spline_8seg::current_y#0 current_y zp ZP_WORD:6 4.0 +(signed word) bitmap_plot_spline_8seg::current_y#1 current_y zp ZP_WORD:6 667.3333333333334 +(signed word) bitmap_plot_spline_8seg::current_y#2 current_y zp ZP_WORD:6 501.5 +(byte) bitmap_plot_spline_8seg::n +(byte) bitmap_plot_spline_8seg::n#1 n zp ZP_BYTE:8 1501.5 +(byte) bitmap_plot_spline_8seg::n#2 n zp ZP_BYTE:8 400.4 +(byte[$100]) bitmap_plot_yhi +(const byte[$100]) bitmap_plot_yhi#0 bitmap_plot_yhi = { fill( $100, 0) } +(byte[$100]) bitmap_plot_ylo +(const byte[$100]) bitmap_plot_ylo#0 bitmap_plot_ylo = { fill( $100, 0) } +(byte*) bitmap_screen +(struct Segment[$16]) letter_c +(const struct Segment[$16]) letter_c#0 letter_c = { fill( $16, 0) } +(void()) main() +(label) main::@1 +(label) main::@10 +(label) main::@2 +(label) main::@3 +(label) main::@4 +(label) main::@5 +(label) main::@6 +(label) main::@7 +(label) main::@8 +(label) main::@9 +(byte) main::angle +(byte) main::angle#1 angle zp ZP_BYTE:2 22.0 +(byte) main::angle#2 angle zp ZP_BYTE:2 3.3000000000000003 +(label) main::toD0181 +(word~) main::toD0181_$0 +(number~) main::toD0181_$1 +(number~) main::toD0181_$2 +(number~) main::toD0181_$3 +(word~) main::toD0181_$4 +(byte~) main::toD0181_$5 +(number~) main::toD0181_$6 +(number~) main::toD0181_$7 +(number~) main::toD0181_$8 +(byte*) main::toD0181_gfx +(byte) main::toD0181_return +(const byte) main::toD0181_return#0 toD0181_return = >(word)(const byte*) BITMAP_SCREEN#0&(word) $3fff*(byte) 4|>(word)(const byte*) BITMAP_GRAPHICS#0/(byte) 4&(byte) $f +(byte*) main::toD0181_screen +(label) main::vicSelectGfxBank1 +(byte~) main::vicSelectGfxBank1_$0 +(label) main::vicSelectGfxBank1_@1 +(byte*) main::vicSelectGfxBank1_gfx +(label) main::vicSelectGfxBank1_toDd001 +(word~) main::vicSelectGfxBank1_toDd001_$0 +(byte~) main::vicSelectGfxBank1_toDd001_$1 +(number~) main::vicSelectGfxBank1_toDd001_$2 +(number~) main::vicSelectGfxBank1_toDd001_$3 +(byte*) main::vicSelectGfxBank1_toDd001_gfx +(byte) main::vicSelectGfxBank1_toDd001_return +(const byte) main::vicSelectGfxBank1_toDd001_return#0 vicSelectGfxBank1_toDd001_return = (byte) 3^>(word)(const byte*) BITMAP_SCREEN#0/(byte) $40 +(byte) main::w +(byte) main::w#1 reg byte x 151.5 +(byte) main::w#4 reg byte x 67.33333333333333 +(void*()) memset((void*) memset::str , (byte) memset::c , (word) memset::num) +(label) memset::@1 +(label) memset::@2 +(label) memset::@return +(byte) memset::c +(byte) memset::c#3 reg byte x 12.625 +(byte*) memset::dst +(byte*) memset::dst#1 dst zp ZP_WORD:41 151.5 +(byte*) memset::dst#2 dst zp ZP_WORD:41 152.5 +(byte*~) memset::dst#3 dst zp ZP_WORD:41 4.0 +(byte*) memset::end +(byte*) memset::end#0 end zp ZP_WORD:39 17.166666666666664 +(word) memset::num +(word) memset::num#2 num zp ZP_WORD:39 2.0 +(void*) memset::return +(void*) memset::str +(void*) memset::str#3 str zp ZP_WORD:41 +(signed dword()) mulf16s((signed word) mulf16s::a , (signed word) mulf16s::b) +(word~) mulf16s::$13 $13 zp ZP_WORD:91 4.0 +(word~) mulf16s::$16 $16 zp ZP_WORD:89 4.0 +(word~) mulf16s::$17 $17 zp ZP_WORD:91 4.0 +(word~) mulf16s::$9 $9 zp ZP_WORD:89 4.0 +(label) mulf16s::@1 +(label) mulf16s::@2 +(label) mulf16s::@3 +(label) mulf16s::@4 +(label) mulf16s::@5 +(label) mulf16s::@return +(signed word) mulf16s::a +(signed word) mulf16s::a#0 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#1 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#2 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#3 a zp ZP_WORD:31 2.0 +(signed word) mulf16s::a#4 a zp ZP_WORD:31 0.7692307692307693 +(signed word) mulf16s::b +(signed word) mulf16s::b#0 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#1 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#2 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#3 b zp ZP_WORD:33 4.0 +(signed word) mulf16s::b#4 b zp ZP_WORD:33 0.9090909090909092 +(dword) mulf16s::m +(dword) mulf16s::m#0 m zp ZP_DWORD:35 2.0 +(dword) mulf16s::m#1 m zp ZP_DWORD:35 4.0 +(dword) mulf16s::m#2 m zp ZP_DWORD:35 4.0 +(dword) mulf16s::m#4 m zp ZP_DWORD:35 4.0 +(dword) mulf16s::m#5 m zp ZP_DWORD:35 2.5 +(signed dword) mulf16s::return +(signed dword) mulf16s::return#0 return zp ZP_DWORD:35 1.6666666666666665 +(signed dword) mulf16s::return#10 return zp ZP_DWORD:35 4.0 +(signed dword) mulf16s::return#2 return zp ZP_DWORD:35 4.0 +(signed dword) mulf16s::return#3 return zp ZP_DWORD:35 4.0 +(signed dword) mulf16s::return#4 return zp ZP_DWORD:35 4.0 +(dword()) mulf16u((word) mulf16u::a , (word) mulf16u::b) +(label) mulf16u::@return +(word) mulf16u::a +(word) mulf16u::a#0 a zp ZP_WORD:85 2.0 +(word) mulf16u::b +(word) mulf16u::b#0 b zp ZP_WORD:87 2.0 +(word*) mulf16u::memA +(const word*) mulf16u::memA#0 memA = (word*) 248 +(word*) mulf16u::memB +(const word*) mulf16u::memB#0 memB = (word*) 250 +(dword*) mulf16u::memR +(const dword*) mulf16u::memR#0 memR = (dword*) 252 +(dword) mulf16u::return +(dword) mulf16u::return#0 return zp ZP_DWORD:35 1.3333333333333333 +(dword) mulf16u::return#2 return zp ZP_DWORD:35 4.0 +(void()) mulf_init() +(byte~) mulf_init::$10 reg byte a 22.0 +(byte~) mulf_init::$11 reg byte a 22.0 +(byte~) mulf_init::$7 reg byte a 22.0 +(label) mulf_init::@1 +(label) mulf_init::@2 +(label) mulf_init::@3 +(label) mulf_init::@4 +(label) mulf_init::@5 +(label) mulf_init::@6 +(label) mulf_init::@7 +(label) mulf_init::@return +(byte) mulf_init::c +(byte) mulf_init::c#1 reg byte x 2.357142857142857 +(byte) mulf_init::c#2 reg byte x 22.0 +(byte) mulf_init::dir +(byte) mulf_init::dir#2 dir zp ZP_BYTE:56 4.714285714285714 +(byte) mulf_init::dir#3 dir zp ZP_BYTE:56 7.333333333333333 +(word) mulf_init::sqr +(word) mulf_init::sqr#1 sqr zp ZP_WORD:50 7.333333333333333 +(word) mulf_init::sqr#2 sqr zp ZP_WORD:50 22.0 +(word) mulf_init::sqr#3 sqr zp ZP_WORD:50 9.166666666666666 +(word) mulf_init::sqr#4 sqr zp ZP_WORD:50 6.6000000000000005 +(byte*) mulf_init::sqr1_hi +(byte*) mulf_init::sqr1_hi#1 sqr1_hi zp ZP_WORD:47 5.5 +(byte*) mulf_init::sqr1_hi#2 sqr1_hi zp ZP_WORD:47 3.0 +(byte*) mulf_init::sqr1_lo +(byte*) mulf_init::sqr1_lo#1 sqr1_lo zp ZP_WORD:45 16.5 +(byte*) mulf_init::sqr1_lo#2 sqr1_lo zp ZP_WORD:45 2.5384615384615383 +(byte*) mulf_init::sqr2_hi +(byte*) mulf_init::sqr2_hi#1 sqr2_hi zp ZP_WORD:54 3.142857142857143 +(byte*) mulf_init::sqr2_hi#2 sqr2_hi zp ZP_WORD:54 11.0 +(byte*) mulf_init::sqr2_lo +(byte*) mulf_init::sqr2_lo#1 sqr2_lo zp ZP_WORD:52 16.5 +(byte*) mulf_init::sqr2_lo#2 sqr2_lo zp ZP_WORD:52 4.125 +(byte) mulf_init::x_2 +(byte) mulf_init::x_2#1 x_2 zp ZP_BYTE:49 11.0 +(byte) mulf_init::x_2#2 x_2 zp ZP_BYTE:49 4.888888888888889 +(byte) mulf_init::x_2#3 x_2 zp ZP_BYTE:49 8.25 +(byte) mulf_init::x_255 +(byte) mulf_init::x_255#1 reg byte x 5.5 +(byte) mulf_init::x_255#2 reg byte x 11.0 +(byte[$200]) mulf_sqr1_hi +(const byte[$200]) mulf_sqr1_hi#0 mulf_sqr1_hi = { fill( $200, 0) } +(byte[$200]) mulf_sqr1_lo +(const byte[$200]) mulf_sqr1_lo#0 mulf_sqr1_lo = { fill( $200, 0) } +(byte[$200]) mulf_sqr2_hi +(const byte[$200]) mulf_sqr2_hi#0 mulf_sqr2_hi = { fill( $200, 0) } +(byte[$200]) mulf_sqr2_lo +(const byte[$200]) mulf_sqr2_lo#0 mulf_sqr2_lo = { fill( $200, 0) } +(struct SplineVector16()) rotate((signed word) rotate::vector_x , (signed word) rotate::vector_y , (byte) rotate::angle) +(signed dword~) rotate::$1 $1 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$10 $10 zp ZP_WORD:81 4.0 +(signed dword~) rotate::$11 $11 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$12 $12 zp ZP_WORD:83 4.0 +(signed word~) rotate::$13 $13 zp ZP_WORD:83 4.0 +(byte~) rotate::$15 reg byte a 2.0 +(byte~) rotate::$18 reg byte a 2.0 +(signed word~) rotate::$2 $2 zp ZP_WORD:77 4.0 +(signed dword~) rotate::$4 $4 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$5 $5 zp ZP_WORD:79 4.0 +(signed dword~) rotate::$8 $8 zp ZP_DWORD:35 2.0 +(signed word~) rotate::$9 $9 zp ZP_WORD:81 4.0 +(label) rotate::@1 +(label) rotate::@2 +(label) rotate::@3 +(label) rotate::@4 +(label) rotate::@return +(byte) rotate::angle +(byte) rotate::angle#0 reg byte y 202.0 +(byte) rotate::angle#1 reg byte y 202.0 +(byte) rotate::angle#2 reg byte y 12.625 +(signed word) rotate::cos_a +(signed word) rotate::cos_a#0 cos_a zp ZP_WORD:31 0.75 +(struct SplineVector16) rotate::return +(signed word) rotate::return_x +(signed word) rotate::return_x#0 return_x zp ZP_WORD:23 101.0 +(signed word) rotate::return_x#1 return_x zp ZP_WORD:23 101.0 +(signed word) rotate::return_x#2 return_x zp ZP_WORD:23 34.0 +(signed word) rotate::return_y +(signed word) rotate::return_y#0 return_y zp ZP_WORD:25 101.0 +(signed word) rotate::return_y#1 return_y zp ZP_WORD:25 101.0 +(signed word) rotate::return_y#2 return_y zp ZP_WORD:25 34.0 +(signed word) rotate::rotated_x +(signed word) rotate::rotated_y +(signed word) rotate::sin_a +(signed word) rotate::sin_a#0 sin_a zp ZP_WORD:31 0.6666666666666666 +(struct SplineVector16) rotate::vector +(signed word) rotate::vector_x +(signed word) rotate::vector_x#0 vector_x zp ZP_WORD:27 67.33333333333333 +(signed word) rotate::vector_x#1 vector_x zp ZP_WORD:27 67.33333333333333 +(signed word) rotate::vector_x#2 vector_x zp ZP_WORD:27 7.9230769230769225 +(signed word) rotate::vector_y +(signed word) rotate::vector_y#0 vector_y zp ZP_WORD:29 101.0 +(signed word) rotate::vector_y#1 vector_y zp ZP_WORD:29 101.0 +(signed word) rotate::vector_y#2 vector_y zp ZP_WORD:29 11.444444444444443 +(signed word) rotate::xr +(signed word) rotate::xr#0 xr zp ZP_WORD:77 0.25 +(signed word) rotate::xr#1 xr zp ZP_WORD:77 0.4444444444444444 +(signed word) rotate::yr +(signed word) rotate::yr#0 yr zp ZP_WORD:79 0.23529411764705882 +(signed word) rotate::yr#1 yr zp ZP_WORD:79 1.3333333333333333 +(word()) sgn_u16((word) sgn_u16::w) +(byte~) sgn_u16::$0 reg byte a 4.0 +(byte~) sgn_u16::$1 reg byte a 4.0 +(label) sgn_u16::@1 +(label) sgn_u16::@return +(word) sgn_u16::return +(word) sgn_u16::return#0 return zp ZP_WORD:19 4.0 +(word) sgn_u16::return#1 return zp ZP_WORD:19 4.0 +(word) sgn_u16::return#4 return zp ZP_WORD:19 1.0 +(word) sgn_u16::w +(word) sgn_u16::w#0 w zp ZP_WORD:17 4.0 +(word) sgn_u16::w#1 w zp ZP_WORD:17 4.0 +(word) sgn_u16::w#2 w zp ZP_WORD:17 6.0 +(void()) show_letter((byte) show_letter::angle) +(struct SplineVector16~) show_letter::$2 +(byte~) show_letter::$20 reg byte x 151.5 +(byte~) show_letter::$21 reg byte x 151.5 +(byte~) show_letter::$22 reg byte a 202.0 +(byte) show_letter::$32 reg byte a 202.0 +(byte) show_letter::$34 reg byte a 202.0 +(byte) show_letter::$36 reg byte a 202.0 +(struct SplineVector16~) show_letter::$7 +(label) show_letter::@1 +(label) show_letter::@2 +(label) show_letter::@3 +(label) show_letter::@4 +(label) show_letter::@5 +(label) show_letter::@6 +(label) show_letter::@7 +(label) show_letter::@8 +(label) show_letter::@9 +(label) show_letter::@return +(byte) show_letter::angle +(byte) show_letter::angle#0 angle zp ZP_BYTE:2 3.6724137931034484 +(signed word) show_letter::current_x +(signed word) show_letter::current_x#10 current_x#10 zp ZP_WORD:57 7.76923076923077 +(signed word~) show_letter::current_x#11 current_x zp ZP_WORD:4 101.0 +(signed word) show_letter::current_x#4 current_x zp ZP_WORD:4 5.315789473684211 +(signed word) show_letter::current_y +(signed word) show_letter::current_y#10 current_y#10 zp ZP_WORD:59 7.76923076923077 +(signed word~) show_letter::current_y#11 current_y zp ZP_WORD:6 202.0 +(signed word) show_letter::current_y#4 current_y zp ZP_WORD:6 5.05 +(byte) show_letter::i +(byte) show_letter::i#1 i zp ZP_BYTE:3 75.75 +(byte) show_letter::i#10 i zp ZP_BYTE:3 15.538461538461537 +(signed word) show_letter::segment_to_x +(signed word) show_letter::segment_to_y +(byte) show_letter::segment_type +(byte) show_letter::segment_type#0 reg byte a 151.5 +(signed word) show_letter::segment_via_x +(signed word) show_letter::segment_via_x#0 segment_via_x zp ZP_WORD:23 22.444444444444443 +(signed word) show_letter::segment_via_y +(signed word) show_letter::segment_via_y#0 segment_via_y zp ZP_WORD:25 22.444444444444443 +(signed word) show_letter::to_x +(signed word) show_letter::to_x#0 to_x zp ZP_WORD:27 101.0 +(signed word) show_letter::to_x#1 to_x zp ZP_WORD:27 101.0 +(signed word) show_letter::to_x#2 to_x#2 zp ZP_WORD:23 101.0 +(signed word) show_letter::to_y +(signed word) show_letter::to_y#0 to_y zp ZP_WORD:29 101.0 +(signed word) show_letter::to_y#1 to_y zp ZP_WORD:29 101.0 +(signed word) show_letter::to_y#2 to_y#2 zp ZP_WORD:25 101.0 +(signed word) show_letter::via_x +(signed word) show_letter::via_x#0 via_x zp ZP_WORD:27 101.0 +(signed word) show_letter::via_x#1 via_x zp ZP_WORD:27 101.0 +(signed word) show_letter::via_x#2 via_x#2 zp ZP_WORD:23 101.0 +(signed word) show_letter::via_y +(signed word) show_letter::via_y#0 via_y zp ZP_WORD:29 101.0 +(signed word) show_letter::via_y#1 via_y zp ZP_WORD:29 101.0 +(signed word) show_letter::via_y#2 via_y#2 zp ZP_WORD:25 101.0 +(void()) spline_8segB((signed word) spline_8segB::p0_x , (signed word) spline_8segB::p0_y , (signed word) spline_8segB::p1_x , (signed word) spline_8segB::p1_y , (signed word) spline_8segB::p2_x , (signed word) spline_8segB::p2_y) +(signed word~) spline_8segB::$0 $0 zp ZP_WORD:69 4.0 +(signed word~) spline_8segB::$1 $1 zp ZP_WORD:69 4.0 +(signed word~) spline_8segB::$10 $10 zp ZP_WORD:23 4.0 +(signed word~) spline_8segB::$12 $12 zp ZP_WORD:25 4.0 +(signed word~) spline_8segB::$18 $18 zp ZP_WORD:4 4.0 +(signed word~) spline_8segB::$19 $19 zp ZP_WORD:4 1.3333333333333333 +(signed word~) spline_8segB::$20 $20 zp ZP_WORD:6 4.0 +(signed word~) spline_8segB::$21 $21 zp ZP_WORD:6 2.0 +(signed word~) spline_8segB::$22 $22 zp ZP_WORD:73 2002.0 +(signed word~) spline_8segB::$23 $23 zp ZP_WORD:73 500.5 +(signed word~) spline_8segB::$24 $24 zp ZP_WORD:75 2002.0 +(signed word~) spline_8segB::$25 $25 zp ZP_WORD:75 667.3333333333334 +(signed word~) spline_8segB::$3 $3 zp ZP_WORD:71 4.0 +(byte~) spline_8segB::$31 reg byte x 1501.5 +(signed word~) spline_8segB::$4 $4 zp ZP_WORD:71 4.0 +(signed word~) spline_8segB::$6 $6 zp ZP_WORD:23 4.0 +(signed word~) spline_8segB::$8 $8 zp ZP_WORD:25 4.0 +(label) spline_8segB::@1 +(label) spline_8segB::@2 +(label) spline_8segB::@return +(signed word) spline_8segB::a_x +(signed word) spline_8segB::a_x#0 a_x zp ZP_WORD:69 0.5 +(signed word) spline_8segB::a_y +(signed word) spline_8segB::a_y#0 a_y zp ZP_WORD:71 0.6000000000000001 +(signed word) spline_8segB::b_x +(signed word) spline_8segB::b_x#0 b_x zp ZP_WORD:23 1.3333333333333333 +(signed word) spline_8segB::b_y +(signed word) spline_8segB::b_y#0 b_y zp ZP_WORD:25 1.3333333333333333 +(signed word) spline_8segB::i_x +(signed word) spline_8segB::i_x#0 i_x zp ZP_WORD:23 0.5714285714285714 +(signed word) spline_8segB::i_x#1 i_x zp ZP_WORD:23 500.5 +(signed word) spline_8segB::i_x#2 i_x zp ZP_WORD:23 300.5 +(signed word) spline_8segB::i_y +(signed word) spline_8segB::i_y#0 i_y zp ZP_WORD:25 0.8 +(signed word) spline_8segB::i_y#1 i_y zp ZP_WORD:25 667.3333333333334 +(signed word) spline_8segB::i_y#2 i_y zp ZP_WORD:25 273.1818181818182 +(signed word) spline_8segB::j_x +(signed word) spline_8segB::j_x#0 j_x zp ZP_WORD:69 55.72222222222223 +(signed word) spline_8segB::j_y +(signed word) spline_8segB::j_y#0 j_y zp ZP_WORD:71 59.0 +(byte) spline_8segB::n +(byte) spline_8segB::n#1 reg byte y 1501.5 +(byte) spline_8segB::n#2 reg byte y 250.25 +(struct SplineVector16) spline_8segB::p0 +(signed word) spline_8segB::p0_x +(signed word) spline_8segB::p0_x#0 p0_x zp ZP_WORD:4 4.863636363636363 +(signed word) spline_8segB::p0_y +(signed word) spline_8segB::p0_y#0 p0_y zp ZP_WORD:6 4.863636363636363 +(struct SplineVector16) spline_8segB::p1 +(signed word) spline_8segB::p1_x +(signed word) spline_8segB::p1_x#0 p1_x zp ZP_WORD:23 10.499999999999998 +(signed word) spline_8segB::p1_y +(signed word) spline_8segB::p1_y#0 p1_y zp ZP_WORD:25 9.545454545454545 +(struct SplineVector16) spline_8segB::p2 +(signed word) spline_8segB::p2_x +(signed word) spline_8segB::p2_x#0 p2_x zp ZP_WORD:57 34.33333333333333 +(signed word) spline_8segB::p2_y +(signed word) spline_8segB::p2_y#0 p2_y zp ZP_WORD:59 20.599999999999998 +(signed word) spline_8segB::p_x +(signed word) spline_8segB::p_x#0 p_x zp ZP_WORD:4 2.0 +(signed word) spline_8segB::p_x#1 p_x zp ZP_WORD:4 334.0 +(signed word) spline_8segB::p_x#2 p_x zp ZP_WORD:4 375.625 +(signed word) spline_8segB::p_y +(signed word) spline_8segB::p_y#0 p_y zp ZP_WORD:6 4.0 +(signed word) spline_8segB::p_y#1 p_y zp ZP_WORD:6 286.2857142857143 +(signed word) spline_8segB::p_y#2 p_y zp ZP_WORD:6 333.8888888888889 + +zp ZP_BYTE:2 [ main::angle#2 main::angle#1 show_letter::angle#0 ] +reg byte x [ main::w#4 main::w#1 ] +zp ZP_BYTE:3 [ show_letter::i#10 show_letter::i#1 ] +zp ZP_WORD:4 [ show_letter::current_x#4 show_letter::current_x#11 bitmap_line::x#7 bitmap_line::x#6 bitmap_line::x#15 bitmap_line::x#13 bitmap_line::x#0 bitmap_line::x1#1 bitmap_line::x1#0 bitmap_line::x#12 bitmap_line::x#1 bitmap_plot::x#4 bitmap_plot::x#3 bitmap_plot::x#2 bitmap_plot::x#0 bitmap_plot::x#1 spline_8segB::p0_x#0 bitmap_plot_spline_8seg::current_x#2 bitmap_plot_spline_8seg::current_x#0 bitmap_plot_spline_8seg::current_x#1 spline_8segB::p_x#2 spline_8segB::p_x#0 spline_8segB::p_x#1 spline_8segB::$18 spline_8segB::$19 ] +zp ZP_WORD:6 [ show_letter::current_y#4 show_letter::current_y#11 bitmap_line::y#15 bitmap_line::y#7 bitmap_line::y#13 bitmap_line::y#4 bitmap_line::y#0 bitmap_line::y1#1 bitmap_line::y1#0 bitmap_line::y#1 bitmap_line::y#2 spline_8segB::p0_y#0 bitmap_plot_spline_8seg::current_y#2 bitmap_plot_spline_8seg::current_y#0 bitmap_plot_spline_8seg::current_y#1 spline_8segB::p_y#2 spline_8segB::p_y#0 spline_8segB::p_y#1 spline_8segB::$20 spline_8segB::$21 ] +zp ZP_BYTE:8 [ bitmap_plot_spline_8seg::n#2 bitmap_plot_spline_8seg::n#1 ] +zp ZP_WORD:9 [ bitmap_line::x2#10 bitmap_line::x2#13 bitmap_line::x2#0 ] +zp ZP_WORD:11 [ bitmap_line::y2#11 bitmap_line::y2#13 bitmap_line::y2#0 ] +zp ZP_WORD:13 [ bitmap_line::e#3 bitmap_line::e#0 bitmap_line::e#6 bitmap_line::e#1 bitmap_line::e#2 ] +zp ZP_WORD:15 [ bitmap_line::e1#3 bitmap_line::e1#6 bitmap_line::e1#0 bitmap_line::e1#2 bitmap_line::e1#1 ] +reg byte x [ bitmap_plot::y#4 bitmap_plot::y#3 bitmap_plot::y#2 bitmap_plot::y#0 bitmap_plot::y#1 ] +zp ZP_WORD:17 [ sgn_u16::w#2 sgn_u16::w#0 sgn_u16::w#1 ] +zp ZP_WORD:19 [ sgn_u16::return#4 sgn_u16::return#0 sgn_u16::return#1 bitmap_line::sy#0 ] +zp ZP_WORD:21 [ abs_u16::return#4 abs_u16::return#2 abs_u16::w#2 abs_u16::w#0 abs_u16::w#1 abs_u16::return#0 abs_u16::return#1 bitmap_line::dy#0 ] +reg byte y [ spline_8segB::n#2 spline_8segB::n#1 ] +zp ZP_WORD:23 [ spline_8segB::i_x#2 spline_8segB::i_x#0 spline_8segB::i_x#1 spline_8segB::$10 spline_8segB::$6 spline_8segB::b_x#0 show_letter::segment_via_x#0 spline_8segB::p1_x#0 rotate::return_x#0 show_letter::to_x#2 rotate::return_x#2 rotate::return_x#1 show_letter::via_x#2 ] +zp ZP_WORD:25 [ spline_8segB::i_y#2 spline_8segB::i_y#0 spline_8segB::i_y#1 spline_8segB::$12 spline_8segB::$8 spline_8segB::b_y#0 show_letter::segment_via_y#0 spline_8segB::p1_y#0 rotate::return_y#0 show_letter::to_y#2 rotate::return_y#2 rotate::return_y#1 show_letter::via_y#2 ] +reg byte y [ rotate::angle#2 rotate::angle#0 rotate::angle#1 ] +zp ZP_WORD:27 [ rotate::vector_x#2 rotate::vector_x#0 rotate::vector_x#1 show_letter::to_x#1 show_letter::via_x#1 show_letter::to_x#0 show_letter::via_x#0 ] +zp ZP_WORD:29 [ rotate::vector_y#2 rotate::vector_y#0 rotate::vector_y#1 show_letter::to_y#1 show_letter::via_y#1 show_letter::to_y#0 show_letter::via_y#0 ] +zp ZP_WORD:31 [ mulf16s::a#4 mulf16s::a#0 mulf16s::a#1 mulf16s::a#2 mulf16s::a#3 rotate::cos_a#0 rotate::sin_a#0 ] +zp ZP_WORD:33 [ mulf16s::b#4 mulf16s::b#0 mulf16s::b#1 mulf16s::b#2 mulf16s::b#3 ] +zp ZP_DWORD:35 [ mulf16s::m#4 mulf16s::m#5 mulf16s::m#1 mulf16s::m#0 mulf16s::m#2 mulf16u::return#2 mulf16s::return#0 mulf16s::return#2 rotate::$1 mulf16s::return#3 rotate::$4 mulf16s::return#4 rotate::$8 mulf16s::return#10 rotate::$11 mulf16u::return#0 ] +zp ZP_WORD:39 [ memset::num#2 memset::end#0 ] +zp ZP_WORD:41 [ memset::str#3 memset::dst#2 memset::dst#3 memset::dst#1 ] +reg byte x [ memset::c#3 ] +reg byte a [ bitmap_init::bits#3 bitmap_init::bits#4 bitmap_init::bits#1 ] +reg byte x [ bitmap_init::x#2 bitmap_init::x#1 ] +reg byte x [ bitmap_init::y#2 bitmap_init::y#1 ] +zp ZP_WORD:43 [ bitmap_init::yoffs#2 bitmap_init::yoffs#4 bitmap_init::yoffs#1 ] +reg byte x [ mulf_init::c#2 mulf_init::c#1 ] +zp ZP_WORD:45 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +zp ZP_WORD:47 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +zp ZP_BYTE:49 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +zp ZP_WORD:50 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ] +zp ZP_WORD:52 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +zp ZP_WORD:54 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +zp ZP_BYTE:56 [ mulf_init::dir#2 mulf_init::dir#3 ] +reg byte a [ show_letter::$32 ] +reg byte x [ show_letter::$20 ] +zp ZP_WORD:57 [ show_letter::current_x#10 spline_8segB::p2_x#0 ] +zp ZP_WORD:59 [ show_letter::current_y#10 spline_8segB::p2_y#0 ] +reg byte a [ show_letter::$34 ] +reg byte x [ show_letter::$21 ] +reg byte a [ show_letter::$36 ] +reg byte a [ show_letter::$22 ] +reg byte a [ show_letter::segment_type#0 ] +reg byte x [ bitmap_plot_spline_8seg::$8 ] +reg byte x [ bitmap_plot_spline_8seg::$9 ] +zp ZP_WORD:61 [ bitmap_line::dx#0 ] +zp ZP_WORD:63 [ bitmap_line::sx#0 ] +zp ZP_WORD:65 [ bitmap_plot::plotter#0 bitmap_plot::plotter#1 ] +zp ZP_WORD:67 [ bitmap_plot::$1 ] +reg byte a [ bitmap_plot::$2 ] +reg byte a [ sgn_u16::$0 ] +reg byte a [ sgn_u16::$1 ] +reg byte a [ abs_u16::$0 ] +reg byte a [ abs_u16::$1 ] +zp ZP_WORD:69 [ spline_8segB::$0 spline_8segB::$1 spline_8segB::a_x#0 spline_8segB::j_x#0 ] +zp ZP_WORD:71 [ spline_8segB::$3 spline_8segB::$4 spline_8segB::a_y#0 spline_8segB::j_y#0 ] +zp ZP_WORD:73 [ spline_8segB::$22 spline_8segB::$23 ] +zp ZP_WORD:75 [ spline_8segB::$24 spline_8segB::$25 ] +reg byte x [ spline_8segB::$31 ] +zp ZP_WORD:77 [ rotate::$2 rotate::xr#0 rotate::xr#1 ] +zp ZP_WORD:79 [ rotate::$5 rotate::yr#0 rotate::yr#1 ] +zp ZP_WORD:81 [ rotate::$9 rotate::$10 ] +zp ZP_WORD:83 [ rotate::$12 rotate::$13 ] +reg byte a [ rotate::$15 ] +reg byte a [ rotate::$18 ] +zp ZP_WORD:85 [ mulf16u::a#0 ] +zp ZP_WORD:87 [ mulf16u::b#0 ] +zp ZP_WORD:89 [ mulf16s::$9 mulf16s::$16 ] +zp ZP_WORD:91 [ mulf16s::$13 mulf16s::$17 ] +zp ZP_BYTE:93 [ bitmap_init::$7 ] +reg byte a [ bitmap_init::$4 ] +reg byte a [ bitmap_init::$5 ] +reg byte a [ bitmap_init::$6 ] +reg byte a [ mulf_init::$7 ] +reg byte a [ mulf_init::$10 ] +reg byte a [ mulf_init::$11 ] diff --git a/src/test/ref/examples/rotate/rotate.asm b/src/test/ref/examples/rotate/rotate.asm index 9c8fdc27c..e5d277d9d 100644 --- a/src/test/ref/examples/rotate/rotate.asm +++ b/src/test/ref/examples/rotate/rotate.asm @@ -9,12 +9,27 @@ .label SPRITES_ENABLE = $d015 .label BORDERCOL = $d020 .label SPRITES_COLS = $d027 + // CIA #2 Timer A+B Value (32-bit) + .label CIA2_TIMER_AB = $dd04 + // CIA #2 Timer A Control Register + .label CIA2_TIMER_A_CONTROL = $dd0e + // CIA #2 Timer B Control Register + .label CIA2_TIMER_B_CONTROL = $dd0f + // Timer Control - Start/stop timer (0:stop, 1: start) + .const CIA_TIMER_CONTROL_START = 1 + // Timer Control - Time CONTINUOUS/ONE-SHOT (0:CONTINUOUS, 1: ONE-SHOT) + .const CIA_TIMER_CONTROL_CONTINUOUS = 0 + // Timer B Control - Timer counts (00:system cycles, 01: CNT pulses, 10: timer A underflow, 11: time A underflow while CNT is high) + .const CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A = $40 .const GREEN = 5 .const LIGHT_BLUE = $e + // Clock cycles used to start & read the cycle clock by calling clock_start() and clock() once. Can be subtracted when calculating the number of cycles used by a routine. + // To make precise cycle measurements interrupts and the display must be disabled so neither steals any cycles from the code. + .const CLOCKS_PER_INIT = $12 .label SCREEN = $400 // A single sprite .label SPRITE = $3000 - .label SIN = COS+$40 + .label COS = SIN+$40 // sin(x) = cos(x+PI/2) main: { sei @@ -23,20 +38,22 @@ main: { rts } anim: { - .label _4 = 5 - .label _6 = 5 - .label _9 = 5 - .label _10 = 5 - .label _11 = 5 - .label _12 = 5 - .label x = $13 - .label y = $14 - .label xr = $15 - .label yr = $17 - .label xpos = $19 + .label _5 = $c + .label _7 = $c + .label _10 = $c + .label _11 = $c + .label _12 = $c + .label _13 = $c + .label _28 = $22 + .label x = $1a + .label y = $1b + .label xr = $1c + .label yr = $1e + .label xpos = $20 .label sprite_msb = 4 .label i = 3 .label angle = 2 + .label cyclecount = $22 lda #0 sta angle b2: @@ -44,6 +61,7 @@ anim: { cmp RASTER bne b2 inc BORDERCOL + jsr clock_start lda #0 sta sprite_msb sta i @@ -59,18 +77,18 @@ anim: { jsr mulf8u_prepare ldy x jsr mulf8s_prepared - lda _4 + lda _5 asl sta xr - lda _4+1 + lda _5+1 rol sta xr+1 ldy y jsr mulf8s_prepared - lda _6 + lda _7 asl sta yr - lda _6+1 + lda _7+1 rol sta yr+1 ldy angle @@ -78,26 +96,26 @@ anim: { jsr mulf8u_prepare ldy y jsr mulf8s_prepared - asl _10 - rol _10+1 + asl _11 + rol _11+1 lda xr sec - sbc _10 + sbc _11 sta xr lda xr+1 - sbc _10+1 + sbc _11+1 sta xr+1 ldy x jsr mulf8s_prepared - asl _12 - rol _12+1 + asl _13 + rol _13+1 // signed fixed[8.8] lda yr clc - adc _12 + adc _13 sta yr lda yr+1 - adc _12+1 + adc _13+1 sta yr+1 lda xr+1 tax @@ -138,16 +156,134 @@ anim: { lda sprite_msb sta SPRITES_XMSB inc angle + jsr clock + lda cyclecount + sec + sbc #CLOCKS_PER_INIT + sta cyclecount+1 + lda cyclecount+2 + sbc #>$10 + sta cyclecount+2 + lda cyclecount+3 + sbc #>CLOCKS_PER_INIT>>$10 + sta cyclecount+3 + jsr print_dword_at lda #LIGHT_BLUE sta BORDERCOL jmp b2 } +// Print a dword as HEX at a specific position +// print_dword_at(dword zeropage($22) dw) +print_dword_at: { + .label dw = $22 + lda dw+2 + sta print_word_at.w + lda dw+3 + sta print_word_at.w+1 + lda #SCREEN + sta print_word_at.at+1 + jsr print_word_at + lda dw + sta print_word_at.w + lda dw+1 + sta print_word_at.w+1 + lda #SCREEN+4 + sta print_word_at.at+1 + jsr print_word_at + rts +} +// Print a word as HEX at a specific position +// print_word_at(word zeropage(5) w, byte* zeropage(7) at) +print_word_at: { + .label w = 5 + .label at = 7 + lda w+1 + sta print_byte_at.b + jsr print_byte_at + lda w + sta print_byte_at.b + lda print_byte_at.at + clc + adc #2 + sta print_byte_at.at + bcc !+ + inc print_byte_at.at+1 + !: + jsr print_byte_at + rts +} +// Print a byte as HEX at a specific position +// print_byte_at(byte zeropage(9) b, byte* zeropage(7) at) +print_byte_at: { + .label b = 9 + .label at = 7 + lda b + lsr + lsr + lsr + lsr + tay + ldx print_hextab,y + lda at + sta print_char_at.at + lda at+1 + sta print_char_at.at+1 + jsr print_char_at + lda #$f + and b + tay + lda at + clc + adc #1 + sta print_char_at.at + lda at+1 + adc #0 + sta print_char_at.at+1 + ldx print_hextab,y + jsr print_char_at + rts +} +// Print a single char +// print_char_at(byte register(X) ch, byte* zeropage($a) at) +print_char_at: { + .label at = $a + txa + ldy #0 + sta (at),y + rts +} +// Returns the processor clock time used since the beginning of an implementation defined era (normally the beginning of the program). +// This uses CIA #2 Timer A+B on the C64, and must be initialized using clock_start() +clock: { + .label return = $22 + lda #<$ffffffff + sec + sbc CIA2_TIMER_AB + sta return + lda #>$ffffffff + sbc CIA2_TIMER_AB+1 + sta return+1 + lda #<$ffffffff>>$10 + sbc CIA2_TIMER_AB+2 + sta return+2 + lda #>$ffffffff>>$10 + sbc CIA2_TIMER_AB+3 + sta return+3 + rts +} // Calculate fast multiply with a prepared unsigned byte to a word result // The prepared number is set by calling mulf8s_prepare(byte a) // mulf8s_prepared(signed byte register(Y) b) mulf8s_prepared: { .label memA = $fd - .label m = 5 + .label m = $c tya jsr mulf8u_prepared lda memA @@ -174,7 +310,7 @@ mulf8s_prepared: { mulf8u_prepared: { .label resL = $fe .label memB = $ff - .label return = 5 + .label return = $c sta memB tax sec @@ -206,6 +342,28 @@ mulf8u_prepare: { sta mulf8u_prepared.sm4+1 rts } +// Reset & start the processor clock time. The value can be read using clock(). +// This uses CIA #2 Timer A+B on the C64 +clock_start: { + // Setup CIA#2 timer A to count (down) CPU cycles + lda #CIA_TIMER_CONTROL_CONTINUOUS + sta CIA2_TIMER_A_CONTROL + lda #CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + lda #<$ffffffff + sta CIA2_TIMER_AB + lda #>$ffffffff + sta CIA2_TIMER_AB+1 + lda #<$ffffffff>>$10 + sta CIA2_TIMER_AB+2 + lda #>$ffffffff>>$10 + sta CIA2_TIMER_AB+3 + lda #CIA_TIMER_CONTROL_START|CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + lda #CIA_TIMER_CONTROL_START + sta CIA2_TIMER_A_CONTROL + rts +} init: { .label sprites_ptr = SCREEN+$3f8 jsr mulf_init @@ -224,13 +382,13 @@ init: { } // Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) mulf_init: { - .label sqr1_hi = 9 - .label sqr = $c - .label sqr1_lo = 7 - .label x_2 = $b - .label sqr2_hi = $10 - .label sqr2_lo = $e - .label dir = $12 + .label sqr1_hi = $10 + .label sqr = $13 + .label sqr1_lo = $e + .label x_2 = $12 + .label sqr2_hi = $17 + .label sqr2_lo = $15 + .label dir = $19 lda #0 sta x_2 lda #g(x) = >((( x - 255) * ( x - 255 ))/4) .align $100 mulf_sqr2_hi: .fill $200, 0 + print_hextab: .text "0123456789abcdef" // Sine and Cosine tables // Angles: $00=0, $80=PI,$100=2*PI // Sine/Cosine: signed fixed [-$7f,$7f] .align $40 -COS: -{ - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) // Positions to rotate xs: .byte -$46, -$46, -$46, 0, 0, $46, $46, $46 diff --git a/src/test/ref/examples/rotate/rotate.cfg b/src/test/ref/examples/rotate/rotate.cfg index e42a53de7..b426c47b5 100644 --- a/src/test/ref/examples/rotate/rotate.cfg +++ b/src/test/ref/examples/rotate/rotate.cfg @@ -25,198 +25,276 @@ main::@return: scope:[main] from main::@1 anim: scope:[anim] from main::@1 [9] phi() to:anim::@1 -anim::@1: scope:[anim] from anim anim::@7 - [10] (byte) anim::angle#6 ← phi( anim/(byte) 0 anim::@7/(byte) anim::angle#1 ) +anim::@1: scope:[anim] from anim anim::@15 + [10] (byte) anim::angle#9 ← phi( anim/(byte) 0 anim::@15/(byte) anim::angle#1 ) to:anim::@2 anim::@2: scope:[anim] from anim::@1 anim::@2 [11] if(*((const byte*) RASTER#0)!=(byte) $ff) goto anim::@2 to:anim::@3 anim::@3: scope:[anim] from anim::@2 [12] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) + [13] call clock_start to:anim::@4 anim::@4: scope:[anim] from anim::@3 anim::@5 - [13] (byte) anim::sprite_msb#10 ← phi( anim::@5/(byte) anim::sprite_msb#5 anim::@3/(byte) 0 ) - [13] (byte) anim::i#10 ← phi( anim::@5/(byte) anim::i#1 anim::@3/(byte) 0 ) - [14] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) - [15] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) + [14] (byte) anim::sprite_msb#10 ← phi( anim::@5/(byte) anim::sprite_msb#5 anim::@3/(byte) 0 ) + [14] (byte) anim::i#10 ← phi( anim::@5/(byte) anim::i#1 anim::@3/(byte) 0 ) + [15] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) + [16] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) to:anim::mulf8s_prepare1 anim::mulf8s_prepare1: scope:[anim] from anim::@4 - [16] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte[$140]) COS#0 + (byte) anim::angle#6) - [17] call mulf8u_prepare + [17] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) + [18] call mulf8u_prepare to:anim::@8 anim::@8: scope:[anim] from anim::mulf8s_prepare1 - [18] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 - [19] call mulf8s_prepared + [19] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 + [20] call mulf8s_prepared to:anim::@10 anim::@10: scope:[anim] from anim::@8 - [20] (signed word~) anim::$4 ← (signed word)(word) mulf8s_prepared::m#4 - [21] (signed word) anim::xr#0 ← (signed word~) anim::$4 << (byte) 1 - [22] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 - [23] call mulf8s_prepared + [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 + [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 + [23] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 + [24] call mulf8s_prepared to:anim::@11 anim::@11: scope:[anim] from anim::@10 - [24] (signed word~) anim::$6 ← (signed word)(word) mulf8s_prepared::m#4 - [25] (signed word) anim::yr#0 ← (signed word~) anim::$6 << (byte) 1 + [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 + [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 to:anim::mulf8s_prepare2 anim::mulf8s_prepare2: scope:[anim] from anim::@11 - [26] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte*) SIN#0 + (byte) anim::angle#6) - [27] call mulf8u_prepare + [27] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) + [28] call mulf8u_prepare to:anim::@9 anim::@9: scope:[anim] from anim::mulf8s_prepare2 - [28] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 - [29] call mulf8s_prepared + [29] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 + [30] call mulf8s_prepared to:anim::@12 anim::@12: scope:[anim] from anim::@9 - [30] (signed word~) anim::$9 ← (signed word)(word) mulf8s_prepared::m#4 - [31] (signed word~) anim::$10 ← (signed word~) anim::$9 << (byte) 1 - [32] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$10 - [33] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 - [34] call mulf8s_prepared + [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 + [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 + [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 + [34] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 + [35] call mulf8s_prepared to:anim::@13 anim::@13: scope:[anim] from anim::@12 - [35] (signed word~) anim::$11 ← (signed word)(word) mulf8s_prepared::m#4 - [36] (signed word~) anim::$12 ← (signed word~) anim::$11 << (byte) 1 - [37] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$12 - [38] (byte~) anim::$15 ← > (signed word) anim::xr#1 - [39] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$15 + (signed byte) $18+(signed word) $95 - [40] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 - [41] (byte~) anim::$18 ← > (signed word) anim::xpos#0 - [42] if((byte~) anim::$18==(byte) 0) goto anim::@5 + [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 + [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 + [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 + [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 + [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 + [41] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 + [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 + [43] if((byte~) anim::$19==(byte) 0) goto anim::@5 to:anim::@6 anim::@6: scope:[anim] from anim::@13 - [43] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 + [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 to:anim::@5 anim::@5: scope:[anim] from anim::@13 anim::@6 - [44] (byte) anim::sprite_msb#5 ← phi( anim::@6/(byte) anim::sprite_msb#2 anim::@13/(byte) anim::sprite_msb#1 ) - [45] (byte~) anim::$22 ← > (signed word) anim::yr#1 - [46] (byte) anim::ypos#0 ← (byte~) anim::$22 + (byte) $59+(byte) $33 - [47] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 - [48] (byte~) anim::$25 ← < (signed word) anim::xpos#0 - [49] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$25 - [50] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 - [51] (byte) anim::i#1 ← ++ (byte) anim::i#10 - [52] if((byte) anim::i#1!=(byte) 8) goto anim::@4 + [45] (byte) anim::sprite_msb#5 ← phi( anim::@6/(byte) anim::sprite_msb#2 anim::@13/(byte) anim::sprite_msb#1 ) + [46] (byte~) anim::$23 ← > (signed word) anim::yr#1 + [47] (byte) anim::ypos#0 ← (byte~) anim::$23 + (byte) $59+(byte) $33 + [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 + [49] (byte~) anim::$26 ← < (signed word) anim::xpos#0 + [50] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$26 + [51] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 + [52] (byte) anim::i#1 ← ++ (byte) anim::i#10 + [53] if((byte) anim::i#1!=(byte) 8) goto anim::@4 to:anim::@7 anim::@7: scope:[anim] from anim::@5 - [53] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 - [54] (byte) anim::angle#1 ← ++ (byte) anim::angle#6 - [55] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 + [54] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 + [55] (byte) anim::angle#1 ← ++ (byte) anim::angle#9 + [56] call clock + [57] (dword) clock::return#2 ← (dword) clock::return#0 + to:anim::@14 +anim::@14: scope:[anim] from anim::@7 + [58] (dword~) anim::$28 ← (dword) clock::return#2 + [59] (dword) anim::cyclecount#0 ← (dword~) anim::$28 - (const dword) CLOCKS_PER_INIT#0 + [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 + [61] call print_dword_at + to:anim::@15 +anim::@15: scope:[anim] from anim::@14 + [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 to:anim::@1 -mulf8s_prepared: scope:[mulf8s_prepared] from anim::@10 anim::@12 anim::@8 anim::@9 - [56] (signed byte) mulf8s_prepared::b#4 ← phi( anim::@8/(signed byte) mulf8s_prepared::b#0 anim::@9/(signed byte) mulf8s_prepared::b#2 anim::@10/(signed byte) mulf8s_prepared::b#1 anim::@12/(signed byte) mulf8s_prepared::b#3 ) - [57] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 - [58] call mulf8u_prepared - [59] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 - to:mulf8s_prepared::@5 -mulf8s_prepared::@5: scope:[mulf8s_prepared] from mulf8s_prepared - [60] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 - [61] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 - to:mulf8s_prepared::@3 -mulf8s_prepared::@3: scope:[mulf8s_prepared] from mulf8s_prepared::@5 - [62] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 - [63] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 - [64] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 - to:mulf8s_prepared::@1 -mulf8s_prepared::@1: scope:[mulf8s_prepared] from mulf8s_prepared::@3 mulf8s_prepared::@5 - [65] (word) mulf8s_prepared::m#5 ← phi( mulf8s_prepared::@3/(word) mulf8s_prepared::m#1 mulf8s_prepared::@5/(word) mulf8s_prepared::m#0 ) - [66] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 - to:mulf8s_prepared::@4 -mulf8s_prepared::@4: scope:[mulf8s_prepared] from mulf8s_prepared::@1 - [67] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 - [68] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) - [69] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 - to:mulf8s_prepared::@2 -mulf8s_prepared::@2: scope:[mulf8s_prepared] from mulf8s_prepared::@1 mulf8s_prepared::@4 - [70] (word) mulf8s_prepared::m#4 ← phi( mulf8s_prepared::@1/(word) mulf8s_prepared::m#5 mulf8s_prepared::@4/(word) mulf8s_prepared::m#2 ) - to:mulf8s_prepared::@return -mulf8s_prepared::@return: scope:[mulf8s_prepared] from mulf8s_prepared::@2 - [71] return +print_dword_at: scope:[print_dword_at] from anim::@14 + [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 + [64] call print_word_at + to:print_dword_at::@1 +print_dword_at::@1: scope:[print_dword_at] from print_dword_at + [65] (word) print_word_at::w#1 ← < (dword) print_dword_at::dw#0 + [66] call print_word_at + to:print_dword_at::@return +print_dword_at::@return: scope:[print_dword_at] from print_dword_at::@1 + [67] return to:@return -mulf8u_prepared: scope:[mulf8u_prepared] from mulf8s_prepared - [72] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 - asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } - [74] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) - to:mulf8u_prepared::@return -mulf8u_prepared::@return: scope:[mulf8u_prepared] from mulf8u_prepared +print_word_at: scope:[print_word_at] from print_dword_at print_dword_at::@1 + [68] (byte*) print_word_at::at#2 ← phi( print_dword_at/(const byte*) SCREEN#0 print_dword_at::@1/(const byte*) SCREEN#0+(byte) 4 ) + [68] (word) print_word_at::w#2 ← phi( print_dword_at/(word) print_word_at::w#0 print_dword_at::@1/(word) print_word_at::w#1 ) + [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 + [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 + [71] call print_byte_at + to:print_word_at::@1 +print_word_at::@1: scope:[print_word_at] from print_word_at + [72] (byte) print_byte_at::b#1 ← < (word) print_word_at::w#2 + [73] (byte*) print_byte_at::at#1 ← (byte*) print_word_at::at#2 + (byte) 2 + [74] call print_byte_at + to:print_word_at::@return +print_word_at::@return: scope:[print_word_at] from print_word_at::@1 [75] return to:@return +print_byte_at: scope:[print_byte_at] from print_word_at print_word_at::@1 + [76] (byte*) print_byte_at::at#2 ← phi( print_word_at/(byte*) print_byte_at::at#0 print_word_at::@1/(byte*) print_byte_at::at#1 ) + [76] (byte) print_byte_at::b#2 ← phi( print_word_at/(byte) print_byte_at::b#0 print_word_at::@1/(byte) print_byte_at::b#1 ) + [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 + [78] (byte) print_char_at::ch#0 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$0) + [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 + [80] call print_char_at + to:print_byte_at::@1 +print_byte_at::@1: scope:[print_byte_at] from print_byte_at + [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f + [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 + [83] (byte) print_char_at::ch#1 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$2) + [84] call print_char_at + to:print_byte_at::@return +print_byte_at::@return: scope:[print_byte_at] from print_byte_at::@1 + [85] return + to:@return +print_char_at: scope:[print_char_at] from print_byte_at print_byte_at::@1 + [86] (byte*) print_char_at::at#2 ← phi( print_byte_at/(byte*) print_char_at::at#0 print_byte_at::@1/(byte*) print_char_at::at#1 ) + [86] (byte) print_char_at::ch#2 ← phi( print_byte_at/(byte) print_char_at::ch#0 print_byte_at::@1/(byte) print_char_at::ch#1 ) + [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 + to:print_char_at::@return +print_char_at::@return: scope:[print_char_at] from print_char_at + [88] return + to:@return +clock: scope:[clock] from anim::@7 + [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) + to:clock::@return +clock::@return: scope:[clock] from clock + [90] return + to:@return +mulf8s_prepared: scope:[mulf8s_prepared] from anim::@10 anim::@12 anim::@8 anim::@9 + [91] (signed byte) mulf8s_prepared::b#4 ← phi( anim::@8/(signed byte) mulf8s_prepared::b#0 anim::@9/(signed byte) mulf8s_prepared::b#2 anim::@10/(signed byte) mulf8s_prepared::b#1 anim::@12/(signed byte) mulf8s_prepared::b#3 ) + [92] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 + [93] call mulf8u_prepared + [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 + to:mulf8s_prepared::@5 +mulf8s_prepared::@5: scope:[mulf8s_prepared] from mulf8s_prepared + [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 + [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 + to:mulf8s_prepared::@3 +mulf8s_prepared::@3: scope:[mulf8s_prepared] from mulf8s_prepared::@5 + [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 + [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 + [99] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 + to:mulf8s_prepared::@1 +mulf8s_prepared::@1: scope:[mulf8s_prepared] from mulf8s_prepared::@3 mulf8s_prepared::@5 + [100] (word) mulf8s_prepared::m#5 ← phi( mulf8s_prepared::@3/(word) mulf8s_prepared::m#1 mulf8s_prepared::@5/(word) mulf8s_prepared::m#0 ) + [101] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 + to:mulf8s_prepared::@4 +mulf8s_prepared::@4: scope:[mulf8s_prepared] from mulf8s_prepared::@1 + [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 + [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) + [104] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 + to:mulf8s_prepared::@2 +mulf8s_prepared::@2: scope:[mulf8s_prepared] from mulf8s_prepared::@1 mulf8s_prepared::@4 + [105] (word) mulf8s_prepared::m#4 ← phi( mulf8s_prepared::@1/(word) mulf8s_prepared::m#5 mulf8s_prepared::@4/(word) mulf8s_prepared::m#2 ) + to:mulf8s_prepared::@return +mulf8s_prepared::@return: scope:[mulf8s_prepared] from mulf8s_prepared::@2 + [106] return + to:@return +mulf8u_prepared: scope:[mulf8u_prepared] from mulf8s_prepared + [107] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 + asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } + [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) + to:mulf8u_prepared::@return +mulf8u_prepared::@return: scope:[mulf8u_prepared] from mulf8u_prepared + [110] return + to:@return mulf8u_prepare: scope:[mulf8u_prepare] from anim::mulf8s_prepare1 anim::mulf8s_prepare2 - [76] (byte) mulf8u_prepare::a#2 ← phi( anim::mulf8s_prepare1/(byte~) mulf8u_prepare::a#3 anim::mulf8s_prepare2/(byte~) mulf8u_prepare::a#4 ) - [77] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 + [111] (byte) mulf8u_prepare::a#2 ← phi( anim::mulf8s_prepare1/(byte~) mulf8u_prepare::a#3 anim::mulf8s_prepare2/(byte~) mulf8u_prepare::a#4 ) + [112] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } to:mulf8u_prepare::@return mulf8u_prepare::@return: scope:[mulf8u_prepare] from mulf8u_prepare - [79] return + [114] return + to:@return +clock_start: scope:[clock_start] from anim::@3 + [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 + [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 + [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff + [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 + [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 + to:clock_start::@return +clock_start::@return: scope:[clock_start] from clock_start + [120] return to:@return init: scope:[init] from main - [80] phi() - [81] call mulf_init + [121] phi() + [122] call mulf_init to:init::@2 init::@2: scope:[init] from init - [82] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff + [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff to:init::@1 init::@1: scope:[init] from init::@1 init::@2 - [83] (byte) init::i#2 ← phi( init::@1/(byte) init::i#1 init::@2/(byte) 0 ) - [84] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 - [85] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 - [86] (byte) init::i#1 ← ++ (byte) init::i#2 - [87] if((byte) init::i#1!=(byte) 8) goto init::@1 + [124] (byte) init::i#2 ← phi( init::@1/(byte) init::i#1 init::@2/(byte) 0 ) + [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 + [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 + [127] (byte) init::i#1 ← ++ (byte) init::i#2 + [128] if((byte) init::i#1!=(byte) 8) goto init::@1 to:init::@return init::@return: scope:[init] from init::@1 - [88] return + [129] return to:@return mulf_init: scope:[mulf_init] from init - [89] phi() + [130] phi() to:mulf_init::@1 mulf_init::@1: scope:[mulf_init] from mulf_init mulf_init::@2 - [90] (byte) mulf_init::x_2#3 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::x_2#2 ) - [90] (byte*) mulf_init::sqr1_hi#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_hi#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_hi#1 ) - [90] (byte*) mulf_init::sqr1_lo#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_lo#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_lo#1 ) - [90] (word) mulf_init::sqr#4 ← phi( mulf_init/(byte) 0 mulf_init::@2/(word) mulf_init::sqr#1 ) - [90] (byte) mulf_init::c#2 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::c#1 ) - [91] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 - [92] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 - [93] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 + [131] (byte) mulf_init::x_2#3 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::x_2#2 ) + [131] (byte*) mulf_init::sqr1_hi#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_hi#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_hi#1 ) + [131] (byte*) mulf_init::sqr1_lo#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_lo#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_lo#1 ) + [131] (word) mulf_init::sqr#4 ← phi( mulf_init/(byte) 0 mulf_init::@2/(word) mulf_init::sqr#1 ) + [131] (byte) mulf_init::c#2 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::c#1 ) + [132] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 + [133] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 + [134] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 to:mulf_init::@3 mulf_init::@3: scope:[mulf_init] from mulf_init::@1 - [94] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 - [95] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 + [135] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 + [136] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 to:mulf_init::@2 mulf_init::@2: scope:[mulf_init] from mulf_init::@1 mulf_init::@3 - [96] (byte) mulf_init::x_2#2 ← phi( mulf_init::@1/(byte) mulf_init::x_2#3 mulf_init::@3/(byte) mulf_init::x_2#1 ) - [96] (word) mulf_init::sqr#3 ← phi( mulf_init::@1/(word) mulf_init::sqr#4 mulf_init::@3/(word) mulf_init::sqr#2 ) - [97] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 - [98] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 - [99] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 - [100] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 - [101] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 - [102] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 - [103] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 - [104] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 + [137] (byte) mulf_init::x_2#2 ← phi( mulf_init::@1/(byte) mulf_init::x_2#3 mulf_init::@3/(byte) mulf_init::x_2#1 ) + [137] (word) mulf_init::sqr#3 ← phi( mulf_init::@1/(word) mulf_init::sqr#4 mulf_init::@3/(word) mulf_init::sqr#2 ) + [138] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 + [139] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 + [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 + [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 + [142] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 + [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 + [144] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 + [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 to:mulf_init::@4 mulf_init::@4: scope:[mulf_init] from mulf_init::@2 mulf_init::@5 - [105] (byte) mulf_init::dir#2 ← phi( mulf_init::@2/(byte) $ff mulf_init::@5/(byte) mulf_init::dir#3 ) - [105] (byte*) mulf_init::sqr2_hi#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_hi#0 mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 ) - [105] (byte*) mulf_init::sqr2_lo#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_lo#0 mulf_init::@5/(byte*) mulf_init::sqr2_lo#1 ) - [105] (byte) mulf_init::x_255#2 ← phi( mulf_init::@2/(byte) -1 mulf_init::@5/(byte) mulf_init::x_255#1 ) - [106] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) - [107] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) - [108] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 - [109] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 - [110] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 + [146] (byte) mulf_init::dir#2 ← phi( mulf_init::@2/(byte) $ff mulf_init::@5/(byte) mulf_init::dir#3 ) + [146] (byte*) mulf_init::sqr2_hi#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_hi#0 mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 ) + [146] (byte*) mulf_init::sqr2_lo#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_lo#0 mulf_init::@5/(byte*) mulf_init::sqr2_lo#1 ) + [146] (byte) mulf_init::x_255#2 ← phi( mulf_init::@2/(byte) -1 mulf_init::@5/(byte) mulf_init::x_255#1 ) + [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) + [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) + [149] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 + [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 + [151] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 to:mulf_init::@5 mulf_init::@7: scope:[mulf_init] from mulf_init::@4 - [111] phi() + [152] phi() to:mulf_init::@5 mulf_init::@5: scope:[mulf_init] from mulf_init::@4 mulf_init::@7 - [112] (byte) mulf_init::dir#3 ← phi( mulf_init::@7/(byte) mulf_init::dir#2 mulf_init::@4/(byte) 1 ) - [113] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 - [114] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 + [153] (byte) mulf_init::dir#3 ← phi( mulf_init::@7/(byte) mulf_init::dir#2 mulf_init::@4/(byte) 1 ) + [154] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 + [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 to:mulf_init::@6 mulf_init::@6: scope:[mulf_init] from mulf_init::@5 - [115] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) - [116] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) + [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) + [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) to:mulf_init::@return mulf_init::@return: scope:[mulf_init] from mulf_init::@6 - [117] return + [158] return to:@return diff --git a/src/test/ref/examples/rotate/rotate.log b/src/test/ref/examples/rotate/rotate.log index f9a3d13f4..4fe5403fa 100644 --- a/src/test/ref/examples/rotate/rotate.log +++ b/src/test/ref/examples/rotate/rotate.log @@ -1,4 +1,11 @@ Resolved forward reference SPRITE to (byte*) SPRITE +Fixing pointer addition (word*~) bsearch16u::$7 ← (word*) bsearch16u::items + (byte~) bsearch16u::$6 +Fixing pointer addition (word*~) bsearch16u::$15 ← (word*) bsearch16u::pivot + (number) 1 +Fixing pointer addition (word*~) bsearch16u::$1 ← (word*) bsearch16u::items - (number) 1 +Fixing pointer array-indexing *((word*) utoa::digit_values + (byte) utoa::digit) +Fixing pointer array-indexing *((dword*) ultoa::digit_values + (byte) ultoa::digit) +Warning! Adding boolean cast to non-boolean condition *((byte*) strcpy::src) +Identified constant variable (byte*) HEAP_TOP Identified constant variable (byte*) SCREEN Identified constant variable (byte*) SPRITE Inlined call (byte~) vicSelectGfxBank::$0 ← call toDd00 (byte*) vicSelectGfxBank::gfx @@ -18,7 +25,43 @@ Culled Empty Block (label) mulf8s_prepared::@5 Culled Empty Block (label) @10 Culled Empty Block (label) @11 Culled Empty Block (label) @12 +Culled Empty Block (label) clock::@1 Culled Empty Block (label) @14 +Culled Empty Block (label) @15 +Culled Empty Block (label) @16 +Culled Empty Block (label) @17 +Culled Empty Block (label) @18 +Culled Empty Block (label) @19 +Culled Empty Block (label) @20 +Culled Empty Block (label) @21 +Culled Empty Block (label) @22 +Culled Empty Block (label) @23 +Culled Empty Block (label) @24 +Culled Empty Block (label) @25 +Culled Empty Block (label) @26 +Culled Empty Block (label) @27 +Culled Empty Block (label) @28 +Culled Empty Block (label) @29 +Culled Empty Block (label) @30 +Culled Empty Block (label) @31 +Culled Empty Block (label) @32 +Culled Empty Block (label) @33 +Culled Empty Block (label) @34 +Culled Empty Block (label) @35 +Culled Empty Block (label) @36 +Culled Empty Block (label) @37 +Culled Empty Block (label) @38 +Culled Empty Block (label) @39 +Culled Empty Block (label) @40 +Culled Empty Block (label) @41 +Culled Empty Block (label) @42 +Culled Empty Block (label) @44 +Culled Empty Block (label) @45 +Culled Empty Block (label) @46 +Culled Empty Block (label) @47 +Culled Empty Block (label) @48 +Culled Empty Block (label) @49 +Culled Empty Block (label) @51 Culled Empty Block (label) init::@2 Culled Empty Block (label) anim::@2 Culled Empty Block (label) anim::@15 @@ -41,6 +84,14 @@ CONTROL FLOW GRAPH SSA (byte*) SPRITES_ENABLE#0 ← ((byte*)) (number) $d015 (byte*) BORDERCOL#0 ← ((byte*)) (number) $d020 (byte*) SPRITES_COLS#0 ← ((byte*)) (number) $d027 + (dword*) CIA2_TIMER_AB#0 ← ((dword*)) (number) $dd04 + (byte*) CIA2_TIMER_A_CONTROL#0 ← ((byte*)) (number) $dd0e + (byte*) CIA2_TIMER_B_CONTROL#0 ← ((byte*)) (number) $dd0f + (byte) CIA_TIMER_CONTROL_STOP#0 ← (number) 0 + (byte) CIA_TIMER_CONTROL_START#0 ← (number) 1 + (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 ← (number) 0 + (byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 ← (number) 0 + (byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 ← (number) $40 (byte) GREEN#0 ← (number) 5 (byte) LIGHT_BLUE#0 ← (number) $e to:@4 @@ -168,8 +219,8 @@ mulf8u_prepared::@return: scope:[mulf8u_prepared] from mulf8u_prepared (word) mulf8u_prepared::return#1 ← (word) mulf8u_prepared::return#3 return to:@return -mulf8s_prepared: scope:[mulf8s_prepared] from anim::@17 anim::@18 anim::@20 anim::@23 - (signed byte) mulf8s_prepared::b#4 ← phi( anim::@17/(signed byte) mulf8s_prepared::b#0 anim::@18/(signed byte) mulf8s_prepared::b#2 anim::@20/(signed byte) mulf8s_prepared::b#1 anim::@23/(signed byte) mulf8s_prepared::b#3 ) +mulf8s_prepared: scope:[mulf8s_prepared] from anim::@17 anim::@18 anim::@21 anim::@24 + (signed byte) mulf8s_prepared::b#4 ← phi( anim::@17/(signed byte) mulf8s_prepared::b#0 anim::@18/(signed byte) mulf8s_prepared::b#2 anim::@21/(signed byte) mulf8s_prepared::b#1 anim::@24/(signed byte) mulf8s_prepared::b#3 ) (signed byte*) mulf8s_prepared::memA#0 ← ((signed byte*)) (number) $fd (byte~) mulf8s_prepared::$0 ← ((byte)) (signed byte) mulf8s_prepared::b#4 (byte) mulf8u_prepared::b#0 ← (byte~) mulf8s_prepared::$0 @@ -220,27 +271,127 @@ mulf8s_prepared::@return: scope:[mulf8s_prepared] from mulf8s_prepared::@2 return to:@return @13: scope:[] from @4 + (dword) CLOCKS_PER_INIT#0 ← (number) $12 + to:@43 +clock: scope:[clock] from anim::@13 + (number~) clock::$0 ← (number) $ffffffff - *((dword*) CIA2_TIMER_AB#0) + (dword) clock::return#0 ← (number~) clock::$0 + to:clock::@return +clock::@return: scope:[clock] from clock + (dword) clock::return#3 ← phi( clock/(dword) clock::return#0 ) + (dword) clock::return#1 ← (dword) clock::return#3 + return + to:@return +clock_start: scope:[clock_start] from anim::@6 + (byte~) clock_start::$0 ← (byte) CIA_TIMER_CONTROL_STOP#0 | (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 + (byte~) clock_start::$1 ← (byte~) clock_start::$0 | (byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 + *((byte*) CIA2_TIMER_A_CONTROL#0) ← (byte~) clock_start::$1 + (byte~) clock_start::$2 ← (byte) CIA_TIMER_CONTROL_STOP#0 | (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 + (byte~) clock_start::$3 ← (byte~) clock_start::$2 | (byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 + *((byte*) CIA2_TIMER_B_CONTROL#0) ← (byte~) clock_start::$3 + *((dword*) CIA2_TIMER_AB#0) ← (number) $ffffffff + (byte~) clock_start::$4 ← (byte) CIA_TIMER_CONTROL_START#0 | (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 + (byte~) clock_start::$5 ← (byte~) clock_start::$4 | (byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 + *((byte*) CIA2_TIMER_B_CONTROL#0) ← (byte~) clock_start::$5 + (byte~) clock_start::$6 ← (byte) CIA_TIMER_CONTROL_START#0 | (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 + (byte~) clock_start::$7 ← (byte~) clock_start::$6 | (byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 + *((byte*) CIA2_TIMER_A_CONTROL#0) ← (byte~) clock_start::$7 + to:clock_start::@return +clock_start::@return: scope:[clock_start] from clock_start + return + to:@return +print_word_at: scope:[print_word_at] from print_dword_at print_dword_at::@1 + (byte*) print_word_at::at#2 ← phi( print_dword_at/(byte*) print_word_at::at#0 print_dword_at::@1/(byte*) print_word_at::at#1 ) + (word) print_word_at::w#2 ← phi( print_dword_at/(word) print_word_at::w#0 print_dword_at::@1/(word) print_word_at::w#1 ) + (byte~) print_word_at::$0 ← > (word) print_word_at::w#2 + (byte) print_byte_at::b#0 ← (byte~) print_word_at::$0 + (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 + call print_byte_at + to:print_word_at::@1 +print_word_at::@1: scope:[print_word_at] from print_word_at + (byte*) print_word_at::at#3 ← phi( print_word_at/(byte*) print_word_at::at#2 ) + (word) print_word_at::w#3 ← phi( print_word_at/(word) print_word_at::w#2 ) + (byte~) print_word_at::$2 ← < (word) print_word_at::w#3 + (byte*~) print_word_at::$3 ← (byte*) print_word_at::at#3 + (number) 2 + (byte) print_byte_at::b#1 ← (byte~) print_word_at::$2 + (byte*) print_byte_at::at#1 ← (byte*~) print_word_at::$3 + call print_byte_at + to:print_word_at::@2 +print_word_at::@2: scope:[print_word_at] from print_word_at::@1 + to:print_word_at::@return +print_word_at::@return: scope:[print_word_at] from print_word_at::@2 + return + to:@return +print_dword_at: scope:[print_dword_at] from anim::@26 + (byte*) print_dword_at::at#1 ← phi( anim::@26/(byte*) print_dword_at::at#0 ) + (dword) print_dword_at::dw#1 ← phi( anim::@26/(dword) print_dword_at::dw#0 ) + (word~) print_dword_at::$0 ← > (dword) print_dword_at::dw#1 + (word) print_word_at::w#0 ← (word~) print_dword_at::$0 + (byte*) print_word_at::at#0 ← (byte*) print_dword_at::at#1 + call print_word_at + to:print_dword_at::@1 +print_dword_at::@1: scope:[print_dword_at] from print_dword_at + (byte*) print_dword_at::at#2 ← phi( print_dword_at/(byte*) print_dword_at::at#1 ) + (dword) print_dword_at::dw#2 ← phi( print_dword_at/(dword) print_dword_at::dw#1 ) + (word~) print_dword_at::$2 ← < (dword) print_dword_at::dw#2 + (byte*~) print_dword_at::$3 ← (byte*) print_dword_at::at#2 + (number) 4 + (word) print_word_at::w#1 ← (word~) print_dword_at::$2 + (byte*) print_word_at::at#1 ← (byte*~) print_dword_at::$3 + call print_word_at + to:print_dword_at::@2 +print_dword_at::@2: scope:[print_dword_at] from print_dword_at::@1 + to:print_dword_at::@return +print_dword_at::@return: scope:[print_dword_at] from print_dword_at::@2 + return + to:@return +@43: scope:[] from @13 + (byte[]) print_hextab#0 ← (const string) $2 + to:@50 +print_byte_at: scope:[print_byte_at] from print_word_at print_word_at::@1 + (byte*) print_byte_at::at#2 ← phi( print_word_at/(byte*) print_byte_at::at#0 print_word_at::@1/(byte*) print_byte_at::at#1 ) + (byte) print_byte_at::b#2 ← phi( print_word_at/(byte) print_byte_at::b#0 print_word_at::@1/(byte) print_byte_at::b#1 ) + (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (number) 4 + (byte) print_char_at::ch#0 ← *((byte[]) print_hextab#0 + (byte~) print_byte_at::$0) + (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 + call print_char_at + to:print_byte_at::@1 +print_byte_at::@1: scope:[print_byte_at] from print_byte_at + (byte*) print_byte_at::at#3 ← phi( print_byte_at/(byte*) print_byte_at::at#2 ) + (byte) print_byte_at::b#3 ← phi( print_byte_at/(byte) print_byte_at::b#2 ) + (number~) print_byte_at::$2 ← (byte) print_byte_at::b#3 & (number) $f + (byte*~) print_byte_at::$3 ← (byte*) print_byte_at::at#3 + (number) 1 + (byte) print_char_at::ch#1 ← *((byte[]) print_hextab#0 + (number~) print_byte_at::$2) + (byte*) print_char_at::at#1 ← (byte*~) print_byte_at::$3 + call print_char_at + to:print_byte_at::@2 +print_byte_at::@2: scope:[print_byte_at] from print_byte_at::@1 + to:print_byte_at::@return +print_byte_at::@return: scope:[print_byte_at] from print_byte_at::@2 + return + to:@return +print_char_at: scope:[print_char_at] from print_byte_at print_byte_at::@1 + (byte*) print_char_at::at#2 ← phi( print_byte_at/(byte*) print_char_at::at#0 print_byte_at::@1/(byte*) print_char_at::at#1 ) + (byte) print_char_at::ch#2 ← phi( print_byte_at/(byte) print_char_at::ch#0 print_byte_at::@1/(byte) print_char_at::ch#1 ) + *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 + to:print_char_at::@return +print_char_at::@return: scope:[print_char_at] from print_char_at + return + to:@return +@50: scope:[] from @43 (byte*) SCREEN#0 ← ((byte*)) (number) $400 - (byte[$140]) COS#0 ← kickasm {{ { - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } + (byte[$140]) SIN#0 ← kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) }} - (byte*~) $0 ← (byte[$140]) COS#0 + (number) $40 - (byte*) SIN#0 ← (byte*~) $0 - to:@15 -main: scope:[main] from @16 - (byte*) SIN#8 ← phi( @16/(byte*) SIN#11 ) + (byte*~) $1 ← (byte[$140]) SIN#0 + (number) $40 + (byte*) COS#0 ← (byte*~) $1 + to:@52 +main: scope:[main] from @53 + (byte*) COS#9 ← phi( @53/(byte*) COS#11 ) asm { sei } call init to:main::@1 main::@1: scope:[main] from main - (byte*) SIN#6 ← phi( main/(byte*) SIN#8 ) + (byte*) COS#7 ← phi( main/(byte*) COS#9 ) call anim to:main::@2 main::@2: scope:[main] from main::@1 @@ -271,51 +422,56 @@ init::@1: scope:[init] from init::@1 init::@3 init::@return: scope:[init] from init::@1 return to:@return -@15: scope:[] from @13 - (byte*) SIN#14 ← phi( @13/(byte*) SIN#0 ) +@52: scope:[] from @50 + (byte*) COS#15 ← phi( @50/(byte*) COS#0 ) (signed byte[8]) xs#0 ← { (number) -$46, (number) -$46, (number) -$46, (number) 0, (number) 0, (number) $46, (number) $46, (number) $46 } (signed byte[8]) ys#0 ← { (number) -$46, (number) 0, (number) $46, (number) -$46, (number) $46, (number) -$46, (number) 0, (number) $46 } - to:@16 + to:@53 anim: scope:[anim] from main::@1 - (byte*) SIN#4 ← phi( main::@1/(byte*) SIN#6 ) + (byte*) COS#5 ← phi( main::@1/(byte*) COS#7 ) (byte) anim::angle#0 ← (number) 0 to:anim::@1 -anim::@1: scope:[anim] from anim anim::@13 - (byte*) SIN#3 ← phi( anim/(byte*) SIN#4 anim::@13/(byte*) SIN#5 ) - (byte) anim::angle#6 ← phi( anim/(byte) anim::angle#0 anim::@13/(byte) anim::angle#1 ) +anim::@1: scope:[anim] from anim anim::@27 + (byte) anim::angle#9 ← phi( anim/(byte) anim::angle#0 anim::@27/(byte) anim::angle#11 ) + (byte*) COS#4 ← phi( anim/(byte*) COS#5 anim::@27/(byte*) COS#6 ) if(true) goto anim::@4 to:anim::@return anim::@4: scope:[anim] from anim::@1 anim::@4 - (byte*) SIN#2 ← phi( anim::@1/(byte*) SIN#3 anim::@4/(byte*) SIN#2 ) - (byte) anim::angle#4 ← phi( anim::@1/(byte) anim::angle#6 anim::@4/(byte) anim::angle#4 ) + (byte) anim::angle#6 ← phi( anim::@1/(byte) anim::angle#9 anim::@4/(byte) anim::angle#6 ) + (byte*) COS#3 ← phi( anim::@1/(byte*) COS#4 anim::@4/(byte*) COS#3 ) (bool~) anim::$0 ← *((byte*) RASTER#0) != (number) $ff if((bool~) anim::$0) goto anim::@4 to:anim::@6 anim::@6: scope:[anim] from anim::@4 - (byte*) SIN#1 ← phi( anim::@4/(byte*) SIN#2 ) - (byte) anim::angle#2 ← phi( anim::@4/(byte) anim::angle#4 ) + (byte) anim::angle#4 ← phi( anim::@4/(byte) anim::angle#6 ) + (byte*) COS#2 ← phi( anim::@4/(byte*) COS#3 ) *((byte*) BORDERCOL#0) ← ++ *((byte*) BORDERCOL#0) - (signed byte~) anim::$1 ← ((signed byte)) *((byte[$140]) COS#0 + (byte) anim::angle#2) - (signed byte) anim::cos_a#0 ← (signed byte~) anim::$1 - (signed byte~) anim::$2 ← ((signed byte)) *((byte*) SIN#1 + (byte) anim::angle#2) - (signed byte) anim::sin_a#0 ← (signed byte~) anim::$2 + call clock_start + to:anim::@19 +anim::@19: scope:[anim] from anim::@6 + (byte) anim::angle#2 ← phi( anim::@6/(byte) anim::angle#4 ) + (byte*) COS#1 ← phi( anim::@6/(byte*) COS#2 ) + (signed byte~) anim::$2 ← ((signed byte)) *((byte*) COS#1 + (byte) anim::angle#2) + (signed byte) anim::cos_a#0 ← (signed byte~) anim::$2 + (signed byte~) anim::$3 ← ((signed byte)) *((byte[$140]) SIN#0 + (byte) anim::angle#2) + (signed byte) anim::sin_a#0 ← (signed byte~) anim::$3 (byte) anim::sprite_msb#0 ← (number) 0 (byte) anim::i#0 ← (byte) 0 to:anim::@10 -anim::@10: scope:[anim] from anim::@11 anim::@6 - (byte*) SIN#22 ← phi( anim::@11/(byte*) SIN#7 anim::@6/(byte*) SIN#1 ) - (byte) anim::angle#18 ← phi( anim::@11/(byte) anim::angle#5 anim::@6/(byte) anim::angle#2 ) - (byte) anim::sprite_msb#16 ← phi( anim::@11/(byte) anim::sprite_msb#7 anim::@6/(byte) anim::sprite_msb#0 ) - (signed byte) anim::sin_a#6 ← phi( anim::@11/(signed byte) anim::sin_a#7 anim::@6/(signed byte) anim::sin_a#0 ) - (signed byte) anim::cos_a#1 ← phi( anim::@11/(signed byte) anim::cos_a#2 anim::@6/(signed byte) anim::cos_a#0 ) - (byte) anim::i#2 ← phi( anim::@11/(byte) anim::i#1 anim::@6/(byte) anim::i#0 ) +anim::@10: scope:[anim] from anim::@11 anim::@19 + (byte*) COS#25 ← phi( anim::@11/(byte*) COS#12 anim::@19/(byte*) COS#1 ) + (byte) anim::angle#21 ← phi( anim::@11/(byte) anim::angle#5 anim::@19/(byte) anim::angle#2 ) + (byte) anim::sprite_msb#16 ← phi( anim::@11/(byte) anim::sprite_msb#7 anim::@19/(byte) anim::sprite_msb#0 ) + (signed byte) anim::sin_a#6 ← phi( anim::@11/(signed byte) anim::sin_a#7 anim::@19/(signed byte) anim::sin_a#0 ) + (signed byte) anim::cos_a#1 ← phi( anim::@11/(signed byte) anim::cos_a#2 anim::@19/(signed byte) anim::cos_a#0 ) + (byte) anim::i#2 ← phi( anim::@11/(byte) anim::i#1 anim::@19/(byte) anim::i#0 ) (signed byte) anim::x#0 ← *((signed byte[8]) xs#0 + (byte) anim::i#2) (signed byte) anim::y#0 ← *((signed byte[8]) ys#0 + (byte) anim::i#2) (signed byte) anim::mulf8s_prepare1_a#0 ← (signed byte) anim::cos_a#1 to:anim::mulf8s_prepare1 anim::mulf8s_prepare1: scope:[anim] from anim::@10 - (byte*) SIN#21 ← phi( anim::@10/(byte*) SIN#22 ) - (byte) anim::angle#17 ← phi( anim::@10/(byte) anim::angle#18 ) + (byte*) COS#24 ← phi( anim::@10/(byte*) COS#25 ) + (byte) anim::angle#20 ← phi( anim::@10/(byte) anim::angle#21 ) (signed byte) anim::cos_a#13 ← phi( anim::@10/(signed byte) anim::cos_a#1 ) (byte) anim::i#14 ← phi( anim::@10/(byte) anim::i#2 ) (byte) anim::sprite_msb#15 ← phi( anim::@10/(byte) anim::sprite_msb#16 ) @@ -326,10 +482,10 @@ anim::mulf8s_prepare1: scope:[anim] from anim::@10 (byte~) anim::mulf8s_prepare1_$0#0 ← ((byte)) (signed byte) anim::mulf8s_prepare1_a#1 (byte) mulf8u_prepare::a#0 ← (byte~) anim::mulf8s_prepare1_$0#0 call mulf8u_prepare - to:anim::@19 -anim::@19: scope:[anim] from anim::mulf8s_prepare1 - (byte*) SIN#20 ← phi( anim::mulf8s_prepare1/(byte*) SIN#21 ) - (byte) anim::angle#16 ← phi( anim::mulf8s_prepare1/(byte) anim::angle#17 ) + to:anim::@20 +anim::@20: scope:[anim] from anim::mulf8s_prepare1 + (byte*) COS#23 ← phi( anim::mulf8s_prepare1/(byte*) COS#24 ) + (byte) anim::angle#19 ← phi( anim::mulf8s_prepare1/(byte) anim::angle#20 ) (signed byte) anim::cos_a#12 ← phi( anim::mulf8s_prepare1/(signed byte) anim::cos_a#13 ) (byte) anim::i#13 ← phi( anim::mulf8s_prepare1/(byte) anim::i#14 ) (byte) anim::sprite_msb#14 ← phi( anim::mulf8s_prepare1/(byte) anim::sprite_msb#15 ) @@ -337,22 +493,22 @@ anim::@19: scope:[anim] from anim::mulf8s_prepare1 (signed byte) anim::y#5 ← phi( anim::mulf8s_prepare1/(signed byte) anim::y#7 ) (signed byte) anim::x#3 ← phi( anim::mulf8s_prepare1/(signed byte) anim::x#5 ) to:anim::@17 -anim::@17: scope:[anim] from anim::@19 - (byte*) SIN#19 ← phi( anim::@19/(byte*) SIN#20 ) - (byte) anim::angle#15 ← phi( anim::@19/(byte) anim::angle#16 ) - (signed byte) anim::cos_a#11 ← phi( anim::@19/(signed byte) anim::cos_a#12 ) - (byte) anim::i#12 ← phi( anim::@19/(byte) anim::i#13 ) - (byte) anim::sprite_msb#13 ← phi( anim::@19/(byte) anim::sprite_msb#14 ) - (signed byte) anim::sin_a#3 ← phi( anim::@19/(signed byte) anim::sin_a#4 ) - (signed byte) anim::y#3 ← phi( anim::@19/(signed byte) anim::y#5 ) - (signed byte) anim::x#1 ← phi( anim::@19/(signed byte) anim::x#3 ) +anim::@17: scope:[anim] from anim::@20 + (byte*) COS#22 ← phi( anim::@20/(byte*) COS#23 ) + (byte) anim::angle#18 ← phi( anim::@20/(byte) anim::angle#19 ) + (signed byte) anim::cos_a#11 ← phi( anim::@20/(signed byte) anim::cos_a#12 ) + (byte) anim::i#12 ← phi( anim::@20/(byte) anim::i#13 ) + (byte) anim::sprite_msb#13 ← phi( anim::@20/(byte) anim::sprite_msb#14 ) + (signed byte) anim::sin_a#3 ← phi( anim::@20/(signed byte) anim::sin_a#4 ) + (signed byte) anim::y#3 ← phi( anim::@20/(signed byte) anim::y#5 ) + (signed byte) anim::x#1 ← phi( anim::@20/(signed byte) anim::x#3 ) (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#1 call mulf8s_prepared (signed word) mulf8s_prepared::return#2 ← (signed word) mulf8s_prepared::return#1 - to:anim::@20 -anim::@20: scope:[anim] from anim::@17 - (byte*) SIN#18 ← phi( anim::@17/(byte*) SIN#19 ) - (byte) anim::angle#14 ← phi( anim::@17/(byte) anim::angle#15 ) + to:anim::@21 +anim::@21: scope:[anim] from anim::@17 + (byte*) COS#21 ← phi( anim::@17/(byte*) COS#22 ) + (byte) anim::angle#17 ← phi( anim::@17/(byte) anim::angle#18 ) (signed byte) anim::cos_a#10 ← phi( anim::@17/(signed byte) anim::cos_a#11 ) (byte) anim::i#11 ← phi( anim::@17/(byte) anim::i#12 ) (byte) anim::sprite_msb#12 ← phi( anim::@17/(byte) anim::sprite_msb#13 ) @@ -360,49 +516,49 @@ anim::@20: scope:[anim] from anim::@17 (signed byte) anim::sin_a#2 ← phi( anim::@17/(signed byte) anim::sin_a#3 ) (signed byte) anim::y#1 ← phi( anim::@17/(signed byte) anim::y#3 ) (signed word) mulf8s_prepared::return#7 ← phi( anim::@17/(signed word) mulf8s_prepared::return#2 ) - (signed word~) anim::$4 ← (signed word) mulf8s_prepared::return#7 - (number~) anim::$5 ← (signed word~) anim::$4 * (number) 2 - (signed word) anim::xr#0 ← (number~) anim::$5 + (signed word~) anim::$5 ← (signed word) mulf8s_prepared::return#7 + (number~) anim::$6 ← (signed word~) anim::$5 * (number) 2 + (signed word) anim::xr#0 ← (number~) anim::$6 (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#1 call mulf8s_prepared (signed word) mulf8s_prepared::return#3 ← (signed word) mulf8s_prepared::return#1 - to:anim::@21 -anim::@21: scope:[anim] from anim::@20 - (byte*) SIN#17 ← phi( anim::@20/(byte*) SIN#18 ) - (byte) anim::angle#13 ← phi( anim::@20/(byte) anim::angle#14 ) - (signed byte) anim::cos_a#9 ← phi( anim::@20/(signed byte) anim::cos_a#10 ) - (byte) anim::i#10 ← phi( anim::@20/(byte) anim::i#11 ) - (byte) anim::sprite_msb#11 ← phi( anim::@20/(byte) anim::sprite_msb#12 ) - (signed byte) anim::x#8 ← phi( anim::@20/(signed byte) anim::x#9 ) - (signed word) anim::xr#7 ← phi( anim::@20/(signed word) anim::xr#0 ) - (signed byte) anim::y#8 ← phi( anim::@20/(signed byte) anim::y#1 ) - (signed byte) anim::sin_a#1 ← phi( anim::@20/(signed byte) anim::sin_a#2 ) - (signed word) mulf8s_prepared::return#8 ← phi( anim::@20/(signed word) mulf8s_prepared::return#3 ) - (signed word~) anim::$6 ← (signed word) mulf8s_prepared::return#8 - (number~) anim::$7 ← (signed word~) anim::$6 * (number) 2 - (signed word) anim::yr#0 ← (number~) anim::$7 + to:anim::@22 +anim::@22: scope:[anim] from anim::@21 + (byte*) COS#20 ← phi( anim::@21/(byte*) COS#21 ) + (byte) anim::angle#16 ← phi( anim::@21/(byte) anim::angle#17 ) + (signed byte) anim::cos_a#9 ← phi( anim::@21/(signed byte) anim::cos_a#10 ) + (byte) anim::i#10 ← phi( anim::@21/(byte) anim::i#11 ) + (byte) anim::sprite_msb#11 ← phi( anim::@21/(byte) anim::sprite_msb#12 ) + (signed byte) anim::x#8 ← phi( anim::@21/(signed byte) anim::x#9 ) + (signed word) anim::xr#7 ← phi( anim::@21/(signed word) anim::xr#0 ) + (signed byte) anim::y#8 ← phi( anim::@21/(signed byte) anim::y#1 ) + (signed byte) anim::sin_a#1 ← phi( anim::@21/(signed byte) anim::sin_a#2 ) + (signed word) mulf8s_prepared::return#8 ← phi( anim::@21/(signed word) mulf8s_prepared::return#3 ) + (signed word~) anim::$7 ← (signed word) mulf8s_prepared::return#8 + (number~) anim::$8 ← (signed word~) anim::$7 * (number) 2 + (signed word) anim::yr#0 ← (number~) anim::$8 (signed byte) anim::mulf8s_prepare2_a#0 ← (signed byte) anim::sin_a#1 to:anim::mulf8s_prepare2 -anim::mulf8s_prepare2: scope:[anim] from anim::@21 - (signed byte) anim::sin_a#13 ← phi( anim::@21/(signed byte) anim::sin_a#1 ) - (byte*) SIN#16 ← phi( anim::@21/(byte*) SIN#17 ) - (byte) anim::angle#12 ← phi( anim::@21/(byte) anim::angle#13 ) - (signed byte) anim::cos_a#8 ← phi( anim::@21/(signed byte) anim::cos_a#9 ) - (byte) anim::i#9 ← phi( anim::@21/(byte) anim::i#10 ) - (byte) anim::sprite_msb#10 ← phi( anim::@21/(byte) anim::sprite_msb#11 ) - (signed word) anim::yr#8 ← phi( anim::@21/(signed word) anim::yr#0 ) - (signed byte) anim::x#7 ← phi( anim::@21/(signed byte) anim::x#8 ) - (signed word) anim::xr#6 ← phi( anim::@21/(signed word) anim::xr#7 ) - (signed byte) anim::y#6 ← phi( anim::@21/(signed byte) anim::y#8 ) - (signed byte) anim::mulf8s_prepare2_a#1 ← phi( anim::@21/(signed byte) anim::mulf8s_prepare2_a#0 ) +anim::mulf8s_prepare2: scope:[anim] from anim::@22 + (byte*) COS#19 ← phi( anim::@22/(byte*) COS#20 ) + (signed byte) anim::sin_a#13 ← phi( anim::@22/(signed byte) anim::sin_a#1 ) + (byte) anim::angle#15 ← phi( anim::@22/(byte) anim::angle#16 ) + (signed byte) anim::cos_a#8 ← phi( anim::@22/(signed byte) anim::cos_a#9 ) + (byte) anim::i#9 ← phi( anim::@22/(byte) anim::i#10 ) + (byte) anim::sprite_msb#10 ← phi( anim::@22/(byte) anim::sprite_msb#11 ) + (signed word) anim::yr#8 ← phi( anim::@22/(signed word) anim::yr#0 ) + (signed byte) anim::x#7 ← phi( anim::@22/(signed byte) anim::x#8 ) + (signed word) anim::xr#6 ← phi( anim::@22/(signed word) anim::xr#7 ) + (signed byte) anim::y#6 ← phi( anim::@22/(signed byte) anim::y#8 ) + (signed byte) anim::mulf8s_prepare2_a#1 ← phi( anim::@22/(signed byte) anim::mulf8s_prepare2_a#0 ) (byte~) anim::mulf8s_prepare2_$0#0 ← ((byte)) (signed byte) anim::mulf8s_prepare2_a#1 (byte) mulf8u_prepare::a#1 ← (byte~) anim::mulf8s_prepare2_$0#0 call mulf8u_prepare - to:anim::@22 -anim::@22: scope:[anim] from anim::mulf8s_prepare2 + to:anim::@23 +anim::@23: scope:[anim] from anim::mulf8s_prepare2 + (byte*) COS#18 ← phi( anim::mulf8s_prepare2/(byte*) COS#19 ) (signed byte) anim::sin_a#12 ← phi( anim::mulf8s_prepare2/(signed byte) anim::sin_a#13 ) - (byte*) SIN#15 ← phi( anim::mulf8s_prepare2/(byte*) SIN#16 ) - (byte) anim::angle#11 ← phi( anim::mulf8s_prepare2/(byte) anim::angle#12 ) + (byte) anim::angle#13 ← phi( anim::mulf8s_prepare2/(byte) anim::angle#15 ) (signed byte) anim::cos_a#7 ← phi( anim::mulf8s_prepare2/(signed byte) anim::cos_a#8 ) (byte) anim::i#8 ← phi( anim::mulf8s_prepare2/(byte) anim::i#9 ) (byte) anim::sprite_msb#9 ← phi( anim::mulf8s_prepare2/(byte) anim::sprite_msb#10 ) @@ -411,25 +567,25 @@ anim::@22: scope:[anim] from anim::mulf8s_prepare2 (signed word) anim::xr#5 ← phi( anim::mulf8s_prepare2/(signed word) anim::xr#6 ) (signed byte) anim::y#4 ← phi( anim::mulf8s_prepare2/(signed byte) anim::y#6 ) to:anim::@18 -anim::@18: scope:[anim] from anim::@22 - (signed byte) anim::sin_a#11 ← phi( anim::@22/(signed byte) anim::sin_a#12 ) - (byte*) SIN#13 ← phi( anim::@22/(byte*) SIN#15 ) - (byte) anim::angle#10 ← phi( anim::@22/(byte) anim::angle#11 ) - (signed byte) anim::cos_a#6 ← phi( anim::@22/(signed byte) anim::cos_a#7 ) - (byte) anim::i#7 ← phi( anim::@22/(byte) anim::i#8 ) - (byte) anim::sprite_msb#8 ← phi( anim::@22/(byte) anim::sprite_msb#9 ) - (signed word) anim::yr#6 ← phi( anim::@22/(signed word) anim::yr#7 ) - (signed byte) anim::x#4 ← phi( anim::@22/(signed byte) anim::x#6 ) - (signed word) anim::xr#4 ← phi( anim::@22/(signed word) anim::xr#5 ) - (signed byte) anim::y#2 ← phi( anim::@22/(signed byte) anim::y#4 ) +anim::@18: scope:[anim] from anim::@23 + (byte*) COS#17 ← phi( anim::@23/(byte*) COS#18 ) + (signed byte) anim::sin_a#11 ← phi( anim::@23/(signed byte) anim::sin_a#12 ) + (byte) anim::angle#12 ← phi( anim::@23/(byte) anim::angle#13 ) + (signed byte) anim::cos_a#6 ← phi( anim::@23/(signed byte) anim::cos_a#7 ) + (byte) anim::i#7 ← phi( anim::@23/(byte) anim::i#8 ) + (byte) anim::sprite_msb#8 ← phi( anim::@23/(byte) anim::sprite_msb#9 ) + (signed word) anim::yr#6 ← phi( anim::@23/(signed word) anim::yr#7 ) + (signed byte) anim::x#4 ← phi( anim::@23/(signed byte) anim::x#6 ) + (signed word) anim::xr#4 ← phi( anim::@23/(signed word) anim::xr#5 ) + (signed byte) anim::y#2 ← phi( anim::@23/(signed byte) anim::y#4 ) (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#2 call mulf8s_prepared (signed word) mulf8s_prepared::return#4 ← (signed word) mulf8s_prepared::return#1 - to:anim::@23 -anim::@23: scope:[anim] from anim::@18 + to:anim::@24 +anim::@24: scope:[anim] from anim::@18 + (byte*) COS#16 ← phi( anim::@18/(byte*) COS#17 ) (signed byte) anim::sin_a#10 ← phi( anim::@18/(signed byte) anim::sin_a#11 ) - (byte*) SIN#12 ← phi( anim::@18/(byte*) SIN#13 ) - (byte) anim::angle#9 ← phi( anim::@18/(byte) anim::angle#10 ) + (byte) anim::angle#10 ← phi( anim::@18/(byte) anim::angle#12 ) (signed byte) anim::cos_a#5 ← phi( anim::@18/(signed byte) anim::cos_a#6 ) (byte) anim::i#6 ← phi( anim::@18/(byte) anim::i#7 ) (byte) anim::sprite_msb#6 ← phi( anim::@18/(byte) anim::sprite_msb#8 ) @@ -437,84 +593,101 @@ anim::@23: scope:[anim] from anim::@18 (signed byte) anim::x#2 ← phi( anim::@18/(signed byte) anim::x#4 ) (signed word) anim::xr#2 ← phi( anim::@18/(signed word) anim::xr#4 ) (signed word) mulf8s_prepared::return#9 ← phi( anim::@18/(signed word) mulf8s_prepared::return#4 ) - (signed word~) anim::$9 ← (signed word) mulf8s_prepared::return#9 - (number~) anim::$10 ← (signed word~) anim::$9 * (number) 2 - (signed word) anim::xr#1 ← (signed word) anim::xr#2 - (number~) anim::$10 + (signed word~) anim::$10 ← (signed word) mulf8s_prepared::return#9 + (number~) anim::$11 ← (signed word~) anim::$10 * (number) 2 + (signed word) anim::xr#1 ← (signed word) anim::xr#2 - (number~) anim::$11 (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#2 call mulf8s_prepared (signed word) mulf8s_prepared::return#5 ← (signed word) mulf8s_prepared::return#1 - to:anim::@24 -anim::@24: scope:[anim] from anim::@23 - (signed byte) anim::sin_a#9 ← phi( anim::@23/(signed byte) anim::sin_a#10 ) - (byte*) SIN#10 ← phi( anim::@23/(byte*) SIN#12 ) - (byte) anim::angle#8 ← phi( anim::@23/(byte) anim::angle#9 ) - (signed byte) anim::cos_a#4 ← phi( anim::@23/(signed byte) anim::cos_a#5 ) - (byte) anim::i#5 ← phi( anim::@23/(byte) anim::i#6 ) - (byte) anim::sprite_msb#3 ← phi( anim::@23/(byte) anim::sprite_msb#6 ) - (signed word) anim::xr#3 ← phi( anim::@23/(signed word) anim::xr#1 ) - (signed word) anim::yr#2 ← phi( anim::@23/(signed word) anim::yr#4 ) - (signed word) mulf8s_prepared::return#10 ← phi( anim::@23/(signed word) mulf8s_prepared::return#5 ) - (signed word~) anim::$11 ← (signed word) mulf8s_prepared::return#10 - (number~) anim::$12 ← (signed word~) anim::$11 * (number) 2 - (signed word) anim::yr#1 ← (signed word) anim::yr#2 + (number~) anim::$12 - (byte~) anim::$13 ← > (signed word) anim::xr#3 - (signed byte~) anim::$14 ← ((signed byte)) (byte~) anim::$13 - (number~) anim::$15 ← (signed byte~) anim::$14 + (number) $18 - (number~) anim::$16 ← (number~) anim::$15 + (number) $95 - (signed word) anim::xpos#0 ← (number~) anim::$16 - (number~) anim::$17 ← (byte) anim::sprite_msb#3 / (number) 2 - (byte) anim::sprite_msb#1 ← (number~) anim::$17 - (byte~) anim::$18 ← > (signed word) anim::xpos#0 - (bool~) anim::$19 ← (byte~) anim::$18 != (number) 0 - (bool~) anim::$20 ← ! (bool~) anim::$19 - if((bool~) anim::$20) goto anim::@11 + to:anim::@25 +anim::@25: scope:[anim] from anim::@24 + (byte*) COS#14 ← phi( anim::@24/(byte*) COS#16 ) + (signed byte) anim::sin_a#9 ← phi( anim::@24/(signed byte) anim::sin_a#10 ) + (byte) anim::angle#8 ← phi( anim::@24/(byte) anim::angle#10 ) + (signed byte) anim::cos_a#4 ← phi( anim::@24/(signed byte) anim::cos_a#5 ) + (byte) anim::i#5 ← phi( anim::@24/(byte) anim::i#6 ) + (byte) anim::sprite_msb#3 ← phi( anim::@24/(byte) anim::sprite_msb#6 ) + (signed word) anim::xr#3 ← phi( anim::@24/(signed word) anim::xr#1 ) + (signed word) anim::yr#2 ← phi( anim::@24/(signed word) anim::yr#4 ) + (signed word) mulf8s_prepared::return#10 ← phi( anim::@24/(signed word) mulf8s_prepared::return#5 ) + (signed word~) anim::$12 ← (signed word) mulf8s_prepared::return#10 + (number~) anim::$13 ← (signed word~) anim::$12 * (number) 2 + (signed word) anim::yr#1 ← (signed word) anim::yr#2 + (number~) anim::$13 + (byte~) anim::$14 ← > (signed word) anim::xr#3 + (signed byte~) anim::$15 ← ((signed byte)) (byte~) anim::$14 + (number~) anim::$16 ← (signed byte~) anim::$15 + (number) $18 + (number~) anim::$17 ← (number~) anim::$16 + (number) $95 + (signed word) anim::xpos#0 ← (number~) anim::$17 + (number~) anim::$18 ← (byte) anim::sprite_msb#3 / (number) 2 + (byte) anim::sprite_msb#1 ← (number~) anim::$18 + (byte~) anim::$19 ← > (signed word) anim::xpos#0 + (bool~) anim::$20 ← (byte~) anim::$19 != (number) 0 + (bool~) anim::$21 ← ! (bool~) anim::$20 + if((bool~) anim::$21) goto anim::@11 to:anim::@12 -anim::@11: scope:[anim] from anim::@12 anim::@24 - (signed byte) anim::sin_a#7 ← phi( anim::@12/(signed byte) anim::sin_a#8 anim::@24/(signed byte) anim::sin_a#9 ) - (byte*) SIN#7 ← phi( anim::@12/(byte*) SIN#9 anim::@24/(byte*) SIN#10 ) - (byte) anim::angle#5 ← phi( anim::@12/(byte) anim::angle#7 anim::@24/(byte) anim::angle#8 ) - (byte) anim::sprite_msb#7 ← phi( anim::@12/(byte) anim::sprite_msb#2 anim::@24/(byte) anim::sprite_msb#1 ) - (signed byte) anim::cos_a#2 ← phi( anim::@12/(signed byte) anim::cos_a#3 anim::@24/(signed byte) anim::cos_a#4 ) - (signed word) anim::xpos#1 ← phi( anim::@12/(signed word) anim::xpos#2 anim::@24/(signed word) anim::xpos#0 ) - (byte) anim::i#3 ← phi( anim::@12/(byte) anim::i#4 anim::@24/(byte) anim::i#5 ) - (signed word) anim::yr#3 ← phi( anim::@12/(signed word) anim::yr#5 anim::@24/(signed word) anim::yr#1 ) - (byte~) anim::$21 ← > (signed word) anim::yr#3 - (number~) anim::$22 ← (byte~) anim::$21 + (number) $59 - (number~) anim::$23 ← (number~) anim::$22 + (number) $33 - (byte) anim::ypos#0 ← (number~) anim::$23 - (number~) anim::$24 ← (byte) anim::i#3 * (number) 2 - (byte) anim::i2#0 ← (number~) anim::$24 - (byte~) anim::$25 ← < (signed word) anim::xpos#1 - *((byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$25 +anim::@11: scope:[anim] from anim::@12 anim::@25 + (byte*) COS#12 ← phi( anim::@12/(byte*) COS#13 anim::@25/(byte*) COS#14 ) + (signed byte) anim::sin_a#7 ← phi( anim::@12/(signed byte) anim::sin_a#8 anim::@25/(signed byte) anim::sin_a#9 ) + (byte) anim::angle#5 ← phi( anim::@12/(byte) anim::angle#7 anim::@25/(byte) anim::angle#8 ) + (byte) anim::sprite_msb#7 ← phi( anim::@12/(byte) anim::sprite_msb#2 anim::@25/(byte) anim::sprite_msb#1 ) + (signed byte) anim::cos_a#2 ← phi( anim::@12/(signed byte) anim::cos_a#3 anim::@25/(signed byte) anim::cos_a#4 ) + (signed word) anim::xpos#1 ← phi( anim::@12/(signed word) anim::xpos#2 anim::@25/(signed word) anim::xpos#0 ) + (byte) anim::i#3 ← phi( anim::@12/(byte) anim::i#4 anim::@25/(byte) anim::i#5 ) + (signed word) anim::yr#3 ← phi( anim::@12/(signed word) anim::yr#5 anim::@25/(signed word) anim::yr#1 ) + (byte~) anim::$22 ← > (signed word) anim::yr#3 + (number~) anim::$23 ← (byte~) anim::$22 + (number) $59 + (number~) anim::$24 ← (number~) anim::$23 + (number) $33 + (byte) anim::ypos#0 ← (number~) anim::$24 + (number~) anim::$25 ← (byte) anim::i#3 * (number) 2 + (byte) anim::i2#0 ← (number~) anim::$25 + (byte~) anim::$26 ← < (signed word) anim::xpos#1 + *((byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$26 *((byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 (byte) anim::i#1 ← (byte) anim::i#3 + rangenext(0,7) - (bool~) anim::$26 ← (byte) anim::i#1 != rangelast(0,7) - if((bool~) anim::$26) goto anim::@10 + (bool~) anim::$27 ← (byte) anim::i#1 != rangelast(0,7) + if((bool~) anim::$27) goto anim::@10 to:anim::@13 -anim::@12: scope:[anim] from anim::@24 - (signed byte) anim::sin_a#8 ← phi( anim::@24/(signed byte) anim::sin_a#9 ) - (byte*) SIN#9 ← phi( anim::@24/(byte*) SIN#10 ) - (byte) anim::angle#7 ← phi( anim::@24/(byte) anim::angle#8 ) - (signed byte) anim::cos_a#3 ← phi( anim::@24/(signed byte) anim::cos_a#4 ) - (signed word) anim::xpos#2 ← phi( anim::@24/(signed word) anim::xpos#0 ) - (byte) anim::i#4 ← phi( anim::@24/(byte) anim::i#5 ) - (signed word) anim::yr#5 ← phi( anim::@24/(signed word) anim::yr#1 ) - (byte) anim::sprite_msb#4 ← phi( anim::@24/(byte) anim::sprite_msb#1 ) +anim::@12: scope:[anim] from anim::@25 + (byte*) COS#13 ← phi( anim::@25/(byte*) COS#14 ) + (signed byte) anim::sin_a#8 ← phi( anim::@25/(signed byte) anim::sin_a#9 ) + (byte) anim::angle#7 ← phi( anim::@25/(byte) anim::angle#8 ) + (signed byte) anim::cos_a#3 ← phi( anim::@25/(signed byte) anim::cos_a#4 ) + (signed word) anim::xpos#2 ← phi( anim::@25/(signed word) anim::xpos#0 ) + (byte) anim::i#4 ← phi( anim::@25/(byte) anim::i#5 ) + (signed word) anim::yr#5 ← phi( anim::@25/(signed word) anim::yr#1 ) + (byte) anim::sprite_msb#4 ← phi( anim::@25/(byte) anim::sprite_msb#1 ) (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#4 | (number) $80 to:anim::@11 anim::@13: scope:[anim] from anim::@11 - (byte*) SIN#5 ← phi( anim::@11/(byte*) SIN#7 ) + (byte*) COS#10 ← phi( anim::@11/(byte*) COS#12 ) (byte) anim::angle#3 ← phi( anim::@11/(byte) anim::angle#5 ) (byte) anim::sprite_msb#5 ← phi( anim::@11/(byte) anim::sprite_msb#7 ) *((byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 (byte) anim::angle#1 ← ++ (byte) anim::angle#3 + call clock + (dword) clock::return#2 ← (dword) clock::return#1 + to:anim::@26 +anim::@26: scope:[anim] from anim::@13 + (byte) anim::angle#14 ← phi( anim::@13/(byte) anim::angle#1 ) + (byte*) COS#8 ← phi( anim::@13/(byte*) COS#10 ) + (dword) clock::return#4 ← phi( anim::@13/(dword) clock::return#2 ) + (dword~) anim::$28 ← (dword) clock::return#4 + (dword~) anim::$29 ← (dword~) anim::$28 - (dword) CLOCKS_PER_INIT#0 + (dword) anim::cyclecount#0 ← (dword~) anim::$29 + (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 + (byte*) print_dword_at::at#0 ← (byte*) SCREEN#0 + call print_dword_at + to:anim::@27 +anim::@27: scope:[anim] from anim::@26 + (byte) anim::angle#11 ← phi( anim::@26/(byte) anim::angle#14 ) + (byte*) COS#6 ← phi( anim::@26/(byte*) COS#8 ) *((byte*) BORDERCOL#0) ← (byte) LIGHT_BLUE#0 to:anim::@1 anim::@return: scope:[anim] from anim::@1 return to:@return -@16: scope:[] from @15 - (byte*) SIN#11 ← phi( @15/(byte*) SIN#14 ) +@53: scope:[] from @52 + (byte*) COS#11 ← phi( @52/(byte*) COS#15 ) (byte*) SPRITE#0 ← ((byte*)) (number) $3000 kickasm(location (byte*) SPRITE#0) {{ .var pic = LoadPicture("balloon.png", List().add($000000, $ffffff)) .for (var y=0; y<21; y++) @@ -522,56 +695,84 @@ anim::@return: scope:[anim] from anim::@1 .byte pic.getSinglecolorByte(x,y) }} call main - to:@17 -@17: scope:[] from @16 + to:@54 +@54: scope:[] from @53 to:@end -@end: scope:[] from @17 +@end: scope:[] from @54 SYMBOL TABLE SSA -(byte*~) $0 +(byte*~) $1 +(const string) $2 = (string) "0123456789abcdef" (label) @13 -(label) @15 -(label) @16 -(label) @17 (label) @4 +(label) @43 +(label) @50 +(label) @52 +(label) @53 +(label) @54 (label) @begin (label) @end (byte*) BORDERCOL (byte*) BORDERCOL#0 -(byte[$140]) COS -(byte[$140]) COS#0 +(dword*) CIA2_TIMER_AB +(dword*) CIA2_TIMER_AB#0 +(byte*) CIA2_TIMER_A_CONTROL +(byte*) CIA2_TIMER_A_CONTROL#0 +(byte*) CIA2_TIMER_B_CONTROL +(byte*) CIA2_TIMER_B_CONTROL#0 +(byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES +(byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 +(byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A +(byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 +(byte) CIA_TIMER_CONTROL_CONTINUOUS +(byte) CIA_TIMER_CONTROL_CONTINUOUS#0 +(byte) CIA_TIMER_CONTROL_START +(byte) CIA_TIMER_CONTROL_START#0 +(byte) CIA_TIMER_CONTROL_STOP +(byte) CIA_TIMER_CONTROL_STOP#0 +(dword) CLOCKS_PER_INIT +(dword) CLOCKS_PER_INIT#0 +(byte*) COS +(byte*) COS#0 +(byte*) COS#1 +(byte*) COS#10 +(byte*) COS#11 +(byte*) COS#12 +(byte*) COS#13 +(byte*) COS#14 +(byte*) COS#15 +(byte*) COS#16 +(byte*) COS#17 +(byte*) COS#18 +(byte*) COS#19 +(byte*) COS#2 +(byte*) COS#20 +(byte*) COS#21 +(byte*) COS#22 +(byte*) COS#23 +(byte*) COS#24 +(byte*) COS#25 +(byte*) COS#3 +(byte*) COS#4 +(byte*) COS#5 +(byte*) COS#6 +(byte*) COS#7 +(byte*) COS#8 +(byte*) COS#9 (byte) GREEN (byte) GREEN#0 (byte) LIGHT_BLUE (byte) LIGHT_BLUE#0 +(const byte) RADIX::BINARY = (number) 2 +(const byte) RADIX::DECIMAL = (number) $a +(const byte) RADIX::HEXADECIMAL = (number) $10 +(const byte) RADIX::OCTAL = (number) 8 (byte*) RASTER (byte*) RASTER#0 (byte*) SCREEN (byte*) SCREEN#0 -(byte*) SIN -(byte*) SIN#0 -(byte*) SIN#1 -(byte*) SIN#10 -(byte*) SIN#11 -(byte*) SIN#12 -(byte*) SIN#13 -(byte*) SIN#14 -(byte*) SIN#15 -(byte*) SIN#16 -(byte*) SIN#17 -(byte*) SIN#18 -(byte*) SIN#19 -(byte*) SIN#2 -(byte*) SIN#20 -(byte*) SIN#21 -(byte*) SIN#22 -(byte*) SIN#3 -(byte*) SIN#4 -(byte*) SIN#5 -(byte*) SIN#6 -(byte*) SIN#7 -(byte*) SIN#8 -(byte*) SIN#9 +(byte[$140]) SIN +(byte[$140]) SIN#0 (byte*) SPRITE (byte*) SPRITE#0 (byte*) SPRITES_COLS @@ -586,30 +787,32 @@ SYMBOL TABLE SSA (byte*) SPRITES_YPOS#0 (void()) anim() (bool~) anim::$0 -(signed byte~) anim::$1 -(number~) anim::$10 -(signed word~) anim::$11 -(number~) anim::$12 -(byte~) anim::$13 -(signed byte~) anim::$14 -(number~) anim::$15 +(signed word~) anim::$10 +(number~) anim::$11 +(signed word~) anim::$12 +(number~) anim::$13 +(byte~) anim::$14 +(signed byte~) anim::$15 (number~) anim::$16 (number~) anim::$17 -(byte~) anim::$18 -(bool~) anim::$19 +(number~) anim::$18 +(byte~) anim::$19 (signed byte~) anim::$2 (bool~) anim::$20 -(byte~) anim::$21 -(number~) anim::$22 +(bool~) anim::$21 +(byte~) anim::$22 (number~) anim::$23 (number~) anim::$24 -(byte~) anim::$25 -(bool~) anim::$26 -(signed word~) anim::$4 -(number~) anim::$5 -(signed word~) anim::$6 -(number~) anim::$7 -(signed word~) anim::$9 +(number~) anim::$25 +(byte~) anim::$26 +(bool~) anim::$27 +(dword~) anim::$28 +(dword~) anim::$29 +(signed byte~) anim::$3 +(signed word~) anim::$5 +(number~) anim::$6 +(signed word~) anim::$7 +(number~) anim::$8 (label) anim::@1 (label) anim::@10 (label) anim::@11 @@ -623,6 +826,9 @@ SYMBOL TABLE SSA (label) anim::@22 (label) anim::@23 (label) anim::@24 +(label) anim::@25 +(label) anim::@26 +(label) anim::@27 (label) anim::@4 (label) anim::@6 (label) anim::@return @@ -638,7 +844,10 @@ SYMBOL TABLE SSA (byte) anim::angle#16 (byte) anim::angle#17 (byte) anim::angle#18 +(byte) anim::angle#19 (byte) anim::angle#2 +(byte) anim::angle#20 +(byte) anim::angle#21 (byte) anim::angle#3 (byte) anim::angle#4 (byte) anim::angle#5 @@ -661,6 +870,8 @@ SYMBOL TABLE SSA (signed byte) anim::cos_a#7 (signed byte) anim::cos_a#8 (signed byte) anim::cos_a#9 +(dword) anim::cyclecount +(dword) anim::cyclecount#0 (byte) anim::i (byte) anim::i#0 (byte) anim::i#1 @@ -770,6 +981,25 @@ SYMBOL TABLE SSA (signed word) anim::yr#6 (signed word) anim::yr#7 (signed word) anim::yr#8 +(dword()) clock() +(number~) clock::$0 +(label) clock::@return +(dword) clock::return +(dword) clock::return#0 +(dword) clock::return#1 +(dword) clock::return#2 +(dword) clock::return#3 +(dword) clock::return#4 +(void()) clock_start() +(byte~) clock_start::$0 +(byte~) clock_start::$1 +(byte~) clock_start::$2 +(byte~) clock_start::$3 +(byte~) clock_start::$4 +(byte~) clock_start::$5 +(byte~) clock_start::$6 +(byte~) clock_start::$7 +(label) clock_start::@return (void()) init() (byte*~) init::$1 (byte*~) init::$2 @@ -957,6 +1187,67 @@ SYMBOL TABLE SSA (byte[$200]) mulf_sqr2_hi#0 (byte[$200]) mulf_sqr2_lo (byte[$200]) mulf_sqr2_lo#0 +(void()) print_byte_at((byte) print_byte_at::b , (byte*) print_byte_at::at) +(byte~) print_byte_at::$0 +(number~) print_byte_at::$2 +(byte*~) print_byte_at::$3 +(label) print_byte_at::@1 +(label) print_byte_at::@2 +(label) print_byte_at::@return +(byte*) print_byte_at::at +(byte*) print_byte_at::at#0 +(byte*) print_byte_at::at#1 +(byte*) print_byte_at::at#2 +(byte*) print_byte_at::at#3 +(byte) print_byte_at::b +(byte) print_byte_at::b#0 +(byte) print_byte_at::b#1 +(byte) print_byte_at::b#2 +(byte) print_byte_at::b#3 +(void()) print_char_at((byte) print_char_at::ch , (byte*) print_char_at::at) +(label) print_char_at::@return +(byte*) print_char_at::at +(byte*) print_char_at::at#0 +(byte*) print_char_at::at#1 +(byte*) print_char_at::at#2 +(byte) print_char_at::ch +(byte) print_char_at::ch#0 +(byte) print_char_at::ch#1 +(byte) print_char_at::ch#2 +(void()) print_dword_at((dword) print_dword_at::dw , (byte*) print_dword_at::at) +(word~) print_dword_at::$0 +(word~) print_dword_at::$2 +(byte*~) print_dword_at::$3 +(label) print_dword_at::@1 +(label) print_dword_at::@2 +(label) print_dword_at::@return +(byte*) print_dword_at::at +(byte*) print_dword_at::at#0 +(byte*) print_dword_at::at#1 +(byte*) print_dword_at::at#2 +(dword) print_dword_at::dw +(dword) print_dword_at::dw#0 +(dword) print_dword_at::dw#1 +(dword) print_dword_at::dw#2 +(byte[]) print_hextab +(byte[]) print_hextab#0 +(void()) print_word_at((word) print_word_at::w , (byte*) print_word_at::at) +(byte~) print_word_at::$0 +(byte~) print_word_at::$2 +(byte*~) print_word_at::$3 +(label) print_word_at::@1 +(label) print_word_at::@2 +(label) print_word_at::@return +(byte*) print_word_at::at +(byte*) print_word_at::at#0 +(byte*) print_word_at::at#1 +(byte*) print_word_at::at#2 +(byte*) print_word_at::at#3 +(word) print_word_at::w +(word) print_word_at::w#0 +(word) print_word_at::w#1 +(word) print_word_at::w#2 +(word) print_word_at::w#3 (signed byte[8]) xs (signed byte[8]) xs#0 (signed byte[8]) ys @@ -964,6 +1255,11 @@ SYMBOL TABLE SSA Fixing inline constructor with mulf8u_prepared::$0 ← (byte)*(mulf8u_prepared::memB#0) w= (byte)*(mulf8u_prepared::resL#0) Successful SSA optimization Pass2FixInlineConstructorsNew +Adding number conversion cast (unumber) 0 in (byte) CIA_TIMER_CONTROL_STOP#0 ← (number) 0 +Adding number conversion cast (unumber) 1 in (byte) CIA_TIMER_CONTROL_START#0 ← (number) 1 +Adding number conversion cast (unumber) 0 in (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 ← (number) 0 +Adding number conversion cast (unumber) 0 in (byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 ← (number) 0 +Adding number conversion cast (unumber) $40 in (byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 ← (number) $40 Adding number conversion cast (unumber) 5 in (byte) GREEN#0 ← (number) 5 Adding number conversion cast (unumber) $e in (byte) LIGHT_BLUE#0 ← (number) $e Adding number conversion cast (unumber) 0 in (word) mulf_init::sqr#0 ← (number) 0 @@ -985,34 +1281,44 @@ Adding number conversion cast (unumber) $1ff in (byte*~) mulf_init::$4 ← (byte Adding number conversion cast (unumber) $100 in (byte*~) mulf_init::$5 ← (byte[$200]) mulf_sqr1_hi#0 + (number) $100 Adding number conversion cast (snumber) 0 in (bool~) mulf8s_prepared::$2 ← *((signed byte*) mulf8s_prepared::memA#0) < (number) 0 Adding number conversion cast (snumber) 0 in (bool~) mulf8s_prepared::$4 ← (signed byte) mulf8s_prepared::b#5 < (number) 0 -Adding number conversion cast (unumber) $40 in (byte*~) $0 ← (byte[$140]) COS#0 + (number) $40 +Adding number conversion cast (unumber) $12 in (dword) CLOCKS_PER_INIT#0 ← (number) $12 +Adding number conversion cast (unumber) $ffffffff in (number~) clock::$0 ← (number) $ffffffff - *((dword*) CIA2_TIMER_AB#0) +Adding number conversion cast (unumber) clock::$0 in (number~) clock::$0 ← (unumber)(number) $ffffffff - *((dword*) CIA2_TIMER_AB#0) +Adding number conversion cast (unumber) $ffffffff in *((dword*) CIA2_TIMER_AB#0) ← (number) $ffffffff +Adding number conversion cast (unumber) 2 in (byte*~) print_word_at::$3 ← (byte*) print_word_at::at#3 + (number) 2 +Adding number conversion cast (unumber) 4 in (byte*~) print_dword_at::$3 ← (byte*) print_dword_at::at#2 + (number) 4 +Adding number conversion cast (unumber) 4 in (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (number) 4 +Adding number conversion cast (unumber) $f in (number~) print_byte_at::$2 ← (byte) print_byte_at::b#3 & (number) $f +Adding number conversion cast (unumber) print_byte_at::$2 in (number~) print_byte_at::$2 ← (byte) print_byte_at::b#3 & (unumber)(number) $f +Adding number conversion cast (unumber) 1 in (byte*~) print_byte_at::$3 ← (byte*) print_byte_at::at#3 + (number) 1 +Adding number conversion cast (unumber) $40 in (byte*~) $1 ← (byte[$140]) SIN#0 + (number) $40 Adding number conversion cast (unumber) $ff in *((byte*) SPRITES_ENABLE#0) ← (number) $ff Adding number conversion cast (unumber) $3f8 in (byte*~) init::$1 ← (byte*) SCREEN#0 + (number) $3f8 Adding number conversion cast (unumber) $40 in (byte*~) init::$2 ← (byte*) SPRITE#0 / (number) $40 Adding number conversion cast (unumber) 0 in (byte) anim::angle#0 ← (number) 0 Adding number conversion cast (unumber) $ff in (bool~) anim::$0 ← *((byte*) RASTER#0) != (number) $ff Adding number conversion cast (unumber) 0 in (byte) anim::sprite_msb#0 ← (number) 0 -Adding number conversion cast (snumber) 2 in (number~) anim::$5 ← (signed word~) anim::$4 * (number) 2 -Adding number conversion cast (snumber) anim::$5 in (number~) anim::$5 ← (signed word~) anim::$4 * (snumber)(number) 2 -Adding number conversion cast (snumber) 2 in (number~) anim::$7 ← (signed word~) anim::$6 * (number) 2 -Adding number conversion cast (snumber) anim::$7 in (number~) anim::$7 ← (signed word~) anim::$6 * (snumber)(number) 2 -Adding number conversion cast (snumber) 2 in (number~) anim::$10 ← (signed word~) anim::$9 * (number) 2 -Adding number conversion cast (snumber) anim::$10 in (number~) anim::$10 ← (signed word~) anim::$9 * (snumber)(number) 2 -Adding number conversion cast (snumber) 2 in (number~) anim::$12 ← (signed word~) anim::$11 * (number) 2 -Adding number conversion cast (snumber) anim::$12 in (number~) anim::$12 ← (signed word~) anim::$11 * (snumber)(number) 2 -Adding number conversion cast (snumber) $18 in (number~) anim::$15 ← (signed byte~) anim::$14 + (number) $18 -Adding number conversion cast (snumber) anim::$15 in (number~) anim::$15 ← (signed byte~) anim::$14 + (snumber)(number) $18 -Adding number conversion cast (snumber) $95 in (number~) anim::$16 ← (snumber~) anim::$15 + (number) $95 -Adding number conversion cast (snumber) anim::$16 in (number~) anim::$16 ← (snumber~) anim::$15 + (snumber)(number) $95 -Adding number conversion cast (unumber) 2 in (number~) anim::$17 ← (byte) anim::sprite_msb#3 / (number) 2 -Adding number conversion cast (unumber) anim::$17 in (number~) anim::$17 ← (byte) anim::sprite_msb#3 / (unumber)(number) 2 -Adding number conversion cast (unumber) 0 in (bool~) anim::$19 ← (byte~) anim::$18 != (number) 0 -Adding number conversion cast (unumber) $59 in (number~) anim::$22 ← (byte~) anim::$21 + (number) $59 -Adding number conversion cast (unumber) anim::$22 in (number~) anim::$22 ← (byte~) anim::$21 + (unumber)(number) $59 -Adding number conversion cast (unumber) $33 in (number~) anim::$23 ← (unumber~) anim::$22 + (number) $33 -Adding number conversion cast (unumber) anim::$23 in (number~) anim::$23 ← (unumber~) anim::$22 + (unumber)(number) $33 -Adding number conversion cast (unumber) 2 in (number~) anim::$24 ← (byte) anim::i#3 * (number) 2 -Adding number conversion cast (unumber) anim::$24 in (number~) anim::$24 ← (byte) anim::i#3 * (unumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) anim::$6 ← (signed word~) anim::$5 * (number) 2 +Adding number conversion cast (snumber) anim::$6 in (number~) anim::$6 ← (signed word~) anim::$5 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) anim::$8 ← (signed word~) anim::$7 * (number) 2 +Adding number conversion cast (snumber) anim::$8 in (number~) anim::$8 ← (signed word~) anim::$7 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) anim::$11 ← (signed word~) anim::$10 * (number) 2 +Adding number conversion cast (snumber) anim::$11 in (number~) anim::$11 ← (signed word~) anim::$10 * (snumber)(number) 2 +Adding number conversion cast (snumber) 2 in (number~) anim::$13 ← (signed word~) anim::$12 * (number) 2 +Adding number conversion cast (snumber) anim::$13 in (number~) anim::$13 ← (signed word~) anim::$12 * (snumber)(number) 2 +Adding number conversion cast (snumber) $18 in (number~) anim::$16 ← (signed byte~) anim::$15 + (number) $18 +Adding number conversion cast (snumber) anim::$16 in (number~) anim::$16 ← (signed byte~) anim::$15 + (snumber)(number) $18 +Adding number conversion cast (snumber) $95 in (number~) anim::$17 ← (snumber~) anim::$16 + (number) $95 +Adding number conversion cast (snumber) anim::$17 in (number~) anim::$17 ← (snumber~) anim::$16 + (snumber)(number) $95 +Adding number conversion cast (unumber) 2 in (number~) anim::$18 ← (byte) anim::sprite_msb#3 / (number) 2 +Adding number conversion cast (unumber) anim::$18 in (number~) anim::$18 ← (byte) anim::sprite_msb#3 / (unumber)(number) 2 +Adding number conversion cast (unumber) 0 in (bool~) anim::$20 ← (byte~) anim::$19 != (number) 0 +Adding number conversion cast (unumber) $59 in (number~) anim::$23 ← (byte~) anim::$22 + (number) $59 +Adding number conversion cast (unumber) anim::$23 in (number~) anim::$23 ← (byte~) anim::$22 + (unumber)(number) $59 +Adding number conversion cast (unumber) $33 in (number~) anim::$24 ← (unumber~) anim::$23 + (number) $33 +Adding number conversion cast (unumber) anim::$24 in (number~) anim::$24 ← (unumber~) anim::$23 + (unumber)(number) $33 +Adding number conversion cast (unumber) 2 in (number~) anim::$25 ← (byte) anim::i#3 * (number) 2 +Adding number conversion cast (unumber) anim::$25 in (number~) anim::$25 ← (byte) anim::i#3 * (unumber)(number) 2 Adding number conversion cast (unumber) $80 in (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#4 | (number) $80 Successful SSA optimization PassNAddNumberTypeConversions Adding number conversion cast (signed byte) to elements in (signed byte[8]) xs#0 ← { (signed byte)(number) -$46, (signed byte)(number) -$46, (signed byte)(number) -$46, (signed byte)(number) 0, (signed byte)(number) 0, (signed byte)(number) $46, (signed byte)(number) $46, (signed byte)(number) $46 } @@ -1025,6 +1331,14 @@ Inlining cast (byte*) RASTER#0 ← (byte*)(number) $d012 Inlining cast (byte*) SPRITES_ENABLE#0 ← (byte*)(number) $d015 Inlining cast (byte*) BORDERCOL#0 ← (byte*)(number) $d020 Inlining cast (byte*) SPRITES_COLS#0 ← (byte*)(number) $d027 +Inlining cast (dword*) CIA2_TIMER_AB#0 ← (dword*)(number) $dd04 +Inlining cast (byte*) CIA2_TIMER_A_CONTROL#0 ← (byte*)(number) $dd0e +Inlining cast (byte*) CIA2_TIMER_B_CONTROL#0 ← (byte*)(number) $dd0f +Inlining cast (byte) CIA_TIMER_CONTROL_STOP#0 ← (unumber)(number) 0 +Inlining cast (byte) CIA_TIMER_CONTROL_START#0 ← (unumber)(number) 1 +Inlining cast (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 ← (unumber)(number) 0 +Inlining cast (byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 ← (unumber)(number) 0 +Inlining cast (byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 ← (unumber)(number) $40 Inlining cast (byte) GREEN#0 ← (unumber)(number) 5 Inlining cast (byte) LIGHT_BLUE#0 ← (unumber)(number) $e Inlining cast (word) mulf_init::sqr#0 ← (unumber)(number) 0 @@ -1041,16 +1355,18 @@ Inlining cast (byte~) mulf8s_prepared::$0 ← (byte)(signed byte) mulf8s_prepare Inlining cast (byte~) mulf8s_prepared::$9 ← (byte)(signed byte) mulf8s_prepared::b#6 Inlining cast (signed word~) mulf8s_prepared::$6 ← (signed word)(word) mulf8s_prepared::m#4 Inlining cast (byte~) mulf8s_prepared::$13 ← (byte)*((signed byte*) mulf8s_prepared::memA#0) +Inlining cast (dword) CLOCKS_PER_INIT#0 ← (unumber)(number) $12 +Inlining cast *((dword*) CIA2_TIMER_AB#0) ← (unumber)(number) $ffffffff Inlining cast (byte*) SCREEN#0 ← (byte*)(number) $400 Inlining cast *((byte*) SPRITES_ENABLE#0) ← (unumber)(number) $ff Inlining cast (byte~) init::$3 ← (byte)(byte*~) init::$2 Inlining cast (byte) anim::angle#0 ← (unumber)(number) 0 -Inlining cast (signed byte~) anim::$1 ← (signed byte)*((byte[$140]) COS#0 + (byte) anim::angle#2) -Inlining cast (signed byte~) anim::$2 ← (signed byte)*((byte*) SIN#1 + (byte) anim::angle#2) +Inlining cast (signed byte~) anim::$2 ← (signed byte)*((byte*) COS#1 + (byte) anim::angle#2) +Inlining cast (signed byte~) anim::$3 ← (signed byte)*((byte[$140]) SIN#0 + (byte) anim::angle#2) Inlining cast (byte) anim::sprite_msb#0 ← (unumber)(number) 0 Inlining cast (byte~) anim::mulf8s_prepare1_$0#0 ← (byte)(signed byte) anim::mulf8s_prepare1_a#1 Inlining cast (byte~) anim::mulf8s_prepare2_$0#0 ← (byte)(signed byte) anim::mulf8s_prepare2_a#1 -Inlining cast (signed byte~) anim::$14 ← (signed byte)(byte~) anim::$13 +Inlining cast (signed byte~) anim::$15 ← (signed byte)(byte~) anim::$14 Inlining cast (byte*) SPRITE#0 ← (byte*)(number) $3000 Successful SSA optimization Pass2InlineCast Simplifying constant pointer cast (byte*) 53248 @@ -1060,6 +1376,14 @@ Simplifying constant pointer cast (byte*) 53266 Simplifying constant pointer cast (byte*) 53269 Simplifying constant pointer cast (byte*) 53280 Simplifying constant pointer cast (byte*) 53287 +Simplifying constant pointer cast (dword*) 56580 +Simplifying constant pointer cast (byte*) 56590 +Simplifying constant pointer cast (byte*) 56591 +Simplifying constant integer cast 0 +Simplifying constant integer cast 1 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Simplifying constant integer cast $40 Simplifying constant integer cast 5 Simplifying constant integer cast $e Simplifying constant integer cast 0 @@ -1087,6 +1411,14 @@ Simplifying constant integer cast *((byte*) mulf8u_prepared::resL#0) Simplifying constant pointer cast (signed byte*) 253 Simplifying constant integer cast 0 Simplifying constant integer cast 0 +Simplifying constant integer cast $12 +Simplifying constant integer cast $ffffffff +Simplifying constant integer cast $ffffffff +Simplifying constant integer cast 2 +Simplifying constant integer cast 4 +Simplifying constant integer cast 4 +Simplifying constant integer cast $f +Simplifying constant integer cast 1 Simplifying constant pointer cast (byte*) 1024 Simplifying constant integer cast $40 Simplifying constant integer cast $ff @@ -1125,6 +1457,11 @@ Simplifying constant integer cast 2 Simplifying constant integer cast $80 Simplifying constant pointer cast (byte*) 12288 Successful SSA optimization PassNCastSimplification +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 1 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) $40 Finalized unsigned number type (byte) 5 Finalized unsigned number type (byte) $e Finalized unsigned number type (byte) 0 @@ -1145,6 +1482,14 @@ Finalized unsigned number type (word) $1ff Finalized unsigned number type (word) $100 Finalized signed number type (signed byte) 0 Finalized signed number type (signed byte) 0 +Finalized unsigned number type (byte) $12 +Finalized unsigned number type (dword) $ffffffff +Finalized unsigned number type (dword) $ffffffff +Finalized unsigned number type (byte) 2 +Finalized unsigned number type (byte) 4 +Finalized unsigned number type (byte) 4 +Finalized unsigned number type (byte) $f +Finalized unsigned number type (byte) 1 Finalized unsigned number type (byte) $40 Finalized unsigned number type (byte) $ff Finalized unsigned number type (word) $3f8 @@ -1166,21 +1511,23 @@ Finalized unsigned number type (byte) 2 Finalized unsigned number type (byte) $80 Successful SSA optimization PassNFinalizeNumberTypeConversions Inferred type updated to byte in (unumber~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -Inferred type updated to signed word in (snumber~) anim::$5 ← (signed word~) anim::$4 * (signed byte) 2 -Inferred type updated to signed word in (snumber~) anim::$7 ← (signed word~) anim::$6 * (signed byte) 2 -Inferred type updated to signed word in (snumber~) anim::$10 ← (signed word~) anim::$9 * (signed byte) 2 -Inferred type updated to signed word in (snumber~) anim::$12 ← (signed word~) anim::$11 * (signed byte) 2 -Inferred type updated to signed byte in (snumber~) anim::$15 ← (signed byte~) anim::$14 + (signed byte) $18 -Inferred type updated to signed word in (snumber~) anim::$16 ← (signed byte~) anim::$15 + (signed word) $95 -Inferred type updated to byte in (unumber~) anim::$17 ← (byte) anim::sprite_msb#3 / (byte) 2 -Inferred type updated to byte in (unumber~) anim::$22 ← (byte~) anim::$21 + (byte) $59 -Inferred type updated to byte in (unumber~) anim::$23 ← (byte~) anim::$22 + (byte) $33 -Inferred type updated to byte in (unumber~) anim::$24 ← (byte) anim::i#3 * (byte) 2 -Inversing boolean not [24] (bool~) mulf_init::$9 ← (byte~) mulf_init::$7 != (byte) 0 from [23] (bool~) mulf_init::$8 ← (byte~) mulf_init::$7 == (byte) 0 -Inversing boolean not [53] (bool~) mulf_init::$17 ← (byte) mulf_init::x_255#1 != (byte) 0 from [52] (bool~) mulf_init::$16 ← (byte) mulf_init::x_255#1 == (byte) 0 -Inversing boolean not [94] (bool~) mulf8s_prepared::$3 ← *((signed byte*) mulf8s_prepared::memA#0) >= (signed byte) 0 from [93] (bool~) mulf8s_prepared::$2 ← *((signed byte*) mulf8s_prepared::memA#0) < (signed byte) 0 -Inversing boolean not [98] (bool~) mulf8s_prepared::$5 ← (signed byte) mulf8s_prepared::b#5 >= (signed byte) 0 from [97] (bool~) mulf8s_prepared::$4 ← (signed byte) mulf8s_prepared::b#5 < (signed byte) 0 -Inversing boolean not [214] (bool~) anim::$20 ← (byte~) anim::$18 == (byte) 0 from [213] (bool~) anim::$19 ← (byte~) anim::$18 != (byte) 0 +Inferred type updated to dword in (unumber~) clock::$0 ← (dword) $ffffffff - *((dword*) CIA2_TIMER_AB#0) +Inferred type updated to byte in (unumber~) print_byte_at::$2 ← (byte) print_byte_at::b#3 & (byte) $f +Inferred type updated to signed word in (snumber~) anim::$6 ← (signed word~) anim::$5 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) anim::$8 ← (signed word~) anim::$7 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) anim::$11 ← (signed word~) anim::$10 * (signed byte) 2 +Inferred type updated to signed word in (snumber~) anim::$13 ← (signed word~) anim::$12 * (signed byte) 2 +Inferred type updated to signed byte in (snumber~) anim::$16 ← (signed byte~) anim::$15 + (signed byte) $18 +Inferred type updated to signed word in (snumber~) anim::$17 ← (signed byte~) anim::$16 + (signed word) $95 +Inferred type updated to byte in (unumber~) anim::$18 ← (byte) anim::sprite_msb#3 / (byte) 2 +Inferred type updated to byte in (unumber~) anim::$23 ← (byte~) anim::$22 + (byte) $59 +Inferred type updated to byte in (unumber~) anim::$24 ← (byte~) anim::$23 + (byte) $33 +Inferred type updated to byte in (unumber~) anim::$25 ← (byte) anim::i#3 * (byte) 2 +Inversing boolean not [32] (bool~) mulf_init::$9 ← (byte~) mulf_init::$7 != (byte) 0 from [31] (bool~) mulf_init::$8 ← (byte~) mulf_init::$7 == (byte) 0 +Inversing boolean not [61] (bool~) mulf_init::$17 ← (byte) mulf_init::x_255#1 != (byte) 0 from [60] (bool~) mulf_init::$16 ← (byte) mulf_init::x_255#1 == (byte) 0 +Inversing boolean not [102] (bool~) mulf8s_prepared::$3 ← *((signed byte*) mulf8s_prepared::memA#0) >= (signed byte) 0 from [101] (bool~) mulf8s_prepared::$2 ← *((signed byte*) mulf8s_prepared::memA#0) < (signed byte) 0 +Inversing boolean not [106] (bool~) mulf8s_prepared::$5 ← (signed byte) mulf8s_prepared::b#5 >= (signed byte) 0 from [105] (bool~) mulf8s_prepared::$4 ← (signed byte) mulf8s_prepared::b#5 < (signed byte) 0 +Inversing boolean not [284] (bool~) anim::$21 ← (byte~) anim::$19 == (byte) 0 from [283] (bool~) anim::$20 ← (byte~) anim::$19 != (byte) 0 Successful SSA optimization Pass2UnaryNotSimplification Alias (byte*) mulf_init::sqr1_hi#0 = (byte*~) mulf_init::$0 Alias (byte*) mulf_init::sqr1_lo#0 = (byte*~) mulf_init::$6 @@ -1203,38 +1550,55 @@ Alias (byte~) mulf8s_prepared::$15 = (byte~) mulf8s_prepared::$10 Alias (signed word) mulf8s_prepared::return#0 = (signed word~) mulf8s_prepared::$6 (signed word) mulf8s_prepared::return#6 (signed word) mulf8s_prepared::return#1 Alias (word) mulf8s_prepared::m#5 = (word) mulf8s_prepared::m#6 Alias (byte~) mulf8s_prepared::$16 = (byte~) mulf8s_prepared::$14 -Alias (byte*) SIN#0 = (byte*~) $0 (byte*) SIN#14 (byte*) SIN#11 -Alias (byte*) SIN#6 = (byte*) SIN#8 +Alias (dword) clock::return#0 = (dword~) clock::$0 (dword) clock::return#3 (dword) clock::return#1 +Alias (byte) print_byte_at::b#0 = (byte~) print_word_at::$0 +Alias (word) print_word_at::w#2 = (word) print_word_at::w#3 +Alias (byte*) print_word_at::at#2 = (byte*) print_word_at::at#3 +Alias (byte) print_byte_at::b#1 = (byte~) print_word_at::$2 +Alias (byte*) print_byte_at::at#1 = (byte*~) print_word_at::$3 +Alias (word) print_word_at::w#0 = (word~) print_dword_at::$0 +Alias (dword) print_dword_at::dw#1 = (dword) print_dword_at::dw#2 +Alias (byte*) print_dword_at::at#1 = (byte*) print_dword_at::at#2 +Alias (word) print_word_at::w#1 = (word~) print_dword_at::$2 +Alias (byte*) print_word_at::at#1 = (byte*~) print_dword_at::$3 +Alias (byte) print_byte_at::b#2 = (byte) print_byte_at::b#3 +Alias (byte*) print_byte_at::at#2 = (byte*) print_byte_at::at#3 +Alias (byte*) print_char_at::at#1 = (byte*~) print_byte_at::$3 +Alias (byte*) COS#0 = (byte*~) $1 (byte*) COS#15 (byte*) COS#11 +Alias (byte*) COS#7 = (byte*) COS#9 Alias (byte*) init::sprites_ptr#0 = (byte*~) init::$1 -Alias (byte) anim::angle#2 = (byte) anim::angle#4 -Alias (byte*) SIN#1 = (byte*) SIN#2 -Alias (signed byte) anim::cos_a#0 = (signed byte~) anim::$1 -Alias (signed byte) anim::sin_a#0 = (signed byte~) anim::$2 +Alias (byte*) COS#1 = (byte*) COS#2 (byte*) COS#3 +Alias (byte) anim::angle#2 = (byte) anim::angle#4 (byte) anim::angle#6 +Alias (signed byte) anim::cos_a#0 = (signed byte~) anim::$2 +Alias (signed byte) anim::sin_a#0 = (signed byte~) anim::$3 Alias (signed byte) anim::cos_a#1 = (signed byte) anim::mulf8s_prepare1_a#0 (signed byte) anim::mulf8s_prepare1_a#1 (signed byte) anim::cos_a#13 (signed byte) anim::cos_a#12 (signed byte) anim::cos_a#11 (signed byte) anim::cos_a#10 (signed byte) anim::cos_a#9 (signed byte) anim::cos_a#8 (signed byte) anim::cos_a#7 (signed byte) anim::cos_a#6 (signed byte) anim::cos_a#5 (signed byte) anim::cos_a#4 (signed byte) anim::cos_a#3 Alias (signed byte) anim::x#0 = (signed byte) anim::x#5 (signed byte) anim::x#3 (signed byte) anim::x#1 (signed byte) anim::x#9 (signed byte) anim::x#8 (signed byte) anim::x#7 (signed byte) anim::x#6 (signed byte) anim::x#4 (signed byte) anim::x#2 Alias (signed byte) anim::y#0 = (signed byte) anim::y#7 (signed byte) anim::y#5 (signed byte) anim::y#3 (signed byte) anim::y#1 (signed byte) anim::y#8 (signed byte) anim::y#6 (signed byte) anim::y#4 (signed byte) anim::y#2 Alias (signed byte) anim::sin_a#1 = (signed byte) anim::sin_a#5 (signed byte) anim::sin_a#6 (signed byte) anim::sin_a#4 (signed byte) anim::sin_a#3 (signed byte) anim::sin_a#2 (signed byte) anim::mulf8s_prepare2_a#0 (signed byte) anim::mulf8s_prepare2_a#1 (signed byte) anim::sin_a#13 (signed byte) anim::sin_a#12 (signed byte) anim::sin_a#11 (signed byte) anim::sin_a#10 (signed byte) anim::sin_a#9 (signed byte) anim::sin_a#8 Alias (byte) anim::sprite_msb#10 = (byte) anim::sprite_msb#15 (byte) anim::sprite_msb#16 (byte) anim::sprite_msb#14 (byte) anim::sprite_msb#13 (byte) anim::sprite_msb#12 (byte) anim::sprite_msb#11 (byte) anim::sprite_msb#9 (byte) anim::sprite_msb#8 (byte) anim::sprite_msb#6 (byte) anim::sprite_msb#3 Alias (byte) anim::i#10 = (byte) anim::i#14 (byte) anim::i#2 (byte) anim::i#13 (byte) anim::i#12 (byte) anim::i#11 (byte) anim::i#9 (byte) anim::i#8 (byte) anim::i#7 (byte) anim::i#6 (byte) anim::i#5 (byte) anim::i#4 -Alias (byte) anim::angle#10 = (byte) anim::angle#17 (byte) anim::angle#18 (byte) anim::angle#16 (byte) anim::angle#15 (byte) anim::angle#14 (byte) anim::angle#13 (byte) anim::angle#12 (byte) anim::angle#11 (byte) anim::angle#9 (byte) anim::angle#8 (byte) anim::angle#7 -Alias (byte*) SIN#10 = (byte*) SIN#21 (byte*) SIN#22 (byte*) SIN#20 (byte*) SIN#19 (byte*) SIN#18 (byte*) SIN#17 (byte*) SIN#16 (byte*) SIN#15 (byte*) SIN#13 (byte*) SIN#12 (byte*) SIN#9 +Alias (byte) anim::angle#10 = (byte) anim::angle#20 (byte) anim::angle#21 (byte) anim::angle#19 (byte) anim::angle#18 (byte) anim::angle#17 (byte) anim::angle#16 (byte) anim::angle#15 (byte) anim::angle#13 (byte) anim::angle#12 (byte) anim::angle#8 (byte) anim::angle#7 +Alias (byte*) COS#13 = (byte*) COS#24 (byte*) COS#25 (byte*) COS#23 (byte*) COS#22 (byte*) COS#21 (byte*) COS#20 (byte*) COS#19 (byte*) COS#18 (byte*) COS#17 (byte*) COS#16 (byte*) COS#14 Alias (byte) mulf8u_prepare::a#0 = (byte~) anim::mulf8s_prepare1_$0#0 Alias (signed word) mulf8s_prepared::return#2 = (signed word) mulf8s_prepared::return#7 -Alias (signed word) anim::xr#0 = (signed word~) anim::$5 (signed word) anim::xr#7 (signed word) anim::xr#6 (signed word) anim::xr#5 (signed word) anim::xr#4 (signed word) anim::xr#2 +Alias (signed word) anim::xr#0 = (signed word~) anim::$6 (signed word) anim::xr#7 (signed word) anim::xr#6 (signed word) anim::xr#5 (signed word) anim::xr#4 (signed word) anim::xr#2 Alias (signed word) mulf8s_prepared::return#3 = (signed word) mulf8s_prepared::return#8 -Alias (signed word) anim::yr#0 = (signed word~) anim::$7 (signed word) anim::yr#8 (signed word) anim::yr#7 (signed word) anim::yr#6 (signed word) anim::yr#4 (signed word) anim::yr#2 +Alias (signed word) anim::yr#0 = (signed word~) anim::$8 (signed word) anim::yr#8 (signed word) anim::yr#7 (signed word) anim::yr#6 (signed word) anim::yr#4 (signed word) anim::yr#2 Alias (byte) mulf8u_prepare::a#1 = (byte~) anim::mulf8s_prepare2_$0#0 Alias (signed word) mulf8s_prepared::return#4 = (signed word) mulf8s_prepared::return#9 Alias (signed word) mulf8s_prepared::return#10 = (signed word) mulf8s_prepared::return#5 Alias (signed word) anim::xr#1 = (signed word) anim::xr#3 -Alias (signed word) anim::xpos#0 = (signed word~) anim::$16 (signed word) anim::xpos#2 -Alias (byte) anim::sprite_msb#1 = (byte~) anim::$17 (byte) anim::sprite_msb#4 -Alias (byte) anim::ypos#0 = (byte~) anim::$23 -Alias (byte) anim::i2#0 = (byte~) anim::$24 +Alias (signed word) anim::xpos#0 = (signed word~) anim::$17 (signed word) anim::xpos#2 +Alias (byte) anim::sprite_msb#1 = (byte~) anim::$18 (byte) anim::sprite_msb#4 +Alias (byte) anim::ypos#0 = (byte~) anim::$24 +Alias (byte) anim::i2#0 = (byte~) anim::$25 Alias (signed word) anim::yr#1 = (signed word) anim::yr#5 Alias (byte) anim::sprite_msb#5 = (byte) anim::sprite_msb#7 Alias (byte) anim::angle#3 = (byte) anim::angle#5 -Alias (byte*) SIN#5 = (byte*) SIN#7 +Alias (byte*) COS#10 = (byte*) COS#12 (byte*) COS#8 (byte*) COS#6 +Alias (dword) clock::return#2 = (dword) clock::return#4 +Alias (byte) anim::angle#1 = (byte) anim::angle#14 (byte) anim::angle#11 +Alias (dword) anim::cyclecount#0 = (dword~) anim::$29 Successful SSA optimization Pass2AliasElimination Alias (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#3 Alias (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#3 @@ -1248,45 +1612,50 @@ Alias (byte) anim::i#10 = (byte) anim::i#3 Alias (signed word) anim::xpos#0 = (signed word) anim::xpos#1 Alias (signed byte) anim::cos_a#1 = (signed byte) anim::cos_a#2 Alias (byte) anim::angle#10 = (byte) anim::angle#3 -Alias (byte*) SIN#10 = (byte*) SIN#5 Alias (signed byte) anim::sin_a#1 = (signed byte) anim::sin_a#7 +Alias (byte*) COS#10 = (byte*) COS#13 Successful SSA optimization Pass2AliasElimination Self Phi Eliminated (byte*) init::sprites_ptr#1 +Self Phi Eliminated (byte*) COS#1 Self Phi Eliminated (byte) anim::angle#2 -Self Phi Eliminated (byte*) SIN#1 Self Phi Eliminated (signed byte) anim::cos_a#1 Self Phi Eliminated (signed byte) anim::sin_a#1 Self Phi Eliminated (byte) anim::angle#10 -Self Phi Eliminated (byte*) SIN#10 +Self Phi Eliminated (byte*) COS#10 Successful SSA optimization Pass2SelfPhiElimination Identical Phi Values (byte) mulf8u_prepared::b#1 (byte) mulf8u_prepared::b#0 -Identical Phi Values (byte*) SIN#6 (byte*) SIN#0 +Identical Phi Values (dword) print_dword_at::dw#1 (dword) print_dword_at::dw#0 +Identical Phi Values (byte*) print_dword_at::at#1 (byte*) print_dword_at::at#0 +Identical Phi Values (byte*) COS#7 (byte*) COS#0 Identical Phi Values (byte*) init::sprites_ptr#1 (byte*) init::sprites_ptr#0 -Identical Phi Values (byte*) SIN#4 (byte*) SIN#6 -Identical Phi Values (byte) anim::angle#2 (byte) anim::angle#6 -Identical Phi Values (byte*) SIN#1 (byte*) SIN#3 +Identical Phi Values (byte*) COS#5 (byte*) COS#7 +Identical Phi Values (byte*) COS#1 (byte*) COS#4 +Identical Phi Values (byte) anim::angle#2 (byte) anim::angle#9 Identical Phi Values (signed byte) anim::cos_a#1 (signed byte) anim::cos_a#0 Identical Phi Values (signed byte) anim::sin_a#1 (signed byte) anim::sin_a#0 Identical Phi Values (byte) anim::angle#10 (byte) anim::angle#2 -Identical Phi Values (byte*) SIN#10 (byte*) SIN#1 +Identical Phi Values (byte*) COS#10 (byte*) COS#1 Successful SSA optimization Pass2IdenticalPhiElimination -Simple Condition (bool~) mulf_init::$9 [25] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -Simple Condition (bool~) mulf_init::$14 [37] if((byte*) mulf_init::sqr1_lo#1!=(byte*~) mulf_init::$13) goto mulf_init::@1 -Simple Condition (bool~) mulf_init::$17 [54] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@6 -Simple Condition (bool~) mulf_init::$19 [59] if((byte*) mulf_init::sqr2_lo#1!=(byte*~) mulf_init::$18) goto mulf_init::@5 -Simple Condition (bool~) mulf8s_prepared::$3 [95] if(*((signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 -Simple Condition (bool~) mulf8s_prepared::$5 [99] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 -Simple Condition (bool~) init::$4 [140] if((byte) init::i#1!=rangelast(0,7)) goto init::@1 -Simple Condition (bool~) anim::$0 [151] if(*((byte*) RASTER#0)!=(byte) $ff) goto anim::@4 -Simple Condition (bool~) anim::$20 [215] if((byte~) anim::$18==(byte) 0) goto anim::@11 -Simple Condition (bool~) anim::$26 [228] if((byte) anim::i#1!=rangelast(0,7)) goto anim::@10 +Identified duplicate assignment right side [135] (byte~) clock_start::$2 ← (byte) CIA_TIMER_CONTROL_STOP#0 | (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 +Identified duplicate assignment right side [142] (byte~) clock_start::$6 ← (byte) CIA_TIMER_CONTROL_START#0 | (byte) CIA_TIMER_CONTROL_CONTINUOUS#0 +Successful SSA optimization Pass2DuplicateRValueIdentification +Simple Condition (bool~) mulf_init::$9 [33] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 +Simple Condition (bool~) mulf_init::$14 [45] if((byte*) mulf_init::sqr1_lo#1!=(byte*~) mulf_init::$13) goto mulf_init::@1 +Simple Condition (bool~) mulf_init::$17 [62] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@6 +Simple Condition (bool~) mulf_init::$19 [67] if((byte*) mulf_init::sqr2_lo#1!=(byte*~) mulf_init::$18) goto mulf_init::@5 +Simple Condition (bool~) mulf8s_prepared::$3 [103] if(*((signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 +Simple Condition (bool~) mulf8s_prepared::$5 [107] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 +Simple Condition (bool~) init::$4 [208] if((byte) init::i#1!=rangelast(0,7)) goto init::@1 +Simple Condition (bool~) anim::$0 [219] if(*((byte*) RASTER#0)!=(byte) $ff) goto anim::@4 +Simple Condition (bool~) anim::$21 [285] if((byte~) anim::$19==(byte) 0) goto anim::@11 +Simple Condition (bool~) anim::$27 [298] if((byte) anim::i#1!=rangelast(0,7)) goto anim::@10 Successful SSA optimization Pass2ConditionalJumpSimplification -Constant right-side identified [9] (byte[$200]) mulf_sqr1_lo#0 ← { fill( $200, 0) } -Constant right-side identified [10] (byte[$200]) mulf_sqr1_hi#0 ← { fill( $200, 0) } -Constant right-side identified [11] (byte[$200]) mulf_sqr2_lo#0 ← { fill( $200, 0) } -Constant right-side identified [12] (byte[$200]) mulf_sqr2_hi#0 ← { fill( $200, 0) } -Constant right-side identified [143] (signed byte[8]) xs#0 ← { (signed byte) -$46, (signed byte) -$46, (signed byte) -$46, (signed byte) 0, (signed byte) 0, (signed byte) $46, (signed byte) $46, (signed byte) $46 } -Constant right-side identified [144] (signed byte[8]) ys#0 ← { (signed byte) -$46, (signed byte) 0, (signed byte) $46, (signed byte) -$46, (signed byte) $46, (signed byte) -$46, (signed byte) 0, (signed byte) $46 } +Constant right-side identified [17] (byte[$200]) mulf_sqr1_lo#0 ← { fill( $200, 0) } +Constant right-side identified [18] (byte[$200]) mulf_sqr1_hi#0 ← { fill( $200, 0) } +Constant right-side identified [19] (byte[$200]) mulf_sqr2_lo#0 ← { fill( $200, 0) } +Constant right-side identified [20] (byte[$200]) mulf_sqr2_hi#0 ← { fill( $200, 0) } +Constant right-side identified [211] (signed byte[8]) xs#0 ← { (signed byte) -$46, (signed byte) -$46, (signed byte) -$46, (signed byte) 0, (signed byte) 0, (signed byte) $46, (signed byte) $46, (signed byte) $46 } +Constant right-side identified [212] (signed byte[8]) ys#0 ← { (signed byte) -$46, (signed byte) 0, (signed byte) $46, (signed byte) -$46, (signed byte) $46, (signed byte) -$46, (signed byte) 0, (signed byte) $46 } Successful SSA optimization Pass2ConstantRValueConsolidation Constant (const byte*) SPRITES_XPOS#0 = (byte*) 53248 Constant (const byte*) SPRITES_YPOS#0 = (byte*) 53249 @@ -1295,6 +1664,14 @@ Constant (const byte*) RASTER#0 = (byte*) 53266 Constant (const byte*) SPRITES_ENABLE#0 = (byte*) 53269 Constant (const byte*) BORDERCOL#0 = (byte*) 53280 Constant (const byte*) SPRITES_COLS#0 = (byte*) 53287 +Constant (const dword*) CIA2_TIMER_AB#0 = (dword*) 56580 +Constant (const byte*) CIA2_TIMER_A_CONTROL#0 = (byte*) 56590 +Constant (const byte*) CIA2_TIMER_B_CONTROL#0 = (byte*) 56591 +Constant (const byte) CIA_TIMER_CONTROL_STOP#0 = 0 +Constant (const byte) CIA_TIMER_CONTROL_START#0 = 1 +Constant (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 = 0 +Constant (const byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 = 0 +Constant (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 = $40 Constant (const byte) GREEN#0 = 5 Constant (const byte) LIGHT_BLUE#0 = $e Constant (const byte[$200]) mulf_sqr1_lo#0 = { fill( $200, 0) } @@ -1311,16 +1688,11 @@ Constant (const byte*) mulf8u_prepare::memA#0 = (byte*) 253 Constant (const byte*) mulf8u_prepared::resL#0 = (byte*) 254 Constant (const byte*) mulf8u_prepared::memB#0 = (byte*) 255 Constant (const signed byte*) mulf8s_prepared::memA#0 = (signed byte*) 253 +Constant (const dword) CLOCKS_PER_INIT#0 = $12 +Constant (const byte[]) print_hextab#0 = $2 Constant (const byte*) SCREEN#0 = (byte*) 1024 -Constant (const byte[$140]) COS#0 = kickasm {{ { - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } +Constant (const byte[$140]) SIN#0 = kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) }} Constant (const byte) init::i#0 = 0 Constant (const signed byte[8]) xs#0 = { -$46, -$46, -$46, 0, 0, $46, $46, $46 } @@ -1332,13 +1704,24 @@ Constant (const byte*) SPRITE#0 = (byte*) 12288 Successful SSA optimization Pass2ConstantIdentification Constant (const byte*) mulf_init::sqr2_hi#0 = mulf_sqr2_hi#0 Constant (const byte*) mulf_init::sqr2_lo#0 = mulf_sqr2_lo#0 +Constant (const byte*) print_dword_at::at#0 = SCREEN#0 Successful SSA optimization Pass2ConstantIdentification -if() condition always true - replacing block destination [148] if(true) goto anim::@4 +Constant (const byte*) print_word_at::at#0 = print_dword_at::at#0 +Successful SSA optimization Pass2ConstantIdentification +if() condition always true - replacing block destination [216] if(true) goto anim::@4 Successful SSA optimization Pass2ConstantIfs -Resolved ranged next value [138] init::i#1 ← ++ init::i#2 to ++ -Resolved ranged comparison value [140] if(init::i#1!=rangelast(0,7)) goto init::@1 to (number) 8 -Resolved ranged next value [226] anim::i#1 ← ++ anim::i#10 to ++ -Resolved ranged comparison value [228] if(anim::i#1!=rangelast(0,7)) goto anim::@10 to (number) 8 +Resolved ranged next value [206] init::i#1 ← ++ init::i#2 to ++ +Resolved ranged comparison value [208] if(init::i#1!=rangelast(0,7)) goto init::@1 to (number) 8 +Resolved ranged next value [296] anim::i#1 ← ++ anim::i#10 to ++ +Resolved ranged comparison value [298] if(anim::i#1!=rangelast(0,7)) goto anim::@10 to (number) 8 +Simplifying expression containing zero CIA_TIMER_CONTROL_CONTINUOUS#0 in [132] (byte~) clock_start::$0 ← (const byte) CIA_TIMER_CONTROL_STOP#0 | (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 +Simplifying expression containing zero clock_start::$0 in [133] (byte~) clock_start::$1 ← (byte~) clock_start::$0 | (const byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 +Simplifying expression containing zero CIA_TIMER_CONTROL_START#0 in [139] (byte~) clock_start::$4 ← (const byte) CIA_TIMER_CONTROL_START#0 | (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 +Simplifying expression containing zero clock_start::$6 in [143] (byte~) clock_start::$7 ← (byte~) clock_start::$6 | (const byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 +Successful SSA optimization PassNSimplifyExpressionWithZero +Eliminating unused constant (const byte) CIA_TIMER_CONTROL_STOP#0 +Eliminating unused constant (const byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES#0 +Successful SSA optimization PassNEliminateUnusedVars Removing unused block anim::@return Successful SSA optimization Pass2EliminateUnusedBlocks Adding number conversion cast (unumber) 8 in if((byte) init::i#1!=(number) 8) goto init::@1 @@ -1350,9 +1733,12 @@ Successful SSA optimization PassNCastSimplification Finalized unsigned number type (byte) 8 Finalized unsigned number type (byte) 8 Successful SSA optimization PassNFinalizeNumberTypeConversions -Self Phi Eliminated (byte*) SIN#3 +Alias (byte~) clock_start::$1 = (byte~) clock_start::$0 (byte~) clock_start::$2 +Alias (byte~) clock_start::$6 = (byte~) clock_start::$4 (byte~) clock_start::$7 +Successful SSA optimization Pass2AliasElimination +Self Phi Eliminated (byte*) COS#4 Successful SSA optimization Pass2SelfPhiElimination -Identical Phi Values (byte*) SIN#3 (byte*) SIN#0 +Identical Phi Values (byte*) COS#4 (byte*) COS#0 Successful SSA optimization Pass2IdenticalPhiElimination Constant right-side identified [0] (byte*) mulf_init::sqr1_hi#0 ← (const byte[$200]) mulf_sqr1_hi#0 + (byte) 1 Constant right-side identified [1] (byte*) mulf_init::sqr1_lo#0 ← (const byte[$200]) mulf_sqr1_lo#0 + (byte) 1 @@ -1362,9 +1748,10 @@ Constant right-side identified [28] (byte*~) mulf_init::$2 ← (const byte[$200] Constant right-side identified [29] (byte*~) mulf_init::$3 ← (const byte[$200]) mulf_sqr1_lo#0 + (word) $100 Constant right-side identified [31] (byte*~) mulf_init::$4 ← (const byte[$200]) mulf_sqr2_hi#0 + (word) $1ff Constant right-side identified [32] (byte*~) mulf_init::$5 ← (const byte[$200]) mulf_sqr1_hi#0 + (word) $100 -Constant right-side identified [62] (byte*) SIN#0 ← (const byte[$140]) COS#0 + (byte) $40 -Constant right-side identified [69] (byte*) init::sprites_ptr#0 ← (const byte*) SCREEN#0 + (word) $3f8 -Constant right-side identified [71] (byte*~) init::$2 ← (const byte*) SPRITE#0 / (byte) $40 +Constant right-side identified [89] (byte*) print_word_at::at#1 ← (const byte*) print_dword_at::at#0 + (byte) 4 +Constant right-side identified [105] (byte*) COS#0 ← (const byte[$140]) SIN#0 + (byte) $40 +Constant right-side identified [112] (byte*) init::sprites_ptr#0 ← (const byte*) SCREEN#0 + (word) $3f8 +Constant right-side identified [114] (byte*~) init::$2 ← (const byte*) SPRITE#0 / (byte) $40 Successful SSA optimization Pass2ConstantRValueConsolidation Constant (const byte*) mulf_init::sqr1_hi#0 = mulf_sqr1_hi#0+1 Constant (const byte*) mulf_init::sqr1_lo#0 = mulf_sqr1_lo#0+1 @@ -1374,35 +1761,44 @@ Constant (const byte*) mulf_init::$2 = mulf_sqr2_lo#0+$1ff Constant (const byte*) mulf_init::$3 = mulf_sqr1_lo#0+$100 Constant (const byte*) mulf_init::$4 = mulf_sqr2_hi#0+$1ff Constant (const byte*) mulf_init::$5 = mulf_sqr1_hi#0+$100 -Constant (const byte*) SIN#0 = COS#0+$40 +Constant (const byte) clock_start::$1 = CIA_TIMER_CONTROL_CONTINUOUS#0 +Constant (const byte) clock_start::$6 = CIA_TIMER_CONTROL_START#0 +Constant (const byte*) print_word_at::at#1 = print_dword_at::at#0+4 +Constant (const byte*) COS#0 = SIN#0+$40 Constant (const byte*) init::sprites_ptr#0 = SCREEN#0+$3f8 Constant (const byte*) init::$2 = SPRITE#0/$40 Successful SSA optimization Pass2ConstantIdentification -Constant value identified (byte)init::$2 in [72] (byte~) init::$3 ← (byte)(const byte*) init::$2 +Constant value identified (byte)init::$2 in [115] (byte~) init::$3 ← (byte)(const byte*) init::$2 Successful SSA optimization Pass2ConstantValues +Simplifying expression containing zero CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 in [68] (byte~) clock_start::$3 ← (const byte) clock_start::$1 | (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 +Successful SSA optimization PassNSimplifyExpressionWithZero +Constant right-side identified [60] (byte~) clock_start::$5 ← (const byte) clock_start::$6 | (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 +Successful SSA optimization Pass2ConstantRValueConsolidation +Constant (const byte) clock_start::$3 = CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 +Constant (const byte) clock_start::$5 = clock_start::$6|CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 Constant (const byte) init::$3 = (byte)init::$2 Successful SSA optimization Pass2ConstantIdentification Inlining Noop Cast [44] (byte~) mulf8s_prepared::$9 ← (byte)(signed byte) mulf8s_prepared::b#4 keeping mulf8s_prepared::b#4 Inlining Noop Cast [48] (signed word) mulf8s_prepared::return#0 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 Inlining Noop Cast [50] (byte~) mulf8s_prepared::$13 ← (byte)*((const signed byte*) mulf8s_prepared::memA#0) keeping *(mulf8s_prepared::memA#0) -Inlining Noop Cast [69] (signed byte) anim::cos_a#0 ← (signed byte)*((const byte[$140]) COS#0 + (byte) anim::angle#6) keeping *(COS#0 + anim::angle#6) -Inlining Noop Cast [70] (signed byte) anim::sin_a#0 ← (signed byte)*((const byte*) SIN#0 + (byte) anim::angle#6) keeping *(SIN#0 + anim::angle#6) +Inlining Noop Cast [104] (signed byte) anim::cos_a#0 ← (signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) keeping *(COS#0 + anim::angle#9) +Inlining Noop Cast [105] (signed byte) anim::sin_a#0 ← (signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) keeping *(SIN#0 + anim::angle#9) Successful SSA optimization Pass2NopCastInlining -Inlining Noop Cast [74] (byte) mulf8u_prepare::a#0 ← (byte)(signed byte)*((const byte[$140]) COS#0 + (byte) anim::angle#6) keeping (signed byte)*(COS#0 + anim::angle#6) -Inlining Noop Cast [78] (signed word) mulf8s_prepared::return#2 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 -Inlining Noop Cast [83] (signed word) mulf8s_prepared::return#3 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 -Inlining Noop Cast [86] (byte) mulf8u_prepare::a#1 ← (byte)(signed byte)*((const byte*) SIN#0 + (byte) anim::angle#6) keeping (signed byte)*(SIN#0 + anim::angle#6) -Inlining Noop Cast [90] (signed word) mulf8s_prepared::return#4 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 -Inlining Noop Cast [96] (signed word) mulf8s_prepared::return#10 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 +Inlining Noop Cast [109] (byte) mulf8u_prepare::a#0 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) keeping (signed byte)*(COS#0 + anim::angle#9) +Inlining Noop Cast [113] (signed word) mulf8s_prepared::return#2 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 +Inlining Noop Cast [118] (signed word) mulf8s_prepared::return#3 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 +Inlining Noop Cast [121] (byte) mulf8u_prepare::a#1 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) keeping (signed byte)*(SIN#0 + anim::angle#9) +Inlining Noop Cast [125] (signed word) mulf8s_prepared::return#4 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 +Inlining Noop Cast [131] (signed word) mulf8s_prepared::return#10 ← (signed word)(word) mulf8s_prepared::m#4 keeping mulf8s_prepared::m#4 Successful SSA optimization Pass2NopCastInlining -Inlining Noop Cast [101] (signed byte~) anim::$14 ← (signed byte)(byte~) anim::$13 keeping anim::$14 +Inlining Noop Cast [136] (signed byte~) anim::$15 ← (signed byte)(byte~) anim::$14 keeping anim::$15 Successful SSA optimization Pass2NopCastInlining -Rewriting multiplication to use shift [80] (signed word) anim::xr#0 ← (signed word~) anim::$4 * (signed byte) 2 -Rewriting multiplication to use shift [85] (signed word) anim::yr#0 ← (signed word~) anim::$6 * (signed byte) 2 -Rewriting multiplication to use shift [92] (signed word~) anim::$10 ← (signed word~) anim::$9 * (signed byte) 2 -Rewriting multiplication to use shift [98] (signed word~) anim::$12 ← (signed word~) anim::$11 * (signed byte) 2 -Rewriting division to use shift [104] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 / (byte) 2 -Rewriting multiplication to use shift [111] (byte) anim::i2#0 ← (byte) anim::i#10 * (byte) 2 +Rewriting multiplication to use shift [115] (signed word) anim::xr#0 ← (signed word~) anim::$5 * (signed byte) 2 +Rewriting multiplication to use shift [120] (signed word) anim::yr#0 ← (signed word~) anim::$7 * (signed byte) 2 +Rewriting multiplication to use shift [127] (signed word~) anim::$11 ← (signed word~) anim::$10 * (signed byte) 2 +Rewriting multiplication to use shift [133] (signed word~) anim::$13 ← (signed word~) anim::$12 * (signed byte) 2 +Rewriting division to use shift [139] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 / (byte) 2 +Rewriting multiplication to use shift [146] (byte) anim::i2#0 ← (byte) anim::i#10 * (byte) 2 Successful SSA optimization Pass2MultiplyToShiftRewriting Inlining constant with var siblings (const word) mulf_init::sqr#0 Inlining constant with var siblings (const byte) mulf_init::x_2#0 @@ -1414,39 +1810,49 @@ Inlining constant with var siblings (const byte*) mulf_init::sqr2_hi#0 Inlining constant with var siblings (const byte*) mulf_init::sqr2_lo#0 Inlining constant with var siblings (const byte*) mulf_init::sqr1_hi#0 Inlining constant with var siblings (const byte*) mulf_init::sqr1_lo#0 +Inlining constant with var siblings (const byte*) print_word_at::at#0 +Inlining constant with var siblings (const byte*) print_word_at::at#1 Inlining constant with var siblings (const byte) init::i#0 Inlining constant with var siblings (const byte) anim::angle#0 Inlining constant with var siblings (const byte) anim::sprite_msb#0 Inlining constant with var siblings (const byte) anim::i#0 Constant inlined mulf_init::c#0 = (byte) 0 Constant inlined mulf_init::sqr2_lo#0 = (const byte[$200]) mulf_sqr2_lo#0 -Constant inlined mulf_init::sqr#0 = (byte) 0 Constant inlined anim::sprite_msb#0 = (byte) 0 Constant inlined init::i#0 = (byte) 0 Constant inlined mulf_init::sqr2_hi#0 = (const byte[$200]) mulf_sqr2_hi#0 Constant inlined mulf_init::$2 = (const byte[$200]) mulf_sqr2_lo#0+(word) $1ff Constant inlined mulf_init::$4 = (const byte[$200]) mulf_sqr2_hi#0+(word) $1ff -Constant inlined init::$3 = (byte)(const byte*) SPRITE#0/(byte) $40 +Constant inlined clock_start::$5 = (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 +Constant inlined clock_start::$6 = (const byte) CIA_TIMER_CONTROL_START#0 Constant inlined mulf_init::$3 = (const byte[$200]) mulf_sqr1_lo#0+(word) $100 -Constant inlined init::$2 = (const byte*) SPRITE#0/(byte) $40 -Constant inlined anim::angle#0 = (byte) 0 +Constant inlined clock_start::$3 = (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 +Constant inlined $2 = (const byte[]) print_hextab#0 Constant inlined anim::i#0 = (byte) 0 Constant inlined mulf_init::$5 = (const byte[$200]) mulf_sqr1_hi#0+(word) $100 Constant inlined mulf_init::dir#1 = (byte) 1 Constant inlined mulf_init::dir#0 = (byte) $ff +Constant inlined print_dword_at::at#0 = (const byte*) SCREEN#0 +Constant inlined mulf_init::x_255#0 = (byte) -1 +Constant inlined mulf_init::x_2#0 = (byte) 0 +Constant inlined mulf_init::sqr#0 = (byte) 0 +Constant inlined init::$3 = (byte)(const byte*) SPRITE#0/(byte) $40 +Constant inlined init::$2 = (const byte*) SPRITE#0/(byte) $40 +Constant inlined anim::angle#0 = (byte) 0 +Constant inlined clock_start::$1 = (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 Constant inlined mulf_init::sqr1_hi#0 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 Constant inlined mulf_init::sqr1_lo#0 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 -Constant inlined mulf_init::x_255#0 = (byte) -1 +Constant inlined print_word_at::at#1 = (const byte*) SCREEN#0+(byte) 4 +Constant inlined print_word_at::at#0 = (const byte*) SCREEN#0 Constant inlined mulf_init::$13 = (const byte[$200]) mulf_sqr1_lo#0+(word) $200 Constant inlined mulf_init::$18 = (const byte[$200]) mulf_sqr2_lo#0+(word) $1ff -Constant inlined mulf_init::x_2#0 = (byte) 0 Successful SSA optimization Pass2ConstantInlining Consolidated constant in assignment anim::xpos#0 Consolidated constant in assignment anim::ypos#0 Successful SSA optimization Pass2ConstantAdditionElimination -Alias (byte~) anim::$22 = (byte~) anim::$21 +Alias (byte~) anim::$23 = (byte~) anim::$22 Successful SSA optimization Pass2AliasElimination -Inlining Noop Cast [90] (signed byte~) anim::$15 ← (signed byte)(byte~) anim::$14 keeping anim::$15 +Inlining Noop Cast [125] (signed byte~) anim::$16 ← (signed byte)(byte~) anim::$15 keeping anim::$16 Successful SSA optimization Pass2NopCastInlining Added new block during phi lifting mulf_init::@9(between mulf_init::@2 and mulf_init::@1) Added new block during phi lifting mulf_init::@10(between mulf_init::@1 and mulf_init::@2) @@ -1455,69 +1861,94 @@ Added new block during phi lifting mulf_init::@12(between mulf_init::@5 and mulf Added new block during phi lifting mulf8s_prepared::@7(between mulf8s_prepared::@6 and mulf8s_prepared::@1) Added new block during phi lifting mulf8s_prepared::@8(between mulf8s_prepared::@1 and mulf8s_prepared::@2) Added new block during phi lifting init::@4(between init::@1 and init::@1) -Added new block during phi lifting anim::@25(between anim::@11 and anim::@10) -Added new block during phi lifting anim::@26(between anim::@24 and anim::@11) +Added new block during phi lifting anim::@28(between anim::@11 and anim::@10) +Added new block during phi lifting anim::@29(between anim::@25 and anim::@11) Adding NOP phi() at start of @begin Adding NOP phi() at start of @4 Adding NOP phi() at start of @13 -Adding NOP phi() at start of @15 -Adding NOP phi() at start of @17 +Adding NOP phi() at start of @43 +Adding NOP phi() at start of @50 +Adding NOP phi() at start of @52 +Adding NOP phi() at start of @54 Adding NOP phi() at start of @end Adding NOP phi() at start of main::@1 Adding NOP phi() at start of main::@2 Adding NOP phi() at start of anim Adding NOP phi() at start of anim::@19 -Adding NOP phi() at start of anim::@22 +Adding NOP phi() at start of anim::@20 +Adding NOP phi() at start of anim::@23 +Adding NOP phi() at start of print_dword_at::@2 +Adding NOP phi() at start of print_word_at::@2 +Adding NOP phi() at start of print_byte_at::@2 Adding NOP phi() at start of init Adding NOP phi() at start of mulf_init Adding NOP phi() at start of mulf_init::@4 Adding NOP phi() at start of mulf_init::@7 CALL GRAPH -Calls in [] to main:5 -Calls in [main] to init:9 anim:11 -Calls in [anim] to mulf8u_prepare:22 mulf8s_prepared:26 mulf8s_prepared:31 mulf8u_prepare:35 mulf8s_prepared:39 mulf8s_prepared:45 -Calls in [mulf8s_prepared] to mulf8u_prepared:74 -Calls in [init] to mulf_init:101 +Calls in [] to main:7 +Calls in [main] to init:11 anim:13 +Calls in [anim] to clock_start:20 mulf8u_prepare:26 mulf8s_prepared:30 mulf8s_prepared:35 mulf8u_prepare:39 mulf8s_prepared:43 mulf8s_prepared:49 clock:71 print_dword_at:76 +Calls in [print_dword_at] to print_word_at:84 print_word_at:87 +Calls in [print_word_at] to print_byte_at:95 print_byte_at:100 +Calls in [print_byte_at] to print_char_at:109 print_char_at:115 +Calls in [mulf8s_prepared] to mulf8u_prepared:125 +Calls in [init] to mulf_init:158 -Created 21 initial phi equivalence classes -Coalesced [25] mulf8s_prepared::b#8 ← mulf8s_prepared::b#0 -Coalesced [30] mulf8s_prepared::b#10 ← mulf8s_prepared::b#1 -Coalesced [38] mulf8s_prepared::b#9 ← mulf8s_prepared::b#2 -Coalesced [44] mulf8s_prepared::b#11 ← mulf8s_prepared::b#3 -Coalesced [55] anim::sprite_msb#18 ← anim::sprite_msb#2 -Coalesced [68] anim::angle#19 ← anim::angle#1 -Coalesced [69] anim::i#15 ← anim::i#1 -Coalesced [70] anim::sprite_msb#17 ← anim::sprite_msb#5 -Coalesced [71] anim::sprite_msb#19 ← anim::sprite_msb#1 -Coalesced [81] mulf8s_prepared::m#7 ← mulf8s_prepared::m#1 -Coalesced [87] mulf8s_prepared::m#10 ← mulf8s_prepared::m#2 -Coalesced [90] mulf8s_prepared::m#9 ← mulf8s_prepared::m#5 -Coalesced [91] mulf8s_prepared::m#8 ← mulf8s_prepared::m#0 -Coalesced [109] init::i#3 ← init::i#1 -Coalesced [117] mulf_init::sqr#8 ← mulf_init::sqr#2 -Coalesced [118] mulf_init::x_2#7 ← mulf_init::x_2#1 -Coalesced [142] mulf_init::x_255#5 ← mulf_init::x_255#1 -Coalesced [143] mulf_init::sqr2_lo#5 ← mulf_init::sqr2_lo#1 -Coalesced [144] mulf_init::sqr2_hi#5 ← mulf_init::sqr2_hi#1 -Coalesced [145] mulf_init::dir#4 ← mulf_init::dir#3 -Coalesced (already) [146] mulf_init::dir#5 ← mulf_init::dir#2 -Coalesced [147] mulf_init::c#5 ← mulf_init::c#1 -Coalesced [148] mulf_init::sqr#6 ← mulf_init::sqr#1 -Coalesced [149] mulf_init::sqr1_lo#5 ← mulf_init::sqr1_lo#1 -Coalesced [150] mulf_init::sqr1_hi#5 ← mulf_init::sqr1_hi#1 -Coalesced [151] mulf_init::x_2#5 ← mulf_init::x_2#2 -Coalesced [152] mulf_init::sqr#7 ← mulf_init::sqr#4 -Coalesced (already) [153] mulf_init::x_2#6 ← mulf_init::x_2#3 -Coalesced down to 16 phi equivalence classes +Created 27 initial phi equivalence classes +Coalesced [29] mulf8s_prepared::b#8 ← mulf8s_prepared::b#0 +Coalesced [34] mulf8s_prepared::b#10 ← mulf8s_prepared::b#1 +Coalesced [42] mulf8s_prepared::b#9 ← mulf8s_prepared::b#2 +Coalesced [48] mulf8s_prepared::b#11 ← mulf8s_prepared::b#3 +Coalesced [59] anim::sprite_msb#18 ← anim::sprite_msb#2 +Coalesced [78] anim::angle#22 ← anim::angle#1 +Coalesced [79] anim::i#15 ← anim::i#1 +Coalesced [80] anim::sprite_msb#17 ← anim::sprite_msb#5 +Coalesced [81] anim::sprite_msb#19 ← anim::sprite_msb#1 +Coalesced [83] print_word_at::w#4 ← print_word_at::w#0 +Coalesced [86] print_word_at::w#5 ← print_word_at::w#1 +Coalesced [93] print_byte_at::b#4 ← print_byte_at::b#0 +Coalesced [94] print_byte_at::at#4 ← print_byte_at::at#0 +Coalesced [98] print_byte_at::b#5 ← print_byte_at::b#1 +Coalesced [99] print_byte_at::at#5 ← print_byte_at::at#1 +Coalesced [107] print_char_at::ch#3 ← print_char_at::ch#0 +Coalesced [108] print_char_at::at#3 ← print_char_at::at#0 +Coalesced [113] print_char_at::ch#4 ← print_char_at::ch#1 +Coalesced [114] print_char_at::at#4 ← print_char_at::at#1 +Coalesced [132] mulf8s_prepared::m#7 ← mulf8s_prepared::m#1 +Coalesced [138] mulf8s_prepared::m#10 ← mulf8s_prepared::m#2 +Coalesced [141] mulf8s_prepared::m#9 ← mulf8s_prepared::m#5 +Coalesced [142] mulf8s_prepared::m#8 ← mulf8s_prepared::m#0 +Coalesced [166] init::i#3 ← init::i#1 +Coalesced [174] mulf_init::sqr#8 ← mulf_init::sqr#2 +Coalesced [175] mulf_init::x_2#7 ← mulf_init::x_2#1 +Coalesced [199] mulf_init::x_255#5 ← mulf_init::x_255#1 +Coalesced [200] mulf_init::sqr2_lo#5 ← mulf_init::sqr2_lo#1 +Coalesced [201] mulf_init::sqr2_hi#5 ← mulf_init::sqr2_hi#1 +Coalesced [202] mulf_init::dir#4 ← mulf_init::dir#3 +Coalesced (already) [203] mulf_init::dir#5 ← mulf_init::dir#2 +Coalesced [204] mulf_init::c#5 ← mulf_init::c#1 +Coalesced [205] mulf_init::sqr#6 ← mulf_init::sqr#1 +Coalesced [206] mulf_init::sqr1_lo#5 ← mulf_init::sqr1_lo#1 +Coalesced [207] mulf_init::sqr1_hi#5 ← mulf_init::sqr1_hi#1 +Coalesced [208] mulf_init::x_2#5 ← mulf_init::x_2#2 +Coalesced [209] mulf_init::sqr#7 ← mulf_init::sqr#4 +Coalesced (already) [210] mulf_init::x_2#6 ← mulf_init::x_2#3 +Coalesced down to 22 phi equivalence classes Culled Empty Block (label) @4 Culled Empty Block (label) @13 -Culled Empty Block (label) @15 -Culled Empty Block (label) @17 +Culled Empty Block (label) @43 +Culled Empty Block (label) @50 +Culled Empty Block (label) @52 +Culled Empty Block (label) @54 Culled Empty Block (label) main::@2 Culled Empty Block (label) anim::@19 -Culled Empty Block (label) anim::@22 -Culled Empty Block (label) anim::@25 -Culled Empty Block (label) anim::@26 +Culled Empty Block (label) anim::@20 +Culled Empty Block (label) anim::@23 +Culled Empty Block (label) anim::@28 +Culled Empty Block (label) anim::@29 +Culled Empty Block (label) print_dword_at::@2 +Culled Empty Block (label) print_word_at::@2 +Culled Empty Block (label) print_byte_at::@2 Culled Empty Block (label) mulf8s_prepared::@8 Culled Empty Block (label) mulf8s_prepared::@7 Culled Empty Block (label) init::@4 @@ -1526,7 +1957,7 @@ Culled Empty Block (label) mulf_init::@7 Culled Empty Block (label) mulf_init::@11 Culled Empty Block (label) mulf_init::@9 Culled Empty Block (label) mulf_init::@10 -Renumbering block @16 to @1 +Renumbering block @53 to @1 Renumbering block mulf_init::@5 to mulf_init::@4 Renumbering block mulf_init::@6 to mulf_init::@5 Renumbering block mulf_init::@8 to mulf_init::@6 @@ -1541,10 +1972,12 @@ Renumbering block anim::@12 to anim::@6 Renumbering block anim::@13 to anim::@7 Renumbering block anim::@17 to anim::@8 Renumbering block anim::@18 to anim::@9 -Renumbering block anim::@20 to anim::@10 -Renumbering block anim::@21 to anim::@11 -Renumbering block anim::@23 to anim::@12 -Renumbering block anim::@24 to anim::@13 +Renumbering block anim::@21 to anim::@10 +Renumbering block anim::@22 to anim::@11 +Renumbering block anim::@24 to anim::@12 +Renumbering block anim::@25 to anim::@13 +Renumbering block anim::@26 to anim::@14 +Renumbering block anim::@27 to anim::@15 Adding NOP phi() at start of @begin Adding NOP phi() at start of @end Adding NOP phi() at start of main::@1 @@ -1581,211 +2014,298 @@ main::@return: scope:[main] from main::@1 anim: scope:[anim] from main::@1 [9] phi() to:anim::@1 -anim::@1: scope:[anim] from anim anim::@7 - [10] (byte) anim::angle#6 ← phi( anim/(byte) 0 anim::@7/(byte) anim::angle#1 ) +anim::@1: scope:[anim] from anim anim::@15 + [10] (byte) anim::angle#9 ← phi( anim/(byte) 0 anim::@15/(byte) anim::angle#1 ) to:anim::@2 anim::@2: scope:[anim] from anim::@1 anim::@2 [11] if(*((const byte*) RASTER#0)!=(byte) $ff) goto anim::@2 to:anim::@3 anim::@3: scope:[anim] from anim::@2 [12] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) + [13] call clock_start to:anim::@4 anim::@4: scope:[anim] from anim::@3 anim::@5 - [13] (byte) anim::sprite_msb#10 ← phi( anim::@5/(byte) anim::sprite_msb#5 anim::@3/(byte) 0 ) - [13] (byte) anim::i#10 ← phi( anim::@5/(byte) anim::i#1 anim::@3/(byte) 0 ) - [14] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) - [15] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) + [14] (byte) anim::sprite_msb#10 ← phi( anim::@5/(byte) anim::sprite_msb#5 anim::@3/(byte) 0 ) + [14] (byte) anim::i#10 ← phi( anim::@5/(byte) anim::i#1 anim::@3/(byte) 0 ) + [15] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) + [16] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) to:anim::mulf8s_prepare1 anim::mulf8s_prepare1: scope:[anim] from anim::@4 - [16] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte[$140]) COS#0 + (byte) anim::angle#6) - [17] call mulf8u_prepare + [17] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) + [18] call mulf8u_prepare to:anim::@8 anim::@8: scope:[anim] from anim::mulf8s_prepare1 - [18] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 - [19] call mulf8s_prepared + [19] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 + [20] call mulf8s_prepared to:anim::@10 anim::@10: scope:[anim] from anim::@8 - [20] (signed word~) anim::$4 ← (signed word)(word) mulf8s_prepared::m#4 - [21] (signed word) anim::xr#0 ← (signed word~) anim::$4 << (byte) 1 - [22] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 - [23] call mulf8s_prepared + [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 + [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 + [23] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 + [24] call mulf8s_prepared to:anim::@11 anim::@11: scope:[anim] from anim::@10 - [24] (signed word~) anim::$6 ← (signed word)(word) mulf8s_prepared::m#4 - [25] (signed word) anim::yr#0 ← (signed word~) anim::$6 << (byte) 1 + [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 + [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 to:anim::mulf8s_prepare2 anim::mulf8s_prepare2: scope:[anim] from anim::@11 - [26] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte*) SIN#0 + (byte) anim::angle#6) - [27] call mulf8u_prepare + [27] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) + [28] call mulf8u_prepare to:anim::@9 anim::@9: scope:[anim] from anim::mulf8s_prepare2 - [28] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 - [29] call mulf8s_prepared + [29] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 + [30] call mulf8s_prepared to:anim::@12 anim::@12: scope:[anim] from anim::@9 - [30] (signed word~) anim::$9 ← (signed word)(word) mulf8s_prepared::m#4 - [31] (signed word~) anim::$10 ← (signed word~) anim::$9 << (byte) 1 - [32] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$10 - [33] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 - [34] call mulf8s_prepared + [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 + [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 + [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 + [34] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 + [35] call mulf8s_prepared to:anim::@13 anim::@13: scope:[anim] from anim::@12 - [35] (signed word~) anim::$11 ← (signed word)(word) mulf8s_prepared::m#4 - [36] (signed word~) anim::$12 ← (signed word~) anim::$11 << (byte) 1 - [37] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$12 - [38] (byte~) anim::$15 ← > (signed word) anim::xr#1 - [39] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$15 + (signed byte) $18+(signed word) $95 - [40] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 - [41] (byte~) anim::$18 ← > (signed word) anim::xpos#0 - [42] if((byte~) anim::$18==(byte) 0) goto anim::@5 + [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 + [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 + [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 + [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 + [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 + [41] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 + [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 + [43] if((byte~) anim::$19==(byte) 0) goto anim::@5 to:anim::@6 anim::@6: scope:[anim] from anim::@13 - [43] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 + [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 to:anim::@5 anim::@5: scope:[anim] from anim::@13 anim::@6 - [44] (byte) anim::sprite_msb#5 ← phi( anim::@6/(byte) anim::sprite_msb#2 anim::@13/(byte) anim::sprite_msb#1 ) - [45] (byte~) anim::$22 ← > (signed word) anim::yr#1 - [46] (byte) anim::ypos#0 ← (byte~) anim::$22 + (byte) $59+(byte) $33 - [47] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 - [48] (byte~) anim::$25 ← < (signed word) anim::xpos#0 - [49] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$25 - [50] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 - [51] (byte) anim::i#1 ← ++ (byte) anim::i#10 - [52] if((byte) anim::i#1!=(byte) 8) goto anim::@4 + [45] (byte) anim::sprite_msb#5 ← phi( anim::@6/(byte) anim::sprite_msb#2 anim::@13/(byte) anim::sprite_msb#1 ) + [46] (byte~) anim::$23 ← > (signed word) anim::yr#1 + [47] (byte) anim::ypos#0 ← (byte~) anim::$23 + (byte) $59+(byte) $33 + [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 + [49] (byte~) anim::$26 ← < (signed word) anim::xpos#0 + [50] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$26 + [51] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 + [52] (byte) anim::i#1 ← ++ (byte) anim::i#10 + [53] if((byte) anim::i#1!=(byte) 8) goto anim::@4 to:anim::@7 anim::@7: scope:[anim] from anim::@5 - [53] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 - [54] (byte) anim::angle#1 ← ++ (byte) anim::angle#6 - [55] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 + [54] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 + [55] (byte) anim::angle#1 ← ++ (byte) anim::angle#9 + [56] call clock + [57] (dword) clock::return#2 ← (dword) clock::return#0 + to:anim::@14 +anim::@14: scope:[anim] from anim::@7 + [58] (dword~) anim::$28 ← (dword) clock::return#2 + [59] (dword) anim::cyclecount#0 ← (dword~) anim::$28 - (const dword) CLOCKS_PER_INIT#0 + [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 + [61] call print_dword_at + to:anim::@15 +anim::@15: scope:[anim] from anim::@14 + [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 to:anim::@1 -mulf8s_prepared: scope:[mulf8s_prepared] from anim::@10 anim::@12 anim::@8 anim::@9 - [56] (signed byte) mulf8s_prepared::b#4 ← phi( anim::@8/(signed byte) mulf8s_prepared::b#0 anim::@9/(signed byte) mulf8s_prepared::b#2 anim::@10/(signed byte) mulf8s_prepared::b#1 anim::@12/(signed byte) mulf8s_prepared::b#3 ) - [57] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 - [58] call mulf8u_prepared - [59] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 - to:mulf8s_prepared::@5 -mulf8s_prepared::@5: scope:[mulf8s_prepared] from mulf8s_prepared - [60] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 - [61] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 - to:mulf8s_prepared::@3 -mulf8s_prepared::@3: scope:[mulf8s_prepared] from mulf8s_prepared::@5 - [62] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 - [63] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 - [64] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 - to:mulf8s_prepared::@1 -mulf8s_prepared::@1: scope:[mulf8s_prepared] from mulf8s_prepared::@3 mulf8s_prepared::@5 - [65] (word) mulf8s_prepared::m#5 ← phi( mulf8s_prepared::@3/(word) mulf8s_prepared::m#1 mulf8s_prepared::@5/(word) mulf8s_prepared::m#0 ) - [66] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 - to:mulf8s_prepared::@4 -mulf8s_prepared::@4: scope:[mulf8s_prepared] from mulf8s_prepared::@1 - [67] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 - [68] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) - [69] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 - to:mulf8s_prepared::@2 -mulf8s_prepared::@2: scope:[mulf8s_prepared] from mulf8s_prepared::@1 mulf8s_prepared::@4 - [70] (word) mulf8s_prepared::m#4 ← phi( mulf8s_prepared::@1/(word) mulf8s_prepared::m#5 mulf8s_prepared::@4/(word) mulf8s_prepared::m#2 ) - to:mulf8s_prepared::@return -mulf8s_prepared::@return: scope:[mulf8s_prepared] from mulf8s_prepared::@2 - [71] return +print_dword_at: scope:[print_dword_at] from anim::@14 + [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 + [64] call print_word_at + to:print_dword_at::@1 +print_dword_at::@1: scope:[print_dword_at] from print_dword_at + [65] (word) print_word_at::w#1 ← < (dword) print_dword_at::dw#0 + [66] call print_word_at + to:print_dword_at::@return +print_dword_at::@return: scope:[print_dword_at] from print_dword_at::@1 + [67] return to:@return -mulf8u_prepared: scope:[mulf8u_prepared] from mulf8s_prepared - [72] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 - asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } - [74] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) - to:mulf8u_prepared::@return -mulf8u_prepared::@return: scope:[mulf8u_prepared] from mulf8u_prepared +print_word_at: scope:[print_word_at] from print_dword_at print_dword_at::@1 + [68] (byte*) print_word_at::at#2 ← phi( print_dword_at/(const byte*) SCREEN#0 print_dword_at::@1/(const byte*) SCREEN#0+(byte) 4 ) + [68] (word) print_word_at::w#2 ← phi( print_dword_at/(word) print_word_at::w#0 print_dword_at::@1/(word) print_word_at::w#1 ) + [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 + [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 + [71] call print_byte_at + to:print_word_at::@1 +print_word_at::@1: scope:[print_word_at] from print_word_at + [72] (byte) print_byte_at::b#1 ← < (word) print_word_at::w#2 + [73] (byte*) print_byte_at::at#1 ← (byte*) print_word_at::at#2 + (byte) 2 + [74] call print_byte_at + to:print_word_at::@return +print_word_at::@return: scope:[print_word_at] from print_word_at::@1 [75] return to:@return +print_byte_at: scope:[print_byte_at] from print_word_at print_word_at::@1 + [76] (byte*) print_byte_at::at#2 ← phi( print_word_at/(byte*) print_byte_at::at#0 print_word_at::@1/(byte*) print_byte_at::at#1 ) + [76] (byte) print_byte_at::b#2 ← phi( print_word_at/(byte) print_byte_at::b#0 print_word_at::@1/(byte) print_byte_at::b#1 ) + [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 + [78] (byte) print_char_at::ch#0 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$0) + [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 + [80] call print_char_at + to:print_byte_at::@1 +print_byte_at::@1: scope:[print_byte_at] from print_byte_at + [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f + [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 + [83] (byte) print_char_at::ch#1 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$2) + [84] call print_char_at + to:print_byte_at::@return +print_byte_at::@return: scope:[print_byte_at] from print_byte_at::@1 + [85] return + to:@return +print_char_at: scope:[print_char_at] from print_byte_at print_byte_at::@1 + [86] (byte*) print_char_at::at#2 ← phi( print_byte_at/(byte*) print_char_at::at#0 print_byte_at::@1/(byte*) print_char_at::at#1 ) + [86] (byte) print_char_at::ch#2 ← phi( print_byte_at/(byte) print_char_at::ch#0 print_byte_at::@1/(byte) print_char_at::ch#1 ) + [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 + to:print_char_at::@return +print_char_at::@return: scope:[print_char_at] from print_char_at + [88] return + to:@return +clock: scope:[clock] from anim::@7 + [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) + to:clock::@return +clock::@return: scope:[clock] from clock + [90] return + to:@return +mulf8s_prepared: scope:[mulf8s_prepared] from anim::@10 anim::@12 anim::@8 anim::@9 + [91] (signed byte) mulf8s_prepared::b#4 ← phi( anim::@8/(signed byte) mulf8s_prepared::b#0 anim::@9/(signed byte) mulf8s_prepared::b#2 anim::@10/(signed byte) mulf8s_prepared::b#1 anim::@12/(signed byte) mulf8s_prepared::b#3 ) + [92] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 + [93] call mulf8u_prepared + [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 + to:mulf8s_prepared::@5 +mulf8s_prepared::@5: scope:[mulf8s_prepared] from mulf8s_prepared + [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 + [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 + to:mulf8s_prepared::@3 +mulf8s_prepared::@3: scope:[mulf8s_prepared] from mulf8s_prepared::@5 + [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 + [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 + [99] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 + to:mulf8s_prepared::@1 +mulf8s_prepared::@1: scope:[mulf8s_prepared] from mulf8s_prepared::@3 mulf8s_prepared::@5 + [100] (word) mulf8s_prepared::m#5 ← phi( mulf8s_prepared::@3/(word) mulf8s_prepared::m#1 mulf8s_prepared::@5/(word) mulf8s_prepared::m#0 ) + [101] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 + to:mulf8s_prepared::@4 +mulf8s_prepared::@4: scope:[mulf8s_prepared] from mulf8s_prepared::@1 + [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 + [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) + [104] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 + to:mulf8s_prepared::@2 +mulf8s_prepared::@2: scope:[mulf8s_prepared] from mulf8s_prepared::@1 mulf8s_prepared::@4 + [105] (word) mulf8s_prepared::m#4 ← phi( mulf8s_prepared::@1/(word) mulf8s_prepared::m#5 mulf8s_prepared::@4/(word) mulf8s_prepared::m#2 ) + to:mulf8s_prepared::@return +mulf8s_prepared::@return: scope:[mulf8s_prepared] from mulf8s_prepared::@2 + [106] return + to:@return +mulf8u_prepared: scope:[mulf8u_prepared] from mulf8s_prepared + [107] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 + asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } + [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) + to:mulf8u_prepared::@return +mulf8u_prepared::@return: scope:[mulf8u_prepared] from mulf8u_prepared + [110] return + to:@return mulf8u_prepare: scope:[mulf8u_prepare] from anim::mulf8s_prepare1 anim::mulf8s_prepare2 - [76] (byte) mulf8u_prepare::a#2 ← phi( anim::mulf8s_prepare1/(byte~) mulf8u_prepare::a#3 anim::mulf8s_prepare2/(byte~) mulf8u_prepare::a#4 ) - [77] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 + [111] (byte) mulf8u_prepare::a#2 ← phi( anim::mulf8s_prepare1/(byte~) mulf8u_prepare::a#3 anim::mulf8s_prepare2/(byte~) mulf8u_prepare::a#4 ) + [112] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } to:mulf8u_prepare::@return mulf8u_prepare::@return: scope:[mulf8u_prepare] from mulf8u_prepare - [79] return + [114] return + to:@return +clock_start: scope:[clock_start] from anim::@3 + [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 + [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 + [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff + [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 + [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 + to:clock_start::@return +clock_start::@return: scope:[clock_start] from clock_start + [120] return to:@return init: scope:[init] from main - [80] phi() - [81] call mulf_init + [121] phi() + [122] call mulf_init to:init::@2 init::@2: scope:[init] from init - [82] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff + [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff to:init::@1 init::@1: scope:[init] from init::@1 init::@2 - [83] (byte) init::i#2 ← phi( init::@1/(byte) init::i#1 init::@2/(byte) 0 ) - [84] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 - [85] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 - [86] (byte) init::i#1 ← ++ (byte) init::i#2 - [87] if((byte) init::i#1!=(byte) 8) goto init::@1 + [124] (byte) init::i#2 ← phi( init::@1/(byte) init::i#1 init::@2/(byte) 0 ) + [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 + [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 + [127] (byte) init::i#1 ← ++ (byte) init::i#2 + [128] if((byte) init::i#1!=(byte) 8) goto init::@1 to:init::@return init::@return: scope:[init] from init::@1 - [88] return + [129] return to:@return mulf_init: scope:[mulf_init] from init - [89] phi() + [130] phi() to:mulf_init::@1 mulf_init::@1: scope:[mulf_init] from mulf_init mulf_init::@2 - [90] (byte) mulf_init::x_2#3 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::x_2#2 ) - [90] (byte*) mulf_init::sqr1_hi#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_hi#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_hi#1 ) - [90] (byte*) mulf_init::sqr1_lo#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_lo#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_lo#1 ) - [90] (word) mulf_init::sqr#4 ← phi( mulf_init/(byte) 0 mulf_init::@2/(word) mulf_init::sqr#1 ) - [90] (byte) mulf_init::c#2 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::c#1 ) - [91] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 - [92] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 - [93] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 + [131] (byte) mulf_init::x_2#3 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::x_2#2 ) + [131] (byte*) mulf_init::sqr1_hi#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_hi#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_hi#1 ) + [131] (byte*) mulf_init::sqr1_lo#2 ← phi( mulf_init/(const byte[$200]) mulf_sqr1_lo#0+(byte) 1 mulf_init::@2/(byte*) mulf_init::sqr1_lo#1 ) + [131] (word) mulf_init::sqr#4 ← phi( mulf_init/(byte) 0 mulf_init::@2/(word) mulf_init::sqr#1 ) + [131] (byte) mulf_init::c#2 ← phi( mulf_init/(byte) 0 mulf_init::@2/(byte) mulf_init::c#1 ) + [132] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 + [133] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 + [134] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 to:mulf_init::@3 mulf_init::@3: scope:[mulf_init] from mulf_init::@1 - [94] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 - [95] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 + [135] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 + [136] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 to:mulf_init::@2 mulf_init::@2: scope:[mulf_init] from mulf_init::@1 mulf_init::@3 - [96] (byte) mulf_init::x_2#2 ← phi( mulf_init::@1/(byte) mulf_init::x_2#3 mulf_init::@3/(byte) mulf_init::x_2#1 ) - [96] (word) mulf_init::sqr#3 ← phi( mulf_init::@1/(word) mulf_init::sqr#4 mulf_init::@3/(word) mulf_init::sqr#2 ) - [97] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 - [98] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 - [99] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 - [100] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 - [101] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 - [102] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 - [103] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 - [104] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 + [137] (byte) mulf_init::x_2#2 ← phi( mulf_init::@1/(byte) mulf_init::x_2#3 mulf_init::@3/(byte) mulf_init::x_2#1 ) + [137] (word) mulf_init::sqr#3 ← phi( mulf_init::@1/(word) mulf_init::sqr#4 mulf_init::@3/(word) mulf_init::sqr#2 ) + [138] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 + [139] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 + [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 + [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 + [142] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 + [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 + [144] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 + [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 to:mulf_init::@4 mulf_init::@4: scope:[mulf_init] from mulf_init::@2 mulf_init::@5 - [105] (byte) mulf_init::dir#2 ← phi( mulf_init::@2/(byte) $ff mulf_init::@5/(byte) mulf_init::dir#3 ) - [105] (byte*) mulf_init::sqr2_hi#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_hi#0 mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 ) - [105] (byte*) mulf_init::sqr2_lo#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_lo#0 mulf_init::@5/(byte*) mulf_init::sqr2_lo#1 ) - [105] (byte) mulf_init::x_255#2 ← phi( mulf_init::@2/(byte) -1 mulf_init::@5/(byte) mulf_init::x_255#1 ) - [106] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) - [107] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) - [108] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 - [109] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 - [110] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 + [146] (byte) mulf_init::dir#2 ← phi( mulf_init::@2/(byte) $ff mulf_init::@5/(byte) mulf_init::dir#3 ) + [146] (byte*) mulf_init::sqr2_hi#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_hi#0 mulf_init::@5/(byte*) mulf_init::sqr2_hi#1 ) + [146] (byte*) mulf_init::sqr2_lo#2 ← phi( mulf_init::@2/(const byte[$200]) mulf_sqr2_lo#0 mulf_init::@5/(byte*) mulf_init::sqr2_lo#1 ) + [146] (byte) mulf_init::x_255#2 ← phi( mulf_init::@2/(byte) -1 mulf_init::@5/(byte) mulf_init::x_255#1 ) + [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) + [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) + [149] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 + [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 + [151] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 to:mulf_init::@5 mulf_init::@7: scope:[mulf_init] from mulf_init::@4 - [111] phi() + [152] phi() to:mulf_init::@5 mulf_init::@5: scope:[mulf_init] from mulf_init::@4 mulf_init::@7 - [112] (byte) mulf_init::dir#3 ← phi( mulf_init::@7/(byte) mulf_init::dir#2 mulf_init::@4/(byte) 1 ) - [113] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 - [114] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 + [153] (byte) mulf_init::dir#3 ← phi( mulf_init::@7/(byte) mulf_init::dir#2 mulf_init::@4/(byte) 1 ) + [154] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 + [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 to:mulf_init::@6 mulf_init::@6: scope:[mulf_init] from mulf_init::@5 - [115] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) - [116] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) + [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) + [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) to:mulf_init::@return mulf_init::@return: scope:[mulf_init] from mulf_init::@6 - [117] return + [158] return to:@return VARIABLE REGISTER WEIGHTS (byte*) BORDERCOL -(byte[$140]) COS +(dword*) CIA2_TIMER_AB +(byte*) CIA2_TIMER_A_CONTROL +(byte*) CIA2_TIMER_B_CONTROL +(byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES +(byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A +(byte) CIA_TIMER_CONTROL_CONTINUOUS +(byte) CIA_TIMER_CONTROL_START +(byte) CIA_TIMER_CONTROL_STOP +(dword) CLOCKS_PER_INIT +(byte*) COS (byte) GREEN (byte) LIGHT_BLUE (byte*) RASTER (byte*) SCREEN -(byte*) SIN +(byte[$140]) SIN (byte*) SPRITE (byte*) SPRITES_COLS (byte*) SPRITES_ENABLE @@ -1796,17 +2316,20 @@ VARIABLE REGISTER WEIGHTS (signed word~) anim::$10 202.0 (signed word~) anim::$11 202.0 (signed word~) anim::$12 202.0 -(byte~) anim::$15 101.0 -(byte~) anim::$18 202.0 -(byte~) anim::$22 202.0 -(byte~) anim::$25 202.0 -(signed word~) anim::$4 202.0 -(signed word~) anim::$6 202.0 -(signed word~) anim::$9 202.0 +(signed word~) anim::$13 202.0 +(byte~) anim::$16 101.0 +(byte~) anim::$19 202.0 +(byte~) anim::$23 202.0 +(byte~) anim::$26 202.0 +(dword~) anim::$28 22.0 +(signed word~) anim::$5 202.0 +(signed word~) anim::$7 202.0 (byte) anim::angle -(byte) anim::angle#1 11.0 -(byte) anim::angle#6 0.5 +(byte) anim::angle#1 2.75 +(byte) anim::angle#9 0.4888888888888889 (signed byte) anim::cos_a +(dword) anim::cyclecount +(dword) anim::cyclecount#0 22.0 (byte) anim::i (byte) anim::i#1 151.5 (byte) anim::i#10 13.289473684210527 @@ -1836,6 +2359,11 @@ VARIABLE REGISTER WEIGHTS (signed word) anim::yr (signed word) anim::yr#0 16.833333333333332 (signed word) anim::yr#1 25.25 +(dword()) clock() +(dword) clock::return +(dword) clock::return#0 4.333333333333333 +(dword) clock::return#2 22.0 +(void()) clock_start() (void()) init() (byte) init::i (byte) init::i#1 16.5 @@ -1913,13 +2441,51 @@ VARIABLE REGISTER WEIGHTS (byte[$200]) mulf_sqr1_lo (byte[$200]) mulf_sqr2_hi (byte[$200]) mulf_sqr2_lo +(void()) print_byte_at((byte) print_byte_at::b , (byte*) print_byte_at::at) +(byte~) print_byte_at::$0 4.0 +(byte~) print_byte_at::$2 2.0 +(byte*) print_byte_at::at +(byte*) print_byte_at::at#0 4.0 +(byte*) print_byte_at::at#1 4.0 +(byte*) print_byte_at::at#2 1.3333333333333333 +(byte) print_byte_at::b +(byte) print_byte_at::b#0 2.0 +(byte) print_byte_at::b#1 2.0 +(byte) print_byte_at::b#2 1.6 +(void()) print_char_at((byte) print_char_at::ch , (byte*) print_char_at::at) +(byte*) print_char_at::at +(byte*) print_char_at::at#0 4.0 +(byte*) print_char_at::at#1 2.0 +(byte*) print_char_at::at#2 6.0 +(byte) print_char_at::ch +(byte) print_char_at::ch#0 2.0 +(byte) print_char_at::ch#1 4.0 +(byte) print_char_at::ch#2 6.0 +(void()) print_dword_at((dword) print_dword_at::dw , (byte*) print_dword_at::at) +(byte*) print_dword_at::at +(dword) print_dword_at::dw +(dword) print_dword_at::dw#0 5.0 +(byte[]) print_hextab +(void()) print_word_at((word) print_word_at::w , (byte*) print_word_at::at) +(byte*) print_word_at::at +(byte*) print_word_at::at#2 0.8 +(word) print_word_at::w +(word) print_word_at::w#0 4.0 +(word) print_word_at::w#1 4.0 +(word) print_word_at::w#2 2.0 (signed byte[8]) xs (signed byte[8]) ys Initial phi equivalence classes -[ anim::angle#6 anim::angle#1 ] +[ anim::angle#9 anim::angle#1 ] [ anim::i#10 anim::i#1 ] [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] +[ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] +[ print_word_at::at#2 ] +[ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +[ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] +[ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] +[ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] @@ -1935,23 +2501,30 @@ Initial phi equivalence classes [ mulf_init::dir#2 mulf_init::dir#3 ] Added variable anim::x#0 to zero page equivalence class [ anim::x#0 ] Added variable anim::y#0 to zero page equivalence class [ anim::y#0 ] -Added variable anim::$4 to zero page equivalence class [ anim::$4 ] +Added variable anim::$5 to zero page equivalence class [ anim::$5 ] Added variable anim::xr#0 to zero page equivalence class [ anim::xr#0 ] -Added variable anim::$6 to zero page equivalence class [ anim::$6 ] +Added variable anim::$7 to zero page equivalence class [ anim::$7 ] Added variable anim::yr#0 to zero page equivalence class [ anim::yr#0 ] -Added variable anim::$9 to zero page equivalence class [ anim::$9 ] Added variable anim::$10 to zero page equivalence class [ anim::$10 ] -Added variable anim::xr#1 to zero page equivalence class [ anim::xr#1 ] Added variable anim::$11 to zero page equivalence class [ anim::$11 ] +Added variable anim::xr#1 to zero page equivalence class [ anim::xr#1 ] Added variable anim::$12 to zero page equivalence class [ anim::$12 ] +Added variable anim::$13 to zero page equivalence class [ anim::$13 ] Added variable anim::yr#1 to zero page equivalence class [ anim::yr#1 ] -Added variable anim::$15 to zero page equivalence class [ anim::$15 ] +Added variable anim::$16 to zero page equivalence class [ anim::$16 ] Added variable anim::xpos#0 to zero page equivalence class [ anim::xpos#0 ] -Added variable anim::$18 to zero page equivalence class [ anim::$18 ] -Added variable anim::$22 to zero page equivalence class [ anim::$22 ] +Added variable anim::$19 to zero page equivalence class [ anim::$19 ] +Added variable anim::$23 to zero page equivalence class [ anim::$23 ] Added variable anim::ypos#0 to zero page equivalence class [ anim::ypos#0 ] Added variable anim::i2#0 to zero page equivalence class [ anim::i2#0 ] -Added variable anim::$25 to zero page equivalence class [ anim::$25 ] +Added variable anim::$26 to zero page equivalence class [ anim::$26 ] +Added variable clock::return#2 to zero page equivalence class [ clock::return#2 ] +Added variable anim::$28 to zero page equivalence class [ anim::$28 ] +Added variable anim::cyclecount#0 to zero page equivalence class [ anim::cyclecount#0 ] +Added variable print_dword_at::dw#0 to zero page equivalence class [ print_dword_at::dw#0 ] +Added variable print_byte_at::$0 to zero page equivalence class [ print_byte_at::$0 ] +Added variable print_byte_at::$2 to zero page equivalence class [ print_byte_at::$2 ] +Added variable clock::return#0 to zero page equivalence class [ clock::return#0 ] Added variable mulf8u_prepared::b#0 to zero page equivalence class [ mulf8u_prepared::b#0 ] Added variable mulf8u_prepared::return#2 to zero page equivalence class [ mulf8u_prepared::return#2 ] Added variable mulf8s_prepared::$8 to zero page equivalence class [ mulf8s_prepared::$8 ] @@ -1963,9 +2536,15 @@ Added variable mulf_init::$7 to zero page equivalence class [ mulf_init::$7 ] Added variable mulf_init::$10 to zero page equivalence class [ mulf_init::$10 ] Added variable mulf_init::$11 to zero page equivalence class [ mulf_init::$11 ] Complete equivalence classes -[ anim::angle#6 anim::angle#1 ] +[ anim::angle#9 anim::angle#1 ] [ anim::i#10 anim::i#1 ] [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] +[ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] +[ print_word_at::at#2 ] +[ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +[ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] +[ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] +[ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] @@ -1981,23 +2560,30 @@ Complete equivalence classes [ mulf_init::dir#2 mulf_init::dir#3 ] [ anim::x#0 ] [ anim::y#0 ] -[ anim::$4 ] +[ anim::$5 ] [ anim::xr#0 ] -[ anim::$6 ] +[ anim::$7 ] [ anim::yr#0 ] -[ anim::$9 ] [ anim::$10 ] -[ anim::xr#1 ] [ anim::$11 ] +[ anim::xr#1 ] [ anim::$12 ] +[ anim::$13 ] [ anim::yr#1 ] -[ anim::$15 ] +[ anim::$16 ] [ anim::xpos#0 ] -[ anim::$18 ] -[ anim::$22 ] +[ anim::$19 ] +[ anim::$23 ] [ anim::ypos#0 ] [ anim::i2#0 ] -[ anim::$25 ] +[ anim::$26 ] +[ clock::return#2 ] +[ anim::$28 ] +[ anim::cyclecount#0 ] +[ print_dword_at::dw#0 ] +[ print_byte_at::$0 ] +[ print_byte_at::$2 ] +[ clock::return#0 ] [ mulf8u_prepared::b#0 ] [ mulf8u_prepared::return#2 ] [ mulf8s_prepared::$8 ] @@ -2008,51 +2594,64 @@ Complete equivalence classes [ mulf_init::$7 ] [ mulf_init::$10 ] [ mulf_init::$11 ] -Allocated zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] +Allocated zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] Allocated zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] Allocated zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] -Allocated zp ZP_BYTE:5 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] -Allocated zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] -Allocated zp ZP_BYTE:8 [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] -Allocated zp ZP_BYTE:9 [ init::i#2 init::i#1 ] -Allocated zp ZP_BYTE:10 [ mulf_init::c#2 mulf_init::c#1 ] -Allocated zp ZP_WORD:11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] -Allocated zp ZP_WORD:13 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] -Allocated zp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -Allocated zp ZP_WORD:16 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] -Allocated zp ZP_BYTE:18 [ mulf_init::x_255#2 mulf_init::x_255#1 ] -Allocated zp ZP_WORD:19 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] -Allocated zp ZP_WORD:21 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] -Allocated zp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] -Allocated zp ZP_BYTE:24 [ anim::x#0 ] -Allocated zp ZP_BYTE:25 [ anim::y#0 ] -Allocated zp ZP_WORD:26 [ anim::$4 ] -Allocated zp ZP_WORD:28 [ anim::xr#0 ] -Allocated zp ZP_WORD:30 [ anim::$6 ] -Allocated zp ZP_WORD:32 [ anim::yr#0 ] -Allocated zp ZP_WORD:34 [ anim::$9 ] -Allocated zp ZP_WORD:36 [ anim::$10 ] -Allocated zp ZP_WORD:38 [ anim::xr#1 ] -Allocated zp ZP_WORD:40 [ anim::$11 ] -Allocated zp ZP_WORD:42 [ anim::$12 ] -Allocated zp ZP_WORD:44 [ anim::yr#1 ] -Allocated zp ZP_BYTE:46 [ anim::$15 ] -Allocated zp ZP_WORD:47 [ anim::xpos#0 ] -Allocated zp ZP_BYTE:49 [ anim::$18 ] -Allocated zp ZP_BYTE:50 [ anim::$22 ] -Allocated zp ZP_BYTE:51 [ anim::ypos#0 ] -Allocated zp ZP_BYTE:52 [ anim::i2#0 ] -Allocated zp ZP_BYTE:53 [ anim::$25 ] -Allocated zp ZP_BYTE:54 [ mulf8u_prepared::b#0 ] -Allocated zp ZP_WORD:55 [ mulf8u_prepared::return#2 ] -Allocated zp ZP_BYTE:57 [ mulf8s_prepared::$8 ] -Allocated zp ZP_BYTE:58 [ mulf8s_prepared::$15 ] -Allocated zp ZP_BYTE:59 [ mulf8s_prepared::$12 ] -Allocated zp ZP_BYTE:60 [ mulf8s_prepared::$16 ] -Allocated zp ZP_WORD:61 [ mulf8u_prepared::return#0 ] -Allocated zp ZP_BYTE:63 [ mulf_init::$7 ] -Allocated zp ZP_BYTE:64 [ mulf_init::$10 ] -Allocated zp ZP_BYTE:65 [ mulf_init::$11 ] +Allocated zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] +Allocated zp ZP_WORD:7 [ print_word_at::at#2 ] +Allocated zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +Allocated zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] +Allocated zp ZP_BYTE:12 [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] +Allocated zp ZP_WORD:13 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] +Allocated zp ZP_BYTE:15 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] +Allocated zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] +Allocated zp ZP_BYTE:18 [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] +Allocated zp ZP_BYTE:19 [ init::i#2 init::i#1 ] +Allocated zp ZP_BYTE:20 [ mulf_init::c#2 mulf_init::c#1 ] +Allocated zp ZP_WORD:21 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +Allocated zp ZP_WORD:23 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Allocated zp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Allocated zp ZP_WORD:26 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +Allocated zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Allocated zp ZP_WORD:29 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +Allocated zp ZP_WORD:31 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +Allocated zp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] +Allocated zp ZP_BYTE:34 [ anim::x#0 ] +Allocated zp ZP_BYTE:35 [ anim::y#0 ] +Allocated zp ZP_WORD:36 [ anim::$5 ] +Allocated zp ZP_WORD:38 [ anim::xr#0 ] +Allocated zp ZP_WORD:40 [ anim::$7 ] +Allocated zp ZP_WORD:42 [ anim::yr#0 ] +Allocated zp ZP_WORD:44 [ anim::$10 ] +Allocated zp ZP_WORD:46 [ anim::$11 ] +Allocated zp ZP_WORD:48 [ anim::xr#1 ] +Allocated zp ZP_WORD:50 [ anim::$12 ] +Allocated zp ZP_WORD:52 [ anim::$13 ] +Allocated zp ZP_WORD:54 [ anim::yr#1 ] +Allocated zp ZP_BYTE:56 [ anim::$16 ] +Allocated zp ZP_WORD:57 [ anim::xpos#0 ] +Allocated zp ZP_BYTE:59 [ anim::$19 ] +Allocated zp ZP_BYTE:60 [ anim::$23 ] +Allocated zp ZP_BYTE:61 [ anim::ypos#0 ] +Allocated zp ZP_BYTE:62 [ anim::i2#0 ] +Allocated zp ZP_BYTE:63 [ anim::$26 ] +Allocated zp ZP_DWORD:64 [ clock::return#2 ] +Allocated zp ZP_DWORD:68 [ anim::$28 ] +Allocated zp ZP_DWORD:72 [ anim::cyclecount#0 ] +Allocated zp ZP_DWORD:76 [ print_dword_at::dw#0 ] +Allocated zp ZP_BYTE:80 [ print_byte_at::$0 ] +Allocated zp ZP_BYTE:81 [ print_byte_at::$2 ] +Allocated zp ZP_DWORD:82 [ clock::return#0 ] +Allocated zp ZP_BYTE:86 [ mulf8u_prepared::b#0 ] +Allocated zp ZP_WORD:87 [ mulf8u_prepared::return#2 ] +Allocated zp ZP_BYTE:89 [ mulf8s_prepared::$8 ] +Allocated zp ZP_BYTE:90 [ mulf8s_prepared::$15 ] +Allocated zp ZP_BYTE:91 [ mulf8s_prepared::$12 ] +Allocated zp ZP_BYTE:92 [ mulf8s_prepared::$16 ] +Allocated zp ZP_WORD:93 [ mulf8u_prepared::return#0 ] +Allocated zp ZP_BYTE:95 [ mulf_init::$7 ] +Allocated zp ZP_BYTE:96 [ mulf_init::$10 ] +Allocated zp ZP_BYTE:97 [ mulf_init::$11 ] INITIAL ASM // File Comments @@ -2069,12 +2668,27 @@ INITIAL ASM .label SPRITES_ENABLE = $d015 .label BORDERCOL = $d020 .label SPRITES_COLS = $d027 + // CIA #2 Timer A+B Value (32-bit) + .label CIA2_TIMER_AB = $dd04 + // CIA #2 Timer A Control Register + .label CIA2_TIMER_A_CONTROL = $dd0e + // CIA #2 Timer B Control Register + .label CIA2_TIMER_B_CONTROL = $dd0f + // Timer Control - Start/stop timer (0:stop, 1: start) + .const CIA_TIMER_CONTROL_START = 1 + // Timer Control - Time CONTINUOUS/ONE-SHOT (0:CONTINUOUS, 1: ONE-SHOT) + .const CIA_TIMER_CONTROL_CONTINUOUS = 0 + // Timer B Control - Timer counts (00:system cycles, 01: CNT pulses, 10: timer A underflow, 11: time A underflow while CNT is high) + .const CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A = $40 .const GREEN = 5 .const LIGHT_BLUE = $e + // Clock cycles used to start & read the cycle clock by calling clock_start() and clock() once. Can be subtracted when calculating the number of cycles used by a routine. + // To make precise cycle measurements interrupts and the display must be disabled so neither steals any cycles from the code. + .const CLOCKS_PER_INIT = $12 .label SCREEN = $400 // A single sprite .label SPRITE = $3000 - .label SIN = COS+$40 + .label COS = SIN+$40 // @begin bbegin: jmp b1 @@ -2094,7 +2708,7 @@ main: { // asm { sei } sei // [5] call init - // [80] phi from main to init [phi:main->init] + // [121] phi from main to init [phi:main->init] init_from_main: jsr init // [6] phi from main to main::@1 [phi:main->main::@1] @@ -2114,31 +2728,33 @@ main: { } // anim anim: { - .label _4 = $1a - .label _6 = $1e - .label _9 = $22 - .label _10 = $24 - .label _11 = $28 - .label _12 = $2a - .label _15 = $2e - .label _18 = $31 - .label _22 = $32 - .label _25 = $35 - .label x = $18 - .label y = $19 - .label xr = $1c - .label yr = $20 - .label xr_1 = $26 - .label yr_1 = $2c - .label xpos = $2f + .label _5 = $24 + .label _7 = $28 + .label _10 = $2c + .label _11 = $2e + .label _12 = $32 + .label _13 = $34 + .label _16 = $38 + .label _19 = $3b + .label _23 = $3c + .label _26 = $3f + .label _28 = $44 + .label x = $22 + .label y = $23 + .label xr = $26 + .label yr = $2a + .label xr_1 = $30 + .label yr_1 = $36 + .label xpos = $39 .label sprite_msb = 4 - .label ypos = $33 - .label i2 = $34 + .label ypos = $3d + .label i2 = $3e .label i = 3 .label angle = 2 + .label cyclecount = $48 // [10] phi from anim to anim::@1 [phi:anim->anim::@1] b1_from_anim: - // [10] phi (byte) anim::angle#6 = (byte) 0 [phi:anim->anim::@1#0] -- vbuz1=vbuc1 + // [10] phi (byte) anim::angle#9 = (byte) 0 [phi:anim->anim::@1#0] -- vbuz1=vbuc1 lda #0 sta angle jmp b1 @@ -2156,27 +2772,29 @@ anim: { b3: // [12] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) -- _deref_pbuc1=_inc__deref_pbuc1 inc BORDERCOL - // [13] phi from anim::@3 to anim::@4 [phi:anim::@3->anim::@4] + // [13] call clock_start + jsr clock_start + // [14] phi from anim::@3 to anim::@4 [phi:anim::@3->anim::@4] b4_from_b3: - // [13] phi (byte) anim::sprite_msb#10 = (byte) 0 [phi:anim::@3->anim::@4#0] -- vbuz1=vbuc1 + // [14] phi (byte) anim::sprite_msb#10 = (byte) 0 [phi:anim::@3->anim::@4#0] -- vbuz1=vbuc1 lda #0 sta sprite_msb - // [13] phi (byte) anim::i#10 = (byte) 0 [phi:anim::@3->anim::@4#1] -- vbuz1=vbuc1 + // [14] phi (byte) anim::i#10 = (byte) 0 [phi:anim::@3->anim::@4#1] -- vbuz1=vbuc1 lda #0 sta i jmp b4 - // [13] phi from anim::@5 to anim::@4 [phi:anim::@5->anim::@4] + // [14] phi from anim::@5 to anim::@4 [phi:anim::@5->anim::@4] b4_from_b5: - // [13] phi (byte) anim::sprite_msb#10 = (byte) anim::sprite_msb#5 [phi:anim::@5->anim::@4#0] -- register_copy - // [13] phi (byte) anim::i#10 = (byte) anim::i#1 [phi:anim::@5->anim::@4#1] -- register_copy + // [14] phi (byte) anim::sprite_msb#10 = (byte) anim::sprite_msb#5 [phi:anim::@5->anim::@4#0] -- register_copy + // [14] phi (byte) anim::i#10 = (byte) anim::i#1 [phi:anim::@5->anim::@4#1] -- register_copy jmp b4 // anim::@4 b4: - // [14] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 + // [15] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 ldy i lda xs,y sta x - // [15] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 + // [16] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 // signed fixed[7.0] ldy i lda ys,y @@ -2184,147 +2802,147 @@ anim: { jmp mulf8s_prepare1 // anim::mulf8s_prepare1 mulf8s_prepare1: - // [16] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte[$140]) COS#0 + (byte) anim::angle#6) -- vbuz1=pbuc1_derefidx_vbuz2 + // [17] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) -- vbuz1=pbuc1_derefidx_vbuz2 ldy angle lda COS,y sta mulf8u_prepare.a - // [17] call mulf8u_prepare - // [76] phi from anim::mulf8s_prepare1 to mulf8u_prepare [phi:anim::mulf8s_prepare1->mulf8u_prepare] + // [18] call mulf8u_prepare + // [111] phi from anim::mulf8s_prepare1 to mulf8u_prepare [phi:anim::mulf8s_prepare1->mulf8u_prepare] mulf8u_prepare_from_mulf8s_prepare1: - // [76] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#3 [phi:anim::mulf8s_prepare1->mulf8u_prepare#0] -- register_copy + // [111] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#3 [phi:anim::mulf8s_prepare1->mulf8u_prepare#0] -- register_copy jsr mulf8u_prepare jmp b8 // anim::@8 b8: - // [18] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 -- vbsz1=vbsz2 + // [19] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 -- vbsz1=vbsz2 lda x sta mulf8s_prepared.b - // [19] call mulf8s_prepared - // [56] phi from anim::@8 to mulf8s_prepared [phi:anim::@8->mulf8s_prepared] + // [20] call mulf8s_prepared + // [91] phi from anim::@8 to mulf8s_prepared [phi:anim::@8->mulf8s_prepared] mulf8s_prepared_from_b8: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#0 [phi:anim::@8->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#0 [phi:anim::@8->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b10 // anim::@10 b10: - // [20] (signed word~) anim::$4 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 + // [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 lda mulf8s_prepared.m - sta _4 + sta _5 lda mulf8s_prepared.m+1 - sta _4+1 - // [21] (signed word) anim::xr#0 ← (signed word~) anim::$4 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _4 + sta _5+1 + // [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _5 asl sta xr - lda _4+1 + lda _5+1 rol sta xr+1 - // [22] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 -- vbsz1=vbsz2 + // [23] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 -- vbsz1=vbsz2 lda y sta mulf8s_prepared.b - // [23] call mulf8s_prepared - // [56] phi from anim::@10 to mulf8s_prepared [phi:anim::@10->mulf8s_prepared] + // [24] call mulf8s_prepared + // [91] phi from anim::@10 to mulf8s_prepared [phi:anim::@10->mulf8s_prepared] mulf8s_prepared_from_b10: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#1 [phi:anim::@10->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#1 [phi:anim::@10->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b11 // anim::@11 b11: - // [24] (signed word~) anim::$6 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 + // [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 lda mulf8s_prepared.m - sta _6 + sta _7 lda mulf8s_prepared.m+1 - sta _6+1 - // [25] (signed word) anim::yr#0 ← (signed word~) anim::$6 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _6 + sta _7+1 + // [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _7 asl sta yr - lda _6+1 + lda _7+1 rol sta yr+1 jmp mulf8s_prepare2 // anim::mulf8s_prepare2 mulf8s_prepare2: - // [26] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte*) SIN#0 + (byte) anim::angle#6) -- vbuz1=pbuc1_derefidx_vbuz2 + // [27] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) -- vbuz1=pbuc1_derefidx_vbuz2 ldy angle lda SIN,y sta mulf8u_prepare.a - // [27] call mulf8u_prepare - // [76] phi from anim::mulf8s_prepare2 to mulf8u_prepare [phi:anim::mulf8s_prepare2->mulf8u_prepare] + // [28] call mulf8u_prepare + // [111] phi from anim::mulf8s_prepare2 to mulf8u_prepare [phi:anim::mulf8s_prepare2->mulf8u_prepare] mulf8u_prepare_from_mulf8s_prepare2: - // [76] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#4 [phi:anim::mulf8s_prepare2->mulf8u_prepare#0] -- register_copy + // [111] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#4 [phi:anim::mulf8s_prepare2->mulf8u_prepare#0] -- register_copy jsr mulf8u_prepare jmp b9 // anim::@9 b9: - // [28] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 -- vbsz1=vbsz2 + // [29] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 -- vbsz1=vbsz2 lda y sta mulf8s_prepared.b - // [29] call mulf8s_prepared - // [56] phi from anim::@9 to mulf8s_prepared [phi:anim::@9->mulf8s_prepared] + // [30] call mulf8s_prepared + // [91] phi from anim::@9 to mulf8s_prepared [phi:anim::@9->mulf8s_prepared] mulf8s_prepared_from_b9: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#2 [phi:anim::@9->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#2 [phi:anim::@9->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b12 // anim::@12 b12: - // [30] (signed word~) anim::$9 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 + // [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 lda mulf8s_prepared.m - sta _9 - lda mulf8s_prepared.m+1 - sta _9+1 - // [31] (signed word~) anim::$10 ← (signed word~) anim::$9 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _9 - asl sta _10 - lda _9+1 - rol + lda mulf8s_prepared.m+1 sta _10+1 - // [32] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$10 -- vwsz1=vwsz2_minus_vwsz3 + // [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _10 + asl + sta _11 + lda _10+1 + rol + sta _11+1 + // [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 -- vwsz1=vwsz2_minus_vwsz3 lda xr sec - sbc _10 + sbc _11 sta xr_1 lda xr+1 - sbc _10+1 + sbc _11+1 sta xr_1+1 - // [33] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 -- vbsz1=vbsz2 + // [34] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 -- vbsz1=vbsz2 lda x sta mulf8s_prepared.b - // [34] call mulf8s_prepared - // [56] phi from anim::@12 to mulf8s_prepared [phi:anim::@12->mulf8s_prepared] + // [35] call mulf8s_prepared + // [91] phi from anim::@12 to mulf8s_prepared [phi:anim::@12->mulf8s_prepared] mulf8s_prepared_from_b12: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#3 [phi:anim::@12->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#3 [phi:anim::@12->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b13 // anim::@13 b13: - // [35] (signed word~) anim::$11 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 + // [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 -- vwsz1=vwsz2 lda mulf8s_prepared.m - sta _11 - lda mulf8s_prepared.m+1 - sta _11+1 - // [36] (signed word~) anim::$12 ← (signed word~) anim::$11 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _11 - asl sta _12 - lda _11+1 - rol + lda mulf8s_prepared.m+1 sta _12+1 - // [37] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$12 -- vwsz1=vwsz2_plus_vwsz3 + // [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _12 + asl + sta _13 + lda _12+1 + rol + sta _13+1 + // [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 -- vwsz1=vwsz2_plus_vwsz3 // signed fixed[8.8] lda yr clc - adc _12 + adc _13 sta yr_1 lda yr+1 - adc _12+1 + adc _13+1 sta yr_1+1 - // [38] (byte~) anim::$15 ← > (signed word) anim::xr#1 -- vbuz1=_hi_vwsz2 + // [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 -- vbuz1=_hi_vwsz2 lda xr_1+1 - sta _15 - // [39] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$15 + (signed byte) $18+(signed word) $95 -- vwsz1=vbsz2_plus_vwsc1 - lda _15 + sta _16 + // [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 -- vwsz1=vbsz2_plus_vwsc1 + lda _16 tax clc adc #<$18+$95 @@ -2336,91 +2954,335 @@ anim: { !: adc #>$18+$95 sta xpos+1 - // [40] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 -- vbuz1=vbuz1_ror_1 + // [41] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 -- vbuz1=vbuz1_ror_1 lsr sprite_msb - // [41] (byte~) anim::$18 ← > (signed word) anim::xpos#0 -- vbuz1=_hi_vwsz2 + // [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 -- vbuz1=_hi_vwsz2 lda xpos+1 - sta _18 - // [42] if((byte~) anim::$18==(byte) 0) goto anim::@5 -- vbuz1_eq_0_then_la1 - lda _18 + sta _19 + // [43] if((byte~) anim::$19==(byte) 0) goto anim::@5 -- vbuz1_eq_0_then_la1 + lda _19 cmp #0 beq b5_from_b13 jmp b6 // anim::@6 b6: - // [43] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 -- vbuz1=vbuz1_bor_vbuc1 + // [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 -- vbuz1=vbuz1_bor_vbuc1 lda #$80 ora sprite_msb sta sprite_msb - // [44] phi from anim::@13 anim::@6 to anim::@5 [phi:anim::@13/anim::@6->anim::@5] + // [45] phi from anim::@13 anim::@6 to anim::@5 [phi:anim::@13/anim::@6->anim::@5] b5_from_b13: b5_from_b6: - // [44] phi (byte) anim::sprite_msb#5 = (byte) anim::sprite_msb#1 [phi:anim::@13/anim::@6->anim::@5#0] -- register_copy + // [45] phi (byte) anim::sprite_msb#5 = (byte) anim::sprite_msb#1 [phi:anim::@13/anim::@6->anim::@5#0] -- register_copy jmp b5 // anim::@5 b5: - // [45] (byte~) anim::$22 ← > (signed word) anim::yr#1 -- vbuz1=_hi_vwsz2 + // [46] (byte~) anim::$23 ← > (signed word) anim::yr#1 -- vbuz1=_hi_vwsz2 lda yr_1+1 - sta _22 - // [46] (byte) anim::ypos#0 ← (byte~) anim::$22 + (byte) $59+(byte) $33 -- vbuz1=vbuz2_plus_vbuc1 - lax _22 + sta _23 + // [47] (byte) anim::ypos#0 ← (byte~) anim::$23 + (byte) $59+(byte) $33 -- vbuz1=vbuz2_plus_vbuc1 + lax _23 axs #-[$59+$33] stx ypos - // [47] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 -- vbuz1=vbuz2_rol_1 + // [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 -- vbuz1=vbuz2_rol_1 lda i asl sta i2 - // [48] (byte~) anim::$25 ← < (signed word) anim::xpos#0 -- vbuz1=_lo_vwsz2 + // [49] (byte~) anim::$26 ← < (signed word) anim::xpos#0 -- vbuz1=_lo_vwsz2 lda xpos - sta _25 - // [49] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$25 -- pbuc1_derefidx_vbuz1=vbuz2 - lda _25 + sta _26 + // [50] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$26 -- pbuc1_derefidx_vbuz1=vbuz2 + lda _26 ldy i2 sta SPRITES_XPOS,y - // [50] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 -- pbuc1_derefidx_vbuz1=vbuz2 + // [51] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 -- pbuc1_derefidx_vbuz1=vbuz2 lda ypos ldy i2 sta SPRITES_YPOS,y - // [51] (byte) anim::i#1 ← ++ (byte) anim::i#10 -- vbuz1=_inc_vbuz1 + // [52] (byte) anim::i#1 ← ++ (byte) anim::i#10 -- vbuz1=_inc_vbuz1 inc i - // [52] if((byte) anim::i#1!=(byte) 8) goto anim::@4 -- vbuz1_neq_vbuc1_then_la1 + // [53] if((byte) anim::i#1!=(byte) 8) goto anim::@4 -- vbuz1_neq_vbuc1_then_la1 lda #8 cmp i bne b4_from_b5 jmp b7 // anim::@7 b7: - // [53] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 -- _deref_pbuc1=vbuz1 + // [54] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 -- _deref_pbuc1=vbuz1 lda sprite_msb sta SPRITES_XMSB - // [54] (byte) anim::angle#1 ← ++ (byte) anim::angle#6 -- vbuz1=_inc_vbuz1 + // [55] (byte) anim::angle#1 ← ++ (byte) anim::angle#9 -- vbuz1=_inc_vbuz1 inc angle - // [55] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 -- _deref_pbuc1=vbuc2 + // [56] call clock + jsr clock + // [57] (dword) clock::return#2 ← (dword) clock::return#0 -- vduz1=vduz2 + lda clock.return + sta clock.return_2 + lda clock.return+1 + sta clock.return_2+1 + lda clock.return+2 + sta clock.return_2+2 + lda clock.return+3 + sta clock.return_2+3 + jmp b14 + // anim::@14 + b14: + // [58] (dword~) anim::$28 ← (dword) clock::return#2 -- vduz1=vduz2 + lda clock.return_2 + sta _28 + lda clock.return_2+1 + sta _28+1 + lda clock.return_2+2 + sta _28+2 + lda clock.return_2+3 + sta _28+3 + // [59] (dword) anim::cyclecount#0 ← (dword~) anim::$28 - (const dword) CLOCKS_PER_INIT#0 -- vduz1=vduz2_minus_vduc1 + lda _28 + sec + sbc #CLOCKS_PER_INIT + sta cyclecount+1 + lda _28+2 + sbc #>$10 + sta cyclecount+2 + lda _28+3 + sbc #>CLOCKS_PER_INIT>>$10 + sta cyclecount+3 + // [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 -- vduz1=vduz2 + lda cyclecount + sta print_dword_at.dw + lda cyclecount+1 + sta print_dword_at.dw+1 + lda cyclecount+2 + sta print_dword_at.dw+2 + lda cyclecount+3 + sta print_dword_at.dw+3 + // [61] call print_dword_at + jsr print_dword_at + jmp b15 + // anim::@15 + b15: + // [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 -- _deref_pbuc1=vbuc2 lda #LIGHT_BLUE sta BORDERCOL - // [10] phi from anim::@7 to anim::@1 [phi:anim::@7->anim::@1] - b1_from_b7: - // [10] phi (byte) anim::angle#6 = (byte) anim::angle#1 [phi:anim::@7->anim::@1#0] -- register_copy + // [10] phi from anim::@15 to anim::@1 [phi:anim::@15->anim::@1] + b1_from_b15: + // [10] phi (byte) anim::angle#9 = (byte) anim::angle#1 [phi:anim::@15->anim::@1#0] -- register_copy jmp b1 +} + // print_dword_at +// Print a dword as HEX at a specific position +// print_dword_at(dword zeropage($4c) dw) +print_dword_at: { + .label dw = $4c + // [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 -- vwuz1=_hi_vduz2 + lda dw+2 + sta print_word_at.w + lda dw+3 + sta print_word_at.w+1 + // [64] call print_word_at + // [68] phi from print_dword_at to print_word_at [phi:print_dword_at->print_word_at] + print_word_at_from_print_dword_at: + // [68] phi (byte*) print_word_at::at#2 = (const byte*) SCREEN#0 [phi:print_dword_at->print_word_at#0] -- pbuz1=pbuc1 + lda #SCREEN + sta print_word_at.at+1 + // [68] phi (word) print_word_at::w#2 = (word) print_word_at::w#0 [phi:print_dword_at->print_word_at#1] -- register_copy + jsr print_word_at + jmp b1 + // print_dword_at::@1 + b1: + // [65] (word) print_word_at::w#1 ← < (dword) print_dword_at::dw#0 -- vwuz1=_lo_vduz2 + lda dw + sta print_word_at.w + lda dw+1 + sta print_word_at.w+1 + // [66] call print_word_at + // [68] phi from print_dword_at::@1 to print_word_at [phi:print_dword_at::@1->print_word_at] + print_word_at_from_b1: + // [68] phi (byte*) print_word_at::at#2 = (const byte*) SCREEN#0+(byte) 4 [phi:print_dword_at::@1->print_word_at#0] -- pbuz1=pbuc1 + lda #SCREEN+4 + sta print_word_at.at+1 + // [68] phi (word) print_word_at::w#2 = (word) print_word_at::w#1 [phi:print_dword_at::@1->print_word_at#1] -- register_copy + jsr print_word_at + jmp breturn + // print_dword_at::@return + breturn: + // [67] return + rts +} + // print_word_at +// Print a word as HEX at a specific position +// print_word_at(word zeropage(5) w, byte* zeropage(7) at) +print_word_at: { + .label w = 5 + .label at = 7 + // [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 -- vbuz1=_hi_vwuz2 + lda w+1 + sta print_byte_at.b + // [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 -- pbuz1=pbuz2 + lda at + sta print_byte_at.at + lda at+1 + sta print_byte_at.at+1 + // [71] call print_byte_at + // [76] phi from print_word_at to print_byte_at [phi:print_word_at->print_byte_at] + print_byte_at_from_print_word_at: + // [76] phi (byte*) print_byte_at::at#2 = (byte*) print_byte_at::at#0 [phi:print_word_at->print_byte_at#0] -- register_copy + // [76] phi (byte) print_byte_at::b#2 = (byte) print_byte_at::b#0 [phi:print_word_at->print_byte_at#1] -- register_copy + jsr print_byte_at + jmp b1 + // print_word_at::@1 + b1: + // [72] (byte) print_byte_at::b#1 ← < (word) print_word_at::w#2 -- vbuz1=_lo_vwuz2 + lda w + sta print_byte_at.b + // [73] (byte*) print_byte_at::at#1 ← (byte*) print_word_at::at#2 + (byte) 2 -- pbuz1=pbuz2_plus_2 + lda at + clc + adc #2 + sta print_byte_at.at + lda at+1 + adc #0 + sta print_byte_at.at+1 + // [74] call print_byte_at + // [76] phi from print_word_at::@1 to print_byte_at [phi:print_word_at::@1->print_byte_at] + print_byte_at_from_b1: + // [76] phi (byte*) print_byte_at::at#2 = (byte*) print_byte_at::at#1 [phi:print_word_at::@1->print_byte_at#0] -- register_copy + // [76] phi (byte) print_byte_at::b#2 = (byte) print_byte_at::b#1 [phi:print_word_at::@1->print_byte_at#1] -- register_copy + jsr print_byte_at + jmp breturn + // print_word_at::@return + breturn: + // [75] return + rts +} + // print_byte_at +// Print a byte as HEX at a specific position +// print_byte_at(byte zeropage(9) b, byte* zeropage($a) at) +print_byte_at: { + .label _0 = $50 + .label _2 = $51 + .label b = 9 + .label at = $a + // [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 -- vbuz1=vbuz2_ror_4 + lda b + lsr + lsr + lsr + lsr + sta _0 + // [78] (byte) print_char_at::ch#0 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$0) -- vbuz1=pbuc1_derefidx_vbuz2 + ldy _0 + lda print_hextab,y + sta print_char_at.ch + // [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 -- pbuz1=pbuz2 + lda at + sta print_char_at.at + lda at+1 + sta print_char_at.at+1 + // [80] call print_char_at + // [86] phi from print_byte_at to print_char_at [phi:print_byte_at->print_char_at] + print_char_at_from_print_byte_at: + // [86] phi (byte*) print_char_at::at#2 = (byte*) print_char_at::at#0 [phi:print_byte_at->print_char_at#0] -- register_copy + // [86] phi (byte) print_char_at::ch#2 = (byte) print_char_at::ch#0 [phi:print_byte_at->print_char_at#1] -- register_copy + jsr print_char_at + jmp b1 + // print_byte_at::@1 + b1: + // [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f -- vbuz1=vbuz2_band_vbuc1 + lda #$f + and b + sta _2 + // [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 -- pbuz1=pbuz2_plus_1 + lda at + clc + adc #1 + sta print_char_at.at + lda at+1 + adc #0 + sta print_char_at.at+1 + // [83] (byte) print_char_at::ch#1 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$2) -- vbuz1=pbuc1_derefidx_vbuz2 + ldy _2 + lda print_hextab,y + sta print_char_at.ch + // [84] call print_char_at + // [86] phi from print_byte_at::@1 to print_char_at [phi:print_byte_at::@1->print_char_at] + print_char_at_from_b1: + // [86] phi (byte*) print_char_at::at#2 = (byte*) print_char_at::at#1 [phi:print_byte_at::@1->print_char_at#0] -- register_copy + // [86] phi (byte) print_char_at::ch#2 = (byte) print_char_at::ch#1 [phi:print_byte_at::@1->print_char_at#1] -- register_copy + jsr print_char_at + jmp breturn + // print_byte_at::@return + breturn: + // [85] return + rts +} + // print_char_at +// Print a single char +// print_char_at(byte zeropage($c) ch, byte* zeropage($d) at) +print_char_at: { + .label ch = $c + .label at = $d + // [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 -- _deref_pbuz1=vbuz2 + lda ch + ldy #0 + sta (at),y + jmp breturn + // print_char_at::@return + breturn: + // [88] return + rts +} + // clock +// Returns the processor clock time used since the beginning of an implementation defined era (normally the beginning of the program). +// This uses CIA #2 Timer A+B on the C64, and must be initialized using clock_start() +clock: { + .label return = $52 + .label return_2 = $40 + // [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) -- vduz1=vduc1_minus__deref_pduc2 + lda #<$ffffffff + sec + sbc CIA2_TIMER_AB + sta return + lda #>$ffffffff + sbc CIA2_TIMER_AB+1 + sta return+1 + lda #<$ffffffff>>$10 + sbc CIA2_TIMER_AB+2 + sta return+2 + lda #>$ffffffff>>$10 + sbc CIA2_TIMER_AB+3 + sta return+3 + jmp breturn + // clock::@return + breturn: + // [90] return + rts } // mulf8s_prepared // Calculate fast multiply with a prepared unsigned byte to a word result // The prepared number is set by calling mulf8s_prepare(byte a) -// mulf8s_prepared(signed byte zeropage(5) b) +// mulf8s_prepared(signed byte zeropage($f) b) mulf8s_prepared: { .label memA = $fd - .label _8 = $39 - .label _12 = $3b - .label _15 = $3a - .label _16 = $3c - .label m = 6 - .label b = 5 - // [57] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 -- vbuz1=vbuz2 + .label _8 = $59 + .label _12 = $5b + .label _15 = $5a + .label _16 = $5c + .label m = $10 + .label b = $f + // [92] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 -- vbuz1=vbuz2 lda b sta mulf8u_prepared.b - // [58] call mulf8u_prepared + // [93] call mulf8u_prepared jsr mulf8u_prepared - // [59] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 -- vwuz1=vwuz2 + // [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 -- vwuz1=vwuz2 lda mulf8u_prepared.return sta mulf8u_prepared.return_2 lda mulf8u_prepared.return+1 @@ -2428,78 +3290,78 @@ mulf8s_prepared: { jmp b5 // mulf8s_prepared::@5 b5: - // [60] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 -- vwuz1=vwuz2 + // [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 -- vwuz1=vwuz2 lda mulf8u_prepared.return_2 sta m lda mulf8u_prepared.return_2+1 sta m+1 - // [61] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 -- _deref_pbsc1_ge_0_then_la1 + // [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 -- _deref_pbsc1_ge_0_then_la1 lda memA cmp #0 bpl b1_from_b5 jmp b3 // mulf8s_prepared::@3 b3: - // [62] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 -- vbuz1=_hi_vwuz2 + // [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 -- vbuz1=_hi_vwuz2 lda m+1 sta _8 - // [63] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 -- vbuz1=vbuz2_minus_vbuz3 + // [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 -- vbuz1=vbuz2_minus_vbuz3 lda _8 sec sbc b sta _15 - // [64] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 -- vwuz1=vwuz1_sethi_vbuz2 + // [99] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 -- vwuz1=vwuz1_sethi_vbuz2 lda _15 sta m+1 - // [65] phi from mulf8s_prepared::@3 mulf8s_prepared::@5 to mulf8s_prepared::@1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1] + // [100] phi from mulf8s_prepared::@3 mulf8s_prepared::@5 to mulf8s_prepared::@1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1] b1_from_b3: b1_from_b5: - // [65] phi (word) mulf8s_prepared::m#5 = (word) mulf8s_prepared::m#1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1#0] -- register_copy + // [100] phi (word) mulf8s_prepared::m#5 = (word) mulf8s_prepared::m#1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1#0] -- register_copy jmp b1 // mulf8s_prepared::@1 b1: - // [66] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 -- vbsz1_ge_0_then_la1 + // [101] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 -- vbsz1_ge_0_then_la1 lda b cmp #0 bpl b2_from_b1 jmp b4 // mulf8s_prepared::@4 b4: - // [67] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 -- vbuz1=_hi_vwuz2 + // [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 -- vbuz1=_hi_vwuz2 lda m+1 sta _12 - // [68] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) -- vbuz1=vbuz2_minus__deref_pbuc1 + // [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) -- vbuz1=vbuz2_minus__deref_pbuc1 lda _12 sec sbc memA sta _16 - // [69] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 -- vwuz1=vwuz1_sethi_vbuz2 + // [104] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 -- vwuz1=vwuz1_sethi_vbuz2 lda _16 sta m+1 - // [70] phi from mulf8s_prepared::@1 mulf8s_prepared::@4 to mulf8s_prepared::@2 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2] + // [105] phi from mulf8s_prepared::@1 mulf8s_prepared::@4 to mulf8s_prepared::@2 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2] b2_from_b1: b2_from_b4: - // [70] phi (word) mulf8s_prepared::m#4 = (word) mulf8s_prepared::m#5 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2#0] -- register_copy + // [105] phi (word) mulf8s_prepared::m#4 = (word) mulf8s_prepared::m#5 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2#0] -- register_copy jmp b2 // mulf8s_prepared::@2 b2: jmp breturn // mulf8s_prepared::@return breturn: - // [71] return + // [106] return rts } // mulf8u_prepared // Calculate fast multiply with a prepared unsigned byte to a word result // The prepared number is set by calling mulf8u_prepare(byte a) -// mulf8u_prepared(byte zeropage($36) b) +// mulf8u_prepared(byte zeropage($56) b) mulf8u_prepared: { .label resL = $fe .label memB = $ff - .label return = $3d - .label b = $36 - .label return_2 = $37 - // [72] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 -- _deref_pbuc1=vbuz1 + .label return = $5d + .label b = $56 + .label return_2 = $57 + // [107] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 -- _deref_pbuc1=vbuz1 lda b sta memB // asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } @@ -2515,7 +3377,7 @@ mulf8u_prepared: { sm4: sbc mulf_sqr2_hi,x sta memB - // [74] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 + // [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 lda resL sta return lda memB @@ -2523,16 +3385,16 @@ mulf8u_prepared: { jmp breturn // mulf8u_prepared::@return breturn: - // [75] return + // [110] return rts } // mulf8u_prepare // Prepare for fast multiply with an unsigned byte to a word result -// mulf8u_prepare(byte zeropage(8) a) +// mulf8u_prepare(byte zeropage($12) a) mulf8u_prepare: { .label memA = $fd - .label a = 8 - // [77] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 -- _deref_pbuc1=vbuz1 + .label a = $12 + // [112] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 -- _deref_pbuc1=vbuz1 lda a sta memA // asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } @@ -2545,152 +3407,184 @@ mulf8u_prepare: { jmp breturn // mulf8u_prepare::@return breturn: - // [79] return + // [114] return + rts +} + // clock_start +// Reset & start the processor clock time. The value can be read using clock(). +// This uses CIA #2 Timer A+B on the C64 +clock_start: { + // [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 -- _deref_pbuc1=vbuc2 + // Setup CIA#2 timer A to count (down) CPU cycles + lda #CIA_TIMER_CONTROL_CONTINUOUS + sta CIA2_TIMER_A_CONTROL + // [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + // [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff -- _deref_pduc1=vduc2 + lda #<$ffffffff + sta CIA2_TIMER_AB + lda #>$ffffffff + sta CIA2_TIMER_AB+1 + lda #<$ffffffff>>$10 + sta CIA2_TIMER_AB+2 + lda #>$ffffffff>>$10 + sta CIA2_TIMER_AB+3 + // [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_START|CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + // [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_START + sta CIA2_TIMER_A_CONTROL + jmp breturn + // clock_start::@return + breturn: + // [120] return rts } // init init: { .label sprites_ptr = SCREEN+$3f8 - .label i = 9 - // [81] call mulf_init - // [89] phi from init to mulf_init [phi:init->mulf_init] + .label i = $13 + // [122] call mulf_init + // [130] phi from init to mulf_init [phi:init->mulf_init] mulf_init_from_init: jsr mulf_init jmp b2 // init::@2 b2: - // [82] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff -- _deref_pbuc1=vbuc2 + // [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff -- _deref_pbuc1=vbuc2 lda #$ff sta SPRITES_ENABLE - // [83] phi from init::@2 to init::@1 [phi:init::@2->init::@1] + // [124] phi from init::@2 to init::@1 [phi:init::@2->init::@1] b1_from_b2: - // [83] phi (byte) init::i#2 = (byte) 0 [phi:init::@2->init::@1#0] -- vbuz1=vbuc1 + // [124] phi (byte) init::i#2 = (byte) 0 [phi:init::@2->init::@1#0] -- vbuz1=vbuc1 lda #0 sta i jmp b1 - // [83] phi from init::@1 to init::@1 [phi:init::@1->init::@1] + // [124] phi from init::@1 to init::@1 [phi:init::@1->init::@1] b1_from_b1: - // [83] phi (byte) init::i#2 = (byte) init::i#1 [phi:init::@1->init::@1#0] -- register_copy + // [124] phi (byte) init::i#2 = (byte) init::i#1 [phi:init::@1->init::@1#0] -- register_copy jmp b1 // init::@1 b1: - // [84] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 -- pbuc1_derefidx_vbuz1=vbuc2 + // [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 -- pbuc1_derefidx_vbuz1=vbuc2 lda #SPRITE/$40 ldy i sta sprites_ptr,y - // [85] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 -- pbuc1_derefidx_vbuz1=vbuc2 + // [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 -- pbuc1_derefidx_vbuz1=vbuc2 lda #GREEN ldy i sta SPRITES_COLS,y - // [86] (byte) init::i#1 ← ++ (byte) init::i#2 -- vbuz1=_inc_vbuz1 + // [127] (byte) init::i#1 ← ++ (byte) init::i#2 -- vbuz1=_inc_vbuz1 inc i - // [87] if((byte) init::i#1!=(byte) 8) goto init::@1 -- vbuz1_neq_vbuc1_then_la1 + // [128] if((byte) init::i#1!=(byte) 8) goto init::@1 -- vbuz1_neq_vbuc1_then_la1 lda #8 cmp i bne b1_from_b1 jmp breturn // init::@return breturn: - // [88] return + // [129] return rts } // mulf_init // Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) mulf_init: { - .label _7 = $3f - .label _10 = $40 - .label _11 = $41 - .label c = $a - .label sqr1_hi = $d - .label sqr = $10 - .label sqr1_lo = $b - .label x_2 = $f - .label sqr2_hi = $15 - .label x_255 = $12 - .label sqr2_lo = $13 - .label dir = $17 - // [90] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] + .label _7 = $5f + .label _10 = $60 + .label _11 = $61 + .label c = $14 + .label sqr1_hi = $17 + .label sqr = $1a + .label sqr1_lo = $15 + .label x_2 = $19 + .label sqr2_hi = $1f + .label x_255 = $1c + .label sqr2_lo = $1d + .label dir = $21 + // [131] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] b1_from_mulf_init: - // [90] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 + // [131] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 lda #0 sta x_2 - // [90] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 + // [131] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 lda #mulf_sqr1_hi+1 sta sqr1_hi+1 - // [90] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 + // [131] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 lda #mulf_sqr1_lo+1 sta sqr1_lo+1 - // [90] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 + // [131] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 lda #<0 sta sqr lda #>0 sta sqr+1 - // [90] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuz1=vbuc1 + // [131] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuz1=vbuc1 lda #0 sta c jmp b1 - // [90] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] + // [131] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] b1_from_b2: - // [90] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy - // [90] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy - // [90] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy - // [90] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy - // [90] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy + // [131] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy + // [131] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy + // [131] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy + // [131] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy + // [131] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy jmp b1 // mulf_init::@1 b1: - // [91] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuz1=_inc_vbuz1 + // [132] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuz1=_inc_vbuz1 inc c - // [92] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuz1=vbuz2_band_vbuc1 + // [133] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuz1=vbuz2_band_vbuc1 lda #1 and c sta _7 - // [93] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuz1_neq_0_then_la1 + // [134] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuz1_neq_0_then_la1 lda _7 cmp #0 bne b2_from_b1 jmp b3 // mulf_init::@3 b3: - // [94] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 + // [135] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 inc x_2 - // [95] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 + // [136] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 inc sqr bne !+ inc sqr+1 !: - // [96] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] + // [137] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] b2_from_b1: b2_from_b3: - // [96] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy - // [96] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy + // [137] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy + // [137] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy jmp b2 // mulf_init::@2 b2: - // [97] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 -- vbuz1=_lo_vwuz2 + // [138] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 -- vbuz1=_lo_vwuz2 lda sqr sta _10 - // [98] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 -- _deref_pbuz1=vbuz2 + // [139] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 -- _deref_pbuz1=vbuz2 lda _10 ldy #0 sta (sqr1_lo),y - // [99] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuz1=_hi_vwuz2 + // [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuz1=_hi_vwuz2 lda sqr+1 sta _11 - // [100] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuz2 + // [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuz2 lda _11 ldy #0 sta (sqr1_hi),y - // [101] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 + // [142] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 inc sqr1_hi bne !+ inc sqr1_hi+1 !: - // [102] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 + // [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 lda x_2 clc adc sqr @@ -2698,93 +3592,93 @@ mulf_init: { bcc !+ inc sqr+1 !: - // [103] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 + // [144] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 inc sqr1_lo bne !+ inc sqr1_lo+1 !: - // [104] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 + // [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 lda sqr1_lo+1 cmp #>mulf_sqr1_lo+$200 bne b1_from_b2 lda sqr1_lo cmp #mulf_init::@4] + // [146] phi from mulf_init::@2 to mulf_init::@4 [phi:mulf_init::@2->mulf_init::@4] b4_from_b2: - // [105] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 + // [146] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 lda #$ff sta dir - // [105] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 + // [146] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 lda #mulf_sqr2_hi sta sqr2_hi+1 - // [105] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 + // [146] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 lda #mulf_sqr2_lo sta sqr2_lo+1 - // [105] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuz1=vbuc1 + // [146] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuz1=vbuc1 lda #-1 sta x_255 jmp b4 - // [105] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] + // [146] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] b4_from_b5: - // [105] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy - // [105] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy - // [105] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy - // [105] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy + // [146] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy + // [146] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy + // [146] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy + // [146] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy jmp b4 // mulf_init::@4 b4: - // [106] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuz2 + // [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuz2 ldy x_255 lda mulf_sqr1_lo,y ldy #0 sta (sqr2_lo),y - // [107] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuz2 + // [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuz2 ldy x_255 lda mulf_sqr1_hi,y ldy #0 sta (sqr2_hi),y - // [108] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 + // [149] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 inc sqr2_hi bne !+ inc sqr2_hi+1 !: - // [109] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuz1=vbuz1_plus_vbuz2 + // [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuz1=vbuz1_plus_vbuz2 lda x_255 clc adc dir sta x_255 - // [110] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuz1_neq_0_then_la1 + // [151] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuz1_neq_0_then_la1 lda x_255 cmp #0 bne b7_from_b4 - // [112] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] + // [153] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] b5_from_b4: - // [112] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 + // [153] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 lda #1 sta dir jmp b5 - // [111] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] + // [152] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] b7_from_b4: jmp b7 // mulf_init::@7 b7: - // [112] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] + // [153] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] b5_from_b7: - // [112] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy + // [153] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy jmp b5 // mulf_init::@5 b5: - // [113] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 + // [154] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 inc sqr2_lo bne !+ inc sqr2_lo+1 !: - // [114] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 + // [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 lda sqr2_lo+1 cmp #>mulf_sqr2_lo+$1ff bne b4_from_b5 @@ -2794,17 +3688,17 @@ mulf_init: { jmp b6 // mulf_init::@6 b6: - // [115] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 + // [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 // Set the very last value g(511) = f(256) lda mulf_sqr1_lo+$100 sta mulf_sqr2_lo+$1ff - // [116] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 + // [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 lda mulf_sqr1_hi+$100 sta mulf_sqr2_hi+$1ff jmp breturn // mulf_init::@return breturn: - // [117] return + // [158] return rts } // File Data @@ -2821,20 +3715,14 @@ mulf_init: { // >g(x) = >((( x - 255) * ( x - 255 ))/4) .align $100 mulf_sqr2_hi: .fill $200, 0 + print_hextab: .text "0123456789abcdef" // Sine and Cosine tables // Angles: $00=0, $80=PI,$100=2*PI // Sine/Cosine: signed fixed [-$7f,$7f] .align $40 -COS: -{ - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) // Positions to rotate xs: .byte -$46, -$46, -$46, 0, 0, $46, $46, $46 @@ -2847,233 +3735,396 @@ COS: REGISTER UPLIFT POTENTIAL REGISTERS -Equivalence Class zp ZP_BYTE:50 [ anim::$22 ] has ALU potential. -Statement [11] if(*((const byte*) RASTER#0)!=(byte) $ff) goto anim::@2 [ anim::angle#6 ] ( main:2::anim:7 [ anim::angle#6 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] -Statement [20] (signed word~) anim::$4 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$4 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$4 ] ) always clobbers reg byte a +Equivalence Class zp ZP_BYTE:60 [ anim::$23 ] has ALU potential. +Statement [11] if(*((const byte*) RASTER#0)!=(byte) $ff) goto anim::@2 [ anim::angle#9 ] ( main:2::anim:7 [ anim::angle#9 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] +Statement [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$5 ] ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] Removing always clobbered register reg byte a as potential for zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:24 [ anim::x#0 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:25 [ anim::y#0 ] -Statement [21] (signed word) anim::xr#0 ← (signed word~) anim::$4 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ) always clobbers reg byte a -Statement [24] (signed word~) anim::$6 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$6 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$6 ] ) always clobbers reg byte a -Statement [25] (signed word) anim::yr#0 ← (signed word~) anim::$6 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ) always clobbers reg byte a -Statement [30] (signed word~) anim::$9 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$9 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$9 ] ) always clobbers reg byte a -Statement [31] (signed word~) anim::$10 ← (signed word~) anim::$9 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ) always clobbers reg byte a -Statement [32] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$10 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ) always clobbers reg byte a -Statement [35] (signed word~) anim::$11 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$11 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$11 ] ) always clobbers reg byte a -Statement [36] (signed word~) anim::$12 ← (signed word~) anim::$11 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ) always clobbers reg byte a -Statement [37] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$12 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ) always clobbers reg byte a -Statement [38] (byte~) anim::$15 ← > (signed word) anim::xr#1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$15 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$15 ] ) always clobbers reg byte a -Statement [39] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$15 + (signed byte) $18+(signed word) $95 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ) always clobbers reg byte a reg byte x -Removing always clobbered register reg byte x as potential for zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:34 [ anim::x#0 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:35 [ anim::y#0 ] +Statement [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ) always clobbers reg byte a +Statement [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$7 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$7 ] ) always clobbers reg byte a +Statement [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ) always clobbers reg byte a +Statement [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ) always clobbers reg byte a +Statement [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$11 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$11 ] ) always clobbers reg byte a +Statement [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ) always clobbers reg byte a +Statement [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ) always clobbers reg byte a +Statement [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$13 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$13 ] ) always clobbers reg byte a +Statement [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ) always clobbers reg byte a +Statement [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$16 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$16 ] ) always clobbers reg byte a +Statement [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ) always clobbers reg byte a reg byte x +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] Removing always clobbered register reg byte x as potential for zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] Removing always clobbered register reg byte x as potential for zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] -Statement [41] (byte~) anim::$18 ← > (signed word) anim::xpos#0 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$18 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$18 ] ) always clobbers reg byte a -Statement [43] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ) always clobbers reg byte a -Statement [47] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:51 [ anim::ypos#0 ] -Statement [48] (byte~) anim::$25 ← < (signed word) anim::xpos#0 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$25 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$25 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:52 [ anim::i2#0 ] -Statement [50] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 ] ) always clobbers reg byte a -Statement [55] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 [ anim::angle#1 ] ( main:2::anim:7 [ anim::angle#1 ] ) always clobbers reg byte a -Statement [59] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 [ mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:5 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] -Statement [60] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a -Statement [61] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a -Statement [62] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ) always clobbers reg byte a -Statement [63] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ) always clobbers reg byte a -Statement [67] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 [ mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ) always clobbers reg byte a -Statement [68] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) [ mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ) always clobbers reg byte a +Statement [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$19 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$19 ] ) always clobbers reg byte a +Statement [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ) always clobbers reg byte a +Statement [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:61 [ anim::ypos#0 ] +Statement [49] (byte~) anim::$26 ← < (signed word) anim::xpos#0 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$26 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$26 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:62 [ anim::i2#0 ] +Statement [51] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 ] ) always clobbers reg byte a +Statement [57] (dword) clock::return#2 ← (dword) clock::return#0 [ anim::angle#1 clock::return#2 ] ( main:2::anim:7 [ anim::angle#1 clock::return#2 ] ) always clobbers reg byte a +Statement [58] (dword~) anim::$28 ← (dword) clock::return#2 [ anim::angle#1 anim::$28 ] ( main:2::anim:7 [ anim::angle#1 anim::$28 ] ) always clobbers reg byte a +Statement [59] (dword) anim::cyclecount#0 ← (dword~) anim::$28 - (const dword) CLOCKS_PER_INIT#0 [ anim::angle#1 anim::cyclecount#0 ] ( main:2::anim:7 [ anim::angle#1 anim::cyclecount#0 ] ) always clobbers reg byte a +Statement [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 [ anim::angle#1 print_dword_at::dw#0 ] ( main:2::anim:7 [ anim::angle#1 print_dword_at::dw#0 ] ) always clobbers reg byte a +Statement [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 [ anim::angle#1 ] ( main:2::anim:7 [ anim::angle#1 ] ) always clobbers reg byte a +Statement [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 [ print_dword_at::dw#0 print_word_at::w#0 ] ( main:2::anim:7::print_dword_at:61 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#0 ] ) always clobbers reg byte a +Statement [65] (word) print_word_at::w#1 ← < (dword) print_dword_at::dw#0 [ print_word_at::w#1 ] ( main:2::anim:7::print_dword_at:61 [ anim::angle#1 print_word_at::w#1 ] ) always clobbers reg byte a +Statement [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 [ print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] ) always clobbers reg byte a +Statement [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 [ print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +Statement [72] (byte) print_byte_at::b#1 ← < (word) print_word_at::w#2 [ print_word_at::at#2 print_byte_at::b#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::at#2 print_byte_at::b#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::at#2 print_byte_at::b#1 ] ) always clobbers reg byte a +Statement [73] (byte*) print_byte_at::at#1 ← (byte*) print_word_at::at#2 + (byte) 2 [ print_byte_at::b#1 print_byte_at::at#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#1 print_byte_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_byte_at::b#1 print_byte_at::at#1 ] ) always clobbers reg byte a +Statement [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 [ print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] ) always clobbers reg byte a +Statement [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 [ print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:12 [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] +Statement [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f [ print_byte_at::at#2 print_byte_at::$2 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::at#2 print_byte_at::$2 ] ) always clobbers reg byte a +Statement [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 [ print_byte_at::$2 print_char_at::at#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::$2 print_char_at::at#1 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:81 [ print_byte_at::$2 ] +Statement [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 [ ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71::print_char_at:80 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71::print_char_at:80 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74::print_char_at:80 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74::print_char_at:80 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71::print_char_at:84 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71::print_char_at:84 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74::print_char_at:84 [ anim::angle#1 print_dword_at::dw#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74::print_char_at:84 [ anim::angle#1 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +Statement [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) [ clock::return#0 ] ( main:2::anim:7::clock:56 [ anim::angle#1 clock::return#0 ] ) always clobbers reg byte a +Statement [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 [ mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:15 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] +Statement [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a +Statement [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a +Statement [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ) always clobbers reg byte a +Statement [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ) always clobbers reg byte a +Statement [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 [ mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ) always clobbers reg byte a +Statement [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) [ mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ) always clobbers reg byte a Statement asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } always clobbers reg byte a reg byte x -Removing always clobbered register reg byte x as potential for zp ZP_BYTE:24 [ anim::x#0 ] -Removing always clobbered register reg byte x as potential for zp ZP_BYTE:25 [ anim::y#0 ] -Removing always clobbered register reg byte x as potential for zp ZP_BYTE:5 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] -Statement [74] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) [ mulf8u_prepared::return#0 ] ( main:2::anim:7::mulf8s_prepared:19::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:23::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:29::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:34::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:34 [ anim::x#0 ] +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:35 [ anim::y#0 ] +Removing always clobbered register reg byte x as potential for zp ZP_BYTE:15 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] +Statement [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) [ mulf8u_prepared::return#0 ] ( main:2::anim:7::mulf8s_prepared:20::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:24::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:30::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:35::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] ) always clobbers reg byte a Statement asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } always clobbers reg byte a -Statement [82] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff [ ] ( main:2::init:5 [ ] ) always clobbers reg byte a -Statement [84] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:9 [ init::i#2 init::i#1 ] -Statement [85] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a -Statement [97] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ) always clobbers reg byte a -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:10 [ mulf_init::c#2 mulf_init::c#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -Statement [98] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:10 [ mulf_init::c#2 mulf_init::c#1 ] -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -Statement [99] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ) always clobbers reg byte a -Statement [100] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y -Statement [102] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a -Statement [104] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a -Statement [106] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:18 [ mulf_init::x_255#2 mulf_init::x_255#1 ] -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:18 [ mulf_init::x_255#2 mulf_init::x_255#1 ] -Removing always clobbered register reg byte a as potential for zp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] -Removing always clobbered register reg byte y as potential for zp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] -Statement [107] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y -Statement [109] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ) always clobbers reg byte a -Statement [114] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ( main:2::init:5::mulf_init:81 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ) always clobbers reg byte a -Statement [115] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) [ ] ( main:2::init:5::mulf_init:81 [ ] ) always clobbers reg byte a -Statement [116] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) [ ] ( main:2::init:5::mulf_init:81 [ ] ) always clobbers reg byte a -Statement [11] if(*((const byte*) RASTER#0)!=(byte) $ff) goto anim::@2 [ anim::angle#6 ] ( main:2::anim:7 [ anim::angle#6 ] ) always clobbers reg byte a -Statement [20] (signed word~) anim::$4 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$4 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$4 ] ) always clobbers reg byte a -Statement [21] (signed word) anim::xr#0 ← (signed word~) anim::$4 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ) always clobbers reg byte a -Statement [24] (signed word~) anim::$6 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$6 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$6 ] ) always clobbers reg byte a -Statement [25] (signed word) anim::yr#0 ← (signed word~) anim::$6 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ) always clobbers reg byte a -Statement [30] (signed word~) anim::$9 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$9 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$9 ] ) always clobbers reg byte a -Statement [31] (signed word~) anim::$10 ← (signed word~) anim::$9 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ) always clobbers reg byte a -Statement [32] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$10 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ) always clobbers reg byte a -Statement [35] (signed word~) anim::$11 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$11 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$11 ] ) always clobbers reg byte a -Statement [36] (signed word~) anim::$12 ← (signed word~) anim::$11 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ) always clobbers reg byte a -Statement [37] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$12 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ) always clobbers reg byte a -Statement [38] (byte~) anim::$15 ← > (signed word) anim::xr#1 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$15 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$15 ] ) always clobbers reg byte a -Statement [39] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$15 + (signed byte) $18+(signed word) $95 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ) always clobbers reg byte a reg byte x -Statement [41] (byte~) anim::$18 ← > (signed word) anim::xpos#0 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$18 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$18 ] ) always clobbers reg byte a -Statement [43] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ) always clobbers reg byte a -Statement [47] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ) always clobbers reg byte a -Statement [48] (byte~) anim::$25 ← < (signed word) anim::xpos#0 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$25 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$25 ] ) always clobbers reg byte a -Statement [50] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 ] ( main:2::anim:7 [ anim::angle#6 anim::i#10 anim::sprite_msb#5 ] ) always clobbers reg byte a -Statement [55] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 [ anim::angle#1 ] ( main:2::anim:7 [ anim::angle#1 ] ) always clobbers reg byte a -Statement [59] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 [ mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ) always clobbers reg byte a -Statement [60] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a -Statement [61] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a -Statement [62] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ) always clobbers reg byte a -Statement [63] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ) always clobbers reg byte a -Statement [67] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 [ mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ) always clobbers reg byte a -Statement [68] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) [ mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ( main:2::anim:7::mulf8s_prepared:19 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:23 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:29 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:34 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ) always clobbers reg byte a +Statement [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff [ ] ( main:2::init:5 [ ] ) always clobbers reg byte a +Statement [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:19 [ init::i#2 init::i#1 ] +Statement [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a +Statement [138] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:20 [ mulf_init::c#2 mulf_init::c#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Statement [139] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:20 [ mulf_init::c#2 mulf_init::c#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Statement [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ) always clobbers reg byte a +Statement [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] +Statement [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ) always clobbers reg byte a +Statement [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ) always clobbers reg byte a +Statement [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) [ ] ( main:2::init:5::mulf_init:122 [ ] ) always clobbers reg byte a +Statement [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) [ ] ( main:2::init:5::mulf_init:122 [ ] ) always clobbers reg byte a +Statement [11] if(*((const byte*) RASTER#0)!=(byte) $ff) goto anim::@2 [ anim::angle#9 ] ( main:2::anim:7 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [17] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8u_prepare::a#3 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8u_prepare::a#3 ] ) always clobbers reg byte y +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:34 [ anim::x#0 ] +Removing always clobbered register reg byte y as potential for zp ZP_BYTE:35 [ anim::y#0 ] +Statement [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$5 ] ) always clobbers reg byte a +Statement [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ) always clobbers reg byte a +Statement [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$7 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$7 ] ) always clobbers reg byte a +Statement [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ) always clobbers reg byte a +Statement [27] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 mulf8u_prepare::a#4 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 mulf8u_prepare::a#4 ] ) always clobbers reg byte y +Statement [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ) always clobbers reg byte a +Statement [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$11 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$11 ] ) always clobbers reg byte a +Statement [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ) always clobbers reg byte a +Statement [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ) always clobbers reg byte a +Statement [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$13 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$13 ] ) always clobbers reg byte a +Statement [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ) always clobbers reg byte a +Statement [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$16 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$16 ] ) always clobbers reg byte a +Statement [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ) always clobbers reg byte a reg byte x +Statement [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$19 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$19 ] ) always clobbers reg byte a +Statement [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ) always clobbers reg byte a +Statement [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ) always clobbers reg byte a +Statement [49] (byte~) anim::$26 ← < (signed word) anim::xpos#0 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$26 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$26 ] ) always clobbers reg byte a +Statement [51] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 ] ) always clobbers reg byte a +Statement [53] if((byte) anim::i#1!=(byte) 8) goto anim::@4 [ anim::angle#9 anim::i#1 anim::sprite_msb#5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#1 anim::sprite_msb#5 ] ) always clobbers reg byte a +Statement [54] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 [ anim::angle#9 ] ( main:2::anim:7 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [57] (dword) clock::return#2 ← (dword) clock::return#0 [ anim::angle#1 clock::return#2 ] ( main:2::anim:7 [ anim::angle#1 clock::return#2 ] ) always clobbers reg byte a +Statement [58] (dword~) anim::$28 ← (dword) clock::return#2 [ anim::angle#1 anim::$28 ] ( main:2::anim:7 [ anim::angle#1 anim::$28 ] ) always clobbers reg byte a +Statement [59] (dword) anim::cyclecount#0 ← (dword~) anim::$28 - (const dword) CLOCKS_PER_INIT#0 [ anim::angle#1 anim::cyclecount#0 ] ( main:2::anim:7 [ anim::angle#1 anim::cyclecount#0 ] ) always clobbers reg byte a +Statement [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 [ anim::angle#1 print_dword_at::dw#0 ] ( main:2::anim:7 [ anim::angle#1 print_dword_at::dw#0 ] ) always clobbers reg byte a +Statement [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 [ anim::angle#1 ] ( main:2::anim:7 [ anim::angle#1 ] ) always clobbers reg byte a +Statement [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 [ print_dword_at::dw#0 print_word_at::w#0 ] ( main:2::anim:7::print_dword_at:61 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#0 ] ) always clobbers reg byte a +Statement [65] (word) print_word_at::w#1 ← < (dword) print_dword_at::dw#0 [ print_word_at::w#1 ] ( main:2::anim:7::print_dword_at:61 [ anim::angle#1 print_word_at::w#1 ] ) always clobbers reg byte a +Statement [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 [ print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] ) always clobbers reg byte a +Statement [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 [ print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] ) always clobbers reg byte a +Statement [72] (byte) print_byte_at::b#1 ← < (word) print_word_at::w#2 [ print_word_at::at#2 print_byte_at::b#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::at#2 print_byte_at::b#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::at#2 print_byte_at::b#1 ] ) always clobbers reg byte a +Statement [73] (byte*) print_byte_at::at#1 ← (byte*) print_word_at::at#2 + (byte) 2 [ print_byte_at::b#1 print_byte_at::at#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#1 print_byte_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_byte_at::b#1 print_byte_at::at#1 ] ) always clobbers reg byte a +Statement [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 [ print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] ) always clobbers reg byte a +Statement [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 [ print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] ) always clobbers reg byte a +Statement [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f [ print_byte_at::at#2 print_byte_at::$2 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::at#2 print_byte_at::$2 ] ) always clobbers reg byte a +Statement [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 [ print_byte_at::$2 print_char_at::at#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::$2 print_char_at::at#1 ] ) always clobbers reg byte a +Statement [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 [ ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71::print_char_at:80 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71::print_char_at:80 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74::print_char_at:80 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74::print_char_at:80 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71::print_char_at:84 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71::print_char_at:84 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74::print_char_at:84 [ anim::angle#1 print_dword_at::dw#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74::print_char_at:84 [ anim::angle#1 ] ) always clobbers reg byte a reg byte y +Statement [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) [ clock::return#0 ] ( main:2::anim:7::clock:56 [ anim::angle#1 clock::return#0 ] ) always clobbers reg byte a +Statement [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 [ mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ) always clobbers reg byte a +Statement [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a +Statement [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a +Statement [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ) always clobbers reg byte a +Statement [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ) always clobbers reg byte a +Statement [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 [ mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ) always clobbers reg byte a +Statement [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) [ mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ) always clobbers reg byte a Statement asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } always clobbers reg byte a reg byte x -Statement [74] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) [ mulf8u_prepared::return#0 ] ( main:2::anim:7::mulf8s_prepared:19::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:23::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:29::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:34::mulf8u_prepared:58 [ anim::angle#6 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] ) always clobbers reg byte a +Statement [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) [ mulf8u_prepared::return#0 ] ( main:2::anim:7::mulf8s_prepared:20::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:24::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:30::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:35::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] ) always clobbers reg byte a Statement asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } always clobbers reg byte a -Statement [82] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff [ ] ( main:2::init:5 [ ] ) always clobbers reg byte a -Statement [84] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a -Statement [85] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a -Statement [92] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ) always clobbers reg byte a -Statement [97] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ) always clobbers reg byte a -Statement [98] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y -Statement [99] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ) always clobbers reg byte a -Statement [100] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y -Statement [102] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a -Statement [104] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a -Statement [106] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y -Statement [107] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:81 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y -Statement [109] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ( main:2::init:5::mulf_init:81 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ) always clobbers reg byte a -Statement [114] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ( main:2::init:5::mulf_init:81 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ) always clobbers reg byte a -Statement [115] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) [ ] ( main:2::init:5::mulf_init:81 [ ] ) always clobbers reg byte a -Statement [116] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) [ ] ( main:2::init:5::mulf_init:81 [ ] ) always clobbers reg byte a -Potential registers zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] : zp ZP_BYTE:2 , reg byte y , -Potential registers zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] : zp ZP_BYTE:3 , reg byte y , -Potential registers zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] : zp ZP_BYTE:4 , reg byte y , -Potential registers zp ZP_BYTE:5 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] : zp ZP_BYTE:5 , reg byte y , -Potential registers zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] : zp ZP_WORD:6 , -Potential registers zp ZP_BYTE:8 [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] : zp ZP_BYTE:8 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:9 [ init::i#2 init::i#1 ] : zp ZP_BYTE:9 , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:10 [ mulf_init::c#2 mulf_init::c#1 ] : zp ZP_BYTE:10 , reg byte x , -Potential registers zp ZP_WORD:11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] : zp ZP_WORD:11 , -Potential registers zp ZP_WORD:13 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] : zp ZP_WORD:13 , -Potential registers zp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] : zp ZP_BYTE:15 , reg byte x , -Potential registers zp ZP_WORD:16 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] : zp ZP_WORD:16 , -Potential registers zp ZP_BYTE:18 [ mulf_init::x_255#2 mulf_init::x_255#1 ] : zp ZP_BYTE:18 , reg byte x , -Potential registers zp ZP_WORD:19 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] : zp ZP_WORD:19 , -Potential registers zp ZP_WORD:21 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] : zp ZP_WORD:21 , -Potential registers zp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] : zp ZP_BYTE:23 , reg byte x , -Potential registers zp ZP_BYTE:24 [ anim::x#0 ] : zp ZP_BYTE:24 , reg byte y , -Potential registers zp ZP_BYTE:25 [ anim::y#0 ] : zp ZP_BYTE:25 , reg byte y , -Potential registers zp ZP_WORD:26 [ anim::$4 ] : zp ZP_WORD:26 , -Potential registers zp ZP_WORD:28 [ anim::xr#0 ] : zp ZP_WORD:28 , -Potential registers zp ZP_WORD:30 [ anim::$6 ] : zp ZP_WORD:30 , -Potential registers zp ZP_WORD:32 [ anim::yr#0 ] : zp ZP_WORD:32 , -Potential registers zp ZP_WORD:34 [ anim::$9 ] : zp ZP_WORD:34 , -Potential registers zp ZP_WORD:36 [ anim::$10 ] : zp ZP_WORD:36 , -Potential registers zp ZP_WORD:38 [ anim::xr#1 ] : zp ZP_WORD:38 , -Potential registers zp ZP_WORD:40 [ anim::$11 ] : zp ZP_WORD:40 , -Potential registers zp ZP_WORD:42 [ anim::$12 ] : zp ZP_WORD:42 , -Potential registers zp ZP_WORD:44 [ anim::yr#1 ] : zp ZP_WORD:44 , -Potential registers zp ZP_BYTE:46 [ anim::$15 ] : zp ZP_BYTE:46 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:47 [ anim::xpos#0 ] : zp ZP_WORD:47 , -Potential registers zp ZP_BYTE:49 [ anim::$18 ] : zp ZP_BYTE:49 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:50 [ anim::$22 ] : zp ZP_BYTE:50 , reg byte a , reg byte x , reg byte y , reg byte alu , -Potential registers zp ZP_BYTE:51 [ anim::ypos#0 ] : zp ZP_BYTE:51 , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:52 [ anim::i2#0 ] : zp ZP_BYTE:52 , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:53 [ anim::$25 ] : zp ZP_BYTE:53 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:54 [ mulf8u_prepared::b#0 ] : zp ZP_BYTE:54 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:55 [ mulf8u_prepared::return#2 ] : zp ZP_WORD:55 , -Potential registers zp ZP_BYTE:57 [ mulf8s_prepared::$8 ] : zp ZP_BYTE:57 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:58 [ mulf8s_prepared::$15 ] : zp ZP_BYTE:58 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:59 [ mulf8s_prepared::$12 ] : zp ZP_BYTE:59 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:60 [ mulf8s_prepared::$16 ] : zp ZP_BYTE:60 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_WORD:61 [ mulf8u_prepared::return#0 ] : zp ZP_WORD:61 , -Potential registers zp ZP_BYTE:63 [ mulf_init::$7 ] : zp ZP_BYTE:63 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:64 [ mulf_init::$10 ] : zp ZP_BYTE:64 , reg byte a , reg byte x , reg byte y , -Potential registers zp ZP_BYTE:65 [ mulf_init::$11 ] : zp ZP_BYTE:65 , reg byte a , reg byte x , reg byte y , +Statement [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff [ ] ( main:2::init:5 [ ] ) always clobbers reg byte a +Statement [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a +Statement [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a +Statement [133] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ) always clobbers reg byte a +Statement [138] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ) always clobbers reg byte a +Statement [139] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ) always clobbers reg byte a +Statement [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ) always clobbers reg byte a +Statement [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ) always clobbers reg byte a +Statement [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) [ ] ( main:2::init:5::mulf_init:122 [ ] ) always clobbers reg byte a +Statement [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) [ ] ( main:2::init:5::mulf_init:122 [ ] ) always clobbers reg byte a +Statement [11] if(*((const byte*) RASTER#0)!=(byte) $ff) goto anim::@2 [ anim::angle#9 ] ( main:2::anim:7 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [15] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 ] ) always clobbers reg byte a reg byte y +Statement [16] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 ] ) always clobbers reg byte a reg byte y +Statement [17] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8u_prepare::a#3 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8u_prepare::a#3 ] ) always clobbers reg byte y +Statement [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::$5 ] ) always clobbers reg byte a +Statement [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 ] ) always clobbers reg byte a +Statement [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$7 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::$7 ] ) always clobbers reg byte a +Statement [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 ] ) always clobbers reg byte a +Statement [27] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 mulf8u_prepare::a#4 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 anim::yr#0 mulf8u_prepare::a#4 ] ) always clobbers reg byte y +Statement [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$10 ] ) always clobbers reg byte a +Statement [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$11 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 anim::$11 ] ) always clobbers reg byte a +Statement [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::yr#0 anim::xr#1 ] ) always clobbers reg byte a +Statement [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$12 ] ) always clobbers reg byte a +Statement [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$13 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 anim::$13 ] ) always clobbers reg byte a +Statement [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::xr#1 anim::yr#1 ] ) always clobbers reg byte a +Statement [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$16 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::$16 ] ) always clobbers reg byte a +Statement [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#1 anim::xpos#0 ] ) always clobbers reg byte a reg byte x +Statement [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$19 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#1 anim::$19 ] ) always clobbers reg byte a +Statement [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::yr#1 anim::xpos#0 anim::sprite_msb#2 ] ) always clobbers reg byte a +Statement [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::xpos#0 anim::ypos#0 anim::i2#0 ] ) always clobbers reg byte a +Statement [49] (byte~) anim::$26 ← < (signed word) anim::xpos#0 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$26 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 anim::ypos#0 anim::i2#0 anim::$26 ] ) always clobbers reg byte a +Statement [51] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#10 anim::sprite_msb#5 ] ) always clobbers reg byte a +Statement [53] if((byte) anim::i#1!=(byte) 8) goto anim::@4 [ anim::angle#9 anim::i#1 anim::sprite_msb#5 ] ( main:2::anim:7 [ anim::angle#9 anim::i#1 anim::sprite_msb#5 ] ) always clobbers reg byte a +Statement [54] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 [ anim::angle#9 ] ( main:2::anim:7 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [57] (dword) clock::return#2 ← (dword) clock::return#0 [ anim::angle#1 clock::return#2 ] ( main:2::anim:7 [ anim::angle#1 clock::return#2 ] ) always clobbers reg byte a +Statement [58] (dword~) anim::$28 ← (dword) clock::return#2 [ anim::angle#1 anim::$28 ] ( main:2::anim:7 [ anim::angle#1 anim::$28 ] ) always clobbers reg byte a +Statement [59] (dword) anim::cyclecount#0 ← (dword~) anim::$28 - (const dword) CLOCKS_PER_INIT#0 [ anim::angle#1 anim::cyclecount#0 ] ( main:2::anim:7 [ anim::angle#1 anim::cyclecount#0 ] ) always clobbers reg byte a +Statement [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 [ anim::angle#1 print_dword_at::dw#0 ] ( main:2::anim:7 [ anim::angle#1 print_dword_at::dw#0 ] ) always clobbers reg byte a +Statement [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 [ anim::angle#1 ] ( main:2::anim:7 [ anim::angle#1 ] ) always clobbers reg byte a +Statement [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 [ print_dword_at::dw#0 print_word_at::w#0 ] ( main:2::anim:7::print_dword_at:61 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#0 ] ) always clobbers reg byte a +Statement [65] (word) print_word_at::w#1 ← < (dword) print_dword_at::dw#0 [ print_word_at::w#1 ] ( main:2::anim:7::print_dword_at:61 [ anim::angle#1 print_word_at::w#1 ] ) always clobbers reg byte a +Statement [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 [ print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 ] ) always clobbers reg byte a +Statement [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 [ print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#0 print_byte_at::at#0 ] ) always clobbers reg byte a +Statement [72] (byte) print_byte_at::b#1 ← < (word) print_word_at::w#2 [ print_word_at::at#2 print_byte_at::b#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_word_at::at#2 print_byte_at::b#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_word_at::at#2 print_byte_at::b#1 ] ) always clobbers reg byte a +Statement [73] (byte*) print_byte_at::at#1 ← (byte*) print_word_at::at#2 + (byte) 2 [ print_byte_at::b#1 print_byte_at::at#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#1 print_byte_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66 [ anim::angle#1 print_byte_at::b#1 print_byte_at::at#1 ] ) always clobbers reg byte a +Statement [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 [ print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 print_byte_at::$0 ] ) always clobbers reg byte a +Statement [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 [ print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 print_char_at::ch#0 print_char_at::at#0 ] ) always clobbers reg byte a +Statement [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f [ print_byte_at::at#2 print_byte_at::$2 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::at#2 print_byte_at::$2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::at#2 print_byte_at::$2 ] ) always clobbers reg byte a +Statement [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 [ print_byte_at::$2 print_char_at::at#1 ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::$2 print_char_at::at#1 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74 [ anim::angle#1 print_byte_at::$2 print_char_at::at#1 ] ) always clobbers reg byte a +Statement [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 [ ] ( main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71::print_char_at:80 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71::print_char_at:80 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74::print_char_at:80 [ anim::angle#1 print_dword_at::dw#0 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74::print_char_at:80 [ anim::angle#1 print_byte_at::b#2 print_byte_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:71::print_char_at:84 [ anim::angle#1 print_dword_at::dw#0 print_word_at::w#2 print_word_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:71::print_char_at:84 [ anim::angle#1 print_word_at::w#2 print_word_at::at#2 ] main:2::anim:7::print_dword_at:61::print_word_at:64::print_byte_at:74::print_char_at:84 [ anim::angle#1 print_dword_at::dw#0 ] main:2::anim:7::print_dword_at:61::print_word_at:66::print_byte_at:74::print_char_at:84 [ anim::angle#1 ] ) always clobbers reg byte a reg byte y +Statement [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) [ clock::return#0 ] ( main:2::anim:7::clock:56 [ anim::angle#1 clock::return#0 ] ) always clobbers reg byte a +Statement [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 [ mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#2 ] ) always clobbers reg byte a +Statement [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a +Statement [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 ] ) always clobbers reg byte a +Statement [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$8 ] ) always clobbers reg byte a +Statement [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 [ mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8s_prepared::m#0 mulf8s_prepared::$15 ] ) always clobbers reg byte a +Statement [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 [ mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$12 ] ) always clobbers reg byte a +Statement [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) [ mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ( main:2::anim:7::mulf8s_prepared:20 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:24 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:30 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] main:2::anim:7::mulf8s_prepared:35 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::m#5 mulf8s_prepared::$16 ] ) always clobbers reg byte a +Statement asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } always clobbers reg byte a reg byte x +Statement [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) [ mulf8u_prepared::return#0 ] ( main:2::anim:7::mulf8s_prepared:20::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:24::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::y#0 anim::xr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:30::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::x#0 anim::xr#0 anim::yr#0 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] main:2::anim:7::mulf8s_prepared:35::mulf8u_prepared:93 [ anim::angle#9 anim::i#10 anim::sprite_msb#10 anim::yr#0 anim::xr#1 mulf8s_prepared::b#4 mulf8u_prepared::return#0 ] ) always clobbers reg byte a +Statement asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } always clobbers reg byte a +Statement [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 [ ] ( main:2::anim:7::clock_start:13 [ anim::angle#9 ] ) always clobbers reg byte a +Statement [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff [ ] ( main:2::init:5 [ ] ) always clobbers reg byte a +Statement [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a +Statement [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 [ init::i#2 ] ( main:2::init:5 [ init::i#2 ] ) always clobbers reg byte a +Statement [133] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr#4 mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::x_2#3 mulf_init::c#1 mulf_init::$7 ] ) always clobbers reg byte a +Statement [138] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$10 ] ) always clobbers reg byte a +Statement [139] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 mulf_init::$11 ] ) always clobbers reg byte a +Statement [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_hi#2 mulf_init::c#1 mulf_init::x_2#2 mulf_init::sqr#3 ] ) always clobbers reg byte y +Statement [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr1_lo#2 mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::c#1 mulf_init::sqr#1 mulf_init::sqr1_lo#1 mulf_init::sqr1_hi#1 mulf_init::x_2#2 ] ) always clobbers reg byte a +Statement [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#2 mulf_init::sqr2_lo#2 mulf_init::sqr2_hi#2 mulf_init::dir#2 ] ) always clobbers reg byte a reg byte y +Statement [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ( main:2::init:5::mulf_init:122 [ mulf_init::sqr2_lo#2 mulf_init::dir#2 mulf_init::x_255#1 mulf_init::sqr2_hi#1 ] ) always clobbers reg byte a +Statement [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ( main:2::init:5::mulf_init:122 [ mulf_init::x_255#1 mulf_init::sqr2_lo#1 mulf_init::sqr2_hi#1 mulf_init::dir#3 ] ) always clobbers reg byte a +Statement [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) [ ] ( main:2::init:5::mulf_init:122 [ ] ) always clobbers reg byte a +Statement [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) [ ] ( main:2::init:5::mulf_init:122 [ ] ) always clobbers reg byte a +Potential registers zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] : zp ZP_BYTE:2 , +Potential registers zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] : zp ZP_BYTE:3 , +Potential registers zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] : zp ZP_BYTE:4 , +Potential registers zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] : zp ZP_WORD:5 , +Potential registers zp ZP_WORD:7 [ print_word_at::at#2 ] : zp ZP_WORD:7 , +Potential registers zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] : zp ZP_BYTE:9 , reg byte x , +Potential registers zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] : zp ZP_WORD:10 , +Potential registers zp ZP_BYTE:12 [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] : zp ZP_BYTE:12 , reg byte x , reg byte y , +Potential registers zp ZP_WORD:13 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] : zp ZP_WORD:13 , +Potential registers zp ZP_BYTE:15 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] : zp ZP_BYTE:15 , reg byte y , +Potential registers zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] : zp ZP_WORD:16 , +Potential registers zp ZP_BYTE:18 [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] : zp ZP_BYTE:18 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:19 [ init::i#2 init::i#1 ] : zp ZP_BYTE:19 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:20 [ mulf_init::c#2 mulf_init::c#1 ] : zp ZP_BYTE:20 , reg byte x , +Potential registers zp ZP_WORD:21 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] : zp ZP_WORD:21 , +Potential registers zp ZP_WORD:23 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] : zp ZP_WORD:23 , +Potential registers zp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] : zp ZP_BYTE:25 , reg byte x , +Potential registers zp ZP_WORD:26 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] : zp ZP_WORD:26 , +Potential registers zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] : zp ZP_BYTE:28 , reg byte x , +Potential registers zp ZP_WORD:29 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] : zp ZP_WORD:29 , +Potential registers zp ZP_WORD:31 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] : zp ZP_WORD:31 , +Potential registers zp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] : zp ZP_BYTE:33 , reg byte x , +Potential registers zp ZP_BYTE:34 [ anim::x#0 ] : zp ZP_BYTE:34 , +Potential registers zp ZP_BYTE:35 [ anim::y#0 ] : zp ZP_BYTE:35 , +Potential registers zp ZP_WORD:36 [ anim::$5 ] : zp ZP_WORD:36 , +Potential registers zp ZP_WORD:38 [ anim::xr#0 ] : zp ZP_WORD:38 , +Potential registers zp ZP_WORD:40 [ anim::$7 ] : zp ZP_WORD:40 , +Potential registers zp ZP_WORD:42 [ anim::yr#0 ] : zp ZP_WORD:42 , +Potential registers zp ZP_WORD:44 [ anim::$10 ] : zp ZP_WORD:44 , +Potential registers zp ZP_WORD:46 [ anim::$11 ] : zp ZP_WORD:46 , +Potential registers zp ZP_WORD:48 [ anim::xr#1 ] : zp ZP_WORD:48 , +Potential registers zp ZP_WORD:50 [ anim::$12 ] : zp ZP_WORD:50 , +Potential registers zp ZP_WORD:52 [ anim::$13 ] : zp ZP_WORD:52 , +Potential registers zp ZP_WORD:54 [ anim::yr#1 ] : zp ZP_WORD:54 , +Potential registers zp ZP_BYTE:56 [ anim::$16 ] : zp ZP_BYTE:56 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:57 [ anim::xpos#0 ] : zp ZP_WORD:57 , +Potential registers zp ZP_BYTE:59 [ anim::$19 ] : zp ZP_BYTE:59 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:60 [ anim::$23 ] : zp ZP_BYTE:60 , reg byte a , reg byte x , reg byte y , reg byte alu , +Potential registers zp ZP_BYTE:61 [ anim::ypos#0 ] : zp ZP_BYTE:61 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:62 [ anim::i2#0 ] : zp ZP_BYTE:62 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:63 [ anim::$26 ] : zp ZP_BYTE:63 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_DWORD:64 [ clock::return#2 ] : zp ZP_DWORD:64 , +Potential registers zp ZP_DWORD:68 [ anim::$28 ] : zp ZP_DWORD:68 , +Potential registers zp ZP_DWORD:72 [ anim::cyclecount#0 ] : zp ZP_DWORD:72 , +Potential registers zp ZP_DWORD:76 [ print_dword_at::dw#0 ] : zp ZP_DWORD:76 , +Potential registers zp ZP_BYTE:80 [ print_byte_at::$0 ] : zp ZP_BYTE:80 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:81 [ print_byte_at::$2 ] : zp ZP_BYTE:81 , reg byte x , reg byte y , +Potential registers zp ZP_DWORD:82 [ clock::return#0 ] : zp ZP_DWORD:82 , +Potential registers zp ZP_BYTE:86 [ mulf8u_prepared::b#0 ] : zp ZP_BYTE:86 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:87 [ mulf8u_prepared::return#2 ] : zp ZP_WORD:87 , +Potential registers zp ZP_BYTE:89 [ mulf8s_prepared::$8 ] : zp ZP_BYTE:89 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:90 [ mulf8s_prepared::$15 ] : zp ZP_BYTE:90 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:91 [ mulf8s_prepared::$12 ] : zp ZP_BYTE:91 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:92 [ mulf8s_prepared::$16 ] : zp ZP_BYTE:92 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_WORD:93 [ mulf8u_prepared::return#0 ] : zp ZP_WORD:93 , +Potential registers zp ZP_BYTE:95 [ mulf_init::$7 ] : zp ZP_BYTE:95 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:96 [ mulf_init::$10 ] : zp ZP_BYTE:96 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:97 [ mulf_init::$11 ] : zp ZP_BYTE:97 , reg byte a , reg byte x , reg byte y , REGISTER UPLIFT SCOPES -Uplift Scope [anim] 345.37: zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] 202: zp ZP_WORD:26 [ anim::$4 ] 202: zp ZP_WORD:30 [ anim::$6 ] 202: zp ZP_WORD:34 [ anim::$9 ] 202: zp ZP_WORD:36 [ anim::$10 ] 202: zp ZP_WORD:40 [ anim::$11 ] 202: zp ZP_WORD:42 [ anim::$12 ] 202: zp ZP_BYTE:49 [ anim::$18 ] 202: zp ZP_BYTE:50 [ anim::$22 ] 202: zp ZP_BYTE:53 [ anim::$25 ] 164.79: zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] 101: zp ZP_BYTE:46 [ anim::$15 ] 101: zp ZP_BYTE:52 [ anim::i2#0 ] 50.5: zp ZP_BYTE:51 [ anim::ypos#0 ] 33.67: zp ZP_WORD:38 [ anim::xr#1 ] 33.67: zp ZP_WORD:47 [ anim::xpos#0 ] 25.25: zp ZP_WORD:44 [ anim::yr#1 ] 23.31: zp ZP_BYTE:25 [ anim::y#0 ] 18.36: zp ZP_WORD:28 [ anim::xr#0 ] 16.83: zp ZP_WORD:32 [ anim::yr#0 ] 15.95: zp ZP_BYTE:24 [ anim::x#0 ] 11.5: zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] -Uplift Scope [mulf8s_prepared] 848.6: zp ZP_BYTE:5 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] 13.17: zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] 4: zp ZP_BYTE:57 [ mulf8s_prepared::$8 ] 4: zp ZP_BYTE:58 [ mulf8s_prepared::$15 ] 4: zp ZP_BYTE:59 [ mulf8s_prepared::$12 ] 4: zp ZP_BYTE:60 [ mulf8s_prepared::$16 ] -Uplift Scope [mulf8u_prepare] 608: zp ZP_BYTE:8 [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] -Uplift Scope [mulf_init] 45.1: zp ZP_WORD:16 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] 24.36: zp ZP_BYTE:10 [ mulf_init::c#2 mulf_init::c#1 ] 24.14: zp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] 22: zp ZP_BYTE:63 [ mulf_init::$7 ] 22: zp ZP_BYTE:64 [ mulf_init::$10 ] 22: zp ZP_BYTE:65 [ mulf_init::$11 ] 20.62: zp ZP_WORD:19 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] 19.04: zp ZP_WORD:11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] 16.5: zp ZP_BYTE:18 [ mulf_init::x_255#2 mulf_init::x_255#1 ] 14.14: zp ZP_WORD:21 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] 12.05: zp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] 8.5: zp ZP_WORD:13 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] -Uplift Scope [init] 31.17: zp ZP_BYTE:9 [ init::i#2 init::i#1 ] -Uplift Scope [mulf8u_prepared] 4: zp ZP_BYTE:54 [ mulf8u_prepared::b#0 ] 4: zp ZP_WORD:55 [ mulf8u_prepared::return#2 ] 1.33: zp ZP_WORD:61 [ mulf8u_prepared::return#0 ] +Uplift Scope [anim] 345.37: zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] 202: zp ZP_WORD:36 [ anim::$5 ] 202: zp ZP_WORD:40 [ anim::$7 ] 202: zp ZP_WORD:44 [ anim::$10 ] 202: zp ZP_WORD:46 [ anim::$11 ] 202: zp ZP_WORD:50 [ anim::$12 ] 202: zp ZP_WORD:52 [ anim::$13 ] 202: zp ZP_BYTE:59 [ anim::$19 ] 202: zp ZP_BYTE:60 [ anim::$23 ] 202: zp ZP_BYTE:63 [ anim::$26 ] 164.79: zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] 101: zp ZP_BYTE:56 [ anim::$16 ] 101: zp ZP_BYTE:62 [ anim::i2#0 ] 50.5: zp ZP_BYTE:61 [ anim::ypos#0 ] 33.67: zp ZP_WORD:48 [ anim::xr#1 ] 33.67: zp ZP_WORD:57 [ anim::xpos#0 ] 25.25: zp ZP_WORD:54 [ anim::yr#1 ] 23.31: zp ZP_BYTE:35 [ anim::y#0 ] 22: zp ZP_DWORD:68 [ anim::$28 ] 22: zp ZP_DWORD:72 [ anim::cyclecount#0 ] 18.36: zp ZP_WORD:38 [ anim::xr#0 ] 16.83: zp ZP_WORD:42 [ anim::yr#0 ] 15.95: zp ZP_BYTE:34 [ anim::x#0 ] 3.24: zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] +Uplift Scope [mulf8s_prepared] 848.6: zp ZP_BYTE:15 [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] 13.17: zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] 4: zp ZP_BYTE:89 [ mulf8s_prepared::$8 ] 4: zp ZP_BYTE:90 [ mulf8s_prepared::$15 ] 4: zp ZP_BYTE:91 [ mulf8s_prepared::$12 ] 4: zp ZP_BYTE:92 [ mulf8s_prepared::$16 ] +Uplift Scope [mulf8u_prepare] 608: zp ZP_BYTE:18 [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] +Uplift Scope [mulf_init] 45.1: zp ZP_WORD:26 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] 24.36: zp ZP_BYTE:20 [ mulf_init::c#2 mulf_init::c#1 ] 24.14: zp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] 22: zp ZP_BYTE:95 [ mulf_init::$7 ] 22: zp ZP_BYTE:96 [ mulf_init::$10 ] 22: zp ZP_BYTE:97 [ mulf_init::$11 ] 20.62: zp ZP_WORD:29 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] 19.04: zp ZP_WORD:21 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] 16.5: zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] 14.14: zp ZP_WORD:31 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] 12.05: zp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] 8.5: zp ZP_WORD:23 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Uplift Scope [init] 31.17: zp ZP_BYTE:19 [ init::i#2 init::i#1 ] +Uplift Scope [clock] 22: zp ZP_DWORD:64 [ clock::return#2 ] 4.33: zp ZP_DWORD:82 [ clock::return#0 ] +Uplift Scope [print_char_at] 12: zp ZP_BYTE:12 [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] 12: zp ZP_WORD:13 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] +Uplift Scope [print_byte_at] 9.33: zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] 5.6: zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] 4: zp ZP_BYTE:80 [ print_byte_at::$0 ] 2: zp ZP_BYTE:81 [ print_byte_at::$2 ] +Uplift Scope [print_word_at] 10: zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] 0.8: zp ZP_WORD:7 [ print_word_at::at#2 ] +Uplift Scope [mulf8u_prepared] 4: zp ZP_BYTE:86 [ mulf8u_prepared::b#0 ] 4: zp ZP_WORD:87 [ mulf8u_prepared::return#2 ] 1.33: zp ZP_WORD:93 [ mulf8u_prepared::return#0 ] +Uplift Scope [print_dword_at] 5: zp ZP_DWORD:76 [ print_dword_at::dw#0 ] +Uplift Scope [clock_start] +Uplift Scope [RADIX] Uplift Scope [main] Uplift Scope [] -Uplifting [anim] best 43569 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] zp ZP_WORD:26 [ anim::$4 ] zp ZP_WORD:30 [ anim::$6 ] zp ZP_WORD:34 [ anim::$9 ] zp ZP_WORD:36 [ anim::$10 ] zp ZP_WORD:40 [ anim::$11 ] zp ZP_WORD:42 [ anim::$12 ] reg byte a [ anim::$18 ] reg byte a [ anim::$22 ] reg byte a [ anim::$25 ] zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] zp ZP_BYTE:46 [ anim::$15 ] zp ZP_BYTE:52 [ anim::i2#0 ] zp ZP_BYTE:51 [ anim::ypos#0 ] zp ZP_WORD:38 [ anim::xr#1 ] zp ZP_WORD:47 [ anim::xpos#0 ] zp ZP_WORD:44 [ anim::yr#1 ] zp ZP_BYTE:25 [ anim::y#0 ] zp ZP_WORD:28 [ anim::xr#0 ] zp ZP_WORD:32 [ anim::yr#0 ] zp ZP_BYTE:24 [ anim::x#0 ] zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] -Limited combination testing to 100 combinations of 92160 possible. -Uplifting [mulf8s_prepared] best 42348 combination reg byte y [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] reg byte a [ mulf8s_prepared::$8 ] reg byte a [ mulf8s_prepared::$15 ] reg byte a [ mulf8s_prepared::$12 ] zp ZP_BYTE:60 [ mulf8s_prepared::$16 ] +Uplifting [anim] best 45223 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] zp ZP_WORD:36 [ anim::$5 ] zp ZP_WORD:40 [ anim::$7 ] zp ZP_WORD:44 [ anim::$10 ] zp ZP_WORD:46 [ anim::$11 ] zp ZP_WORD:50 [ anim::$12 ] zp ZP_WORD:52 [ anim::$13 ] reg byte a [ anim::$19 ] reg byte a [ anim::$23 ] reg byte a [ anim::$26 ] zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] zp ZP_BYTE:56 [ anim::$16 ] zp ZP_BYTE:62 [ anim::i2#0 ] zp ZP_BYTE:61 [ anim::ypos#0 ] zp ZP_WORD:48 [ anim::xr#1 ] zp ZP_WORD:57 [ anim::xpos#0 ] zp ZP_WORD:54 [ anim::yr#1 ] zp ZP_BYTE:35 [ anim::y#0 ] zp ZP_DWORD:68 [ anim::$28 ] zp ZP_DWORD:72 [ anim::cyclecount#0 ] zp ZP_WORD:38 [ anim::xr#0 ] zp ZP_WORD:42 [ anim::yr#0 ] zp ZP_BYTE:34 [ anim::x#0 ] zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] +Limited combination testing to 100 combinations of 2880 possible. +Uplifting [mulf8s_prepared] best 44002 combination reg byte y [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] reg byte a [ mulf8s_prepared::$8 ] reg byte a [ mulf8s_prepared::$15 ] reg byte a [ mulf8s_prepared::$12 ] zp ZP_BYTE:92 [ mulf8s_prepared::$16 ] Limited combination testing to 100 combinations of 512 possible. -Uplifting [mulf8u_prepare] best 41745 combination reg byte a [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] -Uplifting [mulf_init] best 41495 combination zp ZP_WORD:16 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] reg byte x [ mulf_init::c#2 mulf_init::c#1 ] zp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] reg byte a [ mulf_init::$7 ] reg byte a [ mulf_init::$10 ] reg byte a [ mulf_init::$11 ] zp ZP_WORD:19 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] zp ZP_WORD:11 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] zp ZP_BYTE:18 [ mulf_init::x_255#2 mulf_init::x_255#1 ] zp ZP_WORD:21 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] zp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] zp ZP_WORD:13 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Uplifting [mulf8u_prepare] best 43399 combination reg byte a [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] +Uplifting [mulf_init] best 43149 combination zp ZP_WORD:26 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] reg byte x [ mulf_init::c#2 mulf_init::c#1 ] zp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] reg byte a [ mulf_init::$7 ] reg byte a [ mulf_init::$10 ] reg byte a [ mulf_init::$11 ] zp ZP_WORD:29 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] zp ZP_WORD:21 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] zp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] zp ZP_WORD:31 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] zp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] zp ZP_WORD:23 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] Limited combination testing to 100 combinations of 1024 possible. -Uplifting [init] best 41345 combination reg byte x [ init::i#2 init::i#1 ] -Uplifting [mulf8u_prepared] best 41341 combination reg byte a [ mulf8u_prepared::b#0 ] zp ZP_WORD:55 [ mulf8u_prepared::return#2 ] zp ZP_WORD:61 [ mulf8u_prepared::return#0 ] -Uplifting [main] best 41341 combination -Uplifting [] best 41341 combination +Uplifting [init] best 42999 combination reg byte x [ init::i#2 init::i#1 ] +Uplifting [clock] best 42999 combination zp ZP_DWORD:64 [ clock::return#2 ] zp ZP_DWORD:82 [ clock::return#0 ] +Uplifting [print_char_at] best 42992 combination reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] zp ZP_WORD:13 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] +Uplifting [print_byte_at] best 42984 combination zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] reg byte a [ print_byte_at::$0 ] reg byte y [ print_byte_at::$2 ] +Uplifting [print_word_at] best 42984 combination zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] zp ZP_WORD:7 [ print_word_at::at#2 ] +Uplifting [mulf8u_prepared] best 42980 combination reg byte a [ mulf8u_prepared::b#0 ] zp ZP_WORD:87 [ mulf8u_prepared::return#2 ] zp ZP_WORD:93 [ mulf8u_prepared::return#0 ] +Uplifting [print_dword_at] best 42980 combination zp ZP_DWORD:76 [ print_dword_at::dw#0 ] +Uplifting [clock_start] best 42980 combination +Uplifting [RADIX] best 42980 combination +Uplifting [main] best 42980 combination +Uplifting [] best 42980 combination Attempting to uplift remaining variables inzp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] -Uplifting [anim] best 41341 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] +Uplifting [anim] best 42980 combination zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] Attempting to uplift remaining variables inzp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] -Uplifting [anim] best 41341 combination zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:46 [ anim::$15 ] -Uplifting [anim] best 40741 combination reg byte a [ anim::$15 ] -Attempting to uplift remaining variables inzp ZP_BYTE:52 [ anim::i2#0 ] -Uplifting [anim] best 40041 combination reg byte x [ anim::i2#0 ] -Attempting to uplift remaining variables inzp ZP_BYTE:51 [ anim::ypos#0 ] -Uplifting [anim] best 39841 combination reg byte y [ anim::ypos#0 ] -Attempting to uplift remaining variables inzp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -Uplifting [mulf_init] best 39841 combination zp ZP_BYTE:15 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:25 [ anim::y#0 ] -Uplifting [anim] best 39841 combination zp ZP_BYTE:25 [ anim::y#0 ] -Attempting to uplift remaining variables inzp ZP_BYTE:18 [ mulf_init::x_255#2 mulf_init::x_255#1 ] -Uplifting [mulf_init] best 39701 combination reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:24 [ anim::x#0 ] -Uplifting [anim] best 39701 combination zp ZP_BYTE:24 [ anim::x#0 ] -Attempting to uplift remaining variables inzp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] -Uplifting [mulf_init] best 39701 combination zp ZP_BYTE:23 [ mulf_init::dir#2 mulf_init::dir#3 ] -Attempting to uplift remaining variables inzp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] -Uplifting [anim] best 39701 combination zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] -Attempting to uplift remaining variables inzp ZP_BYTE:60 [ mulf8s_prepared::$16 ] -Uplifting [mulf8s_prepared] best 39695 combination reg byte a [ mulf8s_prepared::$16 ] -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] ] with [ zp ZP_WORD:26 [ anim::$4 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 ] ] with [ zp ZP_WORD:30 [ anim::$6 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 ] ] with [ zp ZP_WORD:34 [ anim::$9 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 ] ] with [ zp ZP_WORD:40 [ anim::$11 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 anim::$11 ] ] with [ zp ZP_WORD:55 [ mulf8u_prepared::return#2 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:28 [ anim::xr#0 ] ] with [ zp ZP_WORD:38 [ anim::xr#1 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:32 [ anim::yr#0 ] ] with [ zp ZP_WORD:44 [ anim::yr#1 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 anim::$11 mulf8u_prepared::return#2 ] ] with [ zp ZP_WORD:36 [ anim::$10 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 anim::$11 mulf8u_prepared::return#2 anim::$10 ] ] with [ zp ZP_WORD:42 [ anim::$12 ] ] - score: 1 -Coalescing zero page register with common assignment [ zp ZP_WORD:6 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 anim::$11 mulf8u_prepared::return#2 anim::$10 anim::$12 ] ] with [ zp ZP_WORD:61 [ mulf8u_prepared::return#0 ] ] - score: 1 -Allocated (was zp ZP_WORD:6) zp ZP_WORD:5 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 anim::$11 mulf8u_prepared::return#2 anim::$10 anim::$12 mulf8u_prepared::return#0 ] -Allocated (was zp ZP_WORD:11) zp ZP_WORD:7 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] -Allocated (was zp ZP_WORD:13) zp ZP_WORD:9 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] -Allocated (was zp ZP_BYTE:15) zp ZP_BYTE:11 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -Allocated (was zp ZP_WORD:16) zp ZP_WORD:12 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] -Allocated (was zp ZP_WORD:19) zp ZP_WORD:14 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] -Allocated (was zp ZP_WORD:21) zp ZP_WORD:16 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] -Allocated (was zp ZP_BYTE:23) zp ZP_BYTE:18 [ mulf_init::dir#2 mulf_init::dir#3 ] -Allocated (was zp ZP_BYTE:24) zp ZP_BYTE:19 [ anim::x#0 ] -Allocated (was zp ZP_BYTE:25) zp ZP_BYTE:20 [ anim::y#0 ] -Allocated (was zp ZP_WORD:28) zp ZP_WORD:21 [ anim::xr#0 anim::xr#1 ] -Allocated (was zp ZP_WORD:32) zp ZP_WORD:23 [ anim::yr#0 anim::yr#1 ] -Allocated (was zp ZP_WORD:47) zp ZP_WORD:25 [ anim::xpos#0 ] +Uplifting [anim] best 42980 combination zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:56 [ anim::$16 ] +Uplifting [anim] best 42380 combination reg byte a [ anim::$16 ] +Attempting to uplift remaining variables inzp ZP_BYTE:62 [ anim::i2#0 ] +Uplifting [anim] best 41680 combination reg byte x [ anim::i2#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:61 [ anim::ypos#0 ] +Uplifting [anim] best 41480 combination reg byte y [ anim::ypos#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Uplifting [mulf_init] best 41480 combination zp ZP_BYTE:25 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:35 [ anim::y#0 ] +Uplifting [anim] best 41480 combination zp ZP_BYTE:35 [ anim::y#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:28 [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Uplifting [mulf_init] best 41340 combination reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:34 [ anim::x#0 ] +Uplifting [anim] best 41340 combination zp ZP_BYTE:34 [ anim::x#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] +Uplifting [mulf_init] best 41340 combination zp ZP_BYTE:33 [ mulf_init::dir#2 mulf_init::dir#3 ] +Attempting to uplift remaining variables inzp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +Uplifting [print_byte_at] best 41340 combination zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +Attempting to uplift remaining variables inzp ZP_BYTE:92 [ mulf8s_prepared::$16 ] +Uplifting [mulf8s_prepared] best 41334 combination reg byte a [ mulf8s_prepared::$16 ] +Attempting to uplift remaining variables inzp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] +Uplifting [anim] best 41334 combination zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] +Coalescing zero page register with common assignment [ zp ZP_WORD:7 [ print_word_at::at#2 ] ] with [ zp ZP_WORD:10 [ print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] ] - score: 2 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 ] ] with [ zp ZP_WORD:36 [ anim::$5 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 ] ] with [ zp ZP_WORD:40 [ anim::$7 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 ] ] with [ zp ZP_WORD:44 [ anim::$10 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 ] ] with [ zp ZP_WORD:50 [ anim::$12 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 anim::$12 ] ] with [ zp ZP_WORD:87 [ mulf8u_prepared::return#2 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:38 [ anim::xr#0 ] ] with [ zp ZP_WORD:48 [ anim::xr#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:42 [ anim::yr#0 ] ] with [ zp ZP_WORD:54 [ anim::yr#1 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:64 [ clock::return#2 ] ] with [ zp ZP_DWORD:68 [ anim::$28 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:64 [ clock::return#2 anim::$28 ] ] with [ zp ZP_DWORD:82 [ clock::return#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:72 [ anim::cyclecount#0 ] ] with [ zp ZP_DWORD:76 [ print_dword_at::dw#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 anim::$12 mulf8u_prepared::return#2 ] ] with [ zp ZP_WORD:46 [ anim::$11 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 anim::$12 mulf8u_prepared::return#2 anim::$11 ] ] with [ zp ZP_WORD:52 [ anim::$13 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_WORD:16 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 anim::$12 mulf8u_prepared::return#2 anim::$11 anim::$13 ] ] with [ zp ZP_WORD:93 [ mulf8u_prepared::return#0 ] ] - score: 1 +Coalescing zero page register with common assignment [ zp ZP_DWORD:64 [ clock::return#2 anim::$28 clock::return#0 ] ] with [ zp ZP_DWORD:72 [ anim::cyclecount#0 print_dword_at::dw#0 ] ] - score: 1 +Allocated (was zp ZP_WORD:13) zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] +Allocated (was zp ZP_WORD:16) zp ZP_WORD:12 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 anim::$12 mulf8u_prepared::return#2 anim::$11 anim::$13 mulf8u_prepared::return#0 ] +Allocated (was zp ZP_WORD:21) zp ZP_WORD:14 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +Allocated (was zp ZP_WORD:23) zp ZP_WORD:16 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +Allocated (was zp ZP_BYTE:25) zp ZP_BYTE:18 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +Allocated (was zp ZP_WORD:26) zp ZP_WORD:19 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +Allocated (was zp ZP_WORD:29) zp ZP_WORD:21 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +Allocated (was zp ZP_WORD:31) zp ZP_WORD:23 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +Allocated (was zp ZP_BYTE:33) zp ZP_BYTE:25 [ mulf_init::dir#2 mulf_init::dir#3 ] +Allocated (was zp ZP_BYTE:34) zp ZP_BYTE:26 [ anim::x#0 ] +Allocated (was zp ZP_BYTE:35) zp ZP_BYTE:27 [ anim::y#0 ] +Allocated (was zp ZP_WORD:38) zp ZP_WORD:28 [ anim::xr#0 anim::xr#1 ] +Allocated (was zp ZP_WORD:42) zp ZP_WORD:30 [ anim::yr#0 anim::yr#1 ] +Allocated (was zp ZP_WORD:57) zp ZP_WORD:32 [ anim::xpos#0 ] +Allocated (was zp ZP_DWORD:64) zp ZP_DWORD:34 [ clock::return#2 anim::$28 clock::return#0 anim::cyclecount#0 print_dword_at::dw#0 ] ASSEMBLER BEFORE OPTIMIZATION // File Comments @@ -3090,12 +4141,27 @@ ASSEMBLER BEFORE OPTIMIZATION .label SPRITES_ENABLE = $d015 .label BORDERCOL = $d020 .label SPRITES_COLS = $d027 + // CIA #2 Timer A+B Value (32-bit) + .label CIA2_TIMER_AB = $dd04 + // CIA #2 Timer A Control Register + .label CIA2_TIMER_A_CONTROL = $dd0e + // CIA #2 Timer B Control Register + .label CIA2_TIMER_B_CONTROL = $dd0f + // Timer Control - Start/stop timer (0:stop, 1: start) + .const CIA_TIMER_CONTROL_START = 1 + // Timer Control - Time CONTINUOUS/ONE-SHOT (0:CONTINUOUS, 1: ONE-SHOT) + .const CIA_TIMER_CONTROL_CONTINUOUS = 0 + // Timer B Control - Timer counts (00:system cycles, 01: CNT pulses, 10: timer A underflow, 11: time A underflow while CNT is high) + .const CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A = $40 .const GREEN = 5 .const LIGHT_BLUE = $e + // Clock cycles used to start & read the cycle clock by calling clock_start() and clock() once. Can be subtracted when calculating the number of cycles used by a routine. + // To make precise cycle measurements interrupts and the display must be disabled so neither steals any cycles from the code. + .const CLOCKS_PER_INIT = $12 .label SCREEN = $400 // A single sprite .label SPRITE = $3000 - .label SIN = COS+$40 + .label COS = SIN+$40 // @begin bbegin: jmp b1 @@ -3115,7 +4181,7 @@ main: { // asm { sei } sei // [5] call init - // [80] phi from main to init [phi:main->init] + // [121] phi from main to init [phi:main->init] init_from_main: jsr init // [6] phi from main to main::@1 [phi:main->main::@1] @@ -3135,23 +4201,25 @@ main: { } // anim anim: { - .label _4 = 5 - .label _6 = 5 - .label _9 = 5 - .label _10 = 5 - .label _11 = 5 - .label _12 = 5 - .label x = $13 - .label y = $14 - .label xr = $15 - .label yr = $17 - .label xpos = $19 + .label _5 = $c + .label _7 = $c + .label _10 = $c + .label _11 = $c + .label _12 = $c + .label _13 = $c + .label _28 = $22 + .label x = $1a + .label y = $1b + .label xr = $1c + .label yr = $1e + .label xpos = $20 .label sprite_msb = 4 .label i = 3 .label angle = 2 + .label cyclecount = $22 // [10] phi from anim to anim::@1 [phi:anim->anim::@1] b1_from_anim: - // [10] phi (byte) anim::angle#6 = (byte) 0 [phi:anim->anim::@1#0] -- vbuz1=vbuc1 + // [10] phi (byte) anim::angle#9 = (byte) 0 [phi:anim->anim::@1#0] -- vbuz1=vbuc1 lda #0 sta angle jmp b1 @@ -3169,27 +4237,29 @@ anim: { b3: // [12] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) -- _deref_pbuc1=_inc__deref_pbuc1 inc BORDERCOL - // [13] phi from anim::@3 to anim::@4 [phi:anim::@3->anim::@4] + // [13] call clock_start + jsr clock_start + // [14] phi from anim::@3 to anim::@4 [phi:anim::@3->anim::@4] b4_from_b3: - // [13] phi (byte) anim::sprite_msb#10 = (byte) 0 [phi:anim::@3->anim::@4#0] -- vbuz1=vbuc1 + // [14] phi (byte) anim::sprite_msb#10 = (byte) 0 [phi:anim::@3->anim::@4#0] -- vbuz1=vbuc1 lda #0 sta sprite_msb - // [13] phi (byte) anim::i#10 = (byte) 0 [phi:anim::@3->anim::@4#1] -- vbuz1=vbuc1 + // [14] phi (byte) anim::i#10 = (byte) 0 [phi:anim::@3->anim::@4#1] -- vbuz1=vbuc1 lda #0 sta i jmp b4 - // [13] phi from anim::@5 to anim::@4 [phi:anim::@5->anim::@4] + // [14] phi from anim::@5 to anim::@4 [phi:anim::@5->anim::@4] b4_from_b5: - // [13] phi (byte) anim::sprite_msb#10 = (byte) anim::sprite_msb#5 [phi:anim::@5->anim::@4#0] -- register_copy - // [13] phi (byte) anim::i#10 = (byte) anim::i#1 [phi:anim::@5->anim::@4#1] -- register_copy + // [14] phi (byte) anim::sprite_msb#10 = (byte) anim::sprite_msb#5 [phi:anim::@5->anim::@4#0] -- register_copy + // [14] phi (byte) anim::i#10 = (byte) anim::i#1 [phi:anim::@5->anim::@4#1] -- register_copy jmp b4 // anim::@4 b4: - // [14] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 + // [15] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 ldy i lda xs,y sta x - // [15] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 + // [16] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 // signed fixed[7.0] ldy i lda ys,y @@ -3197,115 +4267,115 @@ anim: { jmp mulf8s_prepare1 // anim::mulf8s_prepare1 mulf8s_prepare1: - // [16] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte[$140]) COS#0 + (byte) anim::angle#6) -- vbuaa=pbuc1_derefidx_vbuz1 + // [17] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) -- vbuaa=pbuc1_derefidx_vbuz1 ldy angle lda COS,y - // [17] call mulf8u_prepare - // [76] phi from anim::mulf8s_prepare1 to mulf8u_prepare [phi:anim::mulf8s_prepare1->mulf8u_prepare] + // [18] call mulf8u_prepare + // [111] phi from anim::mulf8s_prepare1 to mulf8u_prepare [phi:anim::mulf8s_prepare1->mulf8u_prepare] mulf8u_prepare_from_mulf8s_prepare1: - // [76] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#3 [phi:anim::mulf8s_prepare1->mulf8u_prepare#0] -- register_copy + // [111] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#3 [phi:anim::mulf8s_prepare1->mulf8u_prepare#0] -- register_copy jsr mulf8u_prepare jmp b8 // anim::@8 b8: - // [18] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 + // [19] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 ldy x - // [19] call mulf8s_prepared - // [56] phi from anim::@8 to mulf8s_prepared [phi:anim::@8->mulf8s_prepared] + // [20] call mulf8s_prepared + // [91] phi from anim::@8 to mulf8s_prepared [phi:anim::@8->mulf8s_prepared] mulf8s_prepared_from_b8: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#0 [phi:anim::@8->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#0 [phi:anim::@8->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b10 // anim::@10 b10: - // [20] (signed word~) anim::$4 ← (signed word)(word) mulf8s_prepared::m#4 - // [21] (signed word) anim::xr#0 ← (signed word~) anim::$4 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _4 + // [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 + // [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _5 asl sta xr - lda _4+1 + lda _5+1 rol sta xr+1 - // [22] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 + // [23] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 ldy y - // [23] call mulf8s_prepared - // [56] phi from anim::@10 to mulf8s_prepared [phi:anim::@10->mulf8s_prepared] + // [24] call mulf8s_prepared + // [91] phi from anim::@10 to mulf8s_prepared [phi:anim::@10->mulf8s_prepared] mulf8s_prepared_from_b10: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#1 [phi:anim::@10->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#1 [phi:anim::@10->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b11 // anim::@11 b11: - // [24] (signed word~) anim::$6 ← (signed word)(word) mulf8s_prepared::m#4 - // [25] (signed word) anim::yr#0 ← (signed word~) anim::$6 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _6 + // [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 + // [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _7 asl sta yr - lda _6+1 + lda _7+1 rol sta yr+1 jmp mulf8s_prepare2 // anim::mulf8s_prepare2 mulf8s_prepare2: - // [26] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte*) SIN#0 + (byte) anim::angle#6) -- vbuaa=pbuc1_derefidx_vbuz1 + // [27] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) -- vbuaa=pbuc1_derefidx_vbuz1 ldy angle lda SIN,y - // [27] call mulf8u_prepare - // [76] phi from anim::mulf8s_prepare2 to mulf8u_prepare [phi:anim::mulf8s_prepare2->mulf8u_prepare] + // [28] call mulf8u_prepare + // [111] phi from anim::mulf8s_prepare2 to mulf8u_prepare [phi:anim::mulf8s_prepare2->mulf8u_prepare] mulf8u_prepare_from_mulf8s_prepare2: - // [76] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#4 [phi:anim::mulf8s_prepare2->mulf8u_prepare#0] -- register_copy + // [111] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#4 [phi:anim::mulf8s_prepare2->mulf8u_prepare#0] -- register_copy jsr mulf8u_prepare jmp b9 // anim::@9 b9: - // [28] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 + // [29] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 ldy y - // [29] call mulf8s_prepared - // [56] phi from anim::@9 to mulf8s_prepared [phi:anim::@9->mulf8s_prepared] + // [30] call mulf8s_prepared + // [91] phi from anim::@9 to mulf8s_prepared [phi:anim::@9->mulf8s_prepared] mulf8s_prepared_from_b9: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#2 [phi:anim::@9->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#2 [phi:anim::@9->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b12 // anim::@12 b12: - // [30] (signed word~) anim::$9 ← (signed word)(word) mulf8s_prepared::m#4 - // [31] (signed word~) anim::$10 ← (signed word~) anim::$9 << (byte) 1 -- vwsz1=vwsz1_rol_1 - asl _10 - rol _10+1 - // [32] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$10 -- vwsz1=vwsz1_minus_vwsz2 + // [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 + // [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _11 + rol _11+1 + // [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 -- vwsz1=vwsz1_minus_vwsz2 lda xr sec - sbc _10 + sbc _11 sta xr lda xr+1 - sbc _10+1 + sbc _11+1 sta xr+1 - // [33] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 + // [34] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 ldy x - // [34] call mulf8s_prepared - // [56] phi from anim::@12 to mulf8s_prepared [phi:anim::@12->mulf8s_prepared] + // [35] call mulf8s_prepared + // [91] phi from anim::@12 to mulf8s_prepared [phi:anim::@12->mulf8s_prepared] mulf8s_prepared_from_b12: - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#3 [phi:anim::@12->mulf8s_prepared#0] -- register_copy + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#3 [phi:anim::@12->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared jmp b13 // anim::@13 b13: - // [35] (signed word~) anim::$11 ← (signed word)(word) mulf8s_prepared::m#4 - // [36] (signed word~) anim::$12 ← (signed word~) anim::$11 << (byte) 1 -- vwsz1=vwsz1_rol_1 - asl _12 - rol _12+1 - // [37] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$12 -- vwsz1=vwsz1_plus_vwsz2 + // [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 + // [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _13 + rol _13+1 + // [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 -- vwsz1=vwsz1_plus_vwsz2 // signed fixed[8.8] lda yr clc - adc _12 + adc _13 sta yr lda yr+1 - adc _12+1 + adc _13+1 sta yr+1 - // [38] (byte~) anim::$15 ← > (signed word) anim::xr#1 -- vbuaa=_hi_vwsz1 + // [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 -- vbuaa=_hi_vwsz1 lda xr+1 - // [39] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$15 + (signed byte) $18+(signed word) $95 -- vwsz1=vbsaa_plus_vwsc1 + // [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 -- vwsz1=vbsaa_plus_vwsc1 tax clc adc #<$18+$95 @@ -3317,65 +4387,273 @@ anim: { !: adc #>$18+$95 sta xpos+1 - // [40] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 -- vbuz1=vbuz1_ror_1 + // [41] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 -- vbuz1=vbuz1_ror_1 lsr sprite_msb - // [41] (byte~) anim::$18 ← > (signed word) anim::xpos#0 -- vbuaa=_hi_vwsz1 + // [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 -- vbuaa=_hi_vwsz1 lda xpos+1 - // [42] if((byte~) anim::$18==(byte) 0) goto anim::@5 -- vbuaa_eq_0_then_la1 + // [43] if((byte~) anim::$19==(byte) 0) goto anim::@5 -- vbuaa_eq_0_then_la1 cmp #0 beq b5_from_b13 jmp b6 // anim::@6 b6: - // [43] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 -- vbuz1=vbuz1_bor_vbuc1 + // [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 -- vbuz1=vbuz1_bor_vbuc1 lda #$80 ora sprite_msb sta sprite_msb - // [44] phi from anim::@13 anim::@6 to anim::@5 [phi:anim::@13/anim::@6->anim::@5] + // [45] phi from anim::@13 anim::@6 to anim::@5 [phi:anim::@13/anim::@6->anim::@5] b5_from_b13: b5_from_b6: - // [44] phi (byte) anim::sprite_msb#5 = (byte) anim::sprite_msb#1 [phi:anim::@13/anim::@6->anim::@5#0] -- register_copy + // [45] phi (byte) anim::sprite_msb#5 = (byte) anim::sprite_msb#1 [phi:anim::@13/anim::@6->anim::@5#0] -- register_copy jmp b5 // anim::@5 b5: - // [45] (byte~) anim::$22 ← > (signed word) anim::yr#1 -- vbuaa=_hi_vwsz1 + // [46] (byte~) anim::$23 ← > (signed word) anim::yr#1 -- vbuaa=_hi_vwsz1 lda yr+1 - // [46] (byte) anim::ypos#0 ← (byte~) anim::$22 + (byte) $59+(byte) $33 -- vbuyy=vbuaa_plus_vbuc1 + // [47] (byte) anim::ypos#0 ← (byte~) anim::$23 + (byte) $59+(byte) $33 -- vbuyy=vbuaa_plus_vbuc1 clc adc #$59+$33 tay - // [47] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 -- vbuxx=vbuz1_rol_1 + // [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 -- vbuxx=vbuz1_rol_1 lda i asl tax - // [48] (byte~) anim::$25 ← < (signed word) anim::xpos#0 -- vbuaa=_lo_vwsz1 + // [49] (byte~) anim::$26 ← < (signed word) anim::xpos#0 -- vbuaa=_lo_vwsz1 lda xpos - // [49] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$25 -- pbuc1_derefidx_vbuxx=vbuaa + // [50] *((const byte*) SPRITES_XPOS#0 + (byte) anim::i2#0) ← (byte~) anim::$26 -- pbuc1_derefidx_vbuxx=vbuaa sta SPRITES_XPOS,x - // [50] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 -- pbuc1_derefidx_vbuxx=vbuyy + // [51] *((const byte*) SPRITES_YPOS#0 + (byte) anim::i2#0) ← (byte) anim::ypos#0 -- pbuc1_derefidx_vbuxx=vbuyy tya sta SPRITES_YPOS,x - // [51] (byte) anim::i#1 ← ++ (byte) anim::i#10 -- vbuz1=_inc_vbuz1 + // [52] (byte) anim::i#1 ← ++ (byte) anim::i#10 -- vbuz1=_inc_vbuz1 inc i - // [52] if((byte) anim::i#1!=(byte) 8) goto anim::@4 -- vbuz1_neq_vbuc1_then_la1 + // [53] if((byte) anim::i#1!=(byte) 8) goto anim::@4 -- vbuz1_neq_vbuc1_then_la1 lda #8 cmp i bne b4_from_b5 jmp b7 // anim::@7 b7: - // [53] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 -- _deref_pbuc1=vbuz1 + // [54] *((const byte*) SPRITES_XMSB#0) ← (byte) anim::sprite_msb#5 -- _deref_pbuc1=vbuz1 lda sprite_msb sta SPRITES_XMSB - // [54] (byte) anim::angle#1 ← ++ (byte) anim::angle#6 -- vbuz1=_inc_vbuz1 + // [55] (byte) anim::angle#1 ← ++ (byte) anim::angle#9 -- vbuz1=_inc_vbuz1 inc angle - // [55] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 -- _deref_pbuc1=vbuc2 + // [56] call clock + jsr clock + // [57] (dword) clock::return#2 ← (dword) clock::return#0 + jmp b14 + // anim::@14 + b14: + // [58] (dword~) anim::$28 ← (dword) clock::return#2 + // [59] (dword) anim::cyclecount#0 ← (dword~) anim::$28 - (const dword) CLOCKS_PER_INIT#0 -- vduz1=vduz1_minus_vduc1 + lda cyclecount + sec + sbc #CLOCKS_PER_INIT + sta cyclecount+1 + lda cyclecount+2 + sbc #>$10 + sta cyclecount+2 + lda cyclecount+3 + sbc #>CLOCKS_PER_INIT>>$10 + sta cyclecount+3 + // [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 + // [61] call print_dword_at + jsr print_dword_at + jmp b15 + // anim::@15 + b15: + // [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 -- _deref_pbuc1=vbuc2 lda #LIGHT_BLUE sta BORDERCOL - // [10] phi from anim::@7 to anim::@1 [phi:anim::@7->anim::@1] - b1_from_b7: - // [10] phi (byte) anim::angle#6 = (byte) anim::angle#1 [phi:anim::@7->anim::@1#0] -- register_copy + // [10] phi from anim::@15 to anim::@1 [phi:anim::@15->anim::@1] + b1_from_b15: + // [10] phi (byte) anim::angle#9 = (byte) anim::angle#1 [phi:anim::@15->anim::@1#0] -- register_copy jmp b1 +} + // print_dword_at +// Print a dword as HEX at a specific position +// print_dword_at(dword zeropage($22) dw) +print_dword_at: { + .label dw = $22 + // [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 -- vwuz1=_hi_vduz2 + lda dw+2 + sta print_word_at.w + lda dw+3 + sta print_word_at.w+1 + // [64] call print_word_at + // [68] phi from print_dword_at to print_word_at [phi:print_dword_at->print_word_at] + print_word_at_from_print_dword_at: + // [68] phi (byte*) print_word_at::at#2 = (const byte*) SCREEN#0 [phi:print_dword_at->print_word_at#0] -- pbuz1=pbuc1 + lda #SCREEN + sta print_word_at.at+1 + // [68] phi (word) print_word_at::w#2 = (word) print_word_at::w#0 [phi:print_dword_at->print_word_at#1] -- register_copy + jsr print_word_at + jmp b1 + // print_dword_at::@1 + b1: + // [65] (word) print_word_at::w#1 ← < (dword) print_dword_at::dw#0 -- vwuz1=_lo_vduz2 + lda dw + sta print_word_at.w + lda dw+1 + sta print_word_at.w+1 + // [66] call print_word_at + // [68] phi from print_dword_at::@1 to print_word_at [phi:print_dword_at::@1->print_word_at] + print_word_at_from_b1: + // [68] phi (byte*) print_word_at::at#2 = (const byte*) SCREEN#0+(byte) 4 [phi:print_dword_at::@1->print_word_at#0] -- pbuz1=pbuc1 + lda #SCREEN+4 + sta print_word_at.at+1 + // [68] phi (word) print_word_at::w#2 = (word) print_word_at::w#1 [phi:print_dword_at::@1->print_word_at#1] -- register_copy + jsr print_word_at + jmp breturn + // print_dword_at::@return + breturn: + // [67] return + rts +} + // print_word_at +// Print a word as HEX at a specific position +// print_word_at(word zeropage(5) w, byte* zeropage(7) at) +print_word_at: { + .label w = 5 + .label at = 7 + // [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 -- vbuz1=_hi_vwuz2 + lda w+1 + sta print_byte_at.b + // [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 + // [71] call print_byte_at + // [76] phi from print_word_at to print_byte_at [phi:print_word_at->print_byte_at] + print_byte_at_from_print_word_at: + // [76] phi (byte*) print_byte_at::at#2 = (byte*) print_byte_at::at#0 [phi:print_word_at->print_byte_at#0] -- register_copy + // [76] phi (byte) print_byte_at::b#2 = (byte) print_byte_at::b#0 [phi:print_word_at->print_byte_at#1] -- register_copy + jsr print_byte_at + jmp b1 + // print_word_at::@1 + b1: + // [72] (byte) print_byte_at::b#1 ← < (word) print_word_at::w#2 -- vbuz1=_lo_vwuz2 + lda w + sta print_byte_at.b + // [73] (byte*) print_byte_at::at#1 ← (byte*) print_word_at::at#2 + (byte) 2 -- pbuz1=pbuz1_plus_2 + lda print_byte_at.at + clc + adc #2 + sta print_byte_at.at + bcc !+ + inc print_byte_at.at+1 + !: + // [74] call print_byte_at + // [76] phi from print_word_at::@1 to print_byte_at [phi:print_word_at::@1->print_byte_at] + print_byte_at_from_b1: + // [76] phi (byte*) print_byte_at::at#2 = (byte*) print_byte_at::at#1 [phi:print_word_at::@1->print_byte_at#0] -- register_copy + // [76] phi (byte) print_byte_at::b#2 = (byte) print_byte_at::b#1 [phi:print_word_at::@1->print_byte_at#1] -- register_copy + jsr print_byte_at + jmp breturn + // print_word_at::@return + breturn: + // [75] return + rts +} + // print_byte_at +// Print a byte as HEX at a specific position +// print_byte_at(byte zeropage(9) b, byte* zeropage(7) at) +print_byte_at: { + .label b = 9 + .label at = 7 + // [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 -- vbuaa=vbuz1_ror_4 + lda b + lsr + lsr + lsr + lsr + // [78] (byte) print_char_at::ch#0 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$0) -- vbuxx=pbuc1_derefidx_vbuaa + tay + ldx print_hextab,y + // [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 -- pbuz1=pbuz2 + lda at + sta print_char_at.at + lda at+1 + sta print_char_at.at+1 + // [80] call print_char_at + // [86] phi from print_byte_at to print_char_at [phi:print_byte_at->print_char_at] + print_char_at_from_print_byte_at: + // [86] phi (byte*) print_char_at::at#2 = (byte*) print_char_at::at#0 [phi:print_byte_at->print_char_at#0] -- register_copy + // [86] phi (byte) print_char_at::ch#2 = (byte) print_char_at::ch#0 [phi:print_byte_at->print_char_at#1] -- register_copy + jsr print_char_at + jmp b1 + // print_byte_at::@1 + b1: + // [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f -- vbuyy=vbuz1_band_vbuc1 + lda #$f + and b + tay + // [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 -- pbuz1=pbuz2_plus_1 + lda at + clc + adc #1 + sta print_char_at.at + lda at+1 + adc #0 + sta print_char_at.at+1 + // [83] (byte) print_char_at::ch#1 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$2) -- vbuxx=pbuc1_derefidx_vbuyy + ldx print_hextab,y + // [84] call print_char_at + // [86] phi from print_byte_at::@1 to print_char_at [phi:print_byte_at::@1->print_char_at] + print_char_at_from_b1: + // [86] phi (byte*) print_char_at::at#2 = (byte*) print_char_at::at#1 [phi:print_byte_at::@1->print_char_at#0] -- register_copy + // [86] phi (byte) print_char_at::ch#2 = (byte) print_char_at::ch#1 [phi:print_byte_at::@1->print_char_at#1] -- register_copy + jsr print_char_at + jmp breturn + // print_byte_at::@return + breturn: + // [85] return + rts +} + // print_char_at +// Print a single char +// print_char_at(byte register(X) ch, byte* zeropage($a) at) +print_char_at: { + .label at = $a + // [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 -- _deref_pbuz1=vbuxx + txa + ldy #0 + sta (at),y + jmp breturn + // print_char_at::@return + breturn: + // [88] return + rts +} + // clock +// Returns the processor clock time used since the beginning of an implementation defined era (normally the beginning of the program). +// This uses CIA #2 Timer A+B on the C64, and must be initialized using clock_start() +clock: { + .label return = $22 + // [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) -- vduz1=vduc1_minus__deref_pduc2 + lda #<$ffffffff + sec + sbc CIA2_TIMER_AB + sta return + lda #>$ffffffff + sbc CIA2_TIMER_AB+1 + sta return+1 + lda #<$ffffffff>>$10 + sbc CIA2_TIMER_AB+2 + sta return+2 + lda #>$ffffffff>>$10 + sbc CIA2_TIMER_AB+3 + sta return+3 + jmp breturn + // clock::@return + breturn: + // [90] return + rts } // mulf8s_prepared // Calculate fast multiply with a prepared unsigned byte to a word result @@ -3383,62 +4661,62 @@ anim: { // mulf8s_prepared(signed byte register(Y) b) mulf8s_prepared: { .label memA = $fd - .label m = 5 - // [57] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuyy + .label m = $c + // [92] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuyy tya - // [58] call mulf8u_prepared + // [93] call mulf8u_prepared jsr mulf8u_prepared - // [59] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 + // [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 jmp b5 // mulf8s_prepared::@5 b5: - // [60] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 - // [61] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 -- _deref_pbsc1_ge_0_then_la1 + // [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 + // [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 -- _deref_pbsc1_ge_0_then_la1 lda memA cmp #0 bpl b1_from_b5 jmp b3 // mulf8s_prepared::@3 b3: - // [62] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 -- vbuaa=_hi_vwuz1 + // [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 -- vbuaa=_hi_vwuz1 lda m+1 - // [63] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuaa_minus_vbuyy + // [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuaa_minus_vbuyy sty $ff sec sbc $ff - // [64] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 -- vwuz1=vwuz1_sethi_vbuaa + // [99] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 -- vwuz1=vwuz1_sethi_vbuaa sta m+1 - // [65] phi from mulf8s_prepared::@3 mulf8s_prepared::@5 to mulf8s_prepared::@1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1] + // [100] phi from mulf8s_prepared::@3 mulf8s_prepared::@5 to mulf8s_prepared::@1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1] b1_from_b3: b1_from_b5: - // [65] phi (word) mulf8s_prepared::m#5 = (word) mulf8s_prepared::m#1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1#0] -- register_copy + // [100] phi (word) mulf8s_prepared::m#5 = (word) mulf8s_prepared::m#1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1#0] -- register_copy jmp b1 // mulf8s_prepared::@1 b1: - // [66] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 -- vbsyy_ge_0_then_la1 + // [101] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 -- vbsyy_ge_0_then_la1 cpy #0 bpl b2_from_b1 jmp b4 // mulf8s_prepared::@4 b4: - // [67] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 -- vbuaa=_hi_vwuz1 + // [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 -- vbuaa=_hi_vwuz1 lda m+1 - // [68] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) -- vbuaa=vbuaa_minus__deref_pbuc1 + // [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) -- vbuaa=vbuaa_minus__deref_pbuc1 sec sbc memA - // [69] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 -- vwuz1=vwuz1_sethi_vbuaa + // [104] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 -- vwuz1=vwuz1_sethi_vbuaa sta m+1 - // [70] phi from mulf8s_prepared::@1 mulf8s_prepared::@4 to mulf8s_prepared::@2 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2] + // [105] phi from mulf8s_prepared::@1 mulf8s_prepared::@4 to mulf8s_prepared::@2 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2] b2_from_b1: b2_from_b4: - // [70] phi (word) mulf8s_prepared::m#4 = (word) mulf8s_prepared::m#5 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2#0] -- register_copy + // [105] phi (word) mulf8s_prepared::m#4 = (word) mulf8s_prepared::m#5 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2#0] -- register_copy jmp b2 // mulf8s_prepared::@2 b2: jmp breturn // mulf8s_prepared::@return breturn: - // [71] return + // [106] return rts } // mulf8u_prepared @@ -3448,8 +4726,8 @@ mulf8s_prepared: { mulf8u_prepared: { .label resL = $fe .label memB = $ff - .label return = 5 - // [72] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 -- _deref_pbuc1=vbuaa + .label return = $c + // [107] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 -- _deref_pbuc1=vbuaa sta memB // asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } ldx memB @@ -3464,7 +4742,7 @@ mulf8u_prepared: { sm4: sbc mulf_sqr2_hi,x sta memB - // [74] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 + // [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 lda resL sta return lda memB @@ -3472,7 +4750,7 @@ mulf8u_prepared: { jmp breturn // mulf8u_prepared::@return breturn: - // [75] return + // [110] return rts } // mulf8u_prepare @@ -3480,7 +4758,7 @@ mulf8u_prepared: { // mulf8u_prepare(byte register(A) a) mulf8u_prepare: { .label memA = $fd - // [77] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 -- _deref_pbuc1=vbuaa + // [112] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 -- _deref_pbuc1=vbuaa sta memA // asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } lda memA @@ -3492,135 +4770,167 @@ mulf8u_prepare: { jmp breturn // mulf8u_prepare::@return breturn: - // [79] return + // [114] return + rts +} + // clock_start +// Reset & start the processor clock time. The value can be read using clock(). +// This uses CIA #2 Timer A+B on the C64 +clock_start: { + // [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 -- _deref_pbuc1=vbuc2 + // Setup CIA#2 timer A to count (down) CPU cycles + lda #CIA_TIMER_CONTROL_CONTINUOUS + sta CIA2_TIMER_A_CONTROL + // [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + // [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff -- _deref_pduc1=vduc2 + lda #<$ffffffff + sta CIA2_TIMER_AB + lda #>$ffffffff + sta CIA2_TIMER_AB+1 + lda #<$ffffffff>>$10 + sta CIA2_TIMER_AB+2 + lda #>$ffffffff>>$10 + sta CIA2_TIMER_AB+3 + // [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_START|CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + // [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_START + sta CIA2_TIMER_A_CONTROL + jmp breturn + // clock_start::@return + breturn: + // [120] return rts } // init init: { .label sprites_ptr = SCREEN+$3f8 - // [81] call mulf_init - // [89] phi from init to mulf_init [phi:init->mulf_init] + // [122] call mulf_init + // [130] phi from init to mulf_init [phi:init->mulf_init] mulf_init_from_init: jsr mulf_init jmp b2 // init::@2 b2: - // [82] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff -- _deref_pbuc1=vbuc2 + // [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff -- _deref_pbuc1=vbuc2 lda #$ff sta SPRITES_ENABLE - // [83] phi from init::@2 to init::@1 [phi:init::@2->init::@1] + // [124] phi from init::@2 to init::@1 [phi:init::@2->init::@1] b1_from_b2: - // [83] phi (byte) init::i#2 = (byte) 0 [phi:init::@2->init::@1#0] -- vbuxx=vbuc1 + // [124] phi (byte) init::i#2 = (byte) 0 [phi:init::@2->init::@1#0] -- vbuxx=vbuc1 ldx #0 jmp b1 - // [83] phi from init::@1 to init::@1 [phi:init::@1->init::@1] + // [124] phi from init::@1 to init::@1 [phi:init::@1->init::@1] b1_from_b1: - // [83] phi (byte) init::i#2 = (byte) init::i#1 [phi:init::@1->init::@1#0] -- register_copy + // [124] phi (byte) init::i#2 = (byte) init::i#1 [phi:init::@1->init::@1#0] -- register_copy jmp b1 // init::@1 b1: - // [84] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 -- pbuc1_derefidx_vbuxx=vbuc2 + // [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 -- pbuc1_derefidx_vbuxx=vbuc2 lda #SPRITE/$40 sta sprites_ptr,x - // [85] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 -- pbuc1_derefidx_vbuxx=vbuc2 + // [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 -- pbuc1_derefidx_vbuxx=vbuc2 lda #GREEN sta SPRITES_COLS,x - // [86] (byte) init::i#1 ← ++ (byte) init::i#2 -- vbuxx=_inc_vbuxx + // [127] (byte) init::i#1 ← ++ (byte) init::i#2 -- vbuxx=_inc_vbuxx inx - // [87] if((byte) init::i#1!=(byte) 8) goto init::@1 -- vbuxx_neq_vbuc1_then_la1 + // [128] if((byte) init::i#1!=(byte) 8) goto init::@1 -- vbuxx_neq_vbuc1_then_la1 cpx #8 bne b1_from_b1 jmp breturn // init::@return breturn: - // [88] return + // [129] return rts } // mulf_init // Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) mulf_init: { - .label sqr1_hi = 9 - .label sqr = $c - .label sqr1_lo = 7 - .label x_2 = $b - .label sqr2_hi = $10 - .label sqr2_lo = $e - .label dir = $12 - // [90] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] + .label sqr1_hi = $10 + .label sqr = $13 + .label sqr1_lo = $e + .label x_2 = $12 + .label sqr2_hi = $17 + .label sqr2_lo = $15 + .label dir = $19 + // [131] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] b1_from_mulf_init: - // [90] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 + // [131] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 lda #0 sta x_2 - // [90] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 + // [131] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 lda #mulf_sqr1_hi+1 sta sqr1_hi+1 - // [90] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 + // [131] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 lda #mulf_sqr1_lo+1 sta sqr1_lo+1 - // [90] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 + // [131] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 lda #<0 sta sqr lda #>0 sta sqr+1 - // [90] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuxx=vbuc1 + // [131] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuxx=vbuc1 ldx #0 jmp b1 - // [90] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] + // [131] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] b1_from_b2: - // [90] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy - // [90] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy - // [90] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy - // [90] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy - // [90] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy + // [131] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy + // [131] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy + // [131] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy + // [131] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy + // [131] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy jmp b1 // mulf_init::@1 b1: - // [91] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuxx=_inc_vbuxx + // [132] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuxx=_inc_vbuxx inx - // [92] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuaa=vbuxx_band_vbuc1 + // [133] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuaa=vbuxx_band_vbuc1 txa and #1 - // [93] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuaa_neq_0_then_la1 + // [134] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuaa_neq_0_then_la1 cmp #0 bne b2_from_b1 jmp b3 // mulf_init::@3 b3: - // [94] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 + // [135] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 inc x_2 - // [95] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 + // [136] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 inc sqr bne !+ inc sqr+1 !: - // [96] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] + // [137] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] b2_from_b1: b2_from_b3: - // [96] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy - // [96] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy + // [137] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy + // [137] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy jmp b2 // mulf_init::@2 b2: - // [97] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 -- vbuaa=_lo_vwuz1 + // [138] (byte~) mulf_init::$10 ← < (word) mulf_init::sqr#3 -- vbuaa=_lo_vwuz1 lda sqr - // [98] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 -- _deref_pbuz1=vbuaa + // [139] *((byte*) mulf_init::sqr1_lo#2) ← (byte~) mulf_init::$10 -- _deref_pbuz1=vbuaa ldy #0 sta (sqr1_lo),y - // [99] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuaa=_hi_vwuz1 + // [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuaa=_hi_vwuz1 lda sqr+1 - // [100] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuaa + // [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuaa ldy #0 sta (sqr1_hi),y - // [101] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 + // [142] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 inc sqr1_hi bne !+ inc sqr1_hi+1 !: - // [102] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 + // [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 lda x_2 clc adc sqr @@ -3628,89 +4938,89 @@ mulf_init: { bcc !+ inc sqr+1 !: - // [103] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 + // [144] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 inc sqr1_lo bne !+ inc sqr1_lo+1 !: - // [104] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 + // [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 lda sqr1_lo+1 cmp #>mulf_sqr1_lo+$200 bne b1_from_b2 lda sqr1_lo cmp #mulf_init::@4] + // [146] phi from mulf_init::@2 to mulf_init::@4 [phi:mulf_init::@2->mulf_init::@4] b4_from_b2: - // [105] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 + // [146] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 lda #$ff sta dir - // [105] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 + // [146] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 lda #mulf_sqr2_hi sta sqr2_hi+1 - // [105] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 + // [146] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 lda #mulf_sqr2_lo sta sqr2_lo+1 - // [105] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuxx=vbuc1 + // [146] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuxx=vbuc1 ldx #-1 jmp b4 - // [105] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] + // [146] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] b4_from_b5: - // [105] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy - // [105] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy - // [105] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy - // [105] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy + // [146] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy + // [146] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy + // [146] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy + // [146] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy jmp b4 // mulf_init::@4 b4: - // [106] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + // [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx lda mulf_sqr1_lo,x ldy #0 sta (sqr2_lo),y - // [107] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + // [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx lda mulf_sqr1_hi,x ldy #0 sta (sqr2_hi),y - // [108] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 + // [149] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 inc sqr2_hi bne !+ inc sqr2_hi+1 !: - // [109] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuxx=vbuxx_plus_vbuz1 + // [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuxx=vbuxx_plus_vbuz1 txa clc adc dir tax - // [110] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuxx_neq_0_then_la1 + // [151] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuxx_neq_0_then_la1 cpx #0 bne b7_from_b4 - // [112] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] + // [153] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] b5_from_b4: - // [112] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 + // [153] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 lda #1 sta dir jmp b5 - // [111] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] + // [152] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] b7_from_b4: jmp b7 // mulf_init::@7 b7: - // [112] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] + // [153] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] b5_from_b7: - // [112] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy + // [153] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy jmp b5 // mulf_init::@5 b5: - // [113] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 + // [154] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 inc sqr2_lo bne !+ inc sqr2_lo+1 !: - // [114] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 + // [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 lda sqr2_lo+1 cmp #>mulf_sqr2_lo+$1ff bne b4_from_b5 @@ -3720,17 +5030,17 @@ mulf_init: { jmp b6 // mulf_init::@6 b6: - // [115] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 + // [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 // Set the very last value g(511) = f(256) lda mulf_sqr1_lo+$100 sta mulf_sqr2_lo+$1ff - // [116] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 + // [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 lda mulf_sqr1_hi+$100 sta mulf_sqr2_hi+$1ff jmp breturn // mulf_init::@return breturn: - // [117] return + // [158] return rts } // File Data @@ -3747,20 +5057,14 @@ mulf_init: { // >g(x) = >((( x - 255) * ( x - 255 ))/4) .align $100 mulf_sqr2_hi: .fill $200, 0 + print_hextab: .text "0123456789abcdef" // Sine and Cosine tables // Angles: $00=0, $80=PI,$100=2*PI // Sine/Cosine: signed fixed [-$7f,$7f] .align $40 -COS: -{ - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) // Positions to rotate xs: .byte -$46, -$46, -$46, 0, 0, $46, $46, $46 @@ -3792,6 +5096,16 @@ Removing instruction jmp b13 Removing instruction jmp b6 Removing instruction jmp b5 Removing instruction jmp b7 +Removing instruction jmp b14 +Removing instruction jmp b15 +Removing instruction jmp b1 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp breturn +Removing instruction jmp b1 +Removing instruction jmp breturn +Removing instruction jmp breturn +Removing instruction jmp breturn Removing instruction jmp b5 Removing instruction jmp b3 Removing instruction jmp b1 @@ -3800,6 +5114,7 @@ Removing instruction jmp b2 Removing instruction jmp breturn Removing instruction jmp breturn Removing instruction jmp breturn +Removing instruction jmp breturn Removing instruction jmp b2 Removing instruction jmp b1 Removing instruction jmp breturn @@ -3879,12 +5194,29 @@ Removing instruction mulf8s_prepared_from_b12: Removing instruction b13: Removing instruction b6: Removing instruction b7: -Removing instruction b1_from_b7: +Removing instruction b14: +Removing instruction b15: +Removing instruction b1_from_b15: +Removing instruction print_word_at_from_print_dword_at: +Removing instruction b1: +Removing instruction print_word_at_from_b1: +Removing instruction breturn: +Removing instruction print_byte_at_from_print_word_at: +Removing instruction b1: +Removing instruction print_byte_at_from_b1: +Removing instruction breturn: +Removing instruction print_char_at_from_print_byte_at: +Removing instruction b1: +Removing instruction print_char_at_from_b1: +Removing instruction breturn: +Removing instruction breturn: +Removing instruction breturn: Removing instruction b5: Removing instruction b3: Removing instruction b4: Removing instruction breturn: Removing instruction breturn: +Removing instruction breturn: Removing instruction mulf_init_from_init: Removing instruction b2: Removing instruction b1_from_b2: @@ -3907,7 +5239,7 @@ Removing instruction jmp b5 Succesful ASM optimization Pass5NextJumpElimination Removing instruction bbegin: Succesful ASM optimization Pass5UnusedLabelElimination -Fixing long branch [134] bne b4 to beq +Fixing long branch [152] bne b4 to beq FINAL SYMBOL TABLE (label) @1 @@ -3915,27 +5247,40 @@ FINAL SYMBOL TABLE (label) @end (byte*) BORDERCOL (const byte*) BORDERCOL#0 BORDERCOL = (byte*) 53280 -(byte[$140]) COS -(const byte[$140]) COS#0 COS = kickasm {{ { - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } - }} +(dword*) CIA2_TIMER_AB +(const dword*) CIA2_TIMER_AB#0 CIA2_TIMER_AB = (dword*) 56580 +(byte*) CIA2_TIMER_A_CONTROL +(const byte*) CIA2_TIMER_A_CONTROL#0 CIA2_TIMER_A_CONTROL = (byte*) 56590 +(byte*) CIA2_TIMER_B_CONTROL +(const byte*) CIA2_TIMER_B_CONTROL#0 CIA2_TIMER_B_CONTROL = (byte*) 56591 +(byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES +(byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A +(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A = (byte) $40 +(byte) CIA_TIMER_CONTROL_CONTINUOUS +(const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 CIA_TIMER_CONTROL_CONTINUOUS = (byte) 0 +(byte) CIA_TIMER_CONTROL_START +(const byte) CIA_TIMER_CONTROL_START#0 CIA_TIMER_CONTROL_START = (byte) 1 +(byte) CIA_TIMER_CONTROL_STOP +(dword) CLOCKS_PER_INIT +(const dword) CLOCKS_PER_INIT#0 CLOCKS_PER_INIT = (byte) $12 +(byte*) COS +(const byte*) COS#0 COS = (const byte[$140]) SIN#0+(byte) $40 (byte) GREEN (const byte) GREEN#0 GREEN = (byte) 5 (byte) LIGHT_BLUE (const byte) LIGHT_BLUE#0 LIGHT_BLUE = (byte) $e +(const byte) RADIX::BINARY BINARY = (number) 2 +(const byte) RADIX::DECIMAL DECIMAL = (number) $a +(const byte) RADIX::HEXADECIMAL HEXADECIMAL = (number) $10 +(const byte) RADIX::OCTAL OCTAL = (number) 8 (byte*) RASTER (const byte*) RASTER#0 RASTER = (byte*) 53266 (byte*) SCREEN (const byte*) SCREEN#0 SCREEN = (byte*) 1024 -(byte*) SIN -(const byte*) SIN#0 SIN = (const byte[$140]) COS#0+(byte) $40 +(byte[$140]) SIN +(const byte[$140]) SIN#0 SIN = kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + }} (byte*) SPRITE (const byte*) SPRITE#0 SPRITE = (byte*) 12288 (byte*) SPRITES_COLS @@ -3949,21 +5294,24 @@ FINAL SYMBOL TABLE (byte*) SPRITES_YPOS (const byte*) SPRITES_YPOS#0 SPRITES_YPOS = (byte*) 53249 (void()) anim() -(signed word~) anim::$10 $10 zp ZP_WORD:5 202.0 -(signed word~) anim::$11 $11 zp ZP_WORD:5 202.0 -(signed word~) anim::$12 $12 zp ZP_WORD:5 202.0 -(byte~) anim::$15 reg byte a 101.0 -(byte~) anim::$18 reg byte a 202.0 -(byte~) anim::$22 reg byte a 202.0 -(byte~) anim::$25 reg byte a 202.0 -(signed word~) anim::$4 $4 zp ZP_WORD:5 202.0 -(signed word~) anim::$6 $6 zp ZP_WORD:5 202.0 -(signed word~) anim::$9 $9 zp ZP_WORD:5 202.0 +(signed word~) anim::$10 $10 zp ZP_WORD:12 202.0 +(signed word~) anim::$11 $11 zp ZP_WORD:12 202.0 +(signed word~) anim::$12 $12 zp ZP_WORD:12 202.0 +(signed word~) anim::$13 $13 zp ZP_WORD:12 202.0 +(byte~) anim::$16 reg byte a 101.0 +(byte~) anim::$19 reg byte a 202.0 +(byte~) anim::$23 reg byte a 202.0 +(byte~) anim::$26 reg byte a 202.0 +(dword~) anim::$28 $28 zp ZP_DWORD:34 22.0 +(signed word~) anim::$5 $5 zp ZP_WORD:12 202.0 +(signed word~) anim::$7 $7 zp ZP_WORD:12 202.0 (label) anim::@1 (label) anim::@10 (label) anim::@11 (label) anim::@12 (label) anim::@13 +(label) anim::@14 +(label) anim::@15 (label) anim::@2 (label) anim::@3 (label) anim::@4 @@ -3973,9 +5321,11 @@ FINAL SYMBOL TABLE (label) anim::@8 (label) anim::@9 (byte) anim::angle -(byte) anim::angle#1 angle zp ZP_BYTE:2 11.0 -(byte) anim::angle#6 angle zp ZP_BYTE:2 0.5 +(byte) anim::angle#1 angle zp ZP_BYTE:2 2.75 +(byte) anim::angle#9 angle zp ZP_BYTE:2 0.4888888888888889 (signed byte) anim::cos_a +(dword) anim::cyclecount +(dword) anim::cyclecount#0 cyclecount zp ZP_DWORD:34 22.0 (byte) anim::i (byte) anim::i#1 i zp ZP_BYTE:3 151.5 (byte) anim::i#10 i zp ZP_BYTE:3 13.289473684210527 @@ -3994,19 +5344,26 @@ FINAL SYMBOL TABLE (byte) anim::sprite_msb#2 sprite_msb zp ZP_BYTE:4 202.0 (byte) anim::sprite_msb#5 sprite_msb zp ZP_BYTE:4 34.888888888888886 (signed byte) anim::x -(signed byte) anim::x#0 x zp ZP_BYTE:19 15.947368421052632 +(signed byte) anim::x#0 x zp ZP_BYTE:26 15.947368421052632 (signed word) anim::xpos -(signed word) anim::xpos#0 xpos zp ZP_WORD:25 33.666666666666664 +(signed word) anim::xpos#0 xpos zp ZP_WORD:32 33.666666666666664 (signed word) anim::xr -(signed word) anim::xr#0 xr zp ZP_WORD:21 18.363636363636363 -(signed word) anim::xr#1 xr zp ZP_WORD:21 33.666666666666664 +(signed word) anim::xr#0 xr zp ZP_WORD:28 18.363636363636363 +(signed word) anim::xr#1 xr zp ZP_WORD:28 33.666666666666664 (signed byte) anim::y -(signed byte) anim::y#0 y zp ZP_BYTE:20 23.307692307692307 +(signed byte) anim::y#0 y zp ZP_BYTE:27 23.307692307692307 (byte) anim::ypos (byte) anim::ypos#0 reg byte y 50.5 (signed word) anim::yr -(signed word) anim::yr#0 yr zp ZP_WORD:23 16.833333333333332 -(signed word) anim::yr#1 yr zp ZP_WORD:23 25.25 +(signed word) anim::yr#0 yr zp ZP_WORD:30 16.833333333333332 +(signed word) anim::yr#1 yr zp ZP_WORD:30 25.25 +(dword()) clock() +(label) clock::@return +(dword) clock::return +(dword) clock::return#0 return zp ZP_DWORD:34 4.333333333333333 +(dword) clock::return#2 return zp ZP_DWORD:34 22.0 +(void()) clock_start() +(label) clock_start::@return (void()) init() (label) init::@1 (label) init::@2 @@ -4037,11 +5394,11 @@ FINAL SYMBOL TABLE (signed byte) mulf8s_prepared::b#3 reg byte y 202.0 (signed byte) mulf8s_prepared::b#4 reg byte y 40.6 (word) mulf8s_prepared::m -(word) mulf8s_prepared::m#0 m zp ZP_WORD:5 2.0 -(word) mulf8s_prepared::m#1 m zp ZP_WORD:5 4.0 -(word) mulf8s_prepared::m#2 m zp ZP_WORD:5 4.0 -(word) mulf8s_prepared::m#4 m zp ZP_WORD:5 0.6666666666666666 -(word) mulf8s_prepared::m#5 m zp ZP_WORD:5 2.5 +(word) mulf8s_prepared::m#0 m zp ZP_WORD:12 2.0 +(word) mulf8s_prepared::m#1 m zp ZP_WORD:12 4.0 +(word) mulf8s_prepared::m#2 m zp ZP_WORD:12 4.0 +(word) mulf8s_prepared::m#4 m zp ZP_WORD:12 0.6666666666666666 +(word) mulf8s_prepared::m#5 m zp ZP_WORD:12 2.5 (signed byte*) mulf8s_prepared::memA (const signed byte*) mulf8s_prepared::memA#0 memA = (signed byte*) 253 (signed word) mulf8s_prepared::return @@ -4062,8 +5419,8 @@ FINAL SYMBOL TABLE (byte*) mulf8u_prepared::resL (const byte*) mulf8u_prepared::resL#0 resL = (byte*) 254 (word) mulf8u_prepared::return -(word) mulf8u_prepared::return#0 return zp ZP_WORD:5 1.3333333333333333 -(word) mulf8u_prepared::return#2 return zp ZP_WORD:5 4.0 +(word) mulf8u_prepared::return#0 return zp ZP_WORD:12 1.3333333333333333 +(word) mulf8u_prepared::return#2 return zp ZP_WORD:12 4.0 (void()) mulf_init() (byte~) mulf_init::$10 reg byte a 22.0 (byte~) mulf_init::$11 reg byte a 22.0 @@ -4080,29 +5437,29 @@ FINAL SYMBOL TABLE (byte) mulf_init::c#1 reg byte x 2.357142857142857 (byte) mulf_init::c#2 reg byte x 22.0 (byte) mulf_init::dir -(byte) mulf_init::dir#2 dir zp ZP_BYTE:18 4.714285714285714 -(byte) mulf_init::dir#3 dir zp ZP_BYTE:18 7.333333333333333 +(byte) mulf_init::dir#2 dir zp ZP_BYTE:25 4.714285714285714 +(byte) mulf_init::dir#3 dir zp ZP_BYTE:25 7.333333333333333 (word) mulf_init::sqr -(word) mulf_init::sqr#1 sqr zp ZP_WORD:12 7.333333333333333 -(word) mulf_init::sqr#2 sqr zp ZP_WORD:12 22.0 -(word) mulf_init::sqr#3 sqr zp ZP_WORD:12 9.166666666666666 -(word) mulf_init::sqr#4 sqr zp ZP_WORD:12 6.6000000000000005 +(word) mulf_init::sqr#1 sqr zp ZP_WORD:19 7.333333333333333 +(word) mulf_init::sqr#2 sqr zp ZP_WORD:19 22.0 +(word) mulf_init::sqr#3 sqr zp ZP_WORD:19 9.166666666666666 +(word) mulf_init::sqr#4 sqr zp ZP_WORD:19 6.6000000000000005 (byte*) mulf_init::sqr1_hi -(byte*) mulf_init::sqr1_hi#1 sqr1_hi zp ZP_WORD:9 5.5 -(byte*) mulf_init::sqr1_hi#2 sqr1_hi zp ZP_WORD:9 3.0 +(byte*) mulf_init::sqr1_hi#1 sqr1_hi zp ZP_WORD:16 5.5 +(byte*) mulf_init::sqr1_hi#2 sqr1_hi zp ZP_WORD:16 3.0 (byte*) mulf_init::sqr1_lo -(byte*) mulf_init::sqr1_lo#1 sqr1_lo zp ZP_WORD:7 16.5 -(byte*) mulf_init::sqr1_lo#2 sqr1_lo zp ZP_WORD:7 2.5384615384615383 +(byte*) mulf_init::sqr1_lo#1 sqr1_lo zp ZP_WORD:14 16.5 +(byte*) mulf_init::sqr1_lo#2 sqr1_lo zp ZP_WORD:14 2.5384615384615383 (byte*) mulf_init::sqr2_hi -(byte*) mulf_init::sqr2_hi#1 sqr2_hi zp ZP_WORD:16 3.142857142857143 -(byte*) mulf_init::sqr2_hi#2 sqr2_hi zp ZP_WORD:16 11.0 +(byte*) mulf_init::sqr2_hi#1 sqr2_hi zp ZP_WORD:23 3.142857142857143 +(byte*) mulf_init::sqr2_hi#2 sqr2_hi zp ZP_WORD:23 11.0 (byte*) mulf_init::sqr2_lo -(byte*) mulf_init::sqr2_lo#1 sqr2_lo zp ZP_WORD:14 16.5 -(byte*) mulf_init::sqr2_lo#2 sqr2_lo zp ZP_WORD:14 4.125 +(byte*) mulf_init::sqr2_lo#1 sqr2_lo zp ZP_WORD:21 16.5 +(byte*) mulf_init::sqr2_lo#2 sqr2_lo zp ZP_WORD:21 4.125 (byte) mulf_init::x_2 -(byte) mulf_init::x_2#1 x_2 zp ZP_BYTE:11 11.0 -(byte) mulf_init::x_2#2 x_2 zp ZP_BYTE:11 4.888888888888889 -(byte) mulf_init::x_2#3 x_2 zp ZP_BYTE:11 8.25 +(byte) mulf_init::x_2#1 x_2 zp ZP_BYTE:18 11.0 +(byte) mulf_init::x_2#2 x_2 zp ZP_BYTE:18 4.888888888888889 +(byte) mulf_init::x_2#3 x_2 zp ZP_BYTE:18 8.25 (byte) mulf_init::x_255 (byte) mulf_init::x_255#1 reg byte x 5.5 (byte) mulf_init::x_255#2 reg byte x 11.0 @@ -4114,38 +5471,86 @@ FINAL SYMBOL TABLE (const byte[$200]) mulf_sqr2_hi#0 mulf_sqr2_hi = { fill( $200, 0) } (byte[$200]) mulf_sqr2_lo (const byte[$200]) mulf_sqr2_lo#0 mulf_sqr2_lo = { fill( $200, 0) } +(void()) print_byte_at((byte) print_byte_at::b , (byte*) print_byte_at::at) +(byte~) print_byte_at::$0 reg byte a 4.0 +(byte~) print_byte_at::$2 reg byte y 2.0 +(label) print_byte_at::@1 +(label) print_byte_at::@return +(byte*) print_byte_at::at +(byte*) print_byte_at::at#0 at zp ZP_WORD:7 4.0 +(byte*) print_byte_at::at#1 at zp ZP_WORD:7 4.0 +(byte*) print_byte_at::at#2 at zp ZP_WORD:7 1.3333333333333333 +(byte) print_byte_at::b +(byte) print_byte_at::b#0 b zp ZP_BYTE:9 2.0 +(byte) print_byte_at::b#1 b zp ZP_BYTE:9 2.0 +(byte) print_byte_at::b#2 b zp ZP_BYTE:9 1.6 +(void()) print_char_at((byte) print_char_at::ch , (byte*) print_char_at::at) +(label) print_char_at::@return +(byte*) print_char_at::at +(byte*) print_char_at::at#0 at zp ZP_WORD:10 4.0 +(byte*) print_char_at::at#1 at zp ZP_WORD:10 2.0 +(byte*) print_char_at::at#2 at zp ZP_WORD:10 6.0 +(byte) print_char_at::ch +(byte) print_char_at::ch#0 reg byte x 2.0 +(byte) print_char_at::ch#1 reg byte x 4.0 +(byte) print_char_at::ch#2 reg byte x 6.0 +(void()) print_dword_at((dword) print_dword_at::dw , (byte*) print_dword_at::at) +(label) print_dword_at::@1 +(label) print_dword_at::@return +(byte*) print_dword_at::at +(dword) print_dword_at::dw +(dword) print_dword_at::dw#0 dw zp ZP_DWORD:34 5.0 +(byte[]) print_hextab +(const byte[]) print_hextab#0 print_hextab = (string) "0123456789abcdef" +(void()) print_word_at((word) print_word_at::w , (byte*) print_word_at::at) +(label) print_word_at::@1 +(label) print_word_at::@return +(byte*) print_word_at::at +(byte*) print_word_at::at#2 at zp ZP_WORD:7 0.8 +(word) print_word_at::w +(word) print_word_at::w#0 w zp ZP_WORD:5 4.0 +(word) print_word_at::w#1 w zp ZP_WORD:5 4.0 +(word) print_word_at::w#2 w zp ZP_WORD:5 2.0 (signed byte[8]) xs (const signed byte[8]) xs#0 xs = { (signed byte) -$46, (signed byte) -$46, (signed byte) -$46, (signed byte) 0, (signed byte) 0, (signed byte) $46, (signed byte) $46, (signed byte) $46 } (signed byte[8]) ys (const signed byte[8]) ys#0 ys = { (signed byte) -$46, (signed byte) 0, (signed byte) $46, (signed byte) -$46, (signed byte) $46, (signed byte) -$46, (signed byte) 0, (signed byte) $46 } -zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] +zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] +zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] +zp ZP_WORD:7 [ print_word_at::at#2 print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] +zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] +zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] reg byte y [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] -zp ZP_WORD:5 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 anim::$11 mulf8u_prepared::return#2 anim::$10 anim::$12 mulf8u_prepared::return#0 ] +zp ZP_WORD:12 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 anim::$12 mulf8u_prepared::return#2 anim::$11 anim::$13 mulf8u_prepared::return#0 ] reg byte a [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] reg byte x [ init::i#2 init::i#1 ] reg byte x [ mulf_init::c#2 mulf_init::c#1 ] -zp ZP_WORD:7 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] -zp ZP_WORD:9 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] -zp ZP_BYTE:11 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -zp ZP_WORD:12 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +zp ZP_WORD:14 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +zp ZP_WORD:16 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +zp ZP_BYTE:18 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +zp ZP_WORD:19 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ] -zp ZP_WORD:14 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] -zp ZP_WORD:16 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] -zp ZP_BYTE:18 [ mulf_init::dir#2 mulf_init::dir#3 ] -zp ZP_BYTE:19 [ anim::x#0 ] -zp ZP_BYTE:20 [ anim::y#0 ] -zp ZP_WORD:21 [ anim::xr#0 anim::xr#1 ] -zp ZP_WORD:23 [ anim::yr#0 anim::yr#1 ] -reg byte a [ anim::$15 ] -zp ZP_WORD:25 [ anim::xpos#0 ] -reg byte a [ anim::$18 ] -reg byte a [ anim::$22 ] +zp ZP_WORD:21 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +zp ZP_WORD:23 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +zp ZP_BYTE:25 [ mulf_init::dir#2 mulf_init::dir#3 ] +zp ZP_BYTE:26 [ anim::x#0 ] +zp ZP_BYTE:27 [ anim::y#0 ] +zp ZP_WORD:28 [ anim::xr#0 anim::xr#1 ] +zp ZP_WORD:30 [ anim::yr#0 anim::yr#1 ] +reg byte a [ anim::$16 ] +zp ZP_WORD:32 [ anim::xpos#0 ] +reg byte a [ anim::$19 ] +reg byte a [ anim::$23 ] reg byte y [ anim::ypos#0 ] reg byte x [ anim::i2#0 ] -reg byte a [ anim::$25 ] +reg byte a [ anim::$26 ] +zp ZP_DWORD:34 [ clock::return#2 anim::$28 clock::return#0 anim::cyclecount#0 print_dword_at::dw#0 ] +reg byte a [ print_byte_at::$0 ] +reg byte y [ print_byte_at::$2 ] reg byte a [ mulf8u_prepared::b#0 ] reg byte a [ mulf8s_prepared::$8 ] reg byte a [ mulf8s_prepared::$15 ] @@ -4157,7 +5562,7 @@ reg byte a [ mulf_init::$11 ] FINAL ASSEMBLER -Score: 30135 +Score: 30954 // File Comments // 2D rotattion of 8 sprites @@ -4173,12 +5578,27 @@ Score: 30135 .label SPRITES_ENABLE = $d015 .label BORDERCOL = $d020 .label SPRITES_COLS = $d027 + // CIA #2 Timer A+B Value (32-bit) + .label CIA2_TIMER_AB = $dd04 + // CIA #2 Timer A Control Register + .label CIA2_TIMER_A_CONTROL = $dd0e + // CIA #2 Timer B Control Register + .label CIA2_TIMER_B_CONTROL = $dd0f + // Timer Control - Start/stop timer (0:stop, 1: start) + .const CIA_TIMER_CONTROL_START = 1 + // Timer Control - Time CONTINUOUS/ONE-SHOT (0:CONTINUOUS, 1: ONE-SHOT) + .const CIA_TIMER_CONTROL_CONTINUOUS = 0 + // Timer B Control - Timer counts (00:system cycles, 01: CNT pulses, 10: timer A underflow, 11: time A underflow while CNT is high) + .const CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A = $40 .const GREEN = 5 .const LIGHT_BLUE = $e + // Clock cycles used to start & read the cycle clock by calling clock_start() and clock() once. Can be subtracted when calculating the number of cycles used by a routine. + // To make precise cycle measurements interrupts and the display must be disabled so neither steals any cycles from the code. + .const CLOCKS_PER_INIT = $12 .label SCREEN = $400 // A single sprite .label SPRITE = $3000 - .label SIN = COS+$40 + .label COS = SIN+$40 // @begin // @1 // kickasm @@ -4194,7 +5614,7 @@ main: { sei // init() // [5] call init - // [80] phi from main to init [phi:main->init] + // [121] phi from main to init [phi:main->init] jsr init // [6] phi from main to main::@1 [phi:main->main::@1] // main::@1 @@ -4209,22 +5629,24 @@ main: { } // anim anim: { - .label _4 = 5 - .label _6 = 5 - .label _9 = 5 - .label _10 = 5 - .label _11 = 5 - .label _12 = 5 - .label x = $13 - .label y = $14 - .label xr = $15 - .label yr = $17 - .label xpos = $19 + .label _5 = $c + .label _7 = $c + .label _10 = $c + .label _11 = $c + .label _12 = $c + .label _13 = $c + .label _28 = $22 + .label x = $1a + .label y = $1b + .label xr = $1c + .label yr = $1e + .label xpos = $20 .label sprite_msb = 4 .label i = 3 .label angle = 2 + .label cyclecount = $22 // [10] phi from anim to anim::@1 [phi:anim->anim::@1] - // [10] phi (byte) anim::angle#6 = (byte) 0 [phi:anim->anim::@1#0] -- vbuz1=vbuc1 + // [10] phi (byte) anim::angle#9 = (byte) 0 [phi:anim->anim::@1#0] -- vbuz1=vbuc1 lda #0 sta angle // anim::@1 @@ -4239,135 +5661,138 @@ anim: { // (*BORDERCOL)++; // [12] *((const byte*) BORDERCOL#0) ← ++ *((const byte*) BORDERCOL#0) -- _deref_pbuc1=_inc__deref_pbuc1 inc BORDERCOL - // [13] phi from anim::@3 to anim::@4 [phi:anim::@3->anim::@4] - // [13] phi (byte) anim::sprite_msb#10 = (byte) 0 [phi:anim::@3->anim::@4#0] -- vbuz1=vbuc1 + // clock_start() + // [13] call clock_start + jsr clock_start + // [14] phi from anim::@3 to anim::@4 [phi:anim::@3->anim::@4] + // [14] phi (byte) anim::sprite_msb#10 = (byte) 0 [phi:anim::@3->anim::@4#0] -- vbuz1=vbuc1 lda #0 sta sprite_msb - // [13] phi (byte) anim::i#10 = (byte) 0 [phi:anim::@3->anim::@4#1] -- vbuz1=vbuc1 + // [14] phi (byte) anim::i#10 = (byte) 0 [phi:anim::@3->anim::@4#1] -- vbuz1=vbuc1 sta i - // [13] phi from anim::@5 to anim::@4 [phi:anim::@5->anim::@4] - // [13] phi (byte) anim::sprite_msb#10 = (byte) anim::sprite_msb#5 [phi:anim::@5->anim::@4#0] -- register_copy - // [13] phi (byte) anim::i#10 = (byte) anim::i#1 [phi:anim::@5->anim::@4#1] -- register_copy + // [14] phi from anim::@5 to anim::@4 [phi:anim::@5->anim::@4] + // [14] phi (byte) anim::sprite_msb#10 = (byte) anim::sprite_msb#5 [phi:anim::@5->anim::@4#0] -- register_copy + // [14] phi (byte) anim::i#10 = (byte) anim::i#1 [phi:anim::@5->anim::@4#1] -- register_copy // anim::@4 b4: // x = xs[i] - // [14] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 + // [15] (signed byte) anim::x#0 ← *((const signed byte[8]) xs#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 ldy i lda xs,y sta x // y = ys[i] - // [15] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 + // [16] (signed byte) anim::y#0 ← *((const signed byte[8]) ys#0 + (byte) anim::i#10) -- vbsz1=pbsc1_derefidx_vbuz2 // signed fixed[7.0] lda ys,y sta y // anim::mulf8s_prepare1 - // [16] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte[$140]) COS#0 + (byte) anim::angle#6) -- vbuaa=pbuc1_derefidx_vbuz1 + // [17] (byte~) mulf8u_prepare::a#3 ← (byte)(signed byte)*((const byte*) COS#0 + (byte) anim::angle#9) -- vbuaa=pbuc1_derefidx_vbuz1 ldy angle lda COS,y // mulf8u_prepare((byte)a) - // [17] call mulf8u_prepare - // [76] phi from anim::mulf8s_prepare1 to mulf8u_prepare [phi:anim::mulf8s_prepare1->mulf8u_prepare] - // [76] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#3 [phi:anim::mulf8s_prepare1->mulf8u_prepare#0] -- register_copy + // [18] call mulf8u_prepare + // [111] phi from anim::mulf8s_prepare1 to mulf8u_prepare [phi:anim::mulf8s_prepare1->mulf8u_prepare] + // [111] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#3 [phi:anim::mulf8s_prepare1->mulf8u_prepare#0] -- register_copy jsr mulf8u_prepare // anim::@8 // mulf8s_prepared(x) - // [18] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 + // [19] (signed byte) mulf8s_prepared::b#0 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 ldy x - // [19] call mulf8s_prepared - // [56] phi from anim::@8 to mulf8s_prepared [phi:anim::@8->mulf8s_prepared] - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#0 [phi:anim::@8->mulf8s_prepared#0] -- register_copy + // [20] call mulf8s_prepared + // [91] phi from anim::@8 to mulf8s_prepared [phi:anim::@8->mulf8s_prepared] + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#0 [phi:anim::@8->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared // anim::@10 // mulf8s_prepared(x) - // [20] (signed word~) anim::$4 ← (signed word)(word) mulf8s_prepared::m#4 + // [21] (signed word~) anim::$5 ← (signed word)(word) mulf8s_prepared::m#4 // xr = mulf8s_prepared(x)*2 - // [21] (signed word) anim::xr#0 ← (signed word~) anim::$4 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _4 + // [22] (signed word) anim::xr#0 ← (signed word~) anim::$5 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _5 asl sta xr - lda _4+1 + lda _5+1 rol sta xr+1 // mulf8s_prepared(y) - // [22] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 + // [23] (signed byte) mulf8s_prepared::b#1 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 ldy y - // [23] call mulf8s_prepared - // [56] phi from anim::@10 to mulf8s_prepared [phi:anim::@10->mulf8s_prepared] - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#1 [phi:anim::@10->mulf8s_prepared#0] -- register_copy + // [24] call mulf8s_prepared + // [91] phi from anim::@10 to mulf8s_prepared [phi:anim::@10->mulf8s_prepared] + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#1 [phi:anim::@10->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared // anim::@11 // mulf8s_prepared(y) - // [24] (signed word~) anim::$6 ← (signed word)(word) mulf8s_prepared::m#4 + // [25] (signed word~) anim::$7 ← (signed word)(word) mulf8s_prepared::m#4 // yr = mulf8s_prepared(y)*2 - // [25] (signed word) anim::yr#0 ← (signed word~) anim::$6 << (byte) 1 -- vwsz1=vwsz2_rol_1 - lda _6 + // [26] (signed word) anim::yr#0 ← (signed word~) anim::$7 << (byte) 1 -- vwsz1=vwsz2_rol_1 + lda _7 asl sta yr - lda _6+1 + lda _7+1 rol sta yr+1 // anim::mulf8s_prepare2 - // [26] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte*) SIN#0 + (byte) anim::angle#6) -- vbuaa=pbuc1_derefidx_vbuz1 + // [27] (byte~) mulf8u_prepare::a#4 ← (byte)(signed byte)*((const byte[$140]) SIN#0 + (byte) anim::angle#9) -- vbuaa=pbuc1_derefidx_vbuz1 ldy angle lda SIN,y // mulf8u_prepare((byte)a) - // [27] call mulf8u_prepare - // [76] phi from anim::mulf8s_prepare2 to mulf8u_prepare [phi:anim::mulf8s_prepare2->mulf8u_prepare] - // [76] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#4 [phi:anim::mulf8s_prepare2->mulf8u_prepare#0] -- register_copy + // [28] call mulf8u_prepare + // [111] phi from anim::mulf8s_prepare2 to mulf8u_prepare [phi:anim::mulf8s_prepare2->mulf8u_prepare] + // [111] phi (byte) mulf8u_prepare::a#2 = (byte~) mulf8u_prepare::a#4 [phi:anim::mulf8s_prepare2->mulf8u_prepare#0] -- register_copy jsr mulf8u_prepare // anim::@9 // mulf8s_prepared(y) - // [28] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 + // [29] (signed byte) mulf8s_prepared::b#2 ← (signed byte) anim::y#0 -- vbsyy=vbsz1 ldy y - // [29] call mulf8s_prepared - // [56] phi from anim::@9 to mulf8s_prepared [phi:anim::@9->mulf8s_prepared] - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#2 [phi:anim::@9->mulf8s_prepared#0] -- register_copy + // [30] call mulf8s_prepared + // [91] phi from anim::@9 to mulf8s_prepared [phi:anim::@9->mulf8s_prepared] + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#2 [phi:anim::@9->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared // anim::@12 // mulf8s_prepared(y) - // [30] (signed word~) anim::$9 ← (signed word)(word) mulf8s_prepared::m#4 + // [31] (signed word~) anim::$10 ← (signed word)(word) mulf8s_prepared::m#4 // mulf8s_prepared(y)*2 - // [31] (signed word~) anim::$10 ← (signed word~) anim::$9 << (byte) 1 -- vwsz1=vwsz1_rol_1 - asl _10 - rol _10+1 + // [32] (signed word~) anim::$11 ← (signed word~) anim::$10 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _11 + rol _11+1 // xr -= mulf8s_prepared(y)*2 - // [32] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$10 -- vwsz1=vwsz1_minus_vwsz2 + // [33] (signed word) anim::xr#1 ← (signed word) anim::xr#0 - (signed word~) anim::$11 -- vwsz1=vwsz1_minus_vwsz2 lda xr sec - sbc _10 + sbc _11 sta xr lda xr+1 - sbc _10+1 + sbc _11+1 sta xr+1 // mulf8s_prepared(x) - // [33] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 + // [34] (signed byte) mulf8s_prepared::b#3 ← (signed byte) anim::x#0 -- vbsyy=vbsz1 ldy x - // [34] call mulf8s_prepared - // [56] phi from anim::@12 to mulf8s_prepared [phi:anim::@12->mulf8s_prepared] - // [56] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#3 [phi:anim::@12->mulf8s_prepared#0] -- register_copy + // [35] call mulf8s_prepared + // [91] phi from anim::@12 to mulf8s_prepared [phi:anim::@12->mulf8s_prepared] + // [91] phi (signed byte) mulf8s_prepared::b#4 = (signed byte) mulf8s_prepared::b#3 [phi:anim::@12->mulf8s_prepared#0] -- register_copy jsr mulf8s_prepared // anim::@13 // mulf8s_prepared(x) - // [35] (signed word~) anim::$11 ← (signed word)(word) mulf8s_prepared::m#4 + // [36] (signed word~) anim::$12 ← (signed word)(word) mulf8s_prepared::m#4 // mulf8s_prepared(x)*2 - // [36] (signed word~) anim::$12 ← (signed word~) anim::$11 << (byte) 1 -- vwsz1=vwsz1_rol_1 - asl _12 - rol _12+1 + // [37] (signed word~) anim::$13 ← (signed word~) anim::$12 << (byte) 1 -- vwsz1=vwsz1_rol_1 + asl _13 + rol _13+1 // yr += mulf8s_prepared(x)*2 - // [37] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$12 -- vwsz1=vwsz1_plus_vwsz2 + // [38] (signed word) anim::yr#1 ← (signed word) anim::yr#0 + (signed word~) anim::$13 -- vwsz1=vwsz1_plus_vwsz2 // signed fixed[8.8] lda yr clc - adc _12 + adc _13 sta yr lda yr+1 - adc _12+1 + adc _13+1 sta yr+1 // >xr - // [38] (byte~) anim::$15 ← > (signed word) anim::xr#1 -- vbuaa=_hi_vwsz1 + // [39] (byte~) anim::$16 ← > (signed word) anim::xr#1 -- vbuaa=_hi_vwsz1 lda xr+1 // xpos = ((signed byte) >xr) + 24 /*border*/ + 149 - // [39] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$15 + (signed byte) $18+(signed word) $95 -- vwsz1=vbsaa_plus_vwsc1 + // [40] (signed word) anim::xpos#0 ← (signed byte)(byte~) anim::$16 + (signed byte) $18+(signed word) $95 -- vwsz1=vbsaa_plus_vwsc1 tax clc adc #<$18+$95 @@ -4380,51 +5805,51 @@ anim: { adc #>$18+$95 sta xpos+1 // sprite_msb = sprite_msb/2 - // [40] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 -- vbuz1=vbuz1_ror_1 + // [41] (byte) anim::sprite_msb#1 ← (byte) anim::sprite_msb#10 >> (byte) 1 -- vbuz1=vbuz1_ror_1 lsr sprite_msb // >xpos - // [41] (byte~) anim::$18 ← > (signed word) anim::xpos#0 -- vbuaa=_hi_vwsz1 + // [42] (byte~) anim::$19 ← > (signed word) anim::xpos#0 -- vbuaa=_hi_vwsz1 // if(>xpos!=0) - // [42] if((byte~) anim::$18==(byte) 0) goto anim::@5 -- vbuaa_eq_0_then_la1 + // [43] if((byte~) anim::$19==(byte) 0) goto anim::@5 -- vbuaa_eq_0_then_la1 cmp #0 beq b5 // anim::@6 // sprite_msb |= $80 - // [43] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 -- vbuz1=vbuz1_bor_vbuc1 + // [44] (byte) anim::sprite_msb#2 ← (byte) anim::sprite_msb#1 | (byte) $80 -- vbuz1=vbuz1_bor_vbuc1 lda #$80 ora sprite_msb sta sprite_msb - // [44] phi from anim::@13 anim::@6 to anim::@5 [phi:anim::@13/anim::@6->anim::@5] - // [44] phi (byte) anim::sprite_msb#5 = (byte) anim::sprite_msb#1 [phi:anim::@13/anim::@6->anim::@5#0] -- register_copy + // [45] phi from anim::@13 anim::@6 to anim::@5 [phi:anim::@13/anim::@6->anim::@5] + // [45] phi (byte) anim::sprite_msb#5 = (byte) anim::sprite_msb#1 [phi:anim::@13/anim::@6->anim::@5#0] -- register_copy // anim::@5 b5: // (>yr) + 89 - // [45] (byte~) anim::$22 ← > (signed word) anim::yr#1 -- vbuaa=_hi_vwsz1 + // [46] (byte~) anim::$23 ← > (signed word) anim::yr#1 -- vbuaa=_hi_vwsz1 lda yr+1 // ypos = (>yr) + 89 /*center*/+ 51 - // [46] (byte) anim::ypos#0 ← (byte~) anim::$22 + (byte) $59+(byte) $33 -- vbuyy=vbuaa_plus_vbuc1 + // [47] (byte) anim::ypos#0 ← (byte~) anim::$23 + (byte) $59+(byte) $33 -- vbuyy=vbuaa_plus_vbuc1 clc adc #$59+$33 tay // i2 = i*2 - // [47] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 -- vbuxx=vbuz1_rol_1 + // [48] (byte) anim::i2#0 ← (byte) anim::i#10 << (byte) 1 -- vbuxx=vbuz1_rol_1 lda i asl tax // CLOCKS_PER_INIT + sta cyclecount+1 + lda cyclecount+2 + sbc #>$10 + sta cyclecount+2 + lda cyclecount+3 + sbc #>CLOCKS_PER_INIT>>$10 + sta cyclecount+3 + // print_dword_at(cyclecount, SCREEN) + // [60] (dword) print_dword_at::dw#0 ← (dword) anim::cyclecount#0 + // [61] call print_dword_at + jsr print_dword_at + // anim::@15 // *BORDERCOL = LIGHT_BLUE - // [55] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 -- _deref_pbuc1=vbuc2 + // [62] *((const byte*) BORDERCOL#0) ← (const byte) LIGHT_BLUE#0 -- _deref_pbuc1=vbuc2 lda #LIGHT_BLUE sta BORDERCOL - // [10] phi from anim::@7 to anim::@1 [phi:anim::@7->anim::@1] - // [10] phi (byte) anim::angle#6 = (byte) anim::angle#1 [phi:anim::@7->anim::@1#0] -- register_copy + // [10] phi from anim::@15 to anim::@1 [phi:anim::@15->anim::@1] + // [10] phi (byte) anim::angle#9 = (byte) anim::angle#1 [phi:anim::@15->anim::@1#0] -- register_copy jmp b2 +} + // print_dword_at +// Print a dword as HEX at a specific position +// print_dword_at(dword zeropage($22) dw) +print_dword_at: { + .label dw = $22 + // print_word_at(>dw, at) + // [63] (word) print_word_at::w#0 ← > (dword) print_dword_at::dw#0 -- vwuz1=_hi_vduz2 + lda dw+2 + sta print_word_at.w + lda dw+3 + sta print_word_at.w+1 + // [64] call print_word_at + // [68] phi from print_dword_at to print_word_at [phi:print_dword_at->print_word_at] + // [68] phi (byte*) print_word_at::at#2 = (const byte*) SCREEN#0 [phi:print_dword_at->print_word_at#0] -- pbuz1=pbuc1 + lda #SCREEN + sta print_word_at.at+1 + // [68] phi (word) print_word_at::w#2 = (word) print_word_at::w#0 [phi:print_dword_at->print_word_at#1] -- register_copy + jsr print_word_at + // print_dword_at::@1 + // print_word_at(print_word_at] + // [68] phi (byte*) print_word_at::at#2 = (const byte*) SCREEN#0+(byte) 4 [phi:print_dword_at::@1->print_word_at#0] -- pbuz1=pbuc1 + lda #SCREEN+4 + sta print_word_at.at+1 + // [68] phi (word) print_word_at::w#2 = (word) print_word_at::w#1 [phi:print_dword_at::@1->print_word_at#1] -- register_copy + jsr print_word_at + // print_dword_at::@return + // } + // [67] return + rts +} + // print_word_at +// Print a word as HEX at a specific position +// print_word_at(word zeropage(5) w, byte* zeropage(7) at) +print_word_at: { + .label w = 5 + .label at = 7 + // print_byte_at(>w, at) + // [69] (byte) print_byte_at::b#0 ← > (word) print_word_at::w#2 -- vbuz1=_hi_vwuz2 + lda w+1 + sta print_byte_at.b + // [70] (byte*) print_byte_at::at#0 ← (byte*) print_word_at::at#2 + // [71] call print_byte_at + // [76] phi from print_word_at to print_byte_at [phi:print_word_at->print_byte_at] + // [76] phi (byte*) print_byte_at::at#2 = (byte*) print_byte_at::at#0 [phi:print_word_at->print_byte_at#0] -- register_copy + // [76] phi (byte) print_byte_at::b#2 = (byte) print_byte_at::b#0 [phi:print_word_at->print_byte_at#1] -- register_copy + jsr print_byte_at + // print_word_at::@1 + // print_byte_at(print_byte_at] + // [76] phi (byte*) print_byte_at::at#2 = (byte*) print_byte_at::at#1 [phi:print_word_at::@1->print_byte_at#0] -- register_copy + // [76] phi (byte) print_byte_at::b#2 = (byte) print_byte_at::b#1 [phi:print_word_at::@1->print_byte_at#1] -- register_copy + jsr print_byte_at + // print_word_at::@return + // } + // [75] return + rts +} + // print_byte_at +// Print a byte as HEX at a specific position +// print_byte_at(byte zeropage(9) b, byte* zeropage(7) at) +print_byte_at: { + .label b = 9 + .label at = 7 + // b>>4 + // [77] (byte~) print_byte_at::$0 ← (byte) print_byte_at::b#2 >> (byte) 4 -- vbuaa=vbuz1_ror_4 + lda b + lsr + lsr + lsr + lsr + // print_char_at(print_hextab[b>>4], at) + // [78] (byte) print_char_at::ch#0 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$0) -- vbuxx=pbuc1_derefidx_vbuaa + tay + ldx print_hextab,y + // [79] (byte*) print_char_at::at#0 ← (byte*) print_byte_at::at#2 -- pbuz1=pbuz2 + lda at + sta print_char_at.at + lda at+1 + sta print_char_at.at+1 + // [80] call print_char_at + // [86] phi from print_byte_at to print_char_at [phi:print_byte_at->print_char_at] + // [86] phi (byte*) print_char_at::at#2 = (byte*) print_char_at::at#0 [phi:print_byte_at->print_char_at#0] -- register_copy + // [86] phi (byte) print_char_at::ch#2 = (byte) print_char_at::ch#0 [phi:print_byte_at->print_char_at#1] -- register_copy + jsr print_char_at + // print_byte_at::@1 + // b&$f + // [81] (byte~) print_byte_at::$2 ← (byte) print_byte_at::b#2 & (byte) $f -- vbuyy=vbuz1_band_vbuc1 + lda #$f + and b + tay + // print_char_at(print_hextab[b&$f], at+1) + // [82] (byte*) print_char_at::at#1 ← (byte*) print_byte_at::at#2 + (byte) 1 -- pbuz1=pbuz2_plus_1 + lda at + clc + adc #1 + sta print_char_at.at + lda at+1 + adc #0 + sta print_char_at.at+1 + // [83] (byte) print_char_at::ch#1 ← *((const byte[]) print_hextab#0 + (byte~) print_byte_at::$2) -- vbuxx=pbuc1_derefidx_vbuyy + ldx print_hextab,y + // [84] call print_char_at + // [86] phi from print_byte_at::@1 to print_char_at [phi:print_byte_at::@1->print_char_at] + // [86] phi (byte*) print_char_at::at#2 = (byte*) print_char_at::at#1 [phi:print_byte_at::@1->print_char_at#0] -- register_copy + // [86] phi (byte) print_char_at::ch#2 = (byte) print_char_at::ch#1 [phi:print_byte_at::@1->print_char_at#1] -- register_copy + jsr print_char_at + // print_byte_at::@return + // } + // [85] return + rts +} + // print_char_at +// Print a single char +// print_char_at(byte register(X) ch, byte* zeropage($a) at) +print_char_at: { + .label at = $a + // *(at) = ch + // [87] *((byte*) print_char_at::at#2) ← (byte) print_char_at::ch#2 -- _deref_pbuz1=vbuxx + txa + ldy #0 + sta (at),y + // print_char_at::@return + // } + // [88] return + rts +} + // clock +// Returns the processor clock time used since the beginning of an implementation defined era (normally the beginning of the program). +// This uses CIA #2 Timer A+B on the C64, and must be initialized using clock_start() +clock: { + .label return = $22 + // 0xffffffff - *CIA2_TIMER_AB + // [89] (dword) clock::return#0 ← (dword) $ffffffff - *((const dword*) CIA2_TIMER_AB#0) -- vduz1=vduc1_minus__deref_pduc2 + lda #<$ffffffff + sec + sbc CIA2_TIMER_AB + sta return + lda #>$ffffffff + sbc CIA2_TIMER_AB+1 + sta return+1 + lda #<$ffffffff>>$10 + sbc CIA2_TIMER_AB+2 + sta return+2 + lda #>$ffffffff>>$10 + sbc CIA2_TIMER_AB+3 + sta return+3 + // clock::@return + // } + // [90] return + rts } // mulf8s_prepared // Calculate fast multiply with a prepared unsigned byte to a word result @@ -4452,57 +6077,57 @@ anim: { // mulf8s_prepared(signed byte register(Y) b) mulf8s_prepared: { .label memA = $fd - .label m = 5 + .label m = $c // mulf8u_prepared((byte) b) - // [57] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuyy + // [92] (byte) mulf8u_prepared::b#0 ← (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuyy tya - // [58] call mulf8u_prepared + // [93] call mulf8u_prepared jsr mulf8u_prepared - // [59] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 + // [94] (word) mulf8u_prepared::return#2 ← (word) mulf8u_prepared::return#0 // mulf8s_prepared::@5 // m = mulf8u_prepared((byte) b) - // [60] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 + // [95] (word) mulf8s_prepared::m#0 ← (word) mulf8u_prepared::return#2 // if(*memA<0) - // [61] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 -- _deref_pbsc1_ge_0_then_la1 + // [96] if(*((const signed byte*) mulf8s_prepared::memA#0)>=(signed byte) 0) goto mulf8s_prepared::@1 -- _deref_pbsc1_ge_0_then_la1 lda memA cmp #0 bpl b1 // mulf8s_prepared::@3 // >m - // [62] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 -- vbuaa=_hi_vwuz1 + // [97] (byte~) mulf8s_prepared::$8 ← > (word) mulf8s_prepared::m#0 -- vbuaa=_hi_vwuz1 lda m+1 // >m = (>m)-(byte)b - // [63] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuaa_minus_vbuyy + // [98] (byte~) mulf8s_prepared::$15 ← (byte~) mulf8s_prepared::$8 - (byte)(signed byte) mulf8s_prepared::b#4 -- vbuaa=vbuaa_minus_vbuyy sty $ff sec sbc $ff - // [64] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 -- vwuz1=vwuz1_sethi_vbuaa + // [99] (word) mulf8s_prepared::m#1 ← (word) mulf8s_prepared::m#0 hi= (byte~) mulf8s_prepared::$15 -- vwuz1=vwuz1_sethi_vbuaa sta m+1 - // [65] phi from mulf8s_prepared::@3 mulf8s_prepared::@5 to mulf8s_prepared::@1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1] - // [65] phi (word) mulf8s_prepared::m#5 = (word) mulf8s_prepared::m#1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1#0] -- register_copy + // [100] phi from mulf8s_prepared::@3 mulf8s_prepared::@5 to mulf8s_prepared::@1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1] + // [100] phi (word) mulf8s_prepared::m#5 = (word) mulf8s_prepared::m#1 [phi:mulf8s_prepared::@3/mulf8s_prepared::@5->mulf8s_prepared::@1#0] -- register_copy // mulf8s_prepared::@1 b1: // if(b<0) - // [66] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 -- vbsyy_ge_0_then_la1 + // [101] if((signed byte) mulf8s_prepared::b#4>=(signed byte) 0) goto mulf8s_prepared::@2 -- vbsyy_ge_0_then_la1 cpy #0 bpl b2 // mulf8s_prepared::@4 // >m - // [67] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 -- vbuaa=_hi_vwuz1 + // [102] (byte~) mulf8s_prepared::$12 ← > (word) mulf8s_prepared::m#5 -- vbuaa=_hi_vwuz1 lda m+1 // >m = (>m)-(byte)*memA - // [68] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) -- vbuaa=vbuaa_minus__deref_pbuc1 + // [103] (byte~) mulf8s_prepared::$16 ← (byte~) mulf8s_prepared::$12 - (byte)*((const signed byte*) mulf8s_prepared::memA#0) -- vbuaa=vbuaa_minus__deref_pbuc1 sec sbc memA - // [69] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 -- vwuz1=vwuz1_sethi_vbuaa + // [104] (word) mulf8s_prepared::m#2 ← (word) mulf8s_prepared::m#5 hi= (byte~) mulf8s_prepared::$16 -- vwuz1=vwuz1_sethi_vbuaa sta m+1 - // [70] phi from mulf8s_prepared::@1 mulf8s_prepared::@4 to mulf8s_prepared::@2 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2] - // [70] phi (word) mulf8s_prepared::m#4 = (word) mulf8s_prepared::m#5 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2#0] -- register_copy + // [105] phi from mulf8s_prepared::@1 mulf8s_prepared::@4 to mulf8s_prepared::@2 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2] + // [105] phi (word) mulf8s_prepared::m#4 = (word) mulf8s_prepared::m#5 [phi:mulf8s_prepared::@1/mulf8s_prepared::@4->mulf8s_prepared::@2#0] -- register_copy // mulf8s_prepared::@2 b2: // mulf8s_prepared::@return // } - // [71] return + // [106] return rts } // mulf8u_prepared @@ -4512,9 +6137,9 @@ mulf8s_prepared: { mulf8u_prepared: { .label resL = $fe .label memB = $ff - .label return = 5 + .label return = $c // *memB = b - // [72] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 -- _deref_pbuc1=vbuaa + // [107] *((const byte*) mulf8u_prepared::memB#0) ← (byte) mulf8u_prepared::b#0 -- _deref_pbuc1=vbuaa sta memB // asm // asm { ldxmemB sec sm1: ldamulf_sqr1_lo,x sm2: sbcmulf_sqr2_lo,x staresL sm3: ldamulf_sqr1_hi,x sm4: sbcmulf_sqr2_hi,x stamemB } @@ -4531,14 +6156,14 @@ mulf8u_prepared: { sbc mulf_sqr2_hi,x sta memB // return { *memB, *resL }; - // [74] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 + // [109] (word) mulf8u_prepared::return#0 ← *((const byte*) mulf8u_prepared::memB#0) w= *((const byte*) mulf8u_prepared::resL#0) -- vwuz1=_deref_pbuc1_word__deref_pbuc2 lda resL sta return lda memB sta return+1 // mulf8u_prepared::@return // } - // [75] return + // [110] return rts } // mulf8u_prepare @@ -4547,7 +6172,7 @@ mulf8u_prepared: { mulf8u_prepare: { .label memA = $fd // *memA = a - // [77] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 -- _deref_pbuc1=vbuaa + // [112] *((const byte*) mulf8u_prepare::memA#0) ← (byte) mulf8u_prepare::a#2 -- _deref_pbuc1=vbuaa sta memA // asm // asm { ldamemA stamulf8u_prepared.sm1+1 stamulf8u_prepared.sm3+1 eor#$ff stamulf8u_prepared.sm2+1 stamulf8u_prepared.sm4+1 } @@ -4558,132 +6183,168 @@ mulf8u_prepare: { sta mulf8u_prepared.sm4+1 // mulf8u_prepare::@return // } - // [79] return + // [114] return + rts +} + // clock_start +// Reset & start the processor clock time. The value can be read using clock(). +// This uses CIA #2 Timer A+B on the C64 +clock_start: { + // *CIA2_TIMER_A_CONTROL = CIA_TIMER_CONTROL_STOP | CIA_TIMER_CONTROL_CONTINUOUS | CIA_TIMER_CONTROL_A_COUNT_CYCLES + // [115] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 -- _deref_pbuc1=vbuc2 + // Setup CIA#2 timer A to count (down) CPU cycles + lda #CIA_TIMER_CONTROL_CONTINUOUS + sta CIA2_TIMER_A_CONTROL + // *CIA2_TIMER_B_CONTROL = CIA_TIMER_CONTROL_STOP | CIA_TIMER_CONTROL_CONTINUOUS | CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + // [116] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + // *CIA2_TIMER_AB = 0xffffffff + // [117] *((const dword*) CIA2_TIMER_AB#0) ← (dword) $ffffffff -- _deref_pduc1=vduc2 + lda #<$ffffffff + sta CIA2_TIMER_AB + lda #>$ffffffff + sta CIA2_TIMER_AB+1 + lda #<$ffffffff>>$10 + sta CIA2_TIMER_AB+2 + lda #>$ffffffff>>$10 + sta CIA2_TIMER_AB+3 + // *CIA2_TIMER_B_CONTROL = CIA_TIMER_CONTROL_START | CIA_TIMER_CONTROL_CONTINUOUS | CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + // [118] *((const byte*) CIA2_TIMER_B_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0|(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_START|CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A + sta CIA2_TIMER_B_CONTROL + // *CIA2_TIMER_A_CONTROL = CIA_TIMER_CONTROL_START | CIA_TIMER_CONTROL_CONTINUOUS | CIA_TIMER_CONTROL_A_COUNT_CYCLES + // [119] *((const byte*) CIA2_TIMER_A_CONTROL#0) ← (const byte) CIA_TIMER_CONTROL_START#0 -- _deref_pbuc1=vbuc2 + lda #CIA_TIMER_CONTROL_START + sta CIA2_TIMER_A_CONTROL + // clock_start::@return + // } + // [120] return rts } // init init: { .label sprites_ptr = SCREEN+$3f8 // mulf_init() - // [81] call mulf_init - // [89] phi from init to mulf_init [phi:init->mulf_init] + // [122] call mulf_init + // [130] phi from init to mulf_init [phi:init->mulf_init] jsr mulf_init // init::@2 // *SPRITES_ENABLE = %11111111 - // [82] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff -- _deref_pbuc1=vbuc2 + // [123] *((const byte*) SPRITES_ENABLE#0) ← (byte) $ff -- _deref_pbuc1=vbuc2 lda #$ff sta SPRITES_ENABLE - // [83] phi from init::@2 to init::@1 [phi:init::@2->init::@1] - // [83] phi (byte) init::i#2 = (byte) 0 [phi:init::@2->init::@1#0] -- vbuxx=vbuc1 + // [124] phi from init::@2 to init::@1 [phi:init::@2->init::@1] + // [124] phi (byte) init::i#2 = (byte) 0 [phi:init::@2->init::@1#0] -- vbuxx=vbuc1 ldx #0 - // [83] phi from init::@1 to init::@1 [phi:init::@1->init::@1] - // [83] phi (byte) init::i#2 = (byte) init::i#1 [phi:init::@1->init::@1#0] -- register_copy + // [124] phi from init::@1 to init::@1 [phi:init::@1->init::@1] + // [124] phi (byte) init::i#2 = (byte) init::i#1 [phi:init::@1->init::@1#0] -- register_copy // init::@1 b1: // sprites_ptr[i] = (byte)(SPRITE/$40) - // [84] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 -- pbuc1_derefidx_vbuxx=vbuc2 + // [125] *((const byte*) init::sprites_ptr#0 + (byte) init::i#2) ← (byte)(const byte*) SPRITE#0/(byte) $40 -- pbuc1_derefidx_vbuxx=vbuc2 lda #SPRITE/$40 sta sprites_ptr,x // SPRITES_COLS[i] = GREEN - // [85] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 -- pbuc1_derefidx_vbuxx=vbuc2 + // [126] *((const byte*) SPRITES_COLS#0 + (byte) init::i#2) ← (const byte) GREEN#0 -- pbuc1_derefidx_vbuxx=vbuc2 lda #GREEN sta SPRITES_COLS,x // for(byte i: 0..7) - // [86] (byte) init::i#1 ← ++ (byte) init::i#2 -- vbuxx=_inc_vbuxx + // [127] (byte) init::i#1 ← ++ (byte) init::i#2 -- vbuxx=_inc_vbuxx inx - // [87] if((byte) init::i#1!=(byte) 8) goto init::@1 -- vbuxx_neq_vbuc1_then_la1 + // [128] if((byte) init::i#1!=(byte) 8) goto init::@1 -- vbuxx_neq_vbuc1_then_la1 cpx #8 bne b1 // init::@return // } - // [88] return + // [129] return rts } // mulf_init // Initialize the mulf_sqr multiplication tables with f(x)=int(x*x/4) mulf_init: { - .label sqr1_hi = 9 - .label sqr = $c - .label sqr1_lo = 7 - .label x_2 = $b - .label sqr2_hi = $10 - .label sqr2_lo = $e - .label dir = $12 - // [90] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] - // [90] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 + .label sqr1_hi = $10 + .label sqr = $13 + .label sqr1_lo = $e + .label x_2 = $12 + .label sqr2_hi = $17 + .label sqr2_lo = $15 + .label dir = $19 + // [131] phi from mulf_init to mulf_init::@1 [phi:mulf_init->mulf_init::@1] + // [131] phi (byte) mulf_init::x_2#3 = (byte) 0 [phi:mulf_init->mulf_init::@1#0] -- vbuz1=vbuc1 lda #0 sta x_2 - // [90] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 + // [131] phi (byte*) mulf_init::sqr1_hi#2 = (const byte[$200]) mulf_sqr1_hi#0+(byte) 1 [phi:mulf_init->mulf_init::@1#1] -- pbuz1=pbuc1 lda #mulf_sqr1_hi+1 sta sqr1_hi+1 - // [90] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 + // [131] phi (byte*) mulf_init::sqr1_lo#2 = (const byte[$200]) mulf_sqr1_lo#0+(byte) 1 [phi:mulf_init->mulf_init::@1#2] -- pbuz1=pbuc1 lda #mulf_sqr1_lo+1 sta sqr1_lo+1 - // [90] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 + // [131] phi (word) mulf_init::sqr#4 = (byte) 0 [phi:mulf_init->mulf_init::@1#3] -- vwuz1=vbuc1 lda #<0 sta sqr sta sqr+1 - // [90] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuxx=vbuc1 + // [131] phi (byte) mulf_init::c#2 = (byte) 0 [phi:mulf_init->mulf_init::@1#4] -- vbuxx=vbuc1 tax - // [90] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] - // [90] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy - // [90] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy - // [90] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy - // [90] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy - // [90] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy + // [131] phi from mulf_init::@2 to mulf_init::@1 [phi:mulf_init::@2->mulf_init::@1] + // [131] phi (byte) mulf_init::x_2#3 = (byte) mulf_init::x_2#2 [phi:mulf_init::@2->mulf_init::@1#0] -- register_copy + // [131] phi (byte*) mulf_init::sqr1_hi#2 = (byte*) mulf_init::sqr1_hi#1 [phi:mulf_init::@2->mulf_init::@1#1] -- register_copy + // [131] phi (byte*) mulf_init::sqr1_lo#2 = (byte*) mulf_init::sqr1_lo#1 [phi:mulf_init::@2->mulf_init::@1#2] -- register_copy + // [131] phi (word) mulf_init::sqr#4 = (word) mulf_init::sqr#1 [phi:mulf_init::@2->mulf_init::@1#3] -- register_copy + // [131] phi (byte) mulf_init::c#2 = (byte) mulf_init::c#1 [phi:mulf_init::@2->mulf_init::@1#4] -- register_copy // mulf_init::@1 b1: // if((++c&1)==0) - // [91] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuxx=_inc_vbuxx + // [132] (byte) mulf_init::c#1 ← ++ (byte) mulf_init::c#2 -- vbuxx=_inc_vbuxx inx // ++c&1 - // [92] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuaa=vbuxx_band_vbuc1 + // [133] (byte~) mulf_init::$7 ← (byte) mulf_init::c#1 & (byte) 1 -- vbuaa=vbuxx_band_vbuc1 txa and #1 // if((++c&1)==0) - // [93] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuaa_neq_0_then_la1 + // [134] if((byte~) mulf_init::$7!=(byte) 0) goto mulf_init::@2 -- vbuaa_neq_0_then_la1 cmp #0 bne b2 // mulf_init::@3 // x_2++; - // [94] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 + // [135] (byte) mulf_init::x_2#1 ← ++ (byte) mulf_init::x_2#3 -- vbuz1=_inc_vbuz1 inc x_2 // sqr++; - // [95] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 + // [136] (word) mulf_init::sqr#2 ← ++ (word) mulf_init::sqr#4 -- vwuz1=_inc_vwuz1 inc sqr bne !+ inc sqr+1 !: - // [96] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] - // [96] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy - // [96] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy + // [137] phi from mulf_init::@1 mulf_init::@3 to mulf_init::@2 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2] + // [137] phi (byte) mulf_init::x_2#2 = (byte) mulf_init::x_2#3 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#0] -- register_copy + // [137] phi (word) mulf_init::sqr#3 = (word) mulf_init::sqr#4 [phi:mulf_init::@1/mulf_init::@3->mulf_init::@2#1] -- register_copy // mulf_init::@2 b2: // sqr - // [99] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuaa=_hi_vwuz1 + // [140] (byte~) mulf_init::$11 ← > (word) mulf_init::sqr#3 -- vbuaa=_hi_vwuz1 lda sqr+1 // *sqr1_hi++ = >sqr - // [100] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuaa + // [141] *((byte*) mulf_init::sqr1_hi#2) ← (byte~) mulf_init::$11 -- _deref_pbuz1=vbuaa sta (sqr1_hi),y // *sqr1_hi++ = >sqr; - // [101] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 + // [142] (byte*) mulf_init::sqr1_hi#1 ← ++ (byte*) mulf_init::sqr1_hi#2 -- pbuz1=_inc_pbuz1 inc sqr1_hi bne !+ inc sqr1_hi+1 !: // sqr = sqr + x_2 - // [102] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 + // [143] (word) mulf_init::sqr#1 ← (word) mulf_init::sqr#3 + (byte) mulf_init::x_2#2 -- vwuz1=vwuz1_plus_vbuz2 lda x_2 clc adc sqr @@ -4692,83 +6353,83 @@ mulf_init: { inc sqr+1 !: // for(byte* sqr1_lo = mulf_sqr1_lo+1; sqr1_lo!=mulf_sqr1_lo+512; sqr1_lo++) - // [103] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 + // [144] (byte*) mulf_init::sqr1_lo#1 ← ++ (byte*) mulf_init::sqr1_lo#2 -- pbuz1=_inc_pbuz1 inc sqr1_lo bne !+ inc sqr1_lo+1 !: - // [104] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 + // [145] if((byte*) mulf_init::sqr1_lo#1!=(const byte[$200]) mulf_sqr1_lo#0+(word) $200) goto mulf_init::@1 -- pbuz1_neq_pbuc1_then_la1 lda sqr1_lo+1 cmp #>mulf_sqr1_lo+$200 bne b1 lda sqr1_lo cmp #mulf_init::@4] - // [105] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 + // [146] phi from mulf_init::@2 to mulf_init::@4 [phi:mulf_init::@2->mulf_init::@4] + // [146] phi (byte) mulf_init::dir#2 = (byte) $ff [phi:mulf_init::@2->mulf_init::@4#0] -- vbuz1=vbuc1 lda #$ff sta dir - // [105] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 + // [146] phi (byte*) mulf_init::sqr2_hi#2 = (const byte[$200]) mulf_sqr2_hi#0 [phi:mulf_init::@2->mulf_init::@4#1] -- pbuz1=pbuc1 lda #mulf_sqr2_hi sta sqr2_hi+1 - // [105] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 + // [146] phi (byte*) mulf_init::sqr2_lo#2 = (const byte[$200]) mulf_sqr2_lo#0 [phi:mulf_init::@2->mulf_init::@4#2] -- pbuz1=pbuc1 lda #mulf_sqr2_lo sta sqr2_lo+1 - // [105] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuxx=vbuc1 + // [146] phi (byte) mulf_init::x_255#2 = (byte) -1 [phi:mulf_init::@2->mulf_init::@4#3] -- vbuxx=vbuc1 ldx #-1 - // [105] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] - // [105] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy - // [105] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy - // [105] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy - // [105] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy + // [146] phi from mulf_init::@5 to mulf_init::@4 [phi:mulf_init::@5->mulf_init::@4] + // [146] phi (byte) mulf_init::dir#2 = (byte) mulf_init::dir#3 [phi:mulf_init::@5->mulf_init::@4#0] -- register_copy + // [146] phi (byte*) mulf_init::sqr2_hi#2 = (byte*) mulf_init::sqr2_hi#1 [phi:mulf_init::@5->mulf_init::@4#1] -- register_copy + // [146] phi (byte*) mulf_init::sqr2_lo#2 = (byte*) mulf_init::sqr2_lo#1 [phi:mulf_init::@5->mulf_init::@4#2] -- register_copy + // [146] phi (byte) mulf_init::x_255#2 = (byte) mulf_init::x_255#1 [phi:mulf_init::@5->mulf_init::@4#3] -- register_copy // mulf_init::@4 b4: // *sqr2_lo = mulf_sqr1_lo[x_255] - // [106] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + // [147] *((byte*) mulf_init::sqr2_lo#2) ← *((const byte[$200]) mulf_sqr1_lo#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx lda mulf_sqr1_lo,x ldy #0 sta (sqr2_lo),y // *sqr2_hi++ = mulf_sqr1_hi[x_255] - // [107] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx + // [148] *((byte*) mulf_init::sqr2_hi#2) ← *((const byte[$200]) mulf_sqr1_hi#0 + (byte) mulf_init::x_255#2) -- _deref_pbuz1=pbuc1_derefidx_vbuxx lda mulf_sqr1_hi,x sta (sqr2_hi),y // *sqr2_hi++ = mulf_sqr1_hi[x_255]; - // [108] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 + // [149] (byte*) mulf_init::sqr2_hi#1 ← ++ (byte*) mulf_init::sqr2_hi#2 -- pbuz1=_inc_pbuz1 inc sqr2_hi bne !+ inc sqr2_hi+1 !: // x_255 = x_255 + dir - // [109] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuxx=vbuxx_plus_vbuz1 + // [150] (byte) mulf_init::x_255#1 ← (byte) mulf_init::x_255#2 + (byte) mulf_init::dir#2 -- vbuxx=vbuxx_plus_vbuz1 txa clc adc dir tax // if(x_255==0) - // [110] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuxx_neq_0_then_la1 + // [151] if((byte) mulf_init::x_255#1!=(byte) 0) goto mulf_init::@7 -- vbuxx_neq_0_then_la1 cpx #0 bne b5 - // [112] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] - // [112] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 + // [153] phi from mulf_init::@4 to mulf_init::@5 [phi:mulf_init::@4->mulf_init::@5] + // [153] phi (byte) mulf_init::dir#3 = (byte) 1 [phi:mulf_init::@4->mulf_init::@5#0] -- vbuz1=vbuc1 lda #1 sta dir - // [111] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] + // [152] phi from mulf_init::@4 to mulf_init::@7 [phi:mulf_init::@4->mulf_init::@7] // mulf_init::@7 - // [112] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] - // [112] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy + // [153] phi from mulf_init::@7 to mulf_init::@5 [phi:mulf_init::@7->mulf_init::@5] + // [153] phi (byte) mulf_init::dir#3 = (byte) mulf_init::dir#2 [phi:mulf_init::@7->mulf_init::@5#0] -- register_copy // mulf_init::@5 b5: // for(byte* sqr2_lo = mulf_sqr2_lo; sqr2_lo!=mulf_sqr2_lo+511; sqr2_lo++) - // [113] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 + // [154] (byte*) mulf_init::sqr2_lo#1 ← ++ (byte*) mulf_init::sqr2_lo#2 -- pbuz1=_inc_pbuz1 inc sqr2_lo bne !+ inc sqr2_lo+1 !: - // [114] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 + // [155] if((byte*) mulf_init::sqr2_lo#1!=(const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) goto mulf_init::@4 -- pbuz1_neq_pbuc1_then_la1 lda sqr2_lo+1 cmp #>mulf_sqr2_lo+$1ff bne b4 @@ -4777,17 +6438,17 @@ mulf_init: { bne b4 // mulf_init::@6 // *(mulf_sqr2_lo+511) = *(mulf_sqr1_lo+256) - // [115] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 + // [156] *((const byte[$200]) mulf_sqr2_lo#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_lo#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 // Set the very last value g(511) = f(256) lda mulf_sqr1_lo+$100 sta mulf_sqr2_lo+$1ff // *(mulf_sqr2_hi+511) = *(mulf_sqr1_hi+256) - // [116] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 + // [157] *((const byte[$200]) mulf_sqr2_hi#0+(word) $1ff) ← *((const byte[$200]) mulf_sqr1_hi#0+(word) $100) -- _deref_pbuc1=_deref_pbuc2 lda mulf_sqr1_hi+$100 sta mulf_sqr2_hi+$1ff // mulf_init::@return // } - // [117] return + // [158] return rts } // File Data @@ -4804,20 +6465,14 @@ mulf_init: { // >g(x) = >((( x - 255) * ( x - 255 ))/4) .align $100 mulf_sqr2_hi: .fill $200, 0 + print_hextab: .text "0123456789abcdef" // Sine and Cosine tables // Angles: $00=0, $80=PI,$100=2*PI // Sine/Cosine: signed fixed [-$7f,$7f] .align $40 -COS: -{ - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } +SIN: +.for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) // Positions to rotate xs: .byte -$46, -$46, -$46, 0, 0, $46, $46, $46 diff --git a/src/test/ref/examples/rotate/rotate.sym b/src/test/ref/examples/rotate/rotate.sym index 079d54e17..c7ad4b3ed 100644 --- a/src/test/ref/examples/rotate/rotate.sym +++ b/src/test/ref/examples/rotate/rotate.sym @@ -3,27 +3,40 @@ (label) @end (byte*) BORDERCOL (const byte*) BORDERCOL#0 BORDERCOL = (byte*) 53280 -(byte[$140]) COS -(const byte[$140]) COS#0 COS = kickasm {{ { - .var min = -$7fff - .var max = $7fff - .var ampl = max-min; - .for(var i=0;i<$140;i++) { - .var rad = i*2*PI/256; - .byte >round(min+(ampl/2)+(ampl/2)*cos(rad)) - } - } - }} +(dword*) CIA2_TIMER_AB +(const dword*) CIA2_TIMER_AB#0 CIA2_TIMER_AB = (dword*) 56580 +(byte*) CIA2_TIMER_A_CONTROL +(const byte*) CIA2_TIMER_A_CONTROL#0 CIA2_TIMER_A_CONTROL = (byte*) 56590 +(byte*) CIA2_TIMER_B_CONTROL +(const byte*) CIA2_TIMER_B_CONTROL#0 CIA2_TIMER_B_CONTROL = (byte*) 56591 +(byte) CIA_TIMER_CONTROL_A_COUNT_CYCLES +(byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A +(const byte) CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A#0 CIA_TIMER_CONTROL_B_COUNT_UNDERFLOW_A = (byte) $40 +(byte) CIA_TIMER_CONTROL_CONTINUOUS +(const byte) CIA_TIMER_CONTROL_CONTINUOUS#0 CIA_TIMER_CONTROL_CONTINUOUS = (byte) 0 +(byte) CIA_TIMER_CONTROL_START +(const byte) CIA_TIMER_CONTROL_START#0 CIA_TIMER_CONTROL_START = (byte) 1 +(byte) CIA_TIMER_CONTROL_STOP +(dword) CLOCKS_PER_INIT +(const dword) CLOCKS_PER_INIT#0 CLOCKS_PER_INIT = (byte) $12 +(byte*) COS +(const byte*) COS#0 COS = (const byte[$140]) SIN#0+(byte) $40 (byte) GREEN (const byte) GREEN#0 GREEN = (byte) 5 (byte) LIGHT_BLUE (const byte) LIGHT_BLUE#0 LIGHT_BLUE = (byte) $e +(const byte) RADIX::BINARY BINARY = (number) 2 +(const byte) RADIX::DECIMAL DECIMAL = (number) $a +(const byte) RADIX::HEXADECIMAL HEXADECIMAL = (number) $10 +(const byte) RADIX::OCTAL OCTAL = (number) 8 (byte*) RASTER (const byte*) RASTER#0 RASTER = (byte*) 53266 (byte*) SCREEN (const byte*) SCREEN#0 SCREEN = (byte*) 1024 -(byte*) SIN -(const byte*) SIN#0 SIN = (const byte[$140]) COS#0+(byte) $40 +(byte[$140]) SIN +(const byte[$140]) SIN#0 SIN = kickasm {{ .for(var i=0;i<$140;i++) + .byte >round($7fff*sin(i*2*PI/256)) + }} (byte*) SPRITE (const byte*) SPRITE#0 SPRITE = (byte*) 12288 (byte*) SPRITES_COLS @@ -37,21 +50,24 @@ (byte*) SPRITES_YPOS (const byte*) SPRITES_YPOS#0 SPRITES_YPOS = (byte*) 53249 (void()) anim() -(signed word~) anim::$10 $10 zp ZP_WORD:5 202.0 -(signed word~) anim::$11 $11 zp ZP_WORD:5 202.0 -(signed word~) anim::$12 $12 zp ZP_WORD:5 202.0 -(byte~) anim::$15 reg byte a 101.0 -(byte~) anim::$18 reg byte a 202.0 -(byte~) anim::$22 reg byte a 202.0 -(byte~) anim::$25 reg byte a 202.0 -(signed word~) anim::$4 $4 zp ZP_WORD:5 202.0 -(signed word~) anim::$6 $6 zp ZP_WORD:5 202.0 -(signed word~) anim::$9 $9 zp ZP_WORD:5 202.0 +(signed word~) anim::$10 $10 zp ZP_WORD:12 202.0 +(signed word~) anim::$11 $11 zp ZP_WORD:12 202.0 +(signed word~) anim::$12 $12 zp ZP_WORD:12 202.0 +(signed word~) anim::$13 $13 zp ZP_WORD:12 202.0 +(byte~) anim::$16 reg byte a 101.0 +(byte~) anim::$19 reg byte a 202.0 +(byte~) anim::$23 reg byte a 202.0 +(byte~) anim::$26 reg byte a 202.0 +(dword~) anim::$28 $28 zp ZP_DWORD:34 22.0 +(signed word~) anim::$5 $5 zp ZP_WORD:12 202.0 +(signed word~) anim::$7 $7 zp ZP_WORD:12 202.0 (label) anim::@1 (label) anim::@10 (label) anim::@11 (label) anim::@12 (label) anim::@13 +(label) anim::@14 +(label) anim::@15 (label) anim::@2 (label) anim::@3 (label) anim::@4 @@ -61,9 +77,11 @@ (label) anim::@8 (label) anim::@9 (byte) anim::angle -(byte) anim::angle#1 angle zp ZP_BYTE:2 11.0 -(byte) anim::angle#6 angle zp ZP_BYTE:2 0.5 +(byte) anim::angle#1 angle zp ZP_BYTE:2 2.75 +(byte) anim::angle#9 angle zp ZP_BYTE:2 0.4888888888888889 (signed byte) anim::cos_a +(dword) anim::cyclecount +(dword) anim::cyclecount#0 cyclecount zp ZP_DWORD:34 22.0 (byte) anim::i (byte) anim::i#1 i zp ZP_BYTE:3 151.5 (byte) anim::i#10 i zp ZP_BYTE:3 13.289473684210527 @@ -82,19 +100,26 @@ (byte) anim::sprite_msb#2 sprite_msb zp ZP_BYTE:4 202.0 (byte) anim::sprite_msb#5 sprite_msb zp ZP_BYTE:4 34.888888888888886 (signed byte) anim::x -(signed byte) anim::x#0 x zp ZP_BYTE:19 15.947368421052632 +(signed byte) anim::x#0 x zp ZP_BYTE:26 15.947368421052632 (signed word) anim::xpos -(signed word) anim::xpos#0 xpos zp ZP_WORD:25 33.666666666666664 +(signed word) anim::xpos#0 xpos zp ZP_WORD:32 33.666666666666664 (signed word) anim::xr -(signed word) anim::xr#0 xr zp ZP_WORD:21 18.363636363636363 -(signed word) anim::xr#1 xr zp ZP_WORD:21 33.666666666666664 +(signed word) anim::xr#0 xr zp ZP_WORD:28 18.363636363636363 +(signed word) anim::xr#1 xr zp ZP_WORD:28 33.666666666666664 (signed byte) anim::y -(signed byte) anim::y#0 y zp ZP_BYTE:20 23.307692307692307 +(signed byte) anim::y#0 y zp ZP_BYTE:27 23.307692307692307 (byte) anim::ypos (byte) anim::ypos#0 reg byte y 50.5 (signed word) anim::yr -(signed word) anim::yr#0 yr zp ZP_WORD:23 16.833333333333332 -(signed word) anim::yr#1 yr zp ZP_WORD:23 25.25 +(signed word) anim::yr#0 yr zp ZP_WORD:30 16.833333333333332 +(signed word) anim::yr#1 yr zp ZP_WORD:30 25.25 +(dword()) clock() +(label) clock::@return +(dword) clock::return +(dword) clock::return#0 return zp ZP_DWORD:34 4.333333333333333 +(dword) clock::return#2 return zp ZP_DWORD:34 22.0 +(void()) clock_start() +(label) clock_start::@return (void()) init() (label) init::@1 (label) init::@2 @@ -125,11 +150,11 @@ (signed byte) mulf8s_prepared::b#3 reg byte y 202.0 (signed byte) mulf8s_prepared::b#4 reg byte y 40.6 (word) mulf8s_prepared::m -(word) mulf8s_prepared::m#0 m zp ZP_WORD:5 2.0 -(word) mulf8s_prepared::m#1 m zp ZP_WORD:5 4.0 -(word) mulf8s_prepared::m#2 m zp ZP_WORD:5 4.0 -(word) mulf8s_prepared::m#4 m zp ZP_WORD:5 0.6666666666666666 -(word) mulf8s_prepared::m#5 m zp ZP_WORD:5 2.5 +(word) mulf8s_prepared::m#0 m zp ZP_WORD:12 2.0 +(word) mulf8s_prepared::m#1 m zp ZP_WORD:12 4.0 +(word) mulf8s_prepared::m#2 m zp ZP_WORD:12 4.0 +(word) mulf8s_prepared::m#4 m zp ZP_WORD:12 0.6666666666666666 +(word) mulf8s_prepared::m#5 m zp ZP_WORD:12 2.5 (signed byte*) mulf8s_prepared::memA (const signed byte*) mulf8s_prepared::memA#0 memA = (signed byte*) 253 (signed word) mulf8s_prepared::return @@ -150,8 +175,8 @@ (byte*) mulf8u_prepared::resL (const byte*) mulf8u_prepared::resL#0 resL = (byte*) 254 (word) mulf8u_prepared::return -(word) mulf8u_prepared::return#0 return zp ZP_WORD:5 1.3333333333333333 -(word) mulf8u_prepared::return#2 return zp ZP_WORD:5 4.0 +(word) mulf8u_prepared::return#0 return zp ZP_WORD:12 1.3333333333333333 +(word) mulf8u_prepared::return#2 return zp ZP_WORD:12 4.0 (void()) mulf_init() (byte~) mulf_init::$10 reg byte a 22.0 (byte~) mulf_init::$11 reg byte a 22.0 @@ -168,29 +193,29 @@ (byte) mulf_init::c#1 reg byte x 2.357142857142857 (byte) mulf_init::c#2 reg byte x 22.0 (byte) mulf_init::dir -(byte) mulf_init::dir#2 dir zp ZP_BYTE:18 4.714285714285714 -(byte) mulf_init::dir#3 dir zp ZP_BYTE:18 7.333333333333333 +(byte) mulf_init::dir#2 dir zp ZP_BYTE:25 4.714285714285714 +(byte) mulf_init::dir#3 dir zp ZP_BYTE:25 7.333333333333333 (word) mulf_init::sqr -(word) mulf_init::sqr#1 sqr zp ZP_WORD:12 7.333333333333333 -(word) mulf_init::sqr#2 sqr zp ZP_WORD:12 22.0 -(word) mulf_init::sqr#3 sqr zp ZP_WORD:12 9.166666666666666 -(word) mulf_init::sqr#4 sqr zp ZP_WORD:12 6.6000000000000005 +(word) mulf_init::sqr#1 sqr zp ZP_WORD:19 7.333333333333333 +(word) mulf_init::sqr#2 sqr zp ZP_WORD:19 22.0 +(word) mulf_init::sqr#3 sqr zp ZP_WORD:19 9.166666666666666 +(word) mulf_init::sqr#4 sqr zp ZP_WORD:19 6.6000000000000005 (byte*) mulf_init::sqr1_hi -(byte*) mulf_init::sqr1_hi#1 sqr1_hi zp ZP_WORD:9 5.5 -(byte*) mulf_init::sqr1_hi#2 sqr1_hi zp ZP_WORD:9 3.0 +(byte*) mulf_init::sqr1_hi#1 sqr1_hi zp ZP_WORD:16 5.5 +(byte*) mulf_init::sqr1_hi#2 sqr1_hi zp ZP_WORD:16 3.0 (byte*) mulf_init::sqr1_lo -(byte*) mulf_init::sqr1_lo#1 sqr1_lo zp ZP_WORD:7 16.5 -(byte*) mulf_init::sqr1_lo#2 sqr1_lo zp ZP_WORD:7 2.5384615384615383 +(byte*) mulf_init::sqr1_lo#1 sqr1_lo zp ZP_WORD:14 16.5 +(byte*) mulf_init::sqr1_lo#2 sqr1_lo zp ZP_WORD:14 2.5384615384615383 (byte*) mulf_init::sqr2_hi -(byte*) mulf_init::sqr2_hi#1 sqr2_hi zp ZP_WORD:16 3.142857142857143 -(byte*) mulf_init::sqr2_hi#2 sqr2_hi zp ZP_WORD:16 11.0 +(byte*) mulf_init::sqr2_hi#1 sqr2_hi zp ZP_WORD:23 3.142857142857143 +(byte*) mulf_init::sqr2_hi#2 sqr2_hi zp ZP_WORD:23 11.0 (byte*) mulf_init::sqr2_lo -(byte*) mulf_init::sqr2_lo#1 sqr2_lo zp ZP_WORD:14 16.5 -(byte*) mulf_init::sqr2_lo#2 sqr2_lo zp ZP_WORD:14 4.125 +(byte*) mulf_init::sqr2_lo#1 sqr2_lo zp ZP_WORD:21 16.5 +(byte*) mulf_init::sqr2_lo#2 sqr2_lo zp ZP_WORD:21 4.125 (byte) mulf_init::x_2 -(byte) mulf_init::x_2#1 x_2 zp ZP_BYTE:11 11.0 -(byte) mulf_init::x_2#2 x_2 zp ZP_BYTE:11 4.888888888888889 -(byte) mulf_init::x_2#3 x_2 zp ZP_BYTE:11 8.25 +(byte) mulf_init::x_2#1 x_2 zp ZP_BYTE:18 11.0 +(byte) mulf_init::x_2#2 x_2 zp ZP_BYTE:18 4.888888888888889 +(byte) mulf_init::x_2#3 x_2 zp ZP_BYTE:18 8.25 (byte) mulf_init::x_255 (byte) mulf_init::x_255#1 reg byte x 5.5 (byte) mulf_init::x_255#2 reg byte x 11.0 @@ -202,38 +227,86 @@ (const byte[$200]) mulf_sqr2_hi#0 mulf_sqr2_hi = { fill( $200, 0) } (byte[$200]) mulf_sqr2_lo (const byte[$200]) mulf_sqr2_lo#0 mulf_sqr2_lo = { fill( $200, 0) } +(void()) print_byte_at((byte) print_byte_at::b , (byte*) print_byte_at::at) +(byte~) print_byte_at::$0 reg byte a 4.0 +(byte~) print_byte_at::$2 reg byte y 2.0 +(label) print_byte_at::@1 +(label) print_byte_at::@return +(byte*) print_byte_at::at +(byte*) print_byte_at::at#0 at zp ZP_WORD:7 4.0 +(byte*) print_byte_at::at#1 at zp ZP_WORD:7 4.0 +(byte*) print_byte_at::at#2 at zp ZP_WORD:7 1.3333333333333333 +(byte) print_byte_at::b +(byte) print_byte_at::b#0 b zp ZP_BYTE:9 2.0 +(byte) print_byte_at::b#1 b zp ZP_BYTE:9 2.0 +(byte) print_byte_at::b#2 b zp ZP_BYTE:9 1.6 +(void()) print_char_at((byte) print_char_at::ch , (byte*) print_char_at::at) +(label) print_char_at::@return +(byte*) print_char_at::at +(byte*) print_char_at::at#0 at zp ZP_WORD:10 4.0 +(byte*) print_char_at::at#1 at zp ZP_WORD:10 2.0 +(byte*) print_char_at::at#2 at zp ZP_WORD:10 6.0 +(byte) print_char_at::ch +(byte) print_char_at::ch#0 reg byte x 2.0 +(byte) print_char_at::ch#1 reg byte x 4.0 +(byte) print_char_at::ch#2 reg byte x 6.0 +(void()) print_dword_at((dword) print_dword_at::dw , (byte*) print_dword_at::at) +(label) print_dword_at::@1 +(label) print_dword_at::@return +(byte*) print_dword_at::at +(dword) print_dword_at::dw +(dword) print_dword_at::dw#0 dw zp ZP_DWORD:34 5.0 +(byte[]) print_hextab +(const byte[]) print_hextab#0 print_hextab = (string) "0123456789abcdef" +(void()) print_word_at((word) print_word_at::w , (byte*) print_word_at::at) +(label) print_word_at::@1 +(label) print_word_at::@return +(byte*) print_word_at::at +(byte*) print_word_at::at#2 at zp ZP_WORD:7 0.8 +(word) print_word_at::w +(word) print_word_at::w#0 w zp ZP_WORD:5 4.0 +(word) print_word_at::w#1 w zp ZP_WORD:5 4.0 +(word) print_word_at::w#2 w zp ZP_WORD:5 2.0 (signed byte[8]) xs (const signed byte[8]) xs#0 xs = { (signed byte) -$46, (signed byte) -$46, (signed byte) -$46, (signed byte) 0, (signed byte) 0, (signed byte) $46, (signed byte) $46, (signed byte) $46 } (signed byte[8]) ys (const signed byte[8]) ys#0 ys = { (signed byte) -$46, (signed byte) 0, (signed byte) $46, (signed byte) -$46, (signed byte) $46, (signed byte) -$46, (signed byte) 0, (signed byte) $46 } -zp ZP_BYTE:2 [ anim::angle#6 anim::angle#1 ] +zp ZP_BYTE:2 [ anim::angle#9 anim::angle#1 ] zp ZP_BYTE:3 [ anim::i#10 anim::i#1 ] zp ZP_BYTE:4 [ anim::sprite_msb#10 anim::sprite_msb#5 anim::sprite_msb#2 anim::sprite_msb#1 ] +zp ZP_WORD:5 [ print_word_at::w#2 print_word_at::w#0 print_word_at::w#1 ] +zp ZP_WORD:7 [ print_word_at::at#2 print_byte_at::at#2 print_byte_at::at#0 print_byte_at::at#1 ] +zp ZP_BYTE:9 [ print_byte_at::b#2 print_byte_at::b#0 print_byte_at::b#1 ] +reg byte x [ print_char_at::ch#2 print_char_at::ch#0 print_char_at::ch#1 ] +zp ZP_WORD:10 [ print_char_at::at#2 print_char_at::at#0 print_char_at::at#1 ] reg byte y [ mulf8s_prepared::b#4 mulf8s_prepared::b#0 mulf8s_prepared::b#2 mulf8s_prepared::b#1 mulf8s_prepared::b#3 ] -zp ZP_WORD:5 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$4 anim::$6 anim::$9 anim::$11 mulf8u_prepared::return#2 anim::$10 anim::$12 mulf8u_prepared::return#0 ] +zp ZP_WORD:12 [ mulf8s_prepared::m#4 mulf8s_prepared::m#5 mulf8s_prepared::m#1 mulf8s_prepared::m#0 mulf8s_prepared::m#2 anim::$5 anim::$7 anim::$10 anim::$12 mulf8u_prepared::return#2 anim::$11 anim::$13 mulf8u_prepared::return#0 ] reg byte a [ mulf8u_prepare::a#2 mulf8u_prepare::a#3 mulf8u_prepare::a#4 ] reg byte x [ init::i#2 init::i#1 ] reg byte x [ mulf_init::c#2 mulf_init::c#1 ] -zp ZP_WORD:7 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] -zp ZP_WORD:9 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] -zp ZP_BYTE:11 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] -zp ZP_WORD:12 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] +zp ZP_WORD:14 [ mulf_init::sqr1_lo#2 mulf_init::sqr1_lo#1 ] +zp ZP_WORD:16 [ mulf_init::sqr1_hi#2 mulf_init::sqr1_hi#1 ] +zp ZP_BYTE:18 [ mulf_init::x_2#3 mulf_init::x_2#2 mulf_init::x_2#1 ] +zp ZP_WORD:19 [ mulf_init::sqr#3 mulf_init::sqr#4 mulf_init::sqr#1 mulf_init::sqr#2 ] reg byte x [ mulf_init::x_255#2 mulf_init::x_255#1 ] -zp ZP_WORD:14 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] -zp ZP_WORD:16 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] -zp ZP_BYTE:18 [ mulf_init::dir#2 mulf_init::dir#3 ] -zp ZP_BYTE:19 [ anim::x#0 ] -zp ZP_BYTE:20 [ anim::y#0 ] -zp ZP_WORD:21 [ anim::xr#0 anim::xr#1 ] -zp ZP_WORD:23 [ anim::yr#0 anim::yr#1 ] -reg byte a [ anim::$15 ] -zp ZP_WORD:25 [ anim::xpos#0 ] -reg byte a [ anim::$18 ] -reg byte a [ anim::$22 ] +zp ZP_WORD:21 [ mulf_init::sqr2_lo#2 mulf_init::sqr2_lo#1 ] +zp ZP_WORD:23 [ mulf_init::sqr2_hi#2 mulf_init::sqr2_hi#1 ] +zp ZP_BYTE:25 [ mulf_init::dir#2 mulf_init::dir#3 ] +zp ZP_BYTE:26 [ anim::x#0 ] +zp ZP_BYTE:27 [ anim::y#0 ] +zp ZP_WORD:28 [ anim::xr#0 anim::xr#1 ] +zp ZP_WORD:30 [ anim::yr#0 anim::yr#1 ] +reg byte a [ anim::$16 ] +zp ZP_WORD:32 [ anim::xpos#0 ] +reg byte a [ anim::$19 ] +reg byte a [ anim::$23 ] reg byte y [ anim::ypos#0 ] reg byte x [ anim::i2#0 ] -reg byte a [ anim::$25 ] +reg byte a [ anim::$26 ] +zp ZP_DWORD:34 [ clock::return#2 anim::$28 clock::return#0 anim::cyclecount#0 print_dword_at::dw#0 ] +reg byte a [ print_byte_at::$0 ] +reg byte y [ print_byte_at::$2 ] reg byte a [ mulf8u_prepared::b#0 ] reg byte a [ mulf8s_prepared::$8 ] reg byte a [ mulf8s_prepared::$15 ]