打印

S3C4510B+ATA硬盘的调试笔记4

[复制链接]
216|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
小蘭|  楼主 | 2018-8-31 17:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
第四步:

重新定义IO操作函数,如下:

UINT8  ataInByte     (UINT32 port)

    {

    return (*(volatile UINT8 *)port);

    }

   

void   ataInWordString      (UINT32 port, UINT16 *pData, int count)

    {

    while(count--)

    {

       *pData++ = *((volatile UINT16 *)port);

    }

    }

      

void   ataInLongString      (UINT32 port, UINT32 *pData, int count)

    {

    while(count--)

    {

       *pData++ = *((volatile UINT32 *)port);

    }

    }




使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

451

主题

463

帖子

1

粉丝