Skip to content

Commit

Permalink
2.36.01
Browse files Browse the repository at this point in the history
  • Loading branch information
nidud committed Oct 26, 2024
1 parent e7fa0e9 commit 010aa09
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
Binary file modified bin/asmc.chm
Binary file not shown.
2 changes: 1 addition & 1 deletion doc/directive/dot-continue.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Asmc Macro Assembler Reference

**.CONTINUE**[([0]1..n)] [[**.IF** _condition_]]

Generates code to jump to the top of a [.WHILE](dot_while.md) or [.REPEAT](dot_repeat.md) block if _condition_ is true.
Generates code to jump to the top of a [.WHILE](dot-while.md) or [.REPEAT](dot-repeat.md) block if _condition_ is true.

**.CONTINUE**[(1..n)] is optional nesting level to continue.

Expand Down
2 changes: 1 addition & 1 deletion doc/directive/dot-enumt.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Asmc Macro Assembler Reference

**.ENUMT** [[ _name_ ]] [[ : _type_ ]] [[ { ]]

The enumt keyword is similar to [.ENUM](dot_enum.md) but uses _type_ as _size_ multiplier.
The enumt keyword is similar to [.ENUM](dot-enum.md) but uses _type_ as _size_ multiplier.

For example, in the following enumeration, Sat is 0, Sun is 2, Mon is 4, and so forth.
```
Expand Down
2 changes: 1 addition & 1 deletion doc/directive/dot-gotosw.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Asmc Macro Assembler Reference

.**GOTOSW** [[([[n:]]<_caseval_>)] | [.**IF** _condition_]]

Generates code to jump to the top of a [.SWITCH](dot_switch.md) block if _condition_ is true.
Generates code to jump to the top of a [.SWITCH](dot-switch.md) block if _condition_ is true.

**.GOTOSW** jump's directly to the TEST label.

Expand Down
2 changes: 1 addition & 1 deletion doc/directive/dot-savereg.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Asmc Macro Assembler Reference

## .SAVEREG

Generates either a UWOP_SAVE_NONVOL or a UWOP_SAVE_NONVOL_FAR unwind code entry for the specified register (reg) and offset (offset) using the current prologue offset. MASM will choose the most efficient encoding.
Generates either a UWOP_SAVE_NONVOL or a UWOP_SAVE_NONVOL_FAR unwind code entry for the specified register (reg) and offset (offset) using the current prologue offset. ASMC will choose the most efficient encoding.

**.SAVEREG** _reg_, _offset_

Expand Down
2 changes: 1 addition & 1 deletion doc/directive/option-dotname.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ Allows names of identifiers to begin with a period. The default is OPTION NODOTN

#### See Also

[Option](option.md) | [Directives Reference](readme.md) | [NODOTNAME](opt_nodotname.md)
[Option](option.md) | [Directives Reference](readme.md) | [NODOTNAME](option-nodotname.md)
2 changes: 1 addition & 1 deletion doc/directive/option-floatdigits.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ value = 0.3333333333333333

#### See Also

[Option](option.md) | [Directives Reference](readme.md) | [option floatformat](opt_floatformat.md)
[Option](option.md) | [Directives Reference](readme.md) | [option floatformat](option-floatformat.md)
2 changes: 1 addition & 1 deletion doc/directive/option-frame.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Asmc Macro Assembler Reference

This is only valid in 64-bit, and causes ASMC to generate a function table entry in .pdata and unwind information in .xdata for a function's structured exception handling unwind behavior.

When the FRAME attribute is used, it must be followed by an .ENDPROLOG directive.
When the FRAME attribute is used, it must be followed by an [.ENDPROLOG](dot-endprolog.md) directive.

The option AUTO automatically generate epilogues for procedures with the FRAME attribute.

Expand Down
2 changes: 1 addition & 1 deletion doc/directive/option-switch.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ The **NOREGS** and **REGAX** options control the usage of registers in jump-tabl

#### See Also

[Option](option.md) | [Directives Reference](readme.md) | [.SWITCH](dot_switch.md)
[Option](option.md) | [Directives Reference](readme.md) | [.SWITCH](dot-switch.md)
2 changes: 1 addition & 1 deletion doc/directive/option-win64.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ FRAME is the same as option FRAME:ADD.

#### See Also

[Option](option.md) | [Directives Reference](readme.md) | [FRAME](opt_frame.md)
[Option](option.md) | [Directives Reference](readme.md) | [FRAME](option-frame.md)

0 comments on commit 010aa09

Please sign in to comment.