ati_int.h (0094908375d280c1a4e8b932d8b133a41fb3bdf8) | ati_int.h (41742927ee37527462a13160380860653d4f1c84) |
---|---|
1/* 2 * QEMU ATI SVGA emulation 3 * 4 * Copyright (c) 2019 BALATON Zoltan 5 * 6 * This work is licensed under the GNU GPL license version 2 or later. 7 */ 8 --- 74 unchanged lines hidden (view full) --- 83 VGACommonState vga; 84 char *model; 85 uint16_t dev_id; 86 uint8_t mode; 87 bool cursor_guest_mode; 88 uint16_t cursor_size; 89 uint32_t cursor_offset; 90 QEMUCursor *cursor; | 1/* 2 * QEMU ATI SVGA emulation 3 * 4 * Copyright (c) 2019 BALATON Zoltan 5 * 6 * This work is licensed under the GNU GPL license version 2 or later. 7 */ 8 --- 74 unchanged lines hidden (view full) --- 83 VGACommonState vga; 84 char *model; 85 uint16_t dev_id; 86 uint8_t mode; 87 bool cursor_guest_mode; 88 uint16_t cursor_size; 89 uint32_t cursor_offset; 90 QEMUCursor *cursor; |
91 bitbang_i2c_interface *bbi2c; | 91 bitbang_i2c_interface bbi2c; |
92 MemoryRegion io; 93 MemoryRegion mm; 94 ATIVGARegs regs; 95} ATIVGAState; 96 97const char *ati_reg_name(int num); 98 99void ati_2d_blt(ATIVGAState *s); 100 101#endif /* ATI_INT_H */ | 92 MemoryRegion io; 93 MemoryRegion mm; 94 ATIVGARegs regs; 95} ATIVGAState; 96 97const char *ati_reg_name(int num); 98 99void ati_2d_blt(ATIVGAState *s); 100 101#endif /* ATI_INT_H */ |