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
.data tekst: .asciiz "Podaj dowolnego stringa: " nowaLinia: .asciiz "\n" spacja: .asciiz " - " naszString: .space 80 #rezerwujemy 20 bajtów na wprowadzanego stringa .text wyswietlKomunikaty: li $v0, 4
...
-
1 2 3 4 5 6 7 8 9
.data tekst: .asciiz "Podaj dowolnego stringa: " nowaLinia: .asciiz "\n" spacja: .asciiz " - " naszString: .space 80 #rezerwujemy 20 bajtów na wprowadzanego stringa .text wyswietlKomunikaty: li $v0, 4
...
-
1 2 3 4 5 6 7 8
.code Fibonacci proc MOV EAX, [EBP+8] CMP EAX, 1 JA Recurse MOV ECX, 1 JMP exit
...
-
1 2 3 4 5 6 7 8 9
mov %ecx, %esi outloop: mov $0, %ecx inloop: mov (%esi,%ecx,4), %eax # eax = liste[i] mov 4(%esi,%ecx,4), %ebx # ebx = liste[i+1] cmp %eax, %ebx
...
-
1 2 3 4 5 6 7 8 9
; ZONA DE DATOS ********************************************************************** __CONFIG _CP_OFF & _WDT_OFF & _PWRTE_ON & _XT_OSC LIST P=16F84A INCLUDE <P16F84A.INC> CBLOCK 0x0C Penultimo ; Ocupa la posición 0x0C de RAM. Ultimo ; Ocupa la posición 0x0D de RAM.
...
-
1 2 3 4 5 6 7 8 9
MOV CX,00D MOV AL,01 MOV BL,00 MOV BH,AL ADD BH,BL PUSH CX PUSH AX PUSH BX ADD BH,30
...
-
1 2 3 4 5 6 7 8 9
.data fibonacci DWORD 100 dup (0) .code mov edx,offset fibonacci mov eax,1 mov ebx,1 mov ecx,49 @@: mov DWORD PTR [edx],eax
...
-
1 2 3 4 5 6 7 8 9
.model small .data c db 15 y dw 0 x dw 0 r dw 0 n db 0 masy dw 7 dup (0)
...
-
1 2 3 4 5 6 7 8 9
.data x: .long 0 s: .string "%d\n\0" .text .global main main: # int main()
...
-
1 2 3 4 5 6 7 8 9
On entry, PPUMask is #%00011110, all backgrounds set rendering. And PPUCtrl is 88, NMI enabled and sprites from 0x1000 area. ;ADDED CODE TestZapperMode: BIT PPUStatus LDA #$3F STA PPUAddr LDA #$00 STA PPUAddr
...
-
1 2 3 4 5 6 7 8 9
main: .LFB1: .cfi_startproc pushq %rbp .cfi_def_cfa_offset 16 .cfi_offset 6, -16 movq %rsp, %rbp .cfi_def_cfa_register 6 pushq %rbx
...
-
1 2 3 4 5 6 7 8
INCLUDE Irvine32.inc .data mensaje BYTE "SERIE FIBONACCI",0dh,0ah,0 .code main PROC
...
-
1 2 3 4 5 6 7
.text .global main main: # int main() movl ebx,$ movl eax,1 int 0x80 ret
-
1 2 3 4 5 6 7
.text .global main main: # int main() mov ebx,$ mov eax,1 int 0x80 ret
-
1 2 3
mov ebx,$ mov eax,1 int 0x80
-
1 2 3 4 5 6 7 8 9
section .text global _start _start: mov ebx,$ mov eax,1 int 0x80
-
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 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 2 3 4 5 6 7 8 9
masm model small .data a DW -3 b DW 1 i DW 1 k DW 5 .stack 256 .code
...
-
1 2 3 4 5 6 7 8 9
.MODEL SMALL .DATA VAl1 DB ? NL1 DB 0AH,0DH,'ENTER NO:','$' NL2 DB 0AH,0DH,'IT IS NOT PRIME','$' NL3 DB 0AH,0DH,'IT IS PRIME','$' ;se definen las cadenas de caracteres .CODE
...
-
1 2 3 4 5 6 7 8 9
See the end of this message for details on invoking debugging just-in-time (JIT) debugging instead of this dialog box. Exception Text ************** ************** System.Configuration.ConfigurationErrorsException: The configuration section 'connectionStrings' has an unexpected statement. System.Configuration.ConfigurationManager.get_ConnectionStrings in () System.Configuration.PrivilegedConfigurationManager.get_ConnectionStrings in () in System.Configuration.LocalFileSettingsProvider.GetPropertyValues (SettingsContext context, SettingsPropertyCollection properties) in System.Configuration.SettingsBase.GetPropertiesFromProvider (SettingsProvider provider)
...
-
1 2 3 4 5 6 7 8 9
include ioproc.asm stack segment stack dw 128 dup (?) stack ends data segment N equ 100 A db N DUP(?) ,'$'
...
-
1 2 3 4 5 6 7 8 9
code segment assume CS:code, DS:data mainproc proc mov AX, data mov DS, AX repeat: mov ah,01h int 21h
...
-
1 2 3 4 5 6 7 8 9
.data x: .long 0 s: .string "%d\n\0" .text .global main main: # int main()
...
-
1 2 3 4 5 6 7 8 9
.data x: .long 0 s: .string "%d\n\0" .text .global main main: # int main()
...
-
1 2 3 4 5 6 7 8 9
.data x: .long 0 s: .string "%d\n\0" .text .global main main: # int main()
...
-
1 2 3 4 5 6 7 8 9
ENTRY(loader) SECTIONS { .=0x00100000; .text:{ *(.text) } .rodata ALIGN (0x1000):{ *(.data) }
...
-
1 2 3 4 5 6 7 8 9
ENTRY(loader) SECTIONS { .=0x00100000; .text:{ *(.text) } .rodata ALIGN (0x1000):{ *(.data) }
...
-
1
-
1 2 3 4 5 6 7 8 9
.data x: .long 0 s: .string "%d\n\0" .text .global main main: # int main()
...


