汇编:按给定格式在屏幕中间显示字符串

该博客展示了一个简单的汇编语言程序,用于在屏幕上显示欢迎消息。程序首先设置数据段和堆栈段,然后通过AX寄存器设置代码段和堆栈段。接下来,它将光标位置设为屏幕的特定位置,并使用循环结构显示字符串到屏幕上。最后,程序结束并返回操作系统。
摘要由CSDN通过智能技术生成

代码如下:

assume cs:code,ds:data,ss:stac

data segment
	db 'welcome to masm!'
	db 02h,24h,71h
data ends

stac segment
	dw 0,0,0,0,0,0,0,0
stac ends

code segment
start:
	mov ax,data
	mov ds,ax
	mov ax,stac
	mov ss,ax
	mov ax,0B800h
	mov es,ax
	
	mov bx,6e0h
	mov di,10h
	mov cx,3

s:	push cx
	mov ah,ds:[di]
	mov bp,0
	mov si,0
	mov cx,16

s0:	mov al,ds:[bp]
	mov es:[bx+si+40h],al
	mov es:[bx+si+41h],ah
	add si,2
	inc bp
	loop s0

	inc di
	add bx,0A0h
	pop cx
	loop s

	
	mov ax,4c00h
	int 21h

code ends

end start

运行结果如下:

 

好的,以下是一个基本的示例程序,它可以在显示屏中央打开一个大小可调节的窗口。 ``` ; 8086 Assembly program to create a resizable window in the center of the screen .model small .stack 100h .data rows dw 10 ; default number of rows cols dw 20 ; default number of columns x dw ? y dw ? width dw ? height dw ? buffer db 32000 dup (?) ; video buffer window db 100 dup (?) ; window buffer .code main proc mov ax, @data mov ds, ax ; Get the screen mode mov ah, 0fh int 10h mov x, ax ; Calculate the position and size of the window mov ah, 0 mov al, x mul cols mov width, ax mov ah, 1 mov al, x mul rows mov height, ax sub height, 2 ; account for title bar and border mov x, (80 - width) / 2 mov y, (25 - height) / 2 ; Draw the window mov si, offset window mov cx, cols mov dx, rows mov ah, 6 mov bh, 0 mov bl, 15h ; white on black mov bp, si int 10h ; Wait for a key press mov ah, 0 int 16h ; Resize the window mov ah, 0fh int 10h mov x, ax mov ah, 0 mov al, x div cols mov rows, ax mov cols, dl ; Calculate the new position and size of the window mov ah, 0 mov al, x mul cols mov width, ax mov ah, 1 mov al, x mul rows mov height, ax sub height, 2 ; account for title bar and border mov x, (80 - width) / 2 mov y, (25 - height) / 2 ; Clear the old window mov si, offset window mov cx, cols mov dx, rows mov ah, 6 mov bh, 0 mov bl, 0 ; black on black mov bp, si int 10h ; Draw the new window mov si, offset window mov cx, cols mov dx, rows mov ah, 6 mov bh, 0 mov bl, 15h ; white on black mov bp, si int 10h ; Wait for a key press mov ah, 0 int 16h mov ah, 4ch int 21h main endp end main ``` 以上代码使用了BIOS中断来显示窗口,具体实现如下: 1. 首先使用中断10h的0fh功能来获取当前的屏幕模式,并通过模式和列数计算窗口的宽度。然后通过模式和行数计算窗口的高度,并减去标题栏和边框的高度。 2. 计算窗口的位置,使其在屏幕中央居中。 3. 使用中断10h的6号功能来在屏幕上绘制一个矩形,代表窗口。在这里,我们使用一个大小为100的缓冲区来存储窗口,然后将其传递给中断10h来绘制。 4. 等待用户按下一个键。 5. 获取窗口的新大小,即行数和列数。 6. 重新计算窗口的位置和大小。 7. 使用中断10h的6号功能来清除旧窗口。 8. 使用中断10h的6号功能来绘制新窗口。 9. 等待用户按下一个键。 10. 退出程序。 请注意,以上代码仅仅是一个示例,还有很多改进的余地。如果您想更深入地了解8086汇编语言或BIOS中断的使用,可以参考相关的书籍和文档。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

SUPREMESYZ

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值