to by nando.quintana
Page ,132
TITLE BOOT SECTOR 1 OF TRACK 0 - BOOT LOADER
;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991to 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-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-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 #exitto by nando.quintana
;; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-Linux
;; Hello World for the nasm Assembler (Linux)
SECTION .data
msg db "Hello, world!",0xa ; to by nando.quintana
; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-Intel
; Hello World for Intel Assembler (MSDOS)
mov ax,cs
mov ds,ax
mov ah,9