Assembly language
Assembly language is a historical programming language created in 1960.
59Years Old | 1,020Users | 0Jobs |
- Assembly language ranks in the top 20% of languages
- the Assembly language wikipedia page
- Assembly language first appeared in 1960
- See also: x86-isa, fortran, algol, lisp, gas, x86-assembly, punched-tape, ia-32, autocoder, pl-i, cobol, c, unix, kathleen-booth, espol, turbo-pascal, visual-basic, pascal, hla, wasm
- I have 24 facts about Assembly language. just email me if you need more.
Example code from Wikipedia:
include \masm32\include\masm32rt.inc ; use the Masm32 library .code demomain: REPEAT 20 switch rv(nrandom, 9) ; generate a number between 0 and 8 mov ecx, 7 case 0 print "case 0" case ecx ; in contrast to most other programming languages, print "case 7" ; the Masm32 switch allows "variable cases" case 1 .. 3 .if eax==1 print "case 1" .elseif eax==2 print "case 2" .else print "cases 1 to 3: other" .endif case 4, 6, 8 print "cases 4, 6 or 8" default mov ebx, 19 ; print 20 stars .Repeat print "*" dec ebx .Until Sign? ; loop until the sign flag is set endsw print chr$(13, 10) ENDM exit end demomainEdit
Last updated February 11th, 2019