Home
last modified time | relevance | path

Searched refs:R_AL (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/drivers/bios_emulator/
Dbios.c78 if (M.x86.R_AL == 0) { in int42()
82 } else if (M.x86.R_AL == 1) { in int42()
90 M.x86.R_AL); in int42()
97 M.x86.R_AH, M.x86.R_AL, M.x86.R_BL); in int42()
164 M.x86.R_AL = 0x00; /* no config space/special cycle generation support */
/external/u-boot/drivers/bios_emulator/x86emu/
Dops.c415 M.x86.R_AL = genop_byte_operation[op1](M.x86.R_AL, srcval); in x86emuOp_genop_byte_AL_IMM()
586 M.x86.R_AL = daa_byte(M.x86.R_AL); in x86emuOp_daa()
614 M.x86.R_AL = das_byte(M.x86.R_AL); in x86emuOp_das()
2260 if (M.x86.R_AL & 0x80) { in x86emuOp_cbw()
2442 M.x86.R_AL = fetch_data_byte(offset); in x86emuOp_mov_AL_M_IMM()
2485 store_data_byte(offset, M.x86.R_AL); in x86emuOp_mov_M_AL_IMM()
2711 test_byte(M.x86.R_AL, (u8)imm); in x86emuOp_test_AL_IMM()
2762 store_data_byte_abs(M.x86.R_ES, M.x86.R_DI, M.x86.R_AL); in x86emuOp_stos_byte()
2768 store_data_byte_abs(M.x86.R_ES, M.x86.R_DI, M.x86.R_AL); in x86emuOp_stos_byte()
2838 M.x86.R_AL = fetch_data_byte(M.x86.R_SI); in x86emuOp_lods_byte()
[all …]
Dprim_ops.c1876 s16 res = (s16)((s8)M.x86.R_AL * (s8)s); in imul_byte()
1879 if (((M.x86.R_AL & 0x80) == 0 && M.x86.R_AH == 0x00) || in imul_byte()
1880 ((M.x86.R_AL & 0x80) != 0 && M.x86.R_AH == 0xFF)) { in imul_byte()
1970 u16 res = (u16)(M.x86.R_AL * s); in mul_byte()
2056 M.x86.R_AL = (s8) div; in idiv_byte()
2181 M.x86.R_AL = (u8)div; in div_byte()
Ddecode.c566 return &M.x86.R_AL; in decode_rm_byte_register()
/external/u-boot/drivers/bios_emulator/include/x86emu/
Dregs.h126 #define R_AL gen.A.I8_reg.l_reg macro