我有一个包含 50K 行代码的程序集文件(它已生成)。我尝试使用巨大的模型,但问题仍然存在。谁来帮帮我?
*Warning* Libreria.asm(26227) Location counter overflow
*Warning* Libreria.asm(52442) Location counter overflow
我的代码以
.model small ; I tried with model huge but this does not work
.stack 100h
.data
modovideo db ?
.code
main proc
; paint pixel by pixel - 150 000 lines , if this is less than 26227 lines, this works)
main endp
end main