Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Not just when it's greater than 0.
For example T = -1 will cause a jump.
Digits that aren't 1, 2, 3 or 4, when used as a mask in a SWIZ command, will insert a zero. Great for those [rare] times when you need to null out a specific digit or insert some padding.
LINK @{803,2}
@END
Would be a better way to do what Gargish said
;HELLO
is the same as
NOTE HELLO
@REP 4
LINK 80@{3,2}
@END
expands to
LINK 803
LINK 805
LINK 807
LINK 809
that is, first number in braces is the initial value, the second is the step count, and since it is just a text replacement you can string it together with other text.
@REP N
thing to repeat
@END
is a hidden convenience for repeating something a fixed number of times - I don't think you can use a register in place of N.
@REP 5
copy m x
@END
expands at runtime to
copy m x
copy m x
copy m x
copy m x
copy m x
You can also alt-click on a line to run the program to that point, like a breakpoint. Not sure if there are any other hidden gems like this.
SWIZ 1234 2 X (copies 3 into X)