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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
|
#ifndef MISC_H
#define MISC_H
/*
* Copyright (C) 2003-2004 Anders Gavare. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*
* $Id: misc.h,v 1.196 2005/01/10 22:30:30 debug Exp $
*
* Misc. definitions for mips64emul.
*/
#include <sys/types.h>
#include <inttypes.h>
/*
* ../config.h contains #defines set by the configure script. Some of these
* might reduce speed of the emulator, so don't enable them unless you
* need them.
*/
#include "../config.h"
/*
* ENABLE_MIPS16 should be defined on the cc commandline using -D, if you
* want it. (This is done by ./configure --mips16)
*
* ENABLE_INSTRUCTION_DELAYS should be defined on the cc commandline using
* -D if you want it. (This is done by ./configure --delays)
*/
#define USE_TINY_CACHE
/* #define ALWAYS_SIGNEXTEND_32 */
/* #define HALT_IF_PC_ZERO */
/* #define MFHILO_DELAY */
#ifdef WITH_X11
#include <X11/Xlib.h>
#endif
#ifdef NO_MAP_ANON
#ifdef mmap
#undef mmap
#endif
#include <fcntl.h>
#include <stdlib.h>
#include <sys/mman.h>
static void *no_map_anon_mmap(void *addr, size_t len, int prot, int flags,
int nonsense_fd, off_t offset)
{
void *p;
int fd = open("/dev/zero", O_RDWR);
if (fd < 0) {
fprintf(stderr, "Could not open /dev/zero\n");
exit(1);
}
printf("addr=%p len=%lli prot=0x%x flags=0x%x nonsense_fd=%i "
"offset=%16lli\n", addr, (long long) len, prot, flags,
nonsense_fd, (long long) offset);
p = mmap(addr, len, prot, flags, fd, offset);
printf("p = %p\n", p);
/* TODO: Close the descriptor? */
return p;
}
#define mmap no_map_anon_mmap
#endif
struct emul;
/*
* CPU type definitions: See cpu_types.h.
*/
struct cpu_type_def {
char *name;
int rev;
int sub;
char flags;
char exc_model; /* EXC3K or EXC4K */
char mmu_model; /* MMU3K or MMU4K */
char isa_level; /* 1, 2, 3, 4, 5, 32, 64 */
int nr_of_tlb_entries; /* 32, 48, 64, ... */
char instrs_per_cycle; /* simplified, 1, 2, or 4, for example */
int default_picache;
int default_pdcache;
int default_pilinesize;
int default_pdlinesize;
int default_scache;
int default_slinesize;
};
/* Debug stuff: */
#define DEBUG_BUFSIZE 1024
#define DEFAULT_RAM_IN_MB 32
#define MAX_DEVICES 24
#define DEVICE_STATE_TYPE_INT 1
#define DEVICE_STATE_TYPE_UINT64_T 2
struct cpu;
struct memory {
uint64_t physical_max;
void *pagetable;
int n_mmapped_devices;
int last_accessed_device;
/* The following two might speed up things a little bit. */
/* (actually maxaddr is the addr after the last address) */
uint64_t mmap_dev_minaddr;
uint64_t mmap_dev_maxaddr;
const char *dev_name[MAX_DEVICES];
uint64_t dev_baseaddr[MAX_DEVICES];
uint64_t dev_length[MAX_DEVICES];
int dev_flags[MAX_DEVICES];
void *dev_extra[MAX_DEVICES];
int (*dev_f[MAX_DEVICES])(struct cpu *,struct memory *,
uint64_t,unsigned char *,size_t,int,void *);
int (*dev_f_state[MAX_DEVICES])(struct cpu *,
struct memory *, void *extra, int wf, int nr,
int *type, char **namep, void **data, size_t *len);
unsigned char *dev_bintrans_data[MAX_DEVICES];
#ifdef BINTRANS
uint64_t dev_bintrans_write_low[MAX_DEVICES];
uint64_t dev_bintrans_write_high[MAX_DEVICES];
#endif
};
#define BITS_PER_PAGETABLE 20
#define BITS_PER_MEMBLOCK 20
#define MAX_BITS 40
#define MEM_READ 0
#define MEM_WRITE 1
#define INITIAL_PC 0xffffffffbfc00000ULL
#define INITIAL_STACK_POINTER (0xffffffffa0008000ULL - 256)
#define N_COPROC_REGS 32
#define N_FCRS 32
/* TODO: 48 or 64 is max for most processors, but 192 for R8000? */
#define MAX_NR_OF_TLBS 192
struct tlb {
uint64_t hi;
uint64_t lo0;
uint64_t lo1;
uint64_t mask;
};
struct coproc {
int coproc_nr;
uint64_t reg[N_COPROC_REGS];
/* Only for COP0: */
struct tlb tlbs[MAX_NR_OF_TLBS];
int nr_of_tlbs;
/* Only for COP1: floating point control registers */
uint64_t fcr[N_FCRS];
};
#define N_COPROCS 4
#define NGPRS 32 /* General purpose registers */
#define NFPUREGS 32 /* Floating point registers */
#define GPR_ZERO 0 /* zero */
#define GPR_AT 1 /* at */
#define GPR_V0 2 /* v0 */
#define GPR_V1 3 /* v1 */
#define GPR_A0 4 /* a0 */
#define GPR_A1 5 /* a1 */
#define GPR_A2 6 /* a2 */
#define GPR_A3 7 /* a3 */
#define GPR_T0 8 /* t0 */
#define GPR_T1 9 /* t1 */
#define GPR_T2 10 /* t2 */
#define GPR_T3 11 /* t3 */
#define GPR_T4 12 /* t4 */
#define GPR_S0 16 /* s0 */
#define GPR_K0 26 /* k0 */
#define GPR_K1 27 /* k1 */
#define GPR_GP 28 /* gp */
#define GPR_SP 29 /* sp */
#define GPR_FP 30 /* fp */
#define GPR_RA 31 /* ra */
/* Meaning of delay_slot: */
#define NOT_DELAYED 0
#define DELAYED 1
#define TO_BE_DELAYED 2
#define N_HI6 64
#define N_SPECIAL 64
#define N_REGIMM 32
#define MAX_TICK_FUNCTIONS 12
/* Number of "tiny" translation cache entries: */
#define N_TRANSLATION_CACHE_INSTR 5
#define N_TRANSLATION_CACHE_DATA 5
struct translation_cache_entry {
int wf;
uint64_t vaddr_pfn;
uint64_t paddr;
};
/* This should be a value which the program counter
can "never" have: */
#define PC_LAST_PAGE_IMPOSSIBLE_VALUE 3
/* An "impossible" paddr: */
#define IMPOSSIBLE_PADDR 0x1212343456566767ULL
#define DEFAULT_PCACHE_SIZE 15 /* 32 KB */
#define DEFAULT_PCACHE_LINESIZE 5 /* 32 bytes */
struct r3000_cache_line {
uint32_t tag_paddr;
int tag_valid;
};
#define R3000_TAG_VALID 1
#define R3000_TAG_DIRTY 2
struct r4000_cache_line {
char dummy;
};
#define BINTRANS_DONT_RUN_NEXT 0x1000000
#define BINTRANS_N_MASK 0x0ffffff
#define N_SAFE_BINTRANS_LIMIT_SHIFT 14
#define N_SAFE_BINTRANS_LIMIT ((1 << (N_SAFE_BINTRANS_LIMIT_SHIFT - 1)) - 1)
#define N_BINTRANS_VADDR_TO_HOST 20
/* Virtual to host address translation tables: */
struct vth32_table {
void *haddr_entry[1024];
uint32_t paddr_entry[1024];
uint32_t *bintrans_chunks[1024];
struct vth32_table *next_free;
int refcount;
};
struct cpu {
int byte_order;
int running;
int bootstrap_cpu_flag;
int cpu_id;
struct emul *emul;
struct cpu_type_def cpu_type;
struct coproc *coproc[N_COPROCS];
void (*md_interrupt)(struct cpu *, int irq_nr, int);
/* Special purpose registers: */
uint64_t pc;
uint64_t pc_last; /* PC of last instruction */
uint64_t hi;
uint64_t lo;
/* General purpose registers: */
uint64_t gpr[NGPRS];
struct memory *mem;
int (*translate_address)(struct cpu *, uint64_t vaddr,
uint64_t *return_addr, int flags);
/*
* The translation_cached stuff is used to speed up the
* most recent lookups into the TLB. Whenever the TLB is
* written to, translation_cached[] must be filled with zeros.
*/
#ifdef USE_TINY_CACHE
struct translation_cache_entry
translation_cache_instr[N_TRANSLATION_CACHE_INSTR];
struct translation_cache_entry
translation_cache_data[N_TRANSLATION_CACHE_DATA];
#endif
/*
* For faster memory lookup when running instructions:
*
* Reading memory to load instructions is a very common thing in the
* emulator, and an instruction is very often read from the address
* following the previously executed instruction. That means that we
* don't have to go through the TLB each time.
*
* We then get the vaddr -> paddr translation for free. There is an
* even better case when the paddr is a RAM address (as opposed to an
* address in a memory mapped device). Then we can figure out the
* address in the host's memory directly, and skip the paddr -> host
* address calculation as well.
*
* A modification to the TLB should set the virtual_page variable to
* an "impossible" value, so that there won't be a hit on the next
* instruction.
*/
uint64_t pc_last_virtual_page;
uint64_t pc_last_physical_page;
unsigned char *pc_last_host_4k_page;
#ifdef BINTRANS
int dont_run_next_bintrans;
int bintrans_instructions_executed; /* set to the
number of bintranslated instructions executed
when running a bintrans codechunk */
int pc_bintrans_paddr_valid;
uint64_t pc_bintrans_paddr;
unsigned char *pc_bintrans_host_4kpage;
/* Chunk base address: */
unsigned char *chunk_base_address;
/* This should work for 32-bit MIPS emulation: */
struct vth32_table *vaddr_to_hostaddr_nulltable;
struct vth32_table *vaddr_to_hostaddr_r2k3k_icachetable;
struct vth32_table *vaddr_to_hostaddr_r2k3k_dcachetable;
struct vth32_table **vaddr_to_hostaddr_table0_kernel;
struct vth32_table **vaddr_to_hostaddr_table0_cacheisol_i;
struct vth32_table **vaddr_to_hostaddr_table0_cacheisol_d;
struct vth32_table **vaddr_to_hostaddr_table0_user;
struct vth32_table **vaddr_to_hostaddr_table0; /* should point to kernel or user */
struct vth32_table *next_free_vth_table;
/* For 64-bit (generic) emulation: */
unsigned char *(*fast_vaddr_to_hostaddr)(struct cpu *cpu,
uint64_t vaddr, int writeflag);
int bintrans_next_index;
int bintrans_data_writable[N_BINTRANS_VADDR_TO_HOST];
uint64_t bintrans_data_vaddr[N_BINTRANS_VADDR_TO_HOST];
unsigned char *bintrans_data_hostpage[N_BINTRANS_VADDR_TO_HOST];
void (*bintrans_loadstore_32bit)(struct cpu *); /* Note: incorrect args */
void (*bintrans_jump_to_32bit_pc)(struct cpu *);
void (*bintrans_simple_exception)(struct cpu *, int);
void (*bintrans_fast_rfe)(struct cpu *);
void (*bintrans_fast_eret)(struct cpu *);
void (*bintrans_fast_tlbwri)(struct cpu *, int);
void (*bintrans_fast_tlbpr)(struct cpu *, int);
#endif
#ifdef ENABLE_MIPS16
int mips16; /* non-zero if MIPS16 code is allowed */
uint16_t mips16_extend; /* set on 'extend' instructions to the entire 16-bit extend instruction */
#endif
#ifdef ENABLE_INSTRUCTION_DELAYS
int instruction_delay;
#endif
int trace_tree_depth;
uint64_t delay_jmpaddr; /* only used if delay_slot > 0 */
int delay_slot;
int nullify_next; /* set to 1 if next instruction
is to be nullified */
/* This is set to non-zero, if it is possible at all that an
interrupt will occur. */
int cached_interrupt_is_possible;
int show_trace_delay; /* 0=normal, > 0 = delay until show_trace */
uint64_t show_trace_addr;
int last_was_jumptoself;
int jump_to_self_reg;
#ifdef MFHILO_DELAY
int mfhi_delay; /* instructions since last mfhi */
int mflo_delay; /* instructions since last mflo */
#endif
int rmw; /* Read-Modify-Write */
int rmw_len; /* Length of rmw modification */
uint64_t rmw_addr; /* Address of rmw modification */
/*
* TODO: The R5900 has 128-bit registers. I'm not really sure
* whether they are used a lot or not, at least with code produced
* with gcc they are not. An important case however is lq and sq
* (load and store of 128-bit values). These "upper halves" of R5900
* quadwords can be used in those cases.
*
* TODO: Generalize this.
*/
uint64_t gpr_quadhi[NGPRS];
/*
* Statistics:
*/
long stats_opcode[N_HI6];
long stats__special[N_SPECIAL];
long stats__regimm[N_REGIMM];
long stats__special2[N_SPECIAL];
/* Data and Instruction caches: */
unsigned char *cache[2];
void *cache_tags[2];
uint64_t cache_last_paddr[2];
int cache_size[2];
int cache_linesize[2];
int cache_mask[2];
int cache_miss_penalty[2];
/* TODO: remove this once cache functions correctly */
int r10k_cache_disable_TODO;
/*
* Hardware devices, run every x clock cycles.
*/
int n_tick_entries;
int ticks_till_next[MAX_TICK_FUNCTIONS];
int ticks_reset_value[MAX_TICK_FUNCTIONS];
void (*tick_func[MAX_TICK_FUNCTIONS])(struct cpu *, void *);
void *tick_extra[MAX_TICK_FUNCTIONS];
};
#define CACHE_DATA 0
#define CACHE_INSTRUCTION 1
#define CACHE_NONE 2
#define CACHE_FLAGS_MASK 0x3
#define NO_EXCEPTIONS 8
#define PHYSICAL 16
#define EMUL_LITTLE_ENDIAN 0
#define EMUL_BIG_ENDIAN 1
#define DEFAULT_NCPUS 1
/* main.c: */
void debug(char *fmt, ...);
void fatal(char *fmt, ...);
/* arcbios.c: */
void arcbios_add_string_to_component(char *string, uint64_t component);
void arcbios_console_init(struct cpu *cpu,
uint64_t vram, uint64_t ctrlregs, int maxx, int maxy);
void arcbios_register_scsicontroller(uint64_t scsicontroller_component);
uint64_t arcbios_get_scsicontroller(void);
void arcbios_add_memory_descriptor(struct cpu *cpu,
uint64_t base, uint64_t len, int arctype);
uint64_t arcbios_addchild_manual(struct cpu *cpu,
uint64_t class, uint64_t type, uint64_t flags, uint64_t version,
uint64_t revision, uint64_t key, uint64_t affinitymask,
char *identifier, uint64_t parent, void *config_data, size_t config_len);
void arcbios_emul(struct cpu *cpu);
void arcbios_set_64bit_mode(int enable);
void arcbios_set_default_exception_handler(struct cpu *cpu);
void arcbios_init(void);
/* coproc.c: */
struct coproc *coproc_new(struct cpu *cpu, int coproc_nr);
void coproc_tlb_set_entry(struct cpu *cpu, int entrynr, int size,
uint64_t vaddr, uint64_t paddr0, uint64_t paddr1,
int valid0, int valid1, int dirty0, int dirty1, int global, int asid,
int cachealgo0, int cachealgo1);
void update_translation_table(struct cpu *cpu, uint64_t vaddr_page,
unsigned char *host_page, int writeflag, uint64_t paddr_page);
void clear_all_chunks_from_all_tables(struct cpu *cpu);
void invalidate_translation_caches_paddr(struct cpu *cpu, uint64_t paddr);
void coproc_register_read(struct cpu *cpu,
struct coproc *cp, int reg_nr, uint64_t *ptr);
void coproc_register_write(struct cpu *cpu,
struct coproc *cp, int reg_nr, uint64_t *ptr, int flag64);
void coproc_tlbpr(struct cpu *cpu, int readflag);
void coproc_tlbwri(struct cpu *cpu, int randomflag);
void coproc_rfe(struct cpu *cpu);
void coproc_eret(struct cpu *cpu);
void coproc_function(struct cpu *cpu, struct coproc *cp, uint32_t function,
int unassemble_only, int running);
/* cpu.c: */
struct cpu *cpu_new(struct memory *mem, struct emul *emul, int cpu_id, char *cpu_type_name);
void cpu_show_full_statistics(struct emul *emul);
void cpu_add_tickfunction(struct cpu *cpu, void (*func)(struct cpu *, void *), void *extra, int clockshift);
void cpu_register_dump(struct cpu *cpu, int gprs, int coprocs);
void cpu_disassemble_instr(struct cpu *cpu, unsigned char *instr,
int running, uint64_t addr, int bintrans);
int cpu_interrupt(struct cpu *cpu, int irq_nr);
int cpu_interrupt_ack(struct cpu *cpu, int irq_nr);
void cpu_exception(struct cpu *cpu, int exccode, int tlb, uint64_t vaddr,
/* uint64_t pagemask, */ int coproc_nr, uint64_t vaddr_vpn2, int vaddr_asid, int x_64);
void cpu_cause_simple_exception(struct cpu *cpu, int exc_code);
int cpu_run(struct emul *emul, struct cpu **cpus, int ncpus);
/* debugger: */
void debugger_activate(int x);
void debugger(void);
void debugger_init(struct emul *);
/* dec_prom.c: */
void decstation_prom_emul(struct cpu *cpu);
/* file.c: */
int file_n_executables_loaded(void);
void file_load(struct memory *mem, char *filename, struct cpu *cpu);
/* machine.c: */
unsigned char read_char_from_memory(struct cpu *cpu, int regbase, int offset);
void dump_mem_string(struct cpu *cpu, uint64_t addr);
void store_string(struct cpu *cpu, uint64_t addr, char *s);
void store_64bit_word(struct cpu *cpu, uint64_t addr, uint64_t data64);
void store_32bit_word(struct cpu *cpu, uint64_t addr, uint64_t data32);
void store_64bit_word_in_host(struct cpu *cpu, unsigned char *data, uint64_t data32);
void store_32bit_word_in_host(struct cpu *cpu, unsigned char *data, uint64_t data32);
uint32_t load_32bit_word(struct cpu *cpu, uint64_t addr);
void store_buf(struct cpu *cpu, uint64_t addr, char *s, size_t len);
void machine_init(struct emul *emul, struct memory *mem);
/* mips16.c: */
int mips16_to_32(struct cpu *cpu, unsigned char *instr16, unsigned char *instr);
/* ps2_bios.c: */
void playstation2_sifbios_emul(struct cpu *cpu);
/* useremul.c: */
#define USERLAND_NONE 0
#define USERLAND_NETBSD_PMAX 1
#define USERLAND_ULTRIX_PMAX 2
void useremul_init(struct cpu *, int, char **);
void useremul_syscall(struct cpu *cpu, uint32_t code);
/* x11.c: */
#define N_GRAYCOLORS 16
#define CURSOR_COLOR_TRANSPARENT -1
#define CURSOR_COLOR_INVERT -2
#define CURSOR_MAXY 64
#define CURSOR_MAXX 64
/* Framebuffer windows: */
struct fb_window {
int fb_number;
#ifdef WITH_X11
/* x11_fb_winxsize > 0 for a valid fb_window */
int x11_fb_winxsize, x11_fb_winysize;
int scaledown;
Display *x11_display;
int x11_screen;
int x11_screen_depth;
unsigned long fg_color;
unsigned long bg_color;
XColor x11_graycolor[N_GRAYCOLORS];
Window x11_fb_window;
GC x11_fb_gc;
XImage *fb_ximage;
unsigned char *ximage_data;
/* -1 means transparent, 0 and up are grayscales */
int cursor_pixels[CURSOR_MAXY][CURSOR_MAXX];
int cursor_x;
int cursor_y;
int cursor_xsize;
int cursor_ysize;
int cursor_on;
int OLD_cursor_x;
int OLD_cursor_y;
int OLD_cursor_xsize;
int OLD_cursor_ysize;
int OLD_cursor_on;
/* Host's X11 cursor: */
Cursor host_cursor;
Pixmap host_cursor_pixmap;
#endif
};
void x11_redraw_cursor(int);
void x11_redraw(int);
void x11_putpixel_fb(int, int x, int y, int color);
#ifdef WITH_X11
void x11_putimage_fb(int);
#endif
void x11_init(struct emul *);
struct fb_window *x11_fb_init(int xsize, int ysize, char *name,
int scaledown, struct emul *emul);
void x11_check_event(void);
#endif /* MISC_H */
|