Scripts posted recently tagged to asm in Kelpi

1- 10 of 22.

microsoft msdos 6.0 msboot.asm

to asm msdos dos msdos-6.0 by nando.quintana

Page ,132
TITLE BOOT	SECTOR 1 OF TRACK 0 - BOOT LOADER
;/*
; *                      Microsoft Confidential
; *                      Copyright (C) Microsoft Corporation 1991

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 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 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

Hello World for the nasm Assembler (Linux)

to assembler nasm asm linux hello-world 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 ; 

Hello World for Intel Assembler (MSDOS)

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