1. ホーム
  2. function

[解決済み] Linuxにおけるoutb()関数呼び出しとは?

2022-02-04 20:54:50

質問

の意味をどなたか教えてください。

outb(0x10,short_base+2);

ググって調べてみましたが、ダメでした。

解決方法は?

システムコールについては、マニュアルページの2章に記載されています。 man 2 outb

   void outb(unsigned char value, unsigned short int port);

DESCRIPTION
   This family of functions is used to do low-level port input and  output.
   The  out* functions do port output, the in* functions do port input; the
   b-suffix functions are byte-width and the w-suffix functions word-width;
   the _p-suffix functions pause until the I/O completes.