You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ; Hello World for TVM assembly
-
- .ORIG x3000 ; this is the address in memory where the program will be loaded
- LEA R0, HELLO_STR ; load the address of the HELLO_STR string into R0
- PUTs ; output the string pointed to by R0 to the console
- HALT ; halt the program
- HELLO_STR .STRINGZ "Hello World!" ; store this string here in the program
- .END ; mark the end of the file
|