Cleanup in elf.c with .bss section clean; adm command mounts cdrom instead of floppy...
[ZeXOS.git] / kernel / arch / i386 / io.c
blob4b72f6d3c8782439bef5bf66f177da8c0e6bc2d2
1 /*
2 * ZeX/OS
3 * Copyright (C) 2008 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 /* BAD - works like inb */
20 /*unsigned inw (unsigned short port)
22 unsigned char ret;
24 __asm__ __volatile__ ("inw %1,%w0"
25 : "=a"(ret)
26 : "d"(port));
28 return ret;
29 }*/
31 void outw (unsigned port, unsigned val)
33 __asm__ __volatile__ ("outw %w0,%w1"
35 : "a"(val), "d"(port));
38 void outb (unsigned port, unsigned val)
40 __asm__ __volatile__ ("outb %b0,%w1"
42 : "a"(val), "d"(port));
45 unsigned inb (unsigned short port)
47 unsigned char ret;
49 __asm__ __volatile__ ("inb %1,%0"
50 : "=a"(ret)
51 : "d"(port));
53 return ret;
56 void outl (unsigned short portno, unsigned long val)
58 __asm__ __volatile__ ("outl %0, %w1" :: "a" (val), "Nd" (portno));
61 unsigned long inl (unsigned short portno)
63 unsigned long ret;
65 __asm__ __volatile__ ("inl %w1, %0" : "=a" (ret) : "Nd" (portno));
67 return ret;