Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
113 views

I'm working on a retro programming project and running into trouble with my bootloader setup. I'm using: Turbo Assembler 4.01 for the first-stage bootloader (x86 Assembly) Turbo C 2.0 for the second-...
Amir Khan's user avatar
1 vote
1 answer
41 views

I am just following the book from my university to run this simple code I found as an example for my coding practice. I am new to assembly language. The problem is that I only know how to assemble in ...
Haranator's user avatar
-1 votes
2 answers
126 views

I have a project I am doing in assembly. I am making a kahoot style quiz game in x86 assembly, running it in DOSBox. I made the entire thing with no graphics but I need to make it with graphics so I ...
yali sommer's user avatar
0 votes
0 answers
29 views

image link: https://drive.google.com/file/d/1P695nlkTDUlbEpG1NfEgJjKCTTs34SKd/view?usp=sharing 1.) I have this code that has a name at the center when you run it, how can I make this name(or string) ...
Renzm.6958's user avatar
1 vote
0 answers
168 views

So I'm coding some stuff in assembly (TASM) for DOS with DOSBox (long story short: for our assembly course assignments the professor says we need to use an environment from the 90s for some reason, ...
KaukoTolonen's user avatar
1 vote
1 answer
59 views

I am writing a step-mode interrupt handler in x86 architecture assembler and can't figure out how to find and print out mov byte ptr [bx] and bx registers. So far i have this and in theory it should ...
Denver's user avatar
  • 13
0 votes
0 answers
98 views

i try to reconstruct a Turbo C 2.0 DOS small-memory-model executable C source exact-as-possible from disassembly (its an DOS reverse-engineering project and im using IDA Pro disassembling and UASM for ...
llm's user avatar
  • 779
0 votes
0 answers
63 views

This simple program (16-bit assembly using debug on FreeDOS, code below) expects a one-digit integer. It stops if the integer is either 0 or >1. If it's 1, it generates a new line, prints '*', then ...
utobi's user avatar
  • 319
1 vote
1 answer
64 views

Using 8086 microprocesor and DOSBox. This resident program is done with those 2 commands: TASM.exe program.asm & TLINK.exe /t program.obj Why is it not working when I run another .exe which has to ...
slvdr510's user avatar
1 vote
1 answer
60 views

I have written an assembly program that sorts an array using bubble sort. I am getting errors. This is the full code: org 100h section .data array db 5, 3, 7, 1, 4, 9, 2, 8, 6 array_size db 9 ...
melissa's user avatar
  • 11
2 votes
1 answer
48 views

I'm working with TASM (in DosBOX emulator). I'm a beginner and I don't know much yet. Below is my full code. The problem is that it prints out not just expected output (25 + 10 = 35 and 25 - 10 = 15) ...
Coder4Fun250's user avatar
-4 votes
1 answer
73 views

this is my code for swapping 2 lines in DosBox assembly. I can not find out why is it printing the same thing from input.txt to out.txt. I think the problem is with line numbers (and user input). ...
dodanija's user avatar
0 votes
1 answer
54 views

could someone provide an example how to swap 2 lines in txt document using assembly? I would be using it as an example, because right now i'm able to copy contents from one txt file to another, but ...
dodanija's user avatar
0 votes
1 answer
68 views

I'm writing a program that converts digits into words and also writes every other character unchanged to output file. But for some reason the output buffer overwrites characters on top of each other. ...
Denver's user avatar
  • 13
1 vote
1 answer
61 views

OP's text: How could I make a backward timer 3 minutes in NASM assembly? The timer is not working backwards. Edit: It looks like split mode works correctly. Not sure about lap mode. To make a ...
Abaid Anwer's user avatar

15 30 50 per page
1
2 3 4 5
38