Writing code with Easy Code


For Easy Code to be able to manage procedures, constants and variables properly, you should take into account the following considerations:

- There should be only one section of all possible ones.
- The .Code section always must be the last one in the code.
FASM

section '.data' data readable writeable

section '.text' code readable executable



GOASM

.Const

.Data

.Code


JWASM / MASM / POASM / UASM

.Const

.Data?

.Data

.Code


SOLASM

.data

.code


All new projects created by Easy Code and all the examples included are written in that way. New projects have to be created by using the New Project menu option.