Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1 2 3 4 5 6 7 8 9
; hello_world.asm bits 16 org 100h mov ah, 09 mov dx, message int 21h mov ax, 4C00h
...
-
1 2 3 4 5 6 7 8 9
global _start section .data text db "Awesome!!!" text_length equ $-text section .text _start:
...
-
1 2 3 4 5 6 7 8 9
global _start section .data ;zmienne inicjalizowane plik_wej DB 'plik_wej.txt', 0 plik_wyj DB 'plik_wyj.txt', 0 section .bss
...
-
1 2 3 4 5 6 7 8 9
global _start org 100h section .data ;zmienne inicjalizowane plik_wej DB 'plik_wej.txt', 0 plik_wyj DB 'plik_wyj.txt', 0 section .bss
...
-
1 2 3 4 5 6 7 8 9
org 100h section .data ;zmienne inicjalizowane plik_wej DB 'plik_wej.txt', 0 plik_wyj DB 'plik_wyj.txt', 0 section .bss ;zmienne nieinicjalizowane
...
-
1 2 3 4 5 6 7 8 9
.286 ProgCom SEGMENT ASSUME cs:ProgCom, ds:ProgCom, ss:ProgCom ORG 100h start: CALL adres MOV AH, 4Ch INT 21h
...
-
1 2 3 4 5 6 7 8 9
#cpuid.s Sample program to extract the processor Vendor ID .section .data output: .ascii “The processor Vendor ID is ‘xxxxxxxxxxxx’\n” .section .text .globl _start _start: movl $0, %eax cpuid
...
-
1
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6 7 8
;************************************************** ; Hello World OS Boot loader ; Designed by Arnav ; http://pendorasoft.byethost15.com/ ;************************************************** [BITS 16] [ORG 0x0000]
...
-
1 2 3 4 5 6 7 8
;************************************************** ; Hello World OS Boot loader ; Designed by Arnav ; http://pendorasoft.byethost15.com/ ;************************************************** [BITS 16] [ORG 0x0000]
...
-
1
6AAAAABbi8uDwx4zwDPSigOKETLCiAM8AHQrg8EBg8MB6+wz/7/z+TEct0SlpGf5dRyl53USYQEE56Ri7Kdkj8IAABkcOsw=
-
1 2 3 4 5 6 7 8 9
Prog segment cs:Prog .model tiny .data buffer db "HelLo WORLD",13,10,"$" .code org 100h prog:
...
-
1 2 3 4 5 6 7 8 9
.model tiny .data buffer db "HelLo WORLD",13,10,"$" .code org 100h prog: mov AX,@data mov DS, AX
...
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6 7 8 9
01-22 15:44:37.493: E/BatteryService(59): usbOnlinePath not found 01-22 15:44:37.493: E/BatteryService(59): batteryVoltagePath not found 01-22 15:44:37.493: E/BatteryService(59): batteryTemperaturePath not found 01-22 15:44:37.512: E/SurfaceFlinger(59): Couldn't open /sys/power/wait_for_fb_sleep or /sys/power/wait_for_fb_wake 01-22 15:44:46.373: E/EventHub(59): could not get driver version for /dev/input/mouse0, Not a typewriter 01-22 15:44:46.373: E/EventHub(59): could not get driver version for /dev/input/mice, Not a typewriter 01-22 15:44:47.322: E/System(59): Failure starting core service 01-22 15:44:47.322: E/System(59): java.lang.SecurityException 01-22 15:44:47.322: E/System(59): at android.os.BinderProxy.transact(Native Method)
...
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6 7 8 9
/* read the numbers; notice: ech line of the input must be followed by an EOF character */ x = read(); /* multiplication table */ for (i=1; i<=x; ++i) { for (j=1; j<=x; ++j) print i*j, "\t" print "\n" }
...
-
1 2 3 4
mov BX,3 mov CX,3 add BX,CX return
-
1 2 3
mov BX,3 mov CX,3 add BX,CX ;BX=2001h, CX=0003h
-
1 2 3
mov BX,lFFEh mov CX,3 add BX,CX ;BX=2001h, CX=0003h
-
1 2 3
mov BX,3 mov CX,3 add BX,CX ;BX=2001h, CX=0003h
-
1 2 3
mov BX,1FFEh mov CX,3 add BX,CX ;BX=2001h, CX=0003h
-
1 2 3
mov BX,lFFEh mov CX,3 add BX,CX ;BX=2001h, CX=0003h
-
1 2 3
mov AX,000Fh mov BX,00F0h or AX,BX ;AX=00FFh, BX=00F0h
-
1 2 3
mov AL,7 sar AL,1 ;AL=3=7/2, CF=1. Остаток ;потерян
-
1 2 3
mov AL,7 sar AL,1 ;AL=3=7/2, CF=1. Остаток ;потерян
-
1 2 3 4 5 6 7
mov eax, 3 mov edx, 7 stc sar al, 1 sbb dl, al cbw cwde
-
1 2 3 4 5 6 7
mov eax, 3 mov edx, 7 stc sar al, 1 sbb dl, al cbw cwde


