python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Write data from a pointer to a local variable(another pointer) in assembler
replace PROC
enter 8, 0
min_i equ [bp - 2]
min equ [bp - 4]
max_i equ [bp - 6]
max equ [bp - 8]
mov bx,offset ptr_arr
mov [min_i],[bx]
mov [max_i],[bx]
...
...
LoaDeadd
Votes: 0
Answers: 1
Retrieve data from an array
So, basically I just want to display the first data from array which is userbalanceIndex1 from userbalanceIndex.
But I get an error which is
DEMO.ASM(29): Out of memory
29 line: mov bl,(userbalanceIn...
kianhun4167 chai
Votes: 0
Answers: 0
8086 assembly language about log in and sign up account
For the login part is good, everything works well on that part. But for registering a new account part, it keeps showing the invalid message although I full all the requirements which are username can...
kianhun4167 chai
Votes: 0
Answers: 1
Conditional execution on .bat files
I'm stuck with my .bat that doesn't execute correctly if any mistakes please report it
File name - games.bat
@echo off
G:
:start
cls
echo DOS Games
echo 1. DOOMS
echo 2. Prince of Persia
set /p choi...
Hackdev17
Votes: 0
Answers: 2