Scripts posted recently tagged to assembler in Kelpi

1- 10 of 23.

Hello World in IBM mainframe Basic Assembler Language

to asm bal basic assembler language hello-world 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,R15

Hello World in Assembler for the ZX81

to assembler zx81 hello-world 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.

Hello World program for Z80

to assembler asm z80 hello-world 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.

Hello World for z390 IBM compatible mainframe assembler

to assembler asm ibm z390 hello-world by nando.quintana

; http://www.roesler-ac.de/wolfram/hello.htm#Assembler-z390
;
; Hello World for z390 IBM compatible mainframe assembler
HELLO CSECT
     USING *,15

Hello world in Assembler for the Win32 architecture

to assembler win-32 hello-world 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 T310

Hello World in VP Assembler for intent Amiga

to assembler intent-amiga hello-world 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,0

Hello World in Assembler for the DEC PDP-8

to assembler asm dec pdp-8 hello-world 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 cll

Hello World in Assembler for the MMIX Computer

to assembler asm mmix hello-world by nando.quintana

*       http://www.roesler-ac.de/wolfram/hello.htm#Assembler-MMIX
* 
*	Hello World in Assembler 
*	for the MMIX Computer 
       LOC   #100

Hello World for the DEC PDP-11 with the RSX-11M-PLUS operating system

to assembler asm rsx-11m-plus hello-world 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
;

Hello Word in Assemlber for the MIPS Architecture

to assembler asm mips hello-world 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
hits counter