Home > other > What is the difference between assembly language code and codes segment?
What is the difference between assembly language code and codes segment?
Time:04-02
Abnormal memory read and write the following code executes: 386 .The model flat, stdcall
Codes segment Start: mov eax, 0123 h Codes ends
The end start
I put the codes segment instead. The code can be executed correctly: 386 .The model flat, stdcall
The code _start: mov eax, 0123 h
End _start
What is this why?
CodePudding user response:
, in addition to the name, no essential difference between abnormal, speaking, reading and writing as for execution, the second I'm afraid it is the same, because they are not the end of the process of operation, is usually called ExitProcess (API) system,