标签: assembly kernel hard-drive
在内核级别的汇编程序中,如果我们发出cli来禁用中断,那么我们可以随后为硬盘读写发出端口读/写吗?换句话说,硬盘驱动器可以实现同步读/写吗?类似的东西:
cli
cli // Do file system stuff // at block level // read/write a block using in/out assembler instructions sti