Joined
Last Seen
0 Reputation Points
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #72.9K
2 Posted Topics
Assembly language consists of the instructions needed to program the processor, and nothing more. Behind the scenes, high level languages do input and output by calling operating system functions, and the assembly language programmer has to do the same. Exactly how you get the operating system to read a string …
Re: whats .org 100h?
Back in the days of MS-DOS, when a program was loaded into memory a structure called a "program segment prefix" was always prepended to it, and that structure was 100h bytes long. Therefore the actual code began at 100h, and the directive "org 100h" instructs the assembler to assemble code …
The End.
Leslie_2