Computer Science, asked by bindupareek5184, 8 months ago

What assembly language directive indicates the start of the code segment?

Answers

Answered by Mukeshgorain338
2

Explanation:

The "ORG" (for "origin") statement indicates the start of the code segment.

Many assembly language source files start with "ORG 0", indicating that instructions begin at address 0.

Many other assembly language source files, such as COM files, start with "ORG 0x100", indicating that instructions begin at address 0x100.

Similar questions