Anatomy of data structures in assembler

All software topics
Post Reply
Go4IT
Pro
Posts: 967
Joined: 08 Feb 2019, 12:25

Anatomy of data structures in assembler

Post by Go4IT »

If you where familar with Scriptlanguages like PHP, Perl, or compiled languages like C, you used to declare abd use constants and variables all over the code. Here a static text, there some values, mixed with the code,

In Assembler those parts are strictly separated. In a coarse view, code comes first, then data follows. So it is always good to loom for data in the rear section of a mixed dump file.
Post Reply