无法打开包含文件

Unable to open include file

你好,我正在尝试在代码中编写汇编代码,我试图包含我正在使用的另一个 .asm 代码 nasm,代码行是

%include "../Desktop/Programlama/KAYRA/Asm/Boot\ Sector\ Disk/boot_sector_print.asm"
%include "../Desktop/Programlama/KAYRA/Asm/Boot\ Sector\ Disk/boot_sect_print_hex.asm"
%include "../Desktop/Programlama/KAYRA/Asm/Boot\ Sector\ Disk/boot_sector_disk.asm"

当我尝试编译时它返回

boot_sector_main.asm:22: fatal: unable to open include file `../Desktop/Programlama/KAYRA/Asm/Boot\ Sector\ Disk/boot_sector_print.asm'

任何人都知道什么吗?

我解决了这个问题,我的包含是错误的,我这样重新输入

%include "boot_sector_disk.asm"

问题已解决