内联io等待使用MASM

时间:2009-10-26 00:08:03

标签: c++ assembly masm

如何将其转换为使用VC ++和MASM

static __inline__ void io_wait(void)
{
  asm volatile("jmp 1f;1:jmp 1f;1:");
}

我知道asm对__asm的更改,我们删除了不稳定但接下来是什么?

我正在尝试创建放置在下面代码中的函数

#define PIC1        0x20
#define PIC2        0xA0
#define PIC1_COMMAND    PIC1
#define PIC1_DATA   (PIC1+1)
#define PIC2_COMMAND    PIC2
#define PIC2_DATA   (PIC2+1)
#define PIC_EOI     0x20

#define ICW1_ICW4   0x01        /* ICW4 (not) needed */
#define ICW1_SINGLE 0x02        /* Single (cascade) mode */
#define ICW1_INTERVAL4  0x04        /* Call address interval 4 (8) */
#define ICW1_LEVEL  0x08        /* Level triggered (edge) mode */
#define ICW1_INIT   0x10        /* Initialization - required! */

#define ICW4_8086   0x01        /* 8086/88 (MCS-80/85) mode */
#define ICW4_AUTO   0x02        /* Auto (normal) EOI */
#define ICW4_BUF_SLAVE  0x08        /* Buffered mode/slave */
#define ICW4_BUF_MASTER 0x0C        /* Buffered mode/master */
#define ICW4_SFNM   0x10        /* Special fully nested (not) */

void remap_pics(int pic1, int pic2)
{
    UCHAR   a1, a2;

    a1=ReadPort8(PIC1_DATA);
    a2=ReadPort8(PIC2_DATA);

    WritePort8(PIC1_COMMAND, ICW1_INIT+ICW1_ICW4);
    io_wait();
    WritePort8(PIC2_COMMAND, ICW1_INIT+ICW1_ICW4);
    io_wait();
    WritePort8(PIC1_DATA, pic1);
    io_wait();
    WritePort8(PIC2_DATA, pic2);
    io_wait();
    WritePort8(PIC1_DATA, 4);
    io_wait();
    WritePort8(PIC2_DATA, 2);
    io_wait();

    WritePort8(PIC1_DATA, ICW4_8086);
    io_wait();
    WritePort8(PIC2_DATA, ICW4_8086);
    io_wait();

    WritePort8(PIC1_DATA, a1);
    WritePort8(PIC2_DATA, a2);
}

2 个答案:

答案 0 :(得分:1)

我认为通过告诉我们您要对此代码执行的操作,您会有更好的运气。 VC ++支持的任何平台都不会通过执行无条件跳转来等待IO完成。

尽管如此,根据您的示例,我发现您需要先解决几个问题:

  1. “1f”需要有一个后缀,表示它是十六进制的。在VC ++中,您可以在内联汇编中使用C样式(0x1f)或汇编样式(1fh)后缀
  2. 看来你有两个“1”标签。除了两个相同名称的标签将要碰撞之外,我相信VC ++不支持只包含数字的标签名称
  3. 1fh是一个奇怪的地址跳转到。在Real模式下它是IRQ区域,在保护模式下它位于第一页内部,大多数操作系统保持不存在以捕获NULL解除引用。
  4. 除此之外,你的代码可以翻译成VC ++,如下所示:

    __asm {
        jmp 1fh
    a1:
        jmp 1fh
    b1:
    }
    

    但这不会给你任何有用的东西。所以请说明你想要完成的事情

答案 1 :(得分:0)

似乎是GNU gas语法,jmp 1f表示向前跳转到标签1。

static __inline__ void io_wait(void)
{
#ifdef __GNUC__
  asm volatile("jmp 1f;1:jmp 1f;1:");
#else
  /* MSVC x86 supports inline asm */
  __asm {
    jmp a1
  a1:
    jmp b1
  b1:
  }
#endif
}