a86

Assembly Array data storing

泄露秘密 提交于 2020-05-02 04:24:12
问题 Here is a new update on what i'm doing currently. I'm confused on how to use the data i stored in S2 to search the same word in the whole screen. If found highlight the word. DOSBOX - compiler : A86 org 100h ;----------------------------------------------------- lea bp, S1 mov cx, 35 mov al, 1 mov ah, 13h mov bh, 0 mov dl, 0 mov dh, 25 mov bl, 7 int 10h ;---------------------------------------------------------- ; Asks input' mov di,1 start: mov ah, 0 int 16h mov dx,ax mov ah, 0eh cmp dx

Am I Writing Assembly Or NASM?

喜夏-厌秋 提交于 2020-04-13 07:12:50
问题 I'm fed up with this. I've been trying to just get a grip on assembly for awhile, but I feel like I'm coding towards my compiler rather than a language. I've been using this tutorial, and so far it's giving me hell. I'm using NASM, which may be the problem, but I figured it was the most popular one. I'm simply trying to learn the most general form of assembly, so I decided to learn x86. I keep running into stupid errors, like not being able to increment a variable. Here's the latest one: not

Am I Writing Assembly Or NASM?

南楼画角 提交于 2020-04-13 07:10:51
问题 I'm fed up with this. I've been trying to just get a grip on assembly for awhile, but I feel like I'm coding towards my compiler rather than a language. I've been using this tutorial, and so far it's giving me hell. I'm using NASM, which may be the problem, but I figured it was the most popular one. I'm simply trying to learn the most general form of assembly, so I decided to learn x86. I keep running into stupid errors, like not being able to increment a variable. Here's the latest one: not

Am I Writing Assembly Or NASM?

核能气质少年 提交于 2020-04-13 07:10:00
问题 I'm fed up with this. I've been trying to just get a grip on assembly for awhile, but I feel like I'm coding towards my compiler rather than a language. I've been using this tutorial, and so far it's giving me hell. I'm using NASM, which may be the problem, but I figured it was the most popular one. I'm simply trying to learn the most general form of assembly, so I decided to learn x86. I keep running into stupid errors, like not being able to increment a variable. Here's the latest one: not