1 2 // Dancing bits data for encoding diskboot.bin file 3 // Used by dancingbits.c and finsig_dryos.c 4 5 #define VITALY 18 6 unsigned char _chr_[VITALY][8] = { 7 { 4,6,1,0,7,2,5,3 }, // original flavor 8 { 5,3,6,1,2,7,0,4 }, // nacho cheese sx200is, ixus100_sd780, ixu95_sd1200, a1100, d10 9 { 2,5,0,4,6,1,3,7 }, // mesquite bbq ixus200_sd980, sx20 (dryos r39) 10 { 4,7,3,2,6,5,0,1 }, // cool ranch a3100 (dryos r43) 11 { 3,2,7,5,1,4,6,0 }, // cajun chicken s95, g12, sx30 (dryos r45) 12 { 0,4,2,7,3,6,5,1 }, // spicy wasabi sx220, sx230, ixus310 (dryos r47) 13 { 7,1,5,3,0,6,4,2 }, // sea salt & vinegar sx40hs, sx150is (dryos r49) 14 { 6,3,1,0,5,7,2,4 }, // spicy habenaro sx260hs (dryos r50) 15 { 1,0,4,6,2,3,7,5 }, // tapatio hot sauce sx160is (dryos r51) 16 { 3,6,7,2,4,5,1,0 }, // blazin' jalapeno a1400 (dryos r52) 17 { 0,2,6,3,1,4,7,5 }, // guacamole sx510hs (dryos r52) 18 { 2,7,0,6,3,1,5,4 }, // (dryos r54) 19 { 6,5,3,7,0,2,4,1 }, // oyster sauce ixus160_elph160 (dryos r55) 20 { 7,4,5,0,2,1,3,6 }, // jeronymo sx530 (dryos r55) 21 { 5,0,2,1,7,3,4,6 }, // sonic sour cream, g5x (dryos R58) 22 { 1,3,7,4,5,6,0,2 }, // ixus175_elph180, sx420is (dryos r58) 23 { 4,7,5,6,1,3,2,0 }, // sx430is (dryos r59) 24 { 0,7,4,2,6,5,1,3 }, // m100 (dryos r59) 25 }; 26