to by nando.quintana
http://www.roesler-ac.de/wolfram/hello.htm#BAL
Hello World in IBM mainframe Basic Assembler Language (BAL)
HELLO CSECT
STM R14,R12,12(R13)
LR R12,R15to by nando.quintana
; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-ZX81
;
; Hello World in Assembler for the ZX81 (Zilog Z80)
CALL SPRINT
DEFM HELLO WORLD.to by nando.quintana
; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-Z80-Console
; This is a "Hello World" program for Z80 and TMS9918 / TMS9928 / TMS9929 /
; V9938 or V9958 VDP.
; That means that this should work on SVI, MSX, Colecovision, Memotech,
; and many other Z80 based home computers or game consoles.to by nando.quintana
; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-z390
;
; Hello World for z390 IBM compatible mainframe assembler
HELLO CSECT
USING *,15to by nando.quintana
; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-Win32
;
; Hello world in Assembler for the Win32 architecture
TITLE Hello world in win32. Tasm
VERSION T310to by nando.quintana
; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-VP
;
; Hello World in VP Assembler for intent (Amiga Anywhere)
.include 'tao'
tool 'home/hello',VP,TF_MAIN,8192,0to by nando.quintana
/ http://www.roesler-ac.de/wolfram/hello.htm#Assembler-PDP8
/
/ Hello World in Assembler for the DEC PDP-8
*200
hello, cla cllto by nando.quintana
* http://www.roesler-ac.de/wolfram/hello.htm#Assembler-MMIX
*
* Hello World in Assembler
* for the MMIX Computer
LOC #100to by nando.quintana
; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-PDP11
;
; Hello World in Assembler for the DEC PDP-11 with the
; RSX-11M-PLUS operating system
;to by nando.quintana
## http://www.roesler-ac.de/wolfram/hello.htm#Assembler-MIPS
## Hello Word in Assemlber for the MIPS Architecture
.globl main
main: jal hwbody #call Hello Word Procedure
trap 10 #exit