设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 450|回复: 2
打印 上一主题 下一主题

请教高手注解程序

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 03:57:15 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
typedef unsigned short ushort;
typedef unsigned char uchar;

ushort inport( ushort portid )
{
  _DX = portid;
  __emit__( 0x66, 0xED );
  return _AX;
}

void outport( ushort portid, ushort data )
{
  _DX = portid;
  _AX = data;
  __emit__( 0x66, 0xEF );
}

uchar inportb( ushort portid )
{
  _DX = portid;
  __emit__( 0xEC );
  return _AL;
}

void outportb( ushort portid, uchar data )
{
  _DX = portid;
  _AL = data;
  __emit__( 0xEE ); }

void cli( void )
{
__emit__( 0xFA );
}

void sti( void )
{
__emit__( 0xFB );
}

#else
#error NOT FLAT memory model
#endif
请教高手,为何在运行时错误总指向上述红色代码。急...!在线等...
2#
发表于 2009-11-3 03:57:16 | 只看该作者
thread stopped C:\Docments and Settings\Administrator\桌面\BBD.NEW\AC_MDI.exe:Fault:privileged instruction at 0x4019ba
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 03:57:17 | 只看该作者
把AL寄存器中的值送到端口?
大哥你贴这点东西谁看的懂?

自己去检查有没有冲突
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 14:51 , Processed in 0.087721 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表