This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| goto *L0000 | |
| #module m0 | |
| #defcfunc vdot array v0, array v1 | |
| return v0.0 * v1.0 + v0.1 * v1.1 + v0.2 * v1.2 | |
| #defcfunc vdot1 array v0 | |
| return v0.0 * v0.0 + v0.1 * v0.1 + v0.2 * v0.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmd1 1 | |
| cmd2 2 | |
| stop | |
| #deffunc cmd1 int a, local b | |
| b = 10 | |
| mes "1->" + a + "/" + b | |
| goto *COMMON | |
| #deffunc cmd2 int a, local c |
NewerOlder