VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/BIOS-new/inlines.h@ 40723

Last change on this file since 40723 was 39355, checked in by vboxsync, 13 years ago

Reshuffled things some more.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1/** @file
2 * Inline routines for Watcom C.
3 */
4
5/*
6 * Copyright (C) 2010-2011 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17
18extern unsigned inp(unsigned port);
19extern unsigned outp(unsigned port, unsigned value);
20extern unsigned inpw(unsigned port);
21extern unsigned outpw(unsigned port, unsigned value);
22#pragma intrinsic(inp,outp,inpw,outpw)
23#define inb(p) inp(p)
24#define outb(p, v) outp(p, v)
25#define inw(p) inpw(p)
26#define outw(p, v) outpw(p, v)
27
28extern uint8_t read_byte(uint16_t seg, uint16_t offset);
29extern uint16_t read_word(uint16_t seg, uint16_t offset);
30extern uint32_t read_dword(uint16_t seg, uint16_t offset);
31extern void write_byte(uint16_t seg, uint16_t offset, uint8_t data);
32extern void write_word(uint16_t seg, uint16_t offset, uint16_t data);
33extern void write_dword(uint16_t seg, uint16_t offset, uint32_t data);
34
35void int_enable(void);
36#pragma aux int_enable = "sti" modify exact [] nomemory;
37
38void int_disable(void);
39#pragma aux int_disable = "cli" modify exact [] nomemory;
40
41uint16_t int_query(void);
42#pragma aux int_query = \
43 "pushf" \
44 "pop ax" \
45 value [ax] modify exact [ax] nomemory;
46
47void int_restore(uint16_t old_flags);
48#pragma aux int_restore = \
49 "push ax" \
50 "popf" \
51 parm [ax] modify exact [] nomemory;
52
53void halt(void);
54#pragma aux halt = "hlt" modify exact [] nomemory;
55
56void halt_forever(void);
57#pragma aux halt_forever = \
58 "forever:" \
59 "hlt" \
60 "jmp forever" \
61 modify exact [] nomemory aborts;
62
63void rep_movsw(void __far *d, void __far *s, int nwords);
64#pragma aux rep_movsw = \
65 "push ds" \
66 "mov ds, dx" \
67 "rep movsw" \
68 "pop ds" \
69 parm [es di] [dx si] [cx];
70
71char __far *rep_insb(char __far *buffer, unsigned nbytes, unsigned port);
72#pragma aux rep_insb = ".286" "rep insb" parm [es di] [cx] [dx] value [es di] modify exact [cx di];
73
74char __far *rep_insw(char __far *buffer, unsigned nwords, unsigned port);
75#pragma aux rep_insw = ".286" "rep insw" parm [es di] [cx] [dx] value [es di] modify exact [cx di];
76
77char __far *rep_insd(char __far *buffer, unsigned ndwords, unsigned port);
78#pragma aux rep_insd = ".386" "rep insd" parm [es di] [cx] [dx] value [es di] modify exact [cx di];
79
80char __far *rep_outsb(char __far *buffer, unsigned nbytes, unsigned port);
81#pragma aux rep_outsb = ".286" "rep outs dx,byte ptr es:[si]" parm [es si] [cx] [dx] value [es si] modify exact [cx si];
82
83char __far *rep_outsw(char __far *buffer, unsigned nwords, unsigned port);
84#pragma aux rep_outsw = ".286" "rep outs dx,word ptr es:[si]" parm [es si] [cx] [dx] value [es si] modify exact [cx si];
85
86char __far *rep_outsd(char __far *buffer, unsigned ndwords, unsigned port);
87#pragma aux rep_outsd = ".386" "rep outs dx,dword ptr es:[si]" parm [es si] [cx] [dx] value [es si] modify exact [cx si];
88
89uint16_t __far swap_16(uint16_t val);
90#pragma aux swap_16 = "xchg ah,al" parm [ax] value [ax] modify exact [ax] nomemory;
91
92uint32_t __far swap_32(uint32_t val);
93#pragma aux swap_32 = \
94 "xchg ah, al" \
95 "xchg dh, dl" \
96 "xchg ax, dx" \
97 parm [dx ax] value [dx ax] modify exact [dx ax] nomemory;
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette