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
Segmented far pointer allocation in 16bit x86 MS-DOS real mode
I'm trying to get my head around programming real mode MS-DOS in C. Using some old books on game programming as a starting point.
The source code in the book is written for Microsoft C, but I'm trying...
IronPug
Votes: 0
Answers: 1
I am stuck in writing a loop in assembly to read 5 characters and print them in reverse order
.data
.code
main proc
mov cx,5
user_input:
mov ah,1h
int 21h
push dx
loop user_input
mov cx,5
sys...
Danial Hamedi
Votes: 0
Answers: 1
Convert CSV to CSV MS-Dos Extension
I have a process in SSIS that outputs SQL table data to CSV format. However, I want the output CSV in CSV (MS-DOS). Is there a way I can convert the normal CSV file to CSV (MS-DOS) ? (Like C# code tha...
MRBasun
Votes: 0
Answers: 1