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
- Java7
- 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
; Assembler. Task №1. ; 13. Malashenkov Anton. group 1538. ITMO, KT. ; Variant 1. HashTable ;cl - key/value ;ch - enter? ;bx - hash org 100h
...
-
1 2 3 4 5 6 7 8 9
; Assembler. Task №1. ; 13. Malashenkov Anton. group 1538. ITMO, KT. ; Variant 1. HashTable ;cl - key/value ;ch - enter? ;bx - hash org 100h
...
-
1 2 3 4 5 6 7 8 9
SECTION .data ; data section msg: db "Hello World",10 ; the string to print, 10=cr len: equ $-msg ; "$" means "here" ; len is a value, not an address SECTION .text ; code section global main ; make label available to linker main: ; standard gcc entry point
...
-
1 2 3 4 5 6 7 8 9
; Assembler test for DCPU ; by Markus Persson set a, 0xbeef ; Assign 0xbeef to register a set (0x1000), a ; Assign memory at 0x1000 to value of register a ifn a, (0x1000) ; Compare value of register a to memory at 0x1000 .. set PC, end ; .. and jump to end if they don't match set i, 0 ; Init loop counter, for clarity
...
-
1
.MODEL TINY/SMALL/COMPACT/MEDIUM/LARGE
-
1 2 3 4 5 6 7 8 9
// personen.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using namespace std; struct s_person { char* vorname;
...
-
1 2 3 4 5 6 7 8 9
global _start _start: mov eax, 4 mov ebx, 1 mov ecx, msg mov edx, msglen int 0x80
...
-
1 2 3 4 5 6 7 8 9
section .text global _start ;must be declared for linker (ld) _start: ;tell linker entry point mov edx,len ;message length mov ecx,msg ;message to write mov ebx,1 ;file descriptor (stdout) mov eax,4 ;system call number (sys_write)
...
-
1 2 3 4 5 6 7 8 9
.486p .model flat,STDCALL include win32.inc extrn MessageBoxA:PROC extrn ExitProcess:PROC .data
...
-
1 2 3 4 5 6 7 8 9
.model tiny .code org 100h main proc mov ah,9 ; Display String Service mov dx,offset hello_message ; Offset of message (Segment DS is the right segment in .COM files) int 21h ; call DOS int 21h service to display message at ptr ds:dx
...
-
1 2 3 4 5 6 7 8 9
.section .rodata string: .ascii "Hello, World!\n\0" length: .quad . -string #Dot = 'here' .section .text .globl _start #Make entry point visible to linker _start:
...
-
1 2 3 4 5 6 7 8 9
; Assembler test for DCPU ; by Markus Persson set a, 0xbeef ; Assign 0xbeef to register a set (0x1000), a ; Assign memory at 0x1000 to value of register a ifn a, (0x1000) ; Compare value of register a to memory at 0x1000 .. set PC, end ; .. and jump to end if they don't match set i, 0 ; Init loop counter, for clarity
...
-
1 2 3 4 5 6 7 8 9
; Assembler test for DCPU ; by Markus Persson set a, 0xbeef ; Assign 0xbeef to register a set (0x1000), a ; Assign memory at 0x1000 to value of register a ifn a, (0x1000) ; Compare value of register a to memory at 0x1000 .. set PC, end ; .. and jump to end if they don't match set i, 0 ; Init loop counter, for clarity
...
-
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 ; alec's phone source code, copyright 2010 samsung inc ; this probably doesnt even execute but...whatever lets flash it anyway section .data mov dw 0h ; what the fuck does this shit even do? section .text _start: mov ebp, 4 ; static stack pointers are a great idea right guys?
...
-
1
dfhdfhdfh
-
1 2 3 4 5 6 7 8 9
;=============================================================================; ; ; ; Plik : arch2.asm ; ; Format : COM ; ; Cwiczenie : Kod U2 ; ; Autorzy : Bartosz Kapusta,Wojciech Kaszyński ,6 ,wtorek ,11:00 ; ; Data zaliczenia: 05.04.2011 ; ; Uwagi : Program wczytuje z klawiatury dwie liczby calkowite ; ; z przedzialu [-32768..32767] wprowadzane w postaci znakow ;
...
-
1 2 3 4 5 6 7 8
global main extern exit extern printf extern scanf
...
-
1 2 3 4 5 6 7 8 9
mov ebx, 2 mov eax, $1 mov ecx, $1
...
-
1 2 3 4 5 6 7 8 9
mov ebx, 5 mov eax, $1 mov ecx, $1
...
-
1 2 3 4 5 6 7 8 9
mov ebx, 5 mov eax, $1 mov ecx, $1
...
-
1 2 3 4 5 6 7 8 9
mov ebx, 5 mov eax, $1 mov ecx, $1
...
-
1 2 3 4 5 6 7 8
global main extern exit extern printf extern scanf
...
-
1 2 3 4 5 6 7 8
global main extern exit extern printf extern scanf
...
-
1 2 3 4 5 6 7 8
global main extern exit extern printf extern scanf
...
-
1 2 3 4 5 6 7 8
global main extern exit extern printf extern scanf
...
-
1
asdasdjsjdhjad
-
1 2 3 4 5 6 7 8 9
global main extern printf extern scanf extern exit section .text main: push dword a push f1 call scanf
...
-
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
org 100h start: mov ah, 9 mov dx, info int 21h xor bx, bx ;miejsce na liczbę
...


