-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtablexor
More file actions
45 lines (44 loc) · 1.53 KB
/
Copy pathtablexor
File metadata and controls
45 lines (44 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Needed quick inverse scaled function that takes 50 to 250, 55 to 245 etc.
Assume [50,250], this seems to work.
Unsigned 8bit "=num-45" =Xor(num-45)
50 00110010 00000101 11111010 250
55 00110111 00001010 11110101 245
60 00111100 00001111 11110000 240
65 01000001 00010100 11101011 235
70 01000110 00011001 11100110 230
75 01001011 00011110 11100001 225
80 01010000 00100011 11011100 220
85 01010101 00101000 11010111 215
90 01011010 00101101 11010010 210
95 01011111 00110010 11001101 205
100 01100100 00110111 11001000 200
105 01101001 00111100 11000011 195
110 01101110 01000001 10111110 190
115 01110011 01000110 10111001 185
120 01111000 01001011 10110100 180
125 01111101 01010000 10101111 175
130 10000010 01010101 10101010 170
135 10000111 01011010 10100101 165
140 10001100 01011111 10100000 160
145 10010001 01100100 10011011 155
150 10010110 01101001 10010110 150
155 10011011 01101110 10010001 145
160 10100000 01110011 10001100 140
165 10100101 01111000 10000111 135
170 10101010 01111101 10000010 130
175 10101111 10000010 01111101 125
180 10110100 10000111 01111000 120
185 10111001 10001100 01110011 115
190 10111110 10010001 01101110 110
195 11000011 10010110 01101001 105
200 11001000 10011011 01100100 100
205 11001101 10100000 01011111 95
210 11010010 10100101 01011010 90
215 11010111 10101010 01010101 85
220 11011100 10101111 01010000 80
225 11100001 10110100 01001011 75
230 11100110 10111001 01000110 70
235 11101011 10111110 01000001 65
240 11110000 11000011 00111100 60
245 11110101 11001000 00110111 55
250 11111010 11001101 00110010 50