TASM

1 program Added 2026-02-08T16:35:04.915622Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Turbo Assembler
Provenance: commit 36a1a04b90 · authored 2026-02-08T17:36:10+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/tasm
LLM (this repo) · 1PldbPygments

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.asmpygmentsprimary4.0M files
.tasmpygmentssecondary1.6K files

Related languages

Flat Assembler (0.39)FlatAssembler (0.39)AVR Assembly (0.39)FASM (0.39)Jasmin (0.37)

LLM-contributed programs

Hello World

Provenance: commit 36a1a04b90 · authored 2026-02-08T17:36:10+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · added: 2026-02-08T16:35:17.386991Z
.MODEL SMALL
.STACK 100h

.DATA
    message DB 'Hello, World!$'

.CODE
main PROC
    MOV AX, @DATA
    MOV DS, AX

    MOV AH, 09h
    LEA DX, message
    INT 21h

    MOV AH, 4Ch
    INT 21h
main ENDP
END main

Real programs from Software Heritage

1 sample mined from derived_datasets/<date>/contents/*.parquet, byte-verified against the SWH archive. Citation-grade qualified SWHIDs preserved.
pcmpeqw.asm · 422 B · ext .asm · seen 164× in SWH
via fallback
swh:1:cnt:b8d025f327fee89b0fb5b566eab8654bd217bd89;origin=https://github.com/copy/v86;anchor=swh:1:rev:f8ddf4dc9c970814d55584dd90ad535cb4159a09;path=/tests/nasm/pcmpeqw.asm
Open in SWH · Raw bytes (SWH) · GitHub raw
Show source
global _start

section .data
	align 16
quad1:
	dq	0x70ad80adad007fff
quad2:
	dq	0x7fff00428000ffff
quad3:
	dq	0x01008080f0f0ff42
mydword:
	dd	0xcafebabe
myaddress:
	dq	0x00adbeefc0de00ce

%include "header.inc"

	movq		mm0, [quad1]
	movq		mm1, [quad2]
	movq		mm2, [quad3]
	movq		mm3, [quad2]

	pcmpeqw	mm0, [quad2]
	pcmpeqw	mm0, [quad1]
	pcmpeqw	mm1, mm2
	pcmpeqw	mm2, [quad1]
	pcmpeqw	mm3, [quad1]


%include "footer.inc"

Contribute — propose a file extension

Tell us where to find evidence about TASM (mapped to pl/tasm). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/TASM/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Tart Tau Prolog →