首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 嵌入开发 > 汇编语言 >

构建时揭示warning L4055: start address not equal to 0x100 for /TINY

2014-01-17 
构建时提示warning L4055: start address not equal to 0x100 for /TINY如题,用RADASM编译,代码如下.MODEL

构建时提示warning L4055: start address not equal to 0x100 for /TINY
如题,用RADASM编译,代码如下


.MODEL SMALL
DSEGSEGMENT
bmdd0AAAAh
resultdd?
ocdb'Original Code: ','$'
ccdb'Complement: ','$'
DSEGENDS

SSEG SEGMENT
SSEGENDS

CSEG SEGMENTAT 200h
     ASSUME CS:CSEG,DS:DSEG,SS:SSEG
     
_32bmPROC
mov bx,word ptr bm+2
cmp bx,01111111b
jns @F
mov ax,word ptr bm
NOT ax
NOT bx
add ax,1
adc bx,0
@@:mov word ptr result,ax
mov word ptr result+2,bx
ret
_32bm ENDP
ORG300h
START:  mov ah,9
lea dx,oc
int 21h
;输出原码

call _32bm

mov ah,9
lea dx,cc
int 21h
;输出补码
CSEGENDS
end START

试过在START前面加ORG 100h,SEGMENT AT 100
都不行,求解
[解决办法]
没用过这个环境,看提示好像是你选择错了程序类型,应该是 small 而非 tiny

热点排行