Terraspace / UASM

UASM - Macro Assembler
http://www.terraspace.co.uk/uasm.html
Other
220 stars 49 forks source link

Option ZEROLOCALS #28

Closed john-terraspace closed 8 years ago

john-terraspace commented 8 years ago

Possible feature: with the presence of this option LOCAL values decared in a PROC are automatically initialised to zero?

habran commented 8 years ago

Possible feature: with the presence of this option LOCAL values decared in a PROC are automatically initialised to zero?

that I understand

On Mon, Feb 8, 2016 at 8:29 PM, John Hankinson notifications@github.com wrote:

Possible feature: with the presence of this option LOCAL values decared in a PROC are automatically initialised to zero?

— Reply to this email directly or view it on GitHub https://github.com/Terraspace/HJWasm/issues/28.

john-terraspace commented 8 years ago

Implemented with OPTION ZEROLOCALS:{0|1}

Generated code will use immediate moves up to a set size at which point it will switch to a more optimal rep stos.

habran commented 8 years ago

BTW what do you think about the trails on the bottom of oceans, for example this: [image: Inline image 1]

On Fri, Feb 12, 2016 at 7:55 PM, John Hankinson notifications@github.com wrote:

Implemented with OPTION ZEROLOCALS:{0|1}

Generated code will use immediate moves up to a set size at which point it will switch to a more optimal rep stos.

— Reply to this email directly or view it on GitHub https://github.com/Terraspace/HJWasm/issues/28#issuecomment-183248313.

john-terraspace commented 8 years ago

?