|
26 | 26 | # 16 bit comparison functions |
27 | 27 | # 16bit parameters and function call instrs |
28 | 28 | # 16 bit arithmetic functions |
29 | | -from ._16bit import ( |
30 | | - Bits16, |
31 | | - _jnzero16, |
32 | | -) |
| 29 | +from ._16bit import Bits16 |
33 | 30 |
|
34 | 31 | # 32 bit bitwise operations |
35 | 32 | # 32 bit shift operations |
@@ -316,8 +313,8 @@ def _set_quad_table(self): |
316 | 313 | ICInstruction.JZEROSTR: ICInfo(2, String.jzerostr), # if str is NULL or len(str) == 0, jmp LABEL |
317 | 314 | ICInstruction.JNZEROI8: ICInfo(2, Bits8.jnzero8), # if X != 0 jmp LABEL |
318 | 315 | ICInstruction.JNZEROU8: ICInfo(2, Bits8.jnzero8), # if X != 0 jmp LABEL |
319 | | - ICInstruction.JNZEROI16: ICInfo(2, _jnzero16), # if X != 0 jmp LABEL |
320 | | - ICInstruction.JNZEROU16: ICInfo(2, _jnzero16), # if X != 0 jmp LABEL |
| 316 | + ICInstruction.JNZEROI16: ICInfo(2, Bits16.jnzero16), # if X != 0 jmp LABEL |
| 317 | + ICInstruction.JNZEROU16: ICInfo(2, Bits16.jnzero16), # if X != 0 jmp LABEL |
321 | 318 | ICInstruction.JNZEROI32: ICInfo(2, Bits32.jnzero32), # if X != 0 jmp LABEL (32bit, fixed) |
322 | 319 | ICInstruction.JNZEROU32: ICInfo(2, Bits32.jnzero32), # if X != 0 jmp LABEL (32bit, fixed) |
323 | 320 | ICInstruction.JNZEROF16: ICInfo(2, Fixed16.jnzerof16), # if X != 0 jmp LABEL (32bit, fixed) |
|
0 commit comments