如何创建外部汇编文件库?

时间:2015-11-04 04:03:40

标签: assembly dos

目标: 将我的库.inc文件与我的主.asm程序链接。 Ex (以c为单位)

<a href="home.php?name= <?php echo $user ?>"  ac=Darshboard" style="color:#F00">Home</a>
                       ^------------remove space from here

我到处尝试谷歌搜索和搜索,但我无法得到足够好的答案。我的MainTestingProgram.asm看起来像这样:

MainTestingProgram.c        /bin/
                          |
                          [ getChar.h ]
                          [ getChar.c ] 

然后我的子程序文件getChar.inc就像这样:

extern /bin/getChar.inc

.model  small
.stack  100h

.data

.code
main    proc
        mov     ax,@data
        mov     ds,ax

        mov     ax,5
        call    getChar

        mov     ax,4C00h
        int     21h
main    endp
end     main

这是dos,所以它是16位格式。请不要与其他位格式有关的答案。您可能还需要一台Windows98虚拟机。

0 个答案:

没有答案