Assembler should provide default values (implemented using default keyword) for some instruction operands.
For example:
istore 1 default
will store a default integer in register 1.
They keyword would act as a documentation (saying "initialise this with a default value for given type"), and a message to maintainer (no more debating whether the 0 in istore 1 0 must stay zero, or is it just a default value if the instruction can be written as istore 1 default).
Assembler should provide default values (implemented using
default
keyword) for some instruction operands. For example:will store a default integer in register 1. They keyword would act as a documentation (saying "initialise this with a default value for given type"), and a message to maintainer (no more debating whether the 0 in
istore 1 0
must stay zero, or is it just a default value if the instruction can be written asistore 1 default
).