• Forum
  • Lounge
  • Problem with my code - it's not working.

 
Problem with my code - it's not working......

Here's the source(it is x86 Intel ISA Assembly with one C++ extern):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
BITS 16
ORG 0X7c00
.code
jmp STA
STA:

push ebx
mov bl, 0XFF
mov al, 0X0F
cmp al, ebx
jne PNT

PNT: 
mov WORD PTR[+325], ex
mov si, WRD
int 0x10h

.data

WRD db 'N', 0
dw 0XAAFF


It says some "symbol" is missing, but I can't remember and I'm on Vista now! Please help me!
Try turning the flux capacitor off and on.
Line 14?
1
2
mov WORD PTR[+325], ex
mov WORD PTR[+325], ebx
Last edited on
Topic archived. No new replies allowed.