我无法在Ubuntu中包含' asm_io.inc' 文件。
我以下面的方式尝试过:
%include 'asm_io.inc'
并发出以下命令:
sudo nasm -f coff simple.asm
错误:
simple.asm:1: fatal: unable to open include file `asm_io.inc'
在谷歌搜索后,我尝试了以下变体:
include 'asm_io.inc'
%include "~//includes//asm_io.inc"
我甚至在根目录中搜索了文件 asm_io.inc ,但它没有显示出来。
但如果我在其他NASM代码中不包含 asm_io.inc 文件,则assmebler可以正常工作。
我的问题:
我做错了什么?
答案 0 :(得分:3)
我猜你正在使用Paul Carters教程的一些代码。如果是这种情况,您需要从http://pacman128.github.io/pcasm/
下载asm_io.inc