我已经经历了几天完成一个程序而没有调试,而且在我提出的一个问题上,ppl建议我使用可以像VS studio一样逐行调试的调试工具。 我刚刚熟悉使用CLI。 (在VirtualBox上使用Ubuntu。)并寻找向我提供使用调试工具的步骤的人。 以防万一,我使用NASM和Gcc工具。我就像下面那样使用它们。
nasm -f elf search.asm ( this makes search.o )
gcc -o search search.o asm_io.o ( I use the external file to use some functions )
./search