新手问个简单问题
使用用em8086软件如何把一个数据存入到某一个内存单元?比如把23这个数存入1000:0这个内存单元中
谢谢! 有n种方法,最简单的,用debug软件
人造人 发表于 2020-5-4 14:40
有n种方法,最简单的,用debug软件
请问用EM8086软件怎么实现,{:5_109:} 歐小黑 发表于 2020-5-4 15:13
请问用EM8086软件怎么实现,
看不懂你的问题
; You may customize this and other start-up templates;
; The location of this template is c:\emu8086\inc\0_com_template.txt
org 100h
; add your code here
mov ax, 1000h
mov ds, ax
mov byte ptr, 23
ret
人造人 发表于 2020-5-4 16:08
谢谢{:5_109:}
页:
[1]