Searched defs:CX (Results 1 - 18 of 18) sorted by relevance

/vbox/src/VBox/Devices/PC/BIOS/
H A Dapm.c84 #define CX r.gr.u.r16.cx macro
152 BX_DEBUG_APM("APM: AX=%04X BX=%04X CX=%04X\n", AX, BX, CX);
159 CX = 3; /* Bits 0/1: 16-bit/32-bit PM interface */
172 CX = APM_BIOS_SEG; /* 16-bit data segment. */
182 CX = APM_BIOS_SEG; /* 16-bit code segment. */
196 switch (CX) {
H A Ddisk.c85 #define CX r.gr.u.r16.cx macro
131 BX_DEBUG_INT13_HD("%s: AX=%04x BX=%04x CX=%04x DX=%04x ES=%04x\n", __func__, AX, BX, CX, DX, ES);
290 CX = lba >> 16;
346 BX_DEBUG_INT13_HD("%s: AX=%04x BX=%04x CX=%04x DX=%04x ES=%04x DS=%04x SI=%04x\n",
347 __func__, AX, BX, CX, DX, ES, DS, SI);
370 CX=0x0007; // ext disk access and edd, removable supported
H A Dfloppy.c439 #define CX r.gr.u.r16.cx macro
459 BX_DEBUG_INT13_FL("%s: AX=%04x BX=%04x CX=%04x DX=%04x ES=%04x\n", __func__, AX, BX, CX, DX, ES);
995 CX = 0;
1026 CX = 0;
1031 CX = 0x2709; // 40 tracks, 9 sectors
1035 CX = 0x4f0f; // 80 tracks, 15 sectors
1039 CX = 0x4f09; // 80 tracks, 9 sectors
1043 CX = 0x4f12; // 80 tracks, 18 sectors
1047 CX
[all...]
H A Dkeyboard.c343 uint16_t BX, uint16_t DX, uint16_t CX, uint16_t AX)
578 #define CX r.gr.u.r16.cx macro
593 BX_DEBUG_INT16("int16: AX=%04x BX=%04x CX=%04x DX=%04x \n", AX, BX, CX, DX);
740 BX_INFO("AX=%04x BX=%04x CX=%04x DX=%04x \n", AX, BX, CX, DX);
742 BX_DEBUG_INT16("int16ex: AX=%04x BX=%04x CX=%04x DX=%04x \n", AX, BX, CX, DX);
342 int09_function(uint16_t ES, uint16_t DI, uint16_t SI, uint16_t BP, uint16_t SP, uint16_t BX, uint16_t DX, uint16_t CX, uint16_t AX) argument
H A Dsystem.c267 #define CX r.gr.u.r16.cx macro
366 write_word( 0x40, 0x9E, CX ); // High word, delay.
455 pm_stack_save(CX, ES, SI);
591 // Wait for CX:DX microseconds. currently using the
594 timer_wait(DX, CX);
793 CX = (inb_cmos(0x31) << 8) | inb_cmos(0x30);
796 if(CX > 0x3c00)
797 CX = 0x3c00;
803 AX = CX;
H A Deltorito.c71 #define CX r.gr.u.r16.cx macro
180 BX_DEBUG_INT13_ET("%s: AX=%04x BX=%04x CX=%04x DX=%04x ES=%04x\n", __func__, AX, BX, CX, DX, ES);
480 BX_DEBUG_INT13_ET("%s: AX=%04x BX=%04x CX=%04x DX=%04x ES=%04x\n", __func__, AX, BX, CX, DX, ES);
697 BX_DEBUG_INT13_CD("%s: AX=%04x BX=%04x CX=%04x DX=%04x ES=%04x\n", __func__, AX, BX, CX, DX, ES);
758 CX = 0x0007; // ext disk access, removable and edd
H A Dpcibios.c58 #define CX r.gr.u.r16.cx macro
316 BX_DEBUG_PCI("PCI: AX=%04X BX=%04X CX=%04X DI=%04X\n", AX, BX, CX, DI);
326 CX = 0; /* Maximum bus number. */
337 device = PCIxx(find_device)(DX | (uint32_t)CX << 16, SI, 0);
371 CX = inpw(PCI_CFG_DATA + (DI & 2));
380 outpw(PCI_CFG_DATA + (DI & 2), CX);
/vbox/src/VBox/Devices/Graphics/BIOS/
H A Dvbe.c399 * CX = Mode Number
405 void vbe_biosfn_return_mode_information(uint16_t STACK_BASED *AX, uint16_t CX, uint16_t ES, uint16_t DI) argument
417 printf("VBE vbe_biosfn_return_mode_information ES%x DI%x CX%x\n",ES,DI,CX);
420 using_lfb = ((CX & VBE_MODE_LINEAR_FRAME_BUFFER) == VBE_MODE_LINEAR_FRAME_BUFFER);
421 CX = (CX & 0x1ff);
424 cur_info_ofs = mode_info_find_mode(CX, using_lfb);
429 cur_info = mode_info_find_mode(CX, using_lfb);
434 printf("VBE found mode %x\n",CX);
652 vbe_biosfn_save_restore_state(uint16_t STACK_BASED *AX, uint16_t CX, uint16_t DX, uint16_t ES, uint16_t STACK_BASED *BX) argument
[all...]
H A Dvgabios.c319 uint16_t DX, uint16_t CX, uint16_t AX, uint16_t DS, uint16_t ES, uint16_t FLAGS)
323 printf("vgabios call ah%02x al%02x bx%04x cx%04x dx%04x\n", GET_AH(), GET_AL(), BX, CX, DX);
1351 static void biosfn_write_pixel(uint8_t BH, uint8_t AL, uint16_t CX, uint16_t DX) argument
1366 addr = CX/8+DX*read_word(BIOSMEM_SEG,BIOSMEM_NB_COLS);
1367 mask = 0x80 >> (CX & 0x07);
1383 addr=(CX>>2)+(DX>>1)*80;
1387 addr=(CX>>3)+(DX>>1)*80;
1393 attr = (AL & 0x03) << ((3 - (CX & 0x03)) * 2);
1394 mask = 0x03 << ((3 - (CX & 0x03)) * 2);
1398 attr = (AL & 0x01) << (7 - (CX
318 int10_debugmsg(uint16_t DI, uint16_t SI, uint16_t BP, uint16_t SP, uint16_t BX, uint16_t DX, uint16_t CX, uint16_t AX, uint16_t DS, uint16_t ES, uint16_t FLAGS) argument
1584 biosfn_load_text_user_pat(uint8_t AL, uint16_t ES, uint16_t BP, uint16_t CX, uint16_t DX, uint8_t BL, uint8_t BH) argument
1668 biosfn_load_gfx_user_chars(uint16_t ES, uint16_t BP, uint16_t CX, uint8_t BL, uint8_t DL) argument
1796 biosfn_save_video_state(uint16_t CX, uint16_t ES, uint16_t BX) argument
1880 biosfn_restore_video_state(uint16_t CX, uint16_t ES, uint16_t BX) argument
2107 int10_func(uint16_t DI, uint16_t SI, uint16_t BP, uint16_t SP, uint16_t BX, uint16_t DX, uint16_t CX, uint16_t AX, uint16_t DS, uint16_t ES, uint16_t FLAGS) argument
2140 vga_get_cursor_pos(GET_BH(), &CX, &DX); local
2165 biosfn_write_char_attr(GET_AL(),GET_BH(),GET_BL(),CX); local
2168 biosfn_write_char_only(GET_AL(),GET_BH(),GET_BL(),CX); local
2171 biosfn_write_pixel(GET_BH(),GET_AL(),CX,DX); local
2174 vga_read_pixel(GET_BH(), CX, DX, &AX); local
2194 biosfn_load_text_user_pat(GET_AL(),ES,BP,CX,DX,GET_BL(),GET_BH()); local
2224 vga_get_font_info(GET_BH(), &ES, &BP, &CX, &DX); local
2254 biosfn_write_string(GET_AL(),GET_BH(),GET_BL(),CX,GET_DH(),GET_DL(),ES,BP); local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Protocol/
H A DLegacyBios.h314 /// CX = Requested length in bytes.
1070 UINT16 CX; member in struct:__anon10760
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/
H A DBaseLib.h5055 UINT16 CX; member in struct:__anon11944
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dassyntax.h118 #define CX cx macro
180 #define CX %cx macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dassyntax.h115 #define CX cx macro
177 #define CX %cx macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dassyntax.h115 #define CX cx macro
177 #define CX %cx macro
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dassyntax.h91 #define CX cx macro
153 #define CX %cx macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dassyntax.h119 #define CX cx macro
181 #define CX %cx macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dassyntax.h119 #define CX cx macro
181 #define CX %cx macro
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/x86/
H A Dassyntax.h103 #define CX cx macro
165 #define CX %cx macro
830 #define W_CX CX

Completed in 128 milliseconds