hexsha
stringlengths
40
40
size
int64
6
1.05M
ext
stringclasses
3 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
4
232
max_stars_repo_name
stringlengths
7
106
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
7
max_stars_count
int64
1
33.5k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
4
232
max_issues_repo_name
stringlengths
7
106
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
7
max_issues_count
int64
1
37.5k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
4
232
max_forks_repo_name
stringlengths
7
106
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
7
max_forks_count
int64
1
12.6k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
6
1.05M
avg_line_length
float64
1.16
19.7k
max_line_length
int64
2
938k
alphanum_fraction
float64
0
1
7746ee663c85d9923fb16469e1e725e7f1de2592
358
asm
Assembly
ch2/print_rax.asm
abhinav-upadhyay/low_level_programming
9bb78fbf0add055eedf4bc4552d0dd9225d7e286
[ "BSD-2-Clause" ]
null
null
null
ch2/print_rax.asm
abhinav-upadhyay/low_level_programming
9bb78fbf0add055eedf4bc4552d0dd9225d7e286
[ "BSD-2-Clause" ]
null
null
null
ch2/print_rax.asm
abhinav-upadhyay/low_level_programming
9bb78fbf0add055eedf4bc4552d0dd9225d7e286
[ "BSD-2-Clause" ]
null
null
null
global _start section .data codes: db '0123456789ABCDEF' section .text _start: mov rax, 0x1122334455667788 mov rdi, 1 mov rdx, 1 mov rcx, 64 .loop: push rax sub rcx, 4 sar rax, cl and rax, 0xf lea rsi, [codes + rax] push rcx mov rax, 1 syscall pop rcx pop rax test rcx, rcx jnz .loop mo...
11.548387
29
0.648045
60001730592e270683e997505d2f1f499bc9188a
210
asm
Assembly
mars scripts/test.asm
lhy9816/5-stage-pipeline-MIPS-CPU
78be5cfa5e0af1bf6af824085b20aed3f4c3ae82
[ "MIT" ]
null
null
null
mars scripts/test.asm
lhy9816/5-stage-pipeline-MIPS-CPU
78be5cfa5e0af1bf6af824085b20aed3f4c3ae82
[ "MIT" ]
null
null
null
mars scripts/test.asm
lhy9816/5-stage-pipeline-MIPS-CPU
78be5cfa5e0af1bf6af824085b20aed3f4c3ae82
[ "MIT" ]
null
null
null
.text ori $t4, $0, 0xff11 mtc0 $t4, $12 ori $3, $0, 1 sw $3, 0x00007f18($0) loop: sw $3, 0x10000000($0) addi $5, $5, 1 j loop nop .ktext 0x4180 #sw $0, 0x00007f18($0) sw $3, 0x00007f10($0) lw $4, 0x00007f10($0)
15
22
0.619048
a86631d3692854064a5ca5d03400fdcf5c539237
254
asm
Assembly
programs/oeis/096/A096094.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/096/A096094.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/096/A096094.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A096094: Analog of A094091 for S=3. ; 0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,1,0,0,0,1 mul $0,8 lpb $0 mov $1,$0 div $0,6 seq $0,53186 ; Square excess of n: difference between n and largest square <= n. bin $0,2 add $0,1 lpe mod $1,2 mov $0,$1
18.142857
82
0.594488
7fcd049a48964fe9534a13b2937e3d164365b74c
491
asm
Assembly
tests/exec/pop/pop.asm
ykskb/dax86
d7c90afb4a306f04bd840da2b32faedec01bef93
[ "MIT" ]
12
2020-09-17T13:33:24.000Z
2022-03-13T21:48:52.000Z
tests/exec/pop/pop.asm
ykusakabe/dax86
d7c90afb4a306f04bd840da2b32faedec01bef93
[ "MIT" ]
2
2020-07-03T03:12:01.000Z
2021-06-11T00:31:19.000Z
tests/exec/pop/pop.asm
ykusakabe/dax86
d7c90afb4a306f04bd840da2b32faedec01bef93
[ "MIT" ]
5
2020-07-04T16:59:29.000Z
2021-11-26T17:14:07.000Z
BITS 32 org 0x7c00 push 3 mov dword eax, esp pop dword [eax - 4] ; 0x7CFC: 3 sub esp, 4 mov dword eax, 3 sub dword eax, 3 ; EFLAGS: 0000 0000 0100 0000 pushfd ; 9C ; 0x7CF8: 0x40 mov dword eax, 3 sub dword eax, 4 ; EFLAGS: 1000 0001 ; EAX: 0xFFFF FFFF popfd ; 9D ; EFLAGS: 00...
24.55
59
0.610998
02a47b11224da33e474432583c7dde5f276deaf9
387
asm
Assembly
programs/oeis/163/A163489.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/163/A163489.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/163/A163489.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A163489: Indices n such that composite(n)/3 is prime. ; 2,4,8,12,21,26,35,40,49,63,68,81,92,97,106,121,136,140,154,165,171,185,195,210,229,240,245,254,260,270,305,315,330,336,360,365,379,395,405,421,437,442,467,472,483,488,517,547,557,562,573,589,594,619,634,650 seq $0,6005 ; The odd prime numbers together with 1. m...
43
208
0.705426
c3562894a70b52fcb3862d42cb36370f19f7170c
4,599
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_518.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_518.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_518.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r8 push %rax push %rbp push %rdi lea addresses_normal_ht+0xf126, %rax clflush (%rax) nop dec %rdi mov (%rax), %r13w nop add $44958, %rbp lea addresses_WC_ht+0x3a9a, %r14 nop nop nop and %r8, %r8 movl $0x61626364, (%r14) nop nop nop nop cmp $58646, %...
50.538462
2,999
0.661013
ba1249ccb88162e352a4d752ef52e8710bcbac7f
1,613
asm
Assembly
programs/oeis/147/A147562.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/147/A147562.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/147/A147562.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A147562: Number of "ON" cells at n-th stage in the "Ulam-Warburton" two-dimensional cellular automaton. ; 0,1,5,9,21,25,37,49,85,89,101,113,149,161,197,233,341,345,357,369,405,417,453,489,597,609,645,681,789,825,933,1041,1365,1369,1381,1393,1429,1441,1477,1513,1621,1633,1669,1705,1813,1849,1957,2065,2389,2401,2437,24...
230.428571
1,353
0.803472
c0ec534390304dca290ef74c693dd17676b358f2
500
asm
Assembly
programs/oeis/054/A054527.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/054/A054527.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/054/A054527.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A054527: Triangle read by rows: T(n,k) = Moebius mu(k) (n >= 1, 1<=k<=n). ; 1,1,-1,1,-1,-1,1,-1,-1,0,1,-1,-1,0,-1,1,-1,-1,0,-1,1,1,-1,-1,0,-1,1,-1,1,-1,-1,0,-1,1,-1,0,1,-1,-1,0,-1,1,-1,0,0,1,-1,-1,0,-1,1,-1,0,0,1,1,-1,-1,0,-1,1,-1,0,0,1,-1,1,-1,-1,0,-1,1,-1,0,0,1,-1,0,1,-1,-1,0,-1,1,-1,0,0,1,-1,0,-1,1,-1,-1,0,-1,1,-1...
55.555556
248
0.498
be0b386f40a9d2b7641548629301b9077fff3689
623
asm
Assembly
oeis/255/A255879.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/255/A255879.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/255/A255879.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A255879: Partial sums of A256188. ; Submitted by Simon Strandgaard ; 1,3,4,6,10,15,16,18,21,28,36,45,46,48,51,55,66,78,91,105,106,108,111,115,120,136,153,171,190,210,211,213,216,220,225,231,253,276,300,325,351,378,379,381,384,388,393,399,406,435,465,496,528,561,595,630,631,633,636,640,645,651,658,666,703,741,780,820,...
47.923077
403
0.717496
83555e80bafae63d648d358d9955e6ef8ded0eb9
297
asm
Assembly
code/5/move1.asm
GeekHades1/AssemblyCode
4078d97d8e31093ff7b54b72869f77e340b98391
[ "BSD-2-Clause" ]
1
2018-07-11T12:35:45.000Z
2018-07-11T12:35:45.000Z
code/5/move1.asm
GeekHades1/AssemblyCode
4078d97d8e31093ff7b54b72869f77e340b98391
[ "BSD-2-Clause" ]
null
null
null
code/5/move1.asm
GeekHades1/AssemblyCode
4078d97d8e31093ff7b54b72869f77e340b98391
[ "BSD-2-Clause" ]
null
null
null
; 将内存ffff:0-ffff:b中的数据一个个的复制到0:200-0:20b中 ; 这是采用字节移动的方法 assume cs:code code segment mov bx, 0 mov cx, 12 s: mov ax, 0ffffh ; 初始化地址 mov ds, ax mov dl, [bx] mov ax, 0020h mov ds, ax mov [bx], dl inc bx loop s mov ax, 4c00h int 21h code ends end
11.88
43
0.579125
6b1bc4f53968edaefd78adce40e810cb4f4dc116
685
asm
Assembly
oeis/027/A027258.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/027/A027258.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/027/A027258.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A027258: a(n) = Sum_{k=0..2n-1} T(n,k) * T(n,k+1), with T given by A025177. ; Submitted by Christian Krause ; 0,6,52,428,3552,29790,251980,2145822,18373296,158025186,1364247180,11815188000,102606325136,893175905778,7791151047204,68086757974300,595980599148672,5224392846601730,45857525238248604,402997448078904948,3545...
45.666667
246
0.665693
2bdb13700d8da0510ec6c183dfdc6c2b182302d6
306
asm
Assembly
programs/oeis/074/A074517.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/074/A074517.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/074/A074517.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A074517: a(n) = 1^n + 5^n + 7^n. ; 3,13,75,469,3027,19933,133275,901669,6155427,42306733,292240875,2026154869,14085427827,98109713533,684326588475,4778079088069,33385518460227,233393453440333,1632228295176075,11417968671701269 mov $1,7 pow $1,$0 add $1,3 mov $2,5 pow $2,$0 add $1,$2 sub $1,2 mov $0,$1
25.5
193
0.74183
803a38d881dd1989867f37d09c87484033d7363c
437
asm
Assembly
oeis/163/A163374.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/163/A163374.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/163/A163374.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A163374: a(n) = tau(tau(phi(n))). ; Submitted by Jon Maiga ; 1,1,2,2,2,2,3,2,3,2,3,2,4,3,3,3,2,3,4,3,4,3,3,3,4,4,4,4,4,3,4,2,4,2,4,4,3,4,4,2,4,4,4,4,4,3,3,2,4,4,4,4,4,4,4,4,3,4,3,2,6,4,3,4,4,4,4,4,4,4,4,4,6,3,4,3,6,4,4,4,4,4,3,4,2,4,4,4,4,4,6,4,6,3,6,4,6,4,6,4 seq $0,62821 ; Number of divisors of totient of n. seq $...
54.625
201
0.576659
67ba0c7c3a658471d0f91e38fe35d6b7977fc8ec
574
asm
Assembly
oeis/193/A193339.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/193/A193339.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/193/A193339.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A193339: Indices of record values in A001783. ; 1,3,4,5,7,9,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373...
35.875
368
0.674216
a3c7e5a4549febda06b46d630eed512f6e1f9e0b
5,365
asm
Assembly
Games/CMonster (Breakout)/Source/gfx.asm
CiaranGruber/Ti-84-Calculator
96742a4a2b9e21aa9d675575dc7e4f26365430c0
[ "MIT" ]
1
2019-03-31T11:49:12.000Z
2019-03-31T11:49:12.000Z
Games/CMonster (Breakout)/Source/gfx.asm
CiaranGruber/Ti-84-Calculator
96742a4a2b9e21aa9d675575dc7e4f26365430c0
[ "MIT" ]
null
null
null
Games/CMonster (Breakout)/Source/gfx.asm
CiaranGruber/Ti-84-Calculator
96742a4a2b9e21aa9d675575dc7e4f26365430c0
[ "MIT" ]
1
2020-03-09T13:21:19.000Z
2020-03-09T13:21:19.000Z
;############## CMonster by Patrick Davidson - graphics rendering routines #define SPRITE(width,height) .db width-1,((width*height/2)*5)&255 .block (256-($ & 255)) ; %RRRRRGGG,%GGGBBBBB color_table: .db %00000000,%00000000 ; 0 = black .db %11111000,%00000000 ...
28.537234
88
0.416403
b8d9623d6d396c9bf5094f6d86ba3d2ad2959cc0
477
asm
Assembly
oeis/305/A305435.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/305/A305435.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/305/A305435.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A305435: Number of proper divisors of n of the form 2^k + 1 for k >= 0. ; Submitted by Jon Maiga ; 0,0,0,1,0,2,0,1,1,2,0,2,0,1,2,1,0,3,0,2,1,1,0,2,1,1,2,1,0,3,0,1,1,2,1,3,0,1,1,2,0,2,0,1,3,1,0,2,0,2,2,1,0,3,1,1,1,1,0,3,0,1,2,1,1,3,0,2,1,2,0,3,0,1,2,1,0,2,0,2,2,1,0,2,2,1,1,1,0,4,0,1,1,1,1,2,0,1,3,2 add $0,1 mov $2,$0...
21.681818
201
0.524109
f6ceadc7f7acf377afa1d5e93c09d1e2b2d0d5f4
160
asm
Assembly
libsrc/_DEVELOPMENT/fcntl/c/sdcc_ix/ioctl.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/fcntl/c/sdcc_ix/ioctl.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/fcntl/c/sdcc_ix/ioctl.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
; int ioctl(int fildes, int request, ...) SECTION code_fcntl PUBLIC _ioctl EXTERN asm_ioctl _ioctl: push ix call asm_ioctl pop ix ret
8.888889
41
0.65
43177d16a7d3e456e4c4233441cb8f6503597e6d
529
asm
Assembly
smsq/uq/wtext.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
smsq/uq/wtext.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
smsq/uq/wtext.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
; Write message routine QL compatible  1989 Tony Tebby section uq xdef uq_wtext include 'dev8_keys_qdos_io' uq_wtext uwt.reg reg d1/d2/a1 moveq #forever,d3 ; assume wait move.l a0,d0 ; channel 0? bne.s uwt_do ; ... no moveq #no.wait,d3 ; ... yes, no wait bsr.s uwt_do ; try beq.s uwt_rts m...
18.892857
58
0.654064
6669a40c0565f91b53283c811fdec18055e995b3
87
asm
Assembly
dying-light/Sources/Assembly/foo.asm
0xvpr/Dying-Light-Trainer
5e159d5875f0e32f842695f163ff883ee8949614
[ "MIT" ]
2
2021-12-15T07:21:45.000Z
2022-03-29T04:46:19.000Z
dying-light/Sources/Assembly/foo.asm
0xvpr/Dying-Light-Trainer
5e159d5875f0e32f842695f163ff883ee8949614
[ "MIT" ]
null
null
null
dying-light/Sources/Assembly/foo.asm
0xvpr/Dying-Light-Trainer
5e159d5875f0e32f842695f163ff883ee8949614
[ "MIT" ]
1
2021-12-14T01:38:05.000Z
2021-12-14T01:38:05.000Z
.data .code foo proc xor eax, eax mov eax, 045h ret foo endp end
7.909091
21
0.54023
008f3ba7a66136d9e2cbe5fcb2bb21340c255059
1,979
asm
Assembly
programs/oeis/211/A211520.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/211/A211520.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/211/A211520.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A211520: Number of ordered triples (w,x,y) with all terms in {1,...,n} and w + 4y = 2x. ; 0,0,0,1,2,3,5,7,10,12,16,19,24,27,33,37,44,48,56,61,70,75,85,91,102,108,120,127,140,147,161,169,184,192,208,217,234,243,261,271,290,300,320,331,352,363,385,397,420,432,456,469,494,507,533,547,574,588,616,631,660,675,705,721,752,...
33.542373
1,163
0.629611
809b901c7ce0ea08610e6cb0899d43556fb5676b
538
asm
Assembly
oeis/347/A347325.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
null
null
null
oeis/347/A347325.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
null
null
null
oeis/347/A347325.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
null
null
null
; A347325: Solution to the spectator-first Tantalizer problem. ; Submitted by Christian Krause ; 1,2,2,2,2,4,4,6,6,8,8,6,6,8,8,6,6,8,8,6,6,8,8,14,14,16,16,14,14,16,16,22,22,24,24,22,22,24,24,30,30,32,32,30,30,32,32,22,22,24,24,22,22,24,24,30,30,32,32,30,30,32,32,22,22,24,24,22,22,24,24,30,30,32,32,30,30,32,32,22,22,24,...
59.777778
278
0.693309
3cec89063c010896766350512d7b5e8286a1e57b
1,724
asm
Assembly
compiled/useasm.asm
GGN-2015/Coffee
6119f51917604930299a0119bc0a4e19843aaa4b
[ "MIT" ]
1
2022-03-13T11:08:45.000Z
2022-03-13T11:08:45.000Z
compiled/useasm.asm
GGN-2015/Coffee
6119f51917604930299a0119bc0a4e19843aaa4b
[ "MIT" ]
null
null
null
compiled/useasm.asm
GGN-2015/Coffee
6119f51917604930299a0119bc0a4e19843aaa4b
[ "MIT" ]
null
null
null
STACKSG SEGMENT STACK GLOBAL_compact_buffer DW 129 DUP(0) DW 104,101,108,108,111,32,105,110,110,101 DW 114,32,65,83,77,33,36,0 DW 16237 DUP(0) STACKSG ENDS CODESG SEGMENT ASSUME CS:CODESG, DS:STACKSG, SS:STACKSG FUNC_compact: ; localVar: 1, arguCnt: 1 PUSH BP MOV BP, SP SUB SP,...
23.944444
55
0.558585
e7d024c60124d7bfd32c9a141864ce049bd3b835
1,184
asm
Assembly
original version (1984)/asm/map19-exec.asm
fa8ntomas/bclk-samples
6e7f054eb4b96ca011ffb2ea49226146b001274b
[ "MIT" ]
null
null
null
original version (1984)/asm/map19-exec.asm
fa8ntomas/bclk-samples
6e7f054eb4b96ca011ffb2ea49226146b001274b
[ "MIT" ]
null
null
null
original version (1984)/asm/map19-exec.asm
fa8ntomas/bclk-samples
6e7f054eb4b96ca011ffb2ea49226146b001274b
[ "MIT" ]
null
null
null
; Map 19 exec ; CONGRATULATIONS! lda Timer1 ora Timer2 bne L396A ; Wait timer finished, ready for next round inc FTYPE lda CurrentPlayer asl asl tax ldy #$03 lda #$01 L3948 sta L013C,X ...
20.77193
64
0.433277
2b2c5ecfad4274df0c9c4506de233b2df886b0ef
8,029
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_493.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_493.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_493.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_UC_ht+0x8d47, %rsi lea addresses_WC_ht+0x9547, %rdi nop nop lfence mov $69, %rcx rep movsq nop nop nop nop nop sub %rdi, %rdi lea addresses_D_ht+0x19947, %rsi lea addresses_UC_ht+0x1...
33.177686
2,999
0.662972
70240bfd57a3ff35f860a08012ec178a4b5891af
635
asm
Assembly
programs/oeis/247/A247215.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/247/A247215.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/247/A247215.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A247215: Integers k such that 3k+1 and 6k+1 are both squares. ; 0,8,280,9520,323408,10986360,373212840,12678250208,430687294240,14630689753960,497012764340408,16883803297819920,573552299361536880,19483894374994434008,661878856450449219400,22484397224940279025600,763807626791519037651008,25946974913686707001108680,881...
90.714286
446
0.837795
4f8d40625a2cbb65b0d4f0e88d5c31ff646c6a33
208
asm
Assembly
libsrc/_DEVELOPMENT/alloc/malloc/c/sdcc_iy/malloc_unlocked_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/alloc/malloc/c/sdcc_iy/malloc_unlocked_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/alloc/malloc/c/sdcc_iy/malloc_unlocked_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; void *malloc_unlocked_fastcall(size_t size) SECTION code_clib SECTION code_alloc_malloc PUBLIC _malloc_unlocked_fastcall EXTERN asm_malloc_unlocked defc _malloc_unlocked_fastcall = asm_malloc_unlocked
17.333333
52
0.875
42acc09f803ca417c8a3dc1c15ee7ae3dfb26983
1,461
asm
Assembly
programs/oeis/181/A181900.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/181/A181900.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/181/A181900.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A181900: a(n) = A022998(n) * n. ; 0,1,8,9,32,25,72,49,128,81,200,121,288,169,392,225,512,289,648,361,800,441,968,529,1152,625,1352,729,1568,841,1800,961,2048,1089,2312,1225,2592,1369,2888,1521,3200,1681,3528,1849,3872,2025,4232,2209,4608,2401,5000,2601,5408,2809,5832,3025,6272,3249,6728,3481,7200,3721,7688,3969,8192,...
182.625
1,387
0.803559
a982cfa57b06416ffecdeb562133d29d127eb202
1,929
asm
Assembly
programs/oeis/014/A014480.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/014/A014480.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/014/A014480.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A014480: Expansion of (1+2*x)/(1-2*x)^2. ; 1,6,20,56,144,352,832,1920,4352,9728,21504,47104,102400,221184,475136,1015808,2162688,4587520,9699328,20447232,42991616,90177536,188743680,394264576,822083584,1711276032,3556769792,7381975040,15300820992,31675383808,65498251264,135291469824,279172874240,575525617664,11854109...
192.9
1,827
0.923276
1bdd43f140ad6bbd18390c97b3b8a7757ae9dd9f
1,595
asm
Assembly
macros.6502.asm
mikroman/lib-acorn-bbc-main_KICK
e43c1b773644f6f816100f887eddb5b48a22c56a
[ "MIT" ]
null
null
null
macros.6502.asm
mikroman/lib-acorn-bbc-main_KICK
e43c1b773644f6f816100f887eddb5b48a22c56a
[ "MIT" ]
null
null
null
macros.6502.asm
mikroman/lib-acorn-bbc-main_KICK
e43c1b773644f6f816100f887eddb5b48a22c56a
[ "MIT" ]
null
null
null
// // title: macros // author: dean belfield // created: 25/10/2020 // last updated: 25/10/2020 // // requires: // // modinfo: // .macro add (value){ clc adc value } .macro sub (value){ sec sbc value } .macro cpl(){ eor #$ff } .macro neg(){ cpl() adc #1 } ...
12.862903
32
0.532288
42b4e9d3f3d6ae466f3e1d1740280a4d90e0dbac
333
asm
Assembly
examples/ping/game_states.asm
sgadrat/nine-gine
67270342ac022c703d2ba64e9490c1b8fb76470a
[ "WTFPL" ]
6
2018-05-22T16:19:36.000Z
2021-03-28T22:11:10.000Z
examples/ping/game_states.asm
sgadrat/nine-gine
67270342ac022c703d2ba64e9490c1b8fb76470a
[ "WTFPL" ]
null
null
null
examples/ping/game_states.asm
sgadrat/nine-gine
67270342ac022c703d2ba64e9490c1b8fb76470a
[ "WTFPL" ]
null
null
null
; Subroutine called when the state change to this state game_states_init: VECTOR(title_screen_init) VECTOR(ingame_init) ; Subroutine called each frame game_states_tick: VECTOR(title_screen_tick) VECTOR(ingame_tick) #define GAME_STATE_TITLE 0 #define GAME_STATE_INGAME 1 #include "game/title_screen.asm" #include "game...
20.8125
55
0.825826
daf559aa6fbf0d243c49d6caa2d24506f63497a7
98,512
asm
Assembly
oslab6/obj/user/testbss.asm
jasha64/OperatingSystems-lab
25a473adb754171d5c10c6bde391e0e07a2a43de
[ "MIT" ]
null
null
null
oslab6/obj/user/testbss.asm
jasha64/OperatingSystems-lab
25a473adb754171d5c10c6bde391e0e07a2a43de
[ "MIT" ]
null
null
null
oslab6/obj/user/testbss.asm
jasha64/OperatingSystems-lab
25a473adb754171d5c10c6bde391e0e07a2a43de
[ "MIT" ]
null
null
null
obj/user/testbss.debug: 文件格式 elf32-i386 Disassembly of section .text: 00800020 <_start>: // starts us running when we are initially loaded into a new environment. .text .globl _start _start: // See if we were started with arguments on the stack cmpl $USTACKTOP, %esp 800020: 81 fc 00 e0 bf ee cmp $0xe...
40.757964
91
0.457092
4987d10dbf08e717602a3454fc0993719c2c3339
79,518
asm
Assembly
src/intf/video/scalers/hq4x32.asm
tt-arcade/fba-pi
10407847a98f0d315b05e44f0ecf01824f4558aa
[ "Apache-2.0" ]
null
null
null
src/intf/video/scalers/hq4x32.asm
tt-arcade/fba-pi
10407847a98f0d315b05e44f0ecf01824f4558aa
[ "Apache-2.0" ]
null
null
null
src/intf/video/scalers/hq4x32.asm
tt-arcade/fba-pi
10407847a98f0d315b05e44f0ecf01824f4558aa
[ "Apache-2.0" ]
null
null
null
;hq4x filter ;---------------------------------------------------------- ;Copyright (C) 2003 MaxSt ( maxst@hiend3d.com ) ; ;This program is free software; you can redistribute it and/or ;modify it under the terms of the GNU General Public License ;as published by the Free Software Foundation; either ;version 2 of the L...
19.800299
151
0.668792
41887fbb655dc50d1c31af6c8e0c6c6b4f4372d5
619
asm
Assembly
oeis/010/A010544.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/010/A010544.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/010/A010544.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A010544: Decimal expansion of square root of 93. ; 9,6,4,3,6,5,0,7,6,0,9,9,2,9,5,4,9,9,5,7,6,0,0,3,1,0,4,7,4,3,2,6,6,3,1,8,3,9,0,6,9,0,3,6,9,3,0,6,3,2,5,2,4,0,7,3,0,0,1,7,6,8,8,7,7,3,1,2,8,6,4,1,8,6,6,8,6,4,9,7,2,2,9,0,0,0,5,4,7,0,9,2,9,3,6,0,8,5,9,1 mov $1,1 mov $2,1 mov $3,$0 add $3,8 mov $4,$0 add $4,3 mul $4,2 m...
15.871795
201
0.50727
1839c5843148902f5302cc0ea7d053599b25961a
1,112
asm
Assembly
vgm_demo.asm
hexwab/vgm-player-bbc
50a54c9341d888a34b81edbd579b9e5bc7c2c333
[ "MIT" ]
null
null
null
vgm_demo.asm
hexwab/vgm-player-bbc
50a54c9341d888a34b81edbd579b9e5bc7c2c333
[ "MIT" ]
null
null
null
vgm_demo.asm
hexwab/vgm-player-bbc
50a54c9341d888a34b81edbd579b9e5bc7c2c333
[ "MIT" ]
null
null
null
ORG $80 ; where we want our zero-page vars EXO_buffer_len = 1024 ; this must match the parameter -m EXO_buffer_start = $7000 EXO_table = $7b00 ; 156-byte table INCLUDE "lib/exomiser.h.asm" ORG &1900 .start INCLUDE "lib/exomiser.asm" INCLUDE "lib/vgmplayer.asm" INCLUDE "lib/irq.asm" LOOP = TRUE .event_handler { ph...
15.232877
102
0.732014
0a4f344bda661f9d52cfa6f2389050ab861b8327
70
asm
Assembly
test/asm/jump_forward.asm
renatocf/MAC0242-PROJECT
fa60db8b43a595b9cbd50bb04652a5ffb03dac8a
[ "Apache-2.0" ]
1
2016-07-07T23:45:43.000Z
2016-07-07T23:45:43.000Z
test/asm/jump_forward.asm
renatocf/MAC0242-PROJECT
fa60db8b43a595b9cbd50bb04652a5ffb03dac8a
[ "Apache-2.0" ]
null
null
null
test/asm/jump_forward.asm
renatocf/MAC0242-PROJECT
fa60db8b43a595b9cbd50bb04652a5ffb03dac8a
[ "Apache-2.0" ]
null
null
null
JMP JMP END: PUSH 314159265 PRN END JMP: JMP END
10
19
0.528571
ecb10311784b13014edc5b783fe30bdda2c4653d
540
asm
Assembly
oeis/017/A017375.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/017/A017375.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/017/A017375.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A017375: a(n) = (10*n + 8)^11. ; 8589934592,64268410079232,8293509467471872,238572050223552512,3116402981210161152,24986644000165537792,143746751770690322432,650190514836423555072,2450808588882738675712,8007313507497959524352,23316389970546096340992,61759259534823101765632,151115727451828646838272,3456765750992454169...
77.142857
476
0.9
e29ea95e6e5a3291c256a404f05220a4291ace02
281
asm
Assembly
libsrc/_DEVELOPMENT/compress/aplib/c/sdcc/sms_aplib_depack_vram_callee.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/compress/aplib/c/sdcc/sms_aplib_depack_vram_callee.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/compress/aplib/c/sdcc/sms_aplib_depack_vram_callee.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; void sms_aplib_depack_vram_callee(void *dst, void *src) SECTION code_clib SECTION code_compress_aplib PUBLIC _sms_aplib_depack_vram_callee EXTERN asm_sms_aplib_depack_vram _sms_aplib_depack_vram_callee: pop hl pop de ex (sp),hl jp asm_sms_aplib_depack_vram
15.611111
57
0.80427
e59583e3fe1544d81c0e93e950a9001ed8671069
614
asm
Assembly
src/iloveretroworks_a.mus.asm
fjpena/genesis-zx
78ec682415f51179e928fe37bd75c6f1e75d987a
[ "MIT" ]
3
2019-04-08T06:33:11.000Z
2022-01-08T09:19:49.000Z
src/iloveretroworks_a.mus.asm
fjpena/genesis-zx
78ec682415f51179e928fe37bd75c6f1e75d987a
[ "MIT" ]
null
null
null
src/iloveretroworks_a.mus.asm
fjpena/genesis-zx
78ec682415f51179e928fe37bd75c6f1e75d987a
[ "MIT" ]
null
null
null
PAUTA_1: DB 14,0,13,0,12,-2,11,2,10,-1,10,1,128+2 PAUTA_2: DB 14,0,13,0,12,-2,11,2,10,-1,10,1,128+2 PAUTA_3: DB 15,0,14,0,13,0,12,0,11,0,10,-1,9,0,8,1,7,1,6,0,5,-1,4,-1,3,0,2,1,1,1,0,0,128+1 PAUTA_4: DB 15,0,14,0,13,0,44,0,75,0,10,0,41,0,72,0,7,0,38,0,70,0,6,0,37,0,69,0,5,0,36,0,68,0,4,0,35,0,3,0,3,0,34,0,66,0,2,0...
47.230769
147
0.583062
c87aa7f10d7b991677c86e37fb64203d77af3548
7,189
asm
Assembly
P6/data_P6_2/cal_R_test29.asm
alxzzhou/BUAA_CO_2020
b54bf367081a5a11701ebc3fc78a23494aecca9e
[ "Apache-2.0" ]
1
2022-01-23T09:24:47.000Z
2022-01-23T09:24:47.000Z
P6/data_P6_2/cal_R_test29.asm
alxzzhou/BUAA_CO_2020
b54bf367081a5a11701ebc3fc78a23494aecca9e
[ "Apache-2.0" ]
null
null
null
P6/data_P6_2/cal_R_test29.asm
alxzzhou/BUAA_CO_2020
b54bf367081a5a11701ebc3fc78a23494aecca9e
[ "Apache-2.0" ]
null
null
null
lui $1,29057 ori $1,$1,19612 lui $2,59888 ori $2,$2,34069 lui $3,28681 ori $3,$3,61336 lui $4,1422 ori $4,$4,10618 lui $5,54828 ori $5,$5,56767 lui $6,36499 ori $6,$6,59257 mthi $1 mtlo $2 sec0: nop nop nop or $4,$6,$2 sec1: nop nop nor $2,$1,$4 or $3,$6,$2 sec2: nop nop slti $2,$3,-7968 or $4,$6,$2 sec3: ...
11.232813
19
0.513562
ccb18a9beb90f47a3894c255bd4d4900815dd059
3,081
asm
Assembly
tests/expressions/operators.asm
fengjixuchui/sjasmplus
df0fabd2411bf89e23637fce46d273f52dafbe16
[ "BSD-3-Clause" ]
220
2016-10-22T19:44:39.000Z
2022-03-29T20:57:04.000Z
tests/expressions/operators.asm
ped7g/sjasmplus
487635c8057cd5594c372d9b70bc00a3f3a1ecc4
[ "BSD-3-Clause" ]
153
2018-05-07T10:31:23.000Z
2022-03-30T04:35:59.000Z
tests/expressions/operators.asm
ped7g/sjasmplus
487635c8057cd5594c372d9b70bc00a3f3a1ecc4
[ "BSD-3-Clause" ]
51
2016-05-12T21:27:36.000Z
2022-03-27T15:16:16.000Z
; simple tests of each operator DW +0x1234, -0x1234 DW ~0x1234 DW !0x1234, not 0x1234 DW low 0x1234, high 0x1234 DW 0x123 + 0x4560, 0x123 - 0x4560 DW 0x12 * 0x34, 0x3456 / 0x12 DW 0x3456 % 0x12, 0x3456 mod 0x12 DW 0x1234 << 3, 0x1234 shl 3 DW -17768 >> 3, -17768 shr 3 ...
32.431579
112
0.581305
accbf7ee02d1cdc4630c79b2e50a50762e979030
408
asm
Assembly
src/c64/macros.asm
apvilkko/jane8-musicdisk
86d1ffa8c268f782b23e2b0bb32c62620eadfb58
[ "MIT" ]
null
null
null
src/c64/macros.asm
apvilkko/jane8-musicdisk
86d1ffa8c268f782b23e2b0bb32c62620eadfb58
[ "MIT" ]
null
null
null
src/c64/macros.asm
apvilkko/jane8-musicdisk
86d1ffa8c268f782b23e2b0bb32c62620eadfb58
[ "MIT" ]
null
null
null
macro print,val,pos pha lda \1 and #%11110000 lsr lsr lsr lsr clc adc #$30 sta $0400+\2 lda \1 and #%00001111 clc adc #$30 sta $0401+\2 pla endmacro macro inc16,val,label inc \1 bne \2 inc \1+1 \2: endmacro macro pushall pha txa pha ...
9.714286
23
0.52451
15278bb69438d338f6c89f2822a70d6c35a156e9
4,085
asm
Assembly
Kernel/Architecture/x86/i386/Entrypoint.asm
UltraOS/Ultra
287035fea303767285e48e5c7867d147790ff55b
[ "Apache-2.0" ]
44
2020-07-09T07:31:43.000Z
2022-03-29T20:55:01.000Z
Kernel/Architecture/x86/i386/Entrypoint.asm
8infy/UltraOS
2ed2879c96a7095b5077df5ba5db5b30a6565417
[ "Apache-2.0" ]
3
2021-04-24T13:53:53.000Z
2021-09-27T05:50:28.000Z
Kernel/Architecture/x86/i386/Entrypoint.asm
8infy/UltraOS
2ed2879c96a7095b5077df5ba5db5b30a6565417
[ "Apache-2.0" ]
3
2021-03-01T09:29:12.000Z
2021-06-25T17:06:27.000Z
%define KERNEL_ENTRYPOINT _ZN6kernel3runEPNS_13LoaderContextE extern KERNEL_ENTRYPOINT %define KB (1024) %define MB (1024 * KB) KERNEL_SIZE: equ 3 * MB PAGE_SIZE: equ 4096 ENTRY_COUNT: equ 1024 VIRTUAL_ORIGIN: equ 0xC0000000 KERNEL_ORIGIN: equ 0xC0100000 PRESENT: equ 0b01 READWRITE: equ 0b10...
23.612717
103
0.701102
deb4f31c3f164d47ed3073aef86dbdafcc367d73
1,231
asm
Assembly
Tareas/tareaBG1.asm
adeandak/OPC
4384259c5f4e46d67a6c4417ea72953a62ccd901
[ "MIT" ]
null
null
null
Tareas/tareaBG1.asm
adeandak/OPC
4384259c5f4e46d67a6c4417ea72953a62ccd901
[ "MIT" ]
null
null
null
Tareas/tareaBG1.asm
adeandak/OPC
4384259c5f4e46d67a6c4417ea72953a62ccd901
[ "MIT" ]
null
null
null
INCLUDE \masm32\Irvine\Irvine32.inc INCLUDELIB \masm32\Irvine\Irvine32.lib INCLUDELIB \masm32\Irvine\User32.lib INCLUDELIB \masm32\Irvine\Kernel32.lib .DATA A SDWORD 7 B SDWORD ? D SDWORD -15 R SDWORD ? texto BYTE "DATO:", 0 textor BYTE "El resultado R=", 0 textorh BYTE "El resultado Rh=", 0 textofin BYTE...
16.863014
52
0.593826
eeea3a27293c9288537374a532f8aadca77d1b36
5,794
asm
Assembly
src/shaders/post_processing/gen5_6/Common/PL4x8_Save_NV11.asm
martin-kokos/intel-vaapi-driver
3ed3f6a783fdfff3fa1b567888518dcbda7eb2a3
[ "MIT" ]
192
2018-01-26T11:51:55.000Z
2022-03-25T20:04:19.000Z
src/shaders/post_processing/gen5_6/Common/PL4x8_Save_NV11.asm
martin-kokos/intel-vaapi-driver
3ed3f6a783fdfff3fa1b567888518dcbda7eb2a3
[ "MIT" ]
256
2017-01-23T02:10:27.000Z
2018-01-23T10:00:05.000Z
src/shaders/post_processing/gen5_6/Common/PL4x8_Save_NV11.asm
martin-kokos/intel-vaapi-driver
3ed3f6a783fdfff3fa1b567888518dcbda7eb2a3
[ "MIT" ]
64
2018-01-30T19:51:53.000Z
2021-11-24T01:26:14.000Z
/* * All Video Processing kernels * Copyright © <2010>, Intel Corporation. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the ri...
49.521368
152
0.578875
fe23635a046d5ef011e4808263c30505a84ca224
640
asm
Assembly
oeis/083/A083231.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/083/A083231.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/083/A083231.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A083231: a(n) = (3*5^n + (-3)^n)/4. ; Submitted by Jamie Morken(s2) ; 1,3,21,87,489,2283,11901,58047,294609,1459923,7338981,36576807,183238329,915128763,4578832461,22884596367,114451679649,572172304803,2861119804341,14304824180727,71526445426569,357625253564043,1788147188526621,8940673180513887,44703554188927089,2235...
49.230769
491
0.832813
aa7b274eb92328bc608e3c8c85a747feaef6dae1
1,042
asm
Assembly
Examples/ch07/Express.asm
satadriver/LiunuxOS
693174ac2b3e503d72782fc7a14f18c8a4f2756c
[ "Apache-2.0" ]
null
null
null
Examples/ch07/Express.asm
satadriver/LiunuxOS
693174ac2b3e503d72782fc7a14f18c8a4f2756c
[ "Apache-2.0" ]
null
null
null
Examples/ch07/Express.asm
satadriver/LiunuxOS
693174ac2b3e503d72782fc7a14f18c8a4f2756c
[ "Apache-2.0" ]
null
null
null
TITLE Unsigned Arithmetic Expressions (Express.asm) INCLUDE Irvine16.inc .data msg1 BYTE "Unsigned overflow!",0dh,0ah,0 var1 DWORD 3 var2 DWORD 6 var3 DWORD 4 var4 DWORD ? .code main PROC mov ax,@data mov ds,ax ;Divide Overflow example: mov ax,1000h mov bl,0 div bl jmp quit ;...
16.539683
59
0.637236
e48e787a1e954aabdc18cbea8b273f5f57900058
88,651
asm
Assembly
MINIGAME.asm
alexjime/asm-minigame
ff59684fcc4efdf1fd9c411cac9331d6a480cbaf
[ "MIT" ]
2
2019-06-06T07:28:29.000Z
2019-06-06T07:46:16.000Z
MINIGAME.asm
alexjime/asm-minigame
ff59684fcc4efdf1fd9c411cac9331d6a480cbaf
[ "MIT" ]
1
2019-06-07T10:15:34.000Z
2019-06-07T10:15:34.000Z
MINIGAME.asm
hungry-shark/asm-minigame
ff59684fcc4efdf1fd9c411cac9331d6a480cbaf
[ "MIT" ]
4
2019-06-06T07:28:15.000Z
2019-06-06T07:52:04.000Z
TITLE START_GAME.asm INCLUDE Irvine32.inc INCLUDE macros.inc .data ;########################## Menu variables ########################## choose_menu_num DWORD 0 ; Choose_Menu input print_made_by_input BYTE ? ; restart reply Y/N ;################### Rock-Scissors-Paper Variables ################## randVal DWORD ?...
46.732209
134
0.253003
4b29d963fc0df25ac8a91f0e53dd62dc987d0942
4,918
asm
Assembly
examples/asm/div_test/div_test2.asm
Basman74/Sweet32
f09dc54edba0c986067913d0d0f021e3e251ec3f
[ "BSD-2-Clause-FreeBSD" ]
29
2015-10-28T01:54:36.000Z
2021-06-01T13:32:21.000Z
examples/asm/div_test/div_test2.asm
Basman74/Sweet32
f09dc54edba0c986067913d0d0f021e3e251ec3f
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
examples/asm/div_test/div_test2.asm
Basman74/Sweet32
f09dc54edba0c986067913d0d0f021e3e251ec3f
[ "BSD-2-Clause-FreeBSD" ]
4
2017-07-30T13:39:48.000Z
2021-05-01T10:58:11.000Z
; ********* Sweet32 SoC - Software division routine test program ; ********* Author: Valentin Angelovski ; ********* Created: 11/11/2014 ; ; This program prints a 16/16 unsigned division result to ; the UART based on 16bit constants loaded into R2 and R3 ; ; Note: This program uses a simple 2-level deep stack in the f...
24.838384
94
0.655348
85899b7126f9e9c63d0327f165ba1cffae3e9f78
391
asm
Assembly
oeis/112/A112553.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/112/A112553.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/112/A112553.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A112553: Expansion of 1/( (1+x^2)*(1-x+x^2) ). ; Submitted by Jon Maiga ; 1,1,-1,-2,0,2,1,-1,-1,0,0,0,1,1,-1,-2,0,2,1,-1,-1,0,0,0,1,1,-1,-2,0,2,1,-1,-1,0,0,0,1,1,-1,-2,0,2,1,-1,-1,0,0,0,1,1,-1,-2,0,2,1,-1,-1,0,0,0,1,1,-1,-2,0,2,1,-1,-1,0,0,0 mov $1,1 lpb $0 sub $0,1 mov $5,$1 mov $1,$2 add $1,1 mul $5,2 ...
20.578947
169
0.470588
d9cab4ca18301bc723a698e7ffe41b17acda41eb
4,671
asm
Assembly
boot/pmode_loader.asm
spevans/hello-swift
51af71dcd1d3719af33b4e20e333e80e812ed059
[ "Unlicense" ]
null
null
null
boot/pmode_loader.asm
spevans/hello-swift
51af71dcd1d3719af33b4e20e333e80e812ed059
[ "Unlicense" ]
null
null
null
boot/pmode_loader.asm
spevans/hello-swift
51af71dcd1d3719af33b4e20e333e80e812ed059
[ "Unlicense" ]
null
null
null
;;; boot/pmode_loader.asm ;;; ;;; Copyright © 2015 Simon Evans. All rights reserved. ;;; ;;; Loads the kernel into the memory starting @ 1MB ;;; It uses multiple bios calls to load the code in chunks and then ;;; switches into 32bit PM to copy the code to the correct place before ;;; switching back to realmode to load ...
29.377358
77
0.512738
080fef0b21ca6e6faaf6c474f691011c308502f0
99
asm
Assembly
src/kernel/arch/i386/cpu/I386GDTAsm.asm
jameskingstonclarke/arctic
6fec04809d6175689477abfe21416f33e63cb177
[ "MIT" ]
1
2021-02-01T19:28:02.000Z
2021-02-01T19:28:02.000Z
src/kernel/arch/i386/cpu/I386GDTAsm.asm
jameskingstonclarke/arctic
6fec04809d6175689477abfe21416f33e63cb177
[ "MIT" ]
9
2021-02-07T15:46:11.000Z
2021-02-18T08:25:42.000Z
src/kernel/arch/i386/cpu/I386GDTAsm.asm
jameskingstonclarke/arctic
6fec04809d6175689477abfe21416f33e63cb177
[ "MIT" ]
null
null
null
section .text global set_gdt set_gdt: cli mov eax, [esp+4] lgdt [eax] ret
11
21
0.545455
8a31086c0744d4e9e7686a6238a7733e95f30a34
451
asm
Assembly
oeis/274/A274707.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/274/A274707.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/274/A274707.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A274707: a(n) = A(n) if n is even else a(n) = A(n)*(n-1)/(n+1) with A(n) = ((n-1)!/ floor((n-1)/2)!^2). ; Submitted by Christian Krause ; 0,1,1,6,4,30,15,140,56,630,210,2772,792,12012,3003,51480,11440,218790,43758,923780,167960,3879876,646646,16224936,2496144,67603900,9657700,280816200,37442160,1163381400,145422675,4...
32.214286
224
0.682927
3fd2af5abee40a3736174478dc7fc90a3eefe301
1,135
asm
Assembly
alloc/minidata.asm
DigitalMars/optlink
493de158282046641ef2a3a60a88e25e26d88ec4
[ "BSL-1.0" ]
28
2015-02-03T01:38:24.000Z
2022-03-23T05:48:24.000Z
alloc/minidata.asm
DigitalMars/optlink
493de158282046641ef2a3a60a88e25e26d88ec4
[ "BSL-1.0" ]
20
2015-01-02T14:51:20.000Z
2021-01-09T21:37:19.000Z
alloc/minidata.asm
DigitalMars/optlink
493de158282046641ef2a3a60a88e25e26d88ec4
[ "BSL-1.0" ]
9
2015-02-11T17:43:56.000Z
2019-09-05T11:07:02.000Z
TITLE MINIDATA - Copyright (c) SLR Systems 1994 INCLUDE MACROS ; PUBLIC _release_minidata ; PUBLIC RELEASE_MINIDATA .CODE ROOT_TEXT EXTERNDEF _release_block:proc EXTERNDEF _release_minidata:proc ;_release_minidata proc ; mov EAX,4[ESP] ;_release_minidata endp RELEASE_MINIDATA PROC push EAX call ...
12.336957
49
0.684581
8e8ff5e4b3298d697710f2bd829de9ed49c0a483
245
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/invsqrt.asm
witchcraft2001/z88dk
11adca337a4125aff611ddfdf3fc2401e8dda5b2
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/invsqrt.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/invsqrt.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_fp_math16 PUBLIC invsqrtf16 EXTERN asm_f16_invsqrt defc invsqrtf16 = asm_f16_invsqrt ; SDCC bridge for Classic IF __CLASSIC PUBLIC _invsqrtf16 EXTERN cm16_sdcc_invsqrt defc _invsqrtf16 = cm16_sdcc_invsqrt ENDIF
15.3125
37
0.795918
ec261555c2dcc3156320c412108c462d823619dc
385
asm
Assembly
asm/exercise_7.1/log.asm
severinkaderli/BTI7061-CSBas
3eab8432b98d1ad3ec3c80eb1e779710689eba9b
[ "MIT" ]
1
2018-09-18T19:03:59.000Z
2018-09-18T19:03:59.000Z
asm/exercise_7.1/log.asm
severinkaderli/BTI7061-CSBas
3eab8432b98d1ad3ec3c80eb1e779710689eba9b
[ "MIT" ]
null
null
null
asm/exercise_7.1/log.asm
severinkaderli/BTI7061-CSBas
3eab8432b98d1ad3ec3c80eb1e779710689eba9b
[ "MIT" ]
null
null
null
section .data Number: db 0x20 section .bss StringBuffer: resb 16 section .text global _start EXTERN printText, printNewline, convertNumberToString, binaryLog _start: mov al, [Number] call binaryLog mov rax, rbx mov rbx, StringBuffer call convertNumberToString mov rcx, StringBuffer mov rdx, 16 call print...
14.259259
64
0.761039
d79ac804408c8fa0bc5e641533c673f7a6007fd0
23,393
asm
Assembly
5.Code.Generation/test/codegen/test04.asm
alapha23/SNUPL1
660b79244c14672fd591f064bbc358cc7141cdf2
[ "Unlicense" ]
3
2017-10-31T12:27:52.000Z
2017-11-12T08:03:29.000Z
5.Code.Generation/test/codegen/test04.asm
alapha23/SNUPL1
660b79244c14672fd591f064bbc358cc7141cdf2
[ "Unlicense" ]
null
null
null
5.Code.Generation/test/codegen/test04.asm
alapha23/SNUPL1
660b79244c14672fd591f064bbc358cc7141cdf2
[ "Unlicense" ]
null
null
null
test04: file format elf32-i386 Disassembly of section .init: 08048268 <_init>: 8048268: 53 push %ebx 8048269: 83 ec 08 sub $0x8,%esp 804826c: e8 7f 00 00 00 call 80482f0 <__x86.get_pc_thunk.bx> 8048271: 81 c3 8f 1d 00 00 add $0x1d8f,%ebx 8048277: 8b 83 f...
45.511673
75
0.478519
69cfca43808b94e12b22cdf1ca131d41907fd39b
185
asm
Assembly
libsrc/_DEVELOPMENT/adt/p_list/c/sdcc_iy/p_list_prev_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/adt/p_list/c/sdcc_iy/p_list_prev_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/adt/p_list/c/sdcc_iy/p_list_prev_fastcall.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; void *p_list_prev_fastcall(void *item) SECTION code_clib SECTION code_adt_p_list PUBLIC _p_list_prev_fastcall EXTERN asm_p_list_prev defc _p_list_prev_fastcall = asm_p_list_prev
15.416667
44
0.854054
4d120cd61d4334f5783fe1387314cd725848600a
91
asm
Assembly
src/third_party/nasm/travis/test/br3189064.asm
Mr-Sheep/naiveproxy
9f6e9768295f6d1d41517a15a621d4756bd7d6be
[ "BSD-3-Clause" ]
2,219
2018-03-26T02:57:34.000Z
2022-03-31T00:27:59.000Z
src/third_party/nasm/travis/test/br3189064.asm
Mr-Sheep/naiveproxy
9f6e9768295f6d1d41517a15a621d4756bd7d6be
[ "BSD-3-Clause" ]
250
2018-02-02T23:16:57.000Z
2022-03-21T06:09:53.000Z
src/third_party/nasm/travis/test/br3189064.asm
Mr-Sheep/naiveproxy
9f6e9768295f6d1d41517a15a621d4756bd7d6be
[ "BSD-3-Clause" ]
473
2019-03-24T16:34:23.000Z
2022-03-31T02:01:05.000Z
[bits 64] vmaskmovps [edi],ymm0,ymm1 vextractf128 xmm0,ymm1,1 vextractf128 [edi],ymm1,1
18.2
27
0.747253
d6ef65be5292d61dc06175ded492f9b118747153
7,344
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_903.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_903.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_903.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r14 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0x756b, %r8 nop nop nop nop dec %r10 movw $0x6162, (%r8) nop nop nop nop nop and $62021, %r14 lea addresses_normal_ht+0x6363, %rsi lea addresses_WC_ht+0xb5fb, %rdi nop nop nop ...
35.478261
2,999
0.659041
87cfedec4d7bbebc41ab33717ad47558c1fbdd27
7,854
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_105.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_105.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_105.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r15 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x1a335, %rsi lea addresses_UC_ht+0xa9b5, %rdi nop cmp $4449, %r14 mov $51, %rcx rep movsl nop nop nop and $2283, %r13 lea addresses_A_ht+0x15e0d, %rax nop nop nop nop inc...
36.361111
2,999
0.658773
3363f9894887c43450053803a29468bfd63a8364
3,864
asm
Assembly
basic/src/commands/for.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
13
2020-03-31T08:21:22.000Z
2021-07-28T20:03:29.000Z
basic/src/commands/for.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
37
2020-03-31T06:35:37.000Z
2020-09-17T08:56:48.000Z
basic/src/commands/for.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
5
2020-05-10T10:23:06.000Z
2022-01-14T02:21:02.000Z
; ***************************************************************************** ; ***************************************************************************** ; ; Name: for.asm ; Purpose: For/Next ; Created: 10th March 2020 ; Reviewed: 17th March 2020 ; Author: Paul Robson (paul@robsons.org.uk) ; ; ***********...
29.052632
79
0.520704
3b85f5dbad22eb60644a90ab821731f89914276f
723
asm
Assembly
programs/oeis/219/A219657.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/219/A219657.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/219/A219657.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A219657: Positions of zeros in A219659. ; 0,2,5,8,12,16,21,26,32,38,44,50,57,64,71,78,86,94,102,110,119,128,137,146,156,166,177,188,199,210,222,234,246,258,271,284,297,310,324,338,352,366,381,396,411,426,441,456,472,488,504,520,537,554,571,588,606,624,642,660,679,698,717,736,755,774,794,814,834,854,874,894,915,936,95...
40.166667
402
0.692946
0198b4dff19212b49262a4cd3d0f504d634f9fa8
516
asm
Assembly
oeis/176/A176398.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/176/A176398.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/176/A176398.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A176398: Decimal expansion of 3+sqrt(10). ; Submitted by Jon Maiga ; 6,1,6,2,2,7,7,6,6,0,1,6,8,3,7,9,3,3,1,9,9,8,8,9,3,5,4,4,4,3,2,7,1,8,5,3,3,7,1,9,5,5,5,1,3,9,3,2,5,2,1,6,8,2,6,8,5,7,5,0,4,8,5,2,7,9,2,5,9,4,4,3,8,6,3,9,2,3,8,2,2,1,3,4,4,2,4,8,1,0,8,3,7,9,3,0,0,2,9,5 mov $1,6 mov $3,$0 mul $3,3 mov $6,3 lpb $3 bi...
17.793103
201
0.523256
339e6876da54f801afa23a92dd944059d2869de3
1,692
asm
Assembly
good.asm
despinoza1/sic-assembler
8feed1061c410ca8178b05f7b4a670c7fcfb718f
[ "WTFPL" ]
null
null
null
good.asm
despinoza1/sic-assembler
8feed1061c410ca8178b05f7b4a670c7fcfb718f
[ "WTFPL" ]
null
null
null
good.asm
despinoza1/sic-assembler
8feed1061c410ca8178b05f7b4a670c7fcfb718f
[ "WTFPL" ]
null
null
null
. . An example of an SIC assembly file . COPY START 1000 COPY FILE FROM INPUT TO OUTPUT FIRST STL RETADR SAVE RETURN ADDRESS CLOOP JSUB RDREC READ INPUT RECORD LDA LENGTH TEST FOR EOF (LENGTH = 0) COMP ZERO JEQ ENDFIL EXIT IF EOF FOUND JSUB WRREC WRITE OUTPUT RECORD J CLOO...
30.763636
52
0.654255
ac4242165cd01e695fd0e086a3c6604639eca195
8,259
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1707.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1707.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1707.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r15 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0xbc49, %rsi lea addresses_WC_ht+0x13949, %rdi clflush (%rdi) nop nop cmp $27239, %rdx mov $82, %rcx rep movsw nop nop nop nop and $10315, %rdx lea addresses_A_ht+0x1bb29, %rcx...
34.128099
2,999
0.660007
bd14d1a1c0fe93d53588ece3c485fe0828faa61c
717
asm
Assembly
uti/prior.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
uti/prior.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
uti/prior.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
; Set Priority of my JOB V2.00  1988 Tony Tebby ; return in D1 real Job-ID !! section utility xdef ut_prior include 'dev8_keys_qdos_sms' ;+++ ; Set Priority of my JOB, preserving registers ; ; d0 c r byte priority (-1 = highest) / error code ; d1 real job-id ; ; ...
23.129032
57
0.500697
5a65a00bc01e3b936562d3e71bd96b547ca95aa7
441
asm
Assembly
oeis/329/A329010.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/329/A329010.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/329/A329010.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A329010: a(n) = p(2,n), where p(x,n) is the strong divisibility sequence of polynomials based on sqrt(3) as in A327321. ; Submitted by Jon Maiga ; 1,7,151,371,13981,64477,1176211,1333003,96366841,434627347,7833057871,17636587241,635161281301,2858836117417,51465153629131,28951056265019,4169104690053361,187613525749666...
44.1
234
0.791383
292ea17686e0b0e25aef8cd716fdba9b62bec0c5
30,024
asm
Assembly
Routines/LoadImage.asm
basic4gl-guy/basic4gl
5d4da444d36cdd5e020062adb02373e3efb21303
[ "BSD-3-Clause" ]
1
2020-01-14T11:25:00.000Z
2020-01-14T11:25:00.000Z
Routines/LoadImage.asm
basic4gl-guy/basic4gl
5d4da444d36cdd5e020062adb02373e3efb21303
[ "BSD-3-Clause" ]
null
null
null
Routines/LoadImage.asm
basic4gl-guy/basic4gl
5d4da444d36cdd5e020062adb02373e3efb21303
[ "BSD-3-Clause" ]
null
null
null
.586p ifdef ??version if ??version GT 500H .mmx endif endif model flat ifndef ??version ?debug macro endm endif ?debug S "..\routines\LoadImage.cpp" ?debug T "..\routines\LoadImage.cpp" _TEXT segment dword public use32 'CODE' _TEXT ends _DATA segment dword public use32 'DATA' _DATA ends _BSS segment dwo...
28.594286
190
0.632527
039a181898f34132857bb8ba624f9dfe58d42590
144
asm
Assembly
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver2/sfc/ys_w49.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver2/sfc/ys_w49.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver2/sfc/ys_w49.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
Name: ys_w49.asm Type: file Size: 15766 Last-Modified: '2016-05-13T04:51:43Z' SHA-1: 8C676387C23DB032CBA3A00B0E0AD785646350D5 Description: null
20.571429
47
0.8125
38674dd723481e163f64f86dd70a9382fab30b1c
10,017
asm
Assembly
bin/gcc/config/rs6000/eabi.asm
aaliomer/exos
6a37c41cad910c373322441a9f23cfabdbfae275
[ "BSD-3-Clause" ]
1
2018-01-23T23:07:19.000Z
2018-01-23T23:07:19.000Z
bin/gcc/config/rs6000/eabi.asm
aaliomer/exos
6a37c41cad910c373322441a9f23cfabdbfae275
[ "BSD-3-Clause" ]
null
null
null
bin/gcc/config/rs6000/eabi.asm
aaliomer/exos
6a37c41cad910c373322441a9f23cfabdbfae275
[ "BSD-3-Clause" ]
null
null
null
# File to either setup register 2 to point to the GOT, or to adjust the # pointers in the .got2 section to point to their new addresses. .file "eabi.asm" .section ".text" .globl __eabi .section ".got2","aw" .LCTOC1 = . # +32768 # Table of addresses .Ltable = .-.LCTOC1 .long .LCTOC1 # address we are really ...
26.360526
80
0.734052
72905caed87605122d7e5e984e69f0cf057cffe4
1,280
asm
Assembly
programs/oeis/224/A224455.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/224/A224455.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/224/A224455.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A224455: The hyper-Wiener index of the linear phenylene with n hexagons. ; 42,396,1656,4740,10890,21672,38976,65016,102330,153780,222552,312156,426426,569520,745920,960432,1218186,1524636,1885560,2307060,2795562,3357816,4000896,4732200,5559450,6490692,7534296,8698956,9993690,11427840,13011072,14753376,16665066,187567...
41.290323
898
0.769531
eff2248e93eb560ea42e2f28f724a60ef40f69ab
642
asm
Assembly
y2s2/csa/practicals/prac-7/1-warmup.asm
ouldevloper/university
4bb4a7e86912b46aa625900d2985b4d1e436cf4e
[ "MIT" ]
8
2019-06-22T14:29:51.000Z
2021-09-22T16:58:12.000Z
y2s2/csa/practicals/prac-7/1-warmup.asm
ouldevloper/university
4bb4a7e86912b46aa625900d2985b4d1e436cf4e
[ "MIT" ]
1
2020-06-30T06:38:00.000Z
2020-07-08T06:37:57.000Z
y2s2/csa/practicals/prac-7/1-warmup.asm
ouldevloper/university
4bb4a7e86912b46aa625900d2985b4d1e436cf4e
[ "MIT" ]
9
2020-04-04T12:59:50.000Z
2022-03-27T22:44:58.000Z
; 1-warmup.asm ; ask user to enter 3 characters, store in ; an array, and display with MOV AH, 09H .MODEL SMALL .STACK 100 .DATA TXT DB 'ENTER 3 CHARACTERS: $' CHAR DB 4 DUP('$') NL DB 13,10,'$' .CODE MAIN PROC MOV AX,@DATA MOV DS,AX ; INPUT MOV AH, 9 LEA DX, TXT INT 21H ...
13.659574
43
0.489097
1ee639a13770c033c5806b3bf921fb4b997dd425
39
asm
Assembly
Micro/Tests/tty/tty.asm
JavierOramas/CP_AC
d2f38823c6c2fce5acab1908a6912a7c18a0dd2b
[ "MIT" ]
null
null
null
Micro/Tests/tty/tty.asm
JavierOramas/CP_AC
d2f38823c6c2fce5acab1908a6912a7c18a0dd2b
[ "MIT" ]
null
null
null
Micro/Tests/tty/tty.asm
JavierOramas/CP_AC
d2f38823c6c2fce5acab1908a6912a7c18a0dd2b
[ "MIT" ]
null
null
null
addi r1 r0 72 tty r1 halt # prints: H
6.5
13
0.666667
204e215d9974dc884f316c995b2e40c56504a7c4
124
asm
Assembly
game/logic/game_states/config_screen_extra_bank.asm
benoitryder/super-tilt-bro
8d5035f54e906a401d0808c2e104d32fa1fadd7f
[ "WTFPL" ]
null
null
null
game/logic/game_states/config_screen_extra_bank.asm
benoitryder/super-tilt-bro
8d5035f54e906a401d0808c2e104d32fa1fadd7f
[ "WTFPL" ]
null
null
null
game/logic/game_states/config_screen_extra_bank.asm
benoitryder/super-tilt-bro
8d5035f54e906a401d0808c2e104d32fa1fadd7f
[ "WTFPL" ]
null
null
null
CONFIG_SCREEN_EXTRA_BANK_NUMBER = CURRENT_BANK_NUMBER #include "game/logic/game_states/config_screen_extra_bank.built.asm"
31
68
0.879032
3edf5971b7e1ba0238669dc4f9c7781bfd57d8dc
352
asm
Assembly
programs/oeis/189/A189687.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/189/A189687.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/189/A189687.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A189687: Fixed point of the morphism 0->011, 1->01. ; 0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0 cal $0,4641 ; Fixed und...
58.666667
241
0.53125
fc3b7b0f8fc405bae92317aac608a1b09ac8abdb
312
asm
Assembly
programs/oeis/169/A169805.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/169/A169805.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/169/A169805.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A169805: Twice the sum of the digits of n. ; 0,2,4,6,8,10,12,14,16,18,2,4,6,8,10,12,14,16,18,20,4,6,8,10,12,14,16,18,20,22,6,8,10,12,14,16,18,20,22,24,8,10,12,14,16,18,20,22,24,26,10,12,14,16,18,20,22,24,26,28,12,14,16,18,20,22,24,26,28,30,14,16,18,20,22,24,26 mov $1,$0 mod $1,10 mul $1,9 add $0,$1 div $0,5
34.666667
217
0.63141
7525d22c274bb87c1dd4537a32535407aef1a29f
504
asm
Assembly
oeis/316/A316252.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/316/A316252.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/316/A316252.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A316252: Decimal expansion of the least x such that 1/x + 1/(x+2) + 1/(x+3) = 3. ; Submitted by Simon Strandgaard ; 2,7,8,4,2,1,8,6,9,1,4,5,7,7,1,0,3,6,2,9,3,4,7,1,2,0,7,9,4,9,9,5,2,7,6,9,9,7,2,1,3,3,0,0,6,8,6,0,9,4,7,7,6,7,5,2,0,9,6,7,9,6,7,8,0,8,9,4,7,0,4,6,2,8,4,7,5,0,2,0,0,0,9,4,2,3 mov $1,2 mov $3,$0 mul $3,4 l...
19.384615
173
0.531746
cea4e7dc0e516e7b3f7fe8b9c95f4221a58e1046
11,439
asm
Assembly
cmd/command/tprintf.asm
minblock/msdos
479ffd237d9bb7cc83cb06361db2c4ef42dfbac0
[ "Apache-2.0" ]
null
null
null
cmd/command/tprintf.asm
minblock/msdos
479ffd237d9bb7cc83cb06361db2c4ef42dfbac0
[ "Apache-2.0" ]
null
null
null
cmd/command/tprintf.asm
minblock/msdos
479ffd237d9bb7cc83cb06361db2c4ef42dfbac0
[ "Apache-2.0" ]
null
null
null
page ,132 ; SCCSID = @(#)tprintf.asm 4.3 85/07/02 ; SCCSID = @(#)tprintf.asm 4.3 85/07/02 TITLE COMMAND Transient Printf routine ;/* ; * Microsoft Confidential ; * Copyright (C) Microsoft Corporation 1991 ; * All Rights Reserved. ; */ ; ; Revision History...
30.422872
112
0.696739
6eeb034763f66d9445259bf0d32a94a8b09c3a37
168
asm
Assembly
data/maps/headers/Route1.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
1
2022-02-15T00:19:44.000Z
2022-02-15T00:19:44.000Z
data/maps/headers/Route1.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
data/maps/headers/Route1.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
map_header Route1, ROUTE_1, OVERWORLD, NORTH | SOUTH connection north, ViridianCity, VIRIDIAN_CITY, -5 connection south, PalletTown, PALLET_TOWN, 0 end_map_header
28
53
0.797619
f7a3fc6d9c32dfdc0f608c767188071352e2f45f
333
asm
Assembly
programs/oeis/086/A086302.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/086/A086302.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/086/A086302.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A086302: a(n) = 4*n^4 + 24*n^3 + 48*n^2 + 36*n + 8. ; 8,120,528,1520,3480,6888,12320,20448,32040,47960,69168,96720,131768,175560,229440,294848,373320,466488,576080,703920,851928,1022120,1216608,1437600,1687400,1968408,2283120,2634128,3024120,3455880,3932288,4456320,5031048 mov $1,$0 add $0,2 add $1,1 mul $0,$1 bin $...
33.3
221
0.723724
ffde67c1d991b2397d2f0d71780788dc0e323736
2,029
asm
Assembly
Source/Levels/L0804.asm
AbePralle/FGB
52f004b8d9d4091a2a242a012dc8c1f90d4c160d
[ "MIT" ]
null
null
null
Source/Levels/L0804.asm
AbePralle/FGB
52f004b8d9d4091a2a242a012dc8c1f90d4c160d
[ "MIT" ]
null
null
null
Source/Levels/L0804.asm
AbePralle/FGB
52f004b8d9d4091a2a242a012dc8c1f90d4c160d
[ "MIT" ]
null
null
null
; L0804.asm grand canyon ; Generated 09.18.2000 by mlevel ; Modified 09.18.2000 by Abe Pralle INCLUDE "Source/Defs.inc" INCLUDE "Source/Levels.inc" WATERINDEX EQU 1 VAR_WATER EQU 0 ;--------------------------------------------------------------------- SECTION "Level0804Section",ROMX ;-----------------------------...
26.697368
70
0.426318
97ef06563f190e4e39f81cc82f9beff4838bb062
6,234
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_1188.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_1188.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_1188.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r15 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x85ef, %rdx nop nop nop xor %r8, %r8 mov (%rdx), %r11 nop xor $30559, %r15 lea addresses_A_ht+0x6505, %rsi lea addresses_UC_ht+0x197f3, %rdi nop and $7981, %r10 mov $118, %rcx...
37.554217
2,999
0.657363
644e5ed04bb8fbf3d1a02201df82f29770c190d6
1,283
asm
Assembly
artwork/esqueleto/esqueleto_espada_comboadelante.asm
fjpena/sword-of-ianna-zx
fdd6bdb5775933756e75402a7c6be80d5334702d
[ "Apache-2.0" ]
67
2017-10-07T18:48:05.000Z
2022-02-01T20:37:40.000Z
artwork/esqueleto/esqueleto_espada_comboadelante.asm
fjpena/sword-of-ianna-zx
fdd6bdb5775933756e75402a7c6be80d5334702d
[ "Apache-2.0" ]
null
null
null
artwork/esqueleto/esqueleto_espada_comboadelante.asm
fjpena/sword-of-ianna-zx
fdd6bdb5775933756e75402a7c6be80d5334702d
[ "Apache-2.0" ]
9
2017-10-06T21:02:55.000Z
2022-01-06T03:11:58.000Z
; ASM source file created by SevenuP v1.21 ; SevenuP (C) Copyright 2002-2007 by Jaime Tejedor Gomez, aka Metalbrain ;GRAPHIC DATA: ;Pixel Size: ( 24, 32) ;Char Size: ( 3, 4) ;Frames: 2 ;Sort Priorities: X char, Char line, Y char, Frame number ;Data Outputted: Gfx ;Interleave: Sprite ;M...
34.675676
72
0.473889
0cb78d9a0e8997b93f643af29a11d590dcd94b08
792
asm
Assembly
oeis/124/A124720.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/124/A124720.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/124/A124720.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A124720: Number of ternary Lyndon words of length n with exactly two 1's. ; Submitted by Jon Maiga ; 2,5,16,38,96,220,512,1144,2560,5616,12288,26592,57344,122816,262144,556928,1179648,2490112,5242880,11009536,23068672,48233472,100663296,209713152,436207616,905965568,1879048192,3892305920,8053063680,16642981888,343597...
33
494
0.77399
efe1b006bb8dbe6b3312c5f96c40bf27c16e9d58
11,585
asm
Assembly
source/jni/u2/visu/adrawclp.asm
Falken42/SecondReality
b998d193a066523cb4ca2b86c8041bea1bddfcb4
[ "Unlicense" ]
9
2015-05-13T21:02:00.000Z
2018-04-15T16:32:27.000Z
source/jni/u2/visu/adrawclp.asm
falken42/SecondReality
b998d193a066523cb4ca2b86c8041bea1bddfcb4
[ "Unlicense" ]
null
null
null
source/jni/u2/visu/adrawclp.asm
falken42/SecondReality
b998d193a066523cb4ca2b86c8041bea1bddfcb4
[ "Unlicense" ]
null
null
null
;/**************************************************************************** ;** MODULE: adrawclp.asm ;** AUTHOR: Sami Tammilehto / Fennosoftec OY ;** DOCUMENT: ? ;** VERSION: 1.0 ;** REFERENCE: - ;** REVISED BY: - ;***************************************************************************** ;** ;** Polygon...
20.949367
103
0.643677
e9f4d145088384cd99eac207f5b950a9d775c4f8
1,240
asm
Assembly
libsrc/target/micro8085/stdio/fputc_cons_native.asm
UnivEngineer/z88dk
9047beba62595b1d88991bc934da75c0e2030d07
[ "ClArtistic" ]
4
2021-12-23T15:34:05.000Z
2021-12-23T15:36:16.000Z
libsrc/target/micro8085/stdio/fputc_cons_native.asm
UnivEngineer/z88dk
9047beba62595b1d88991bc934da75c0e2030d07
[ "ClArtistic" ]
2
2022-03-20T22:17:35.000Z
2022-03-24T16:10:00.000Z
libsrc/target/micro8085/stdio/fputc_cons_native.asm
jorgegv/z88dk
127130cf11f9ff268ba53e308138b12d2b9be90a
[ "ClArtistic" ]
null
null
null
;------------------------------------------------------------------------- ; Native terminal i/o functionality for micro8085_cilb (stdio interface) ; Functions below assumes support for INTEL 8085 "undocumented" opcodes SECTION code_clib EXTERN puartd EXTERN puartc PUBLIC fputc_con...
40
74
0.473387
ed6e330c66319c25e31faf92ee15280d21782934
346
asm
Assembly
libsrc/_DEVELOPMENT/adt/b_vector/c/sccz80/b_vector_shrink_to_fit.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/adt/b_vector/c/sccz80/b_vector_shrink_to_fit.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/adt/b_vector/c/sccz80/b_vector_shrink_to_fit.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; int b_vector_shrink_to_fit(b_vector_t *v) SECTION code_clib SECTION code_adt_b_vector PUBLIC b_vector_shrink_to_fit EXTERN asm_b_vector_shrink_to_fit defc b_vector_shrink_to_fit = asm_b_vector_shrink_to_fit ; SDCC bridge for Classic IF __CLASSIC PUBLIC _b_vector_shrink_to_fit defc _b_vector_shrink_to_fit = b_ve...
18.210526
56
0.872832
1cf9b44342cbfc871ad3201ba3d0556d5a5a4217
9,002
asm
Assembly
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_21829_1792.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_21829_1792.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_21829_1792.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r15 push %r8 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x111ef, %r15 nop nop nop nop dec %rcx movb (%r15), %r12b nop nop and %rdx, %rdx lea addresses_UC_ht+0x1548f, %rsi lea addresses_normal_ht+0xe527, %rdi nop nop sub %rbx, %rbx m...
32.734545
2,999
0.655743
b53151a095436ca232c916e325f91e4092d449ec
16,859
asm
Assembly
Appl/Calendar/Alarm/alarmAlarm.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Appl/Calendar/Alarm/alarmAlarm.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Appl/Calendar/Alarm/alarmAlarm.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: Calendar/Alarm FILE: alarmAlarm.asm AUTHOR: Don Reeves, September 1, 1989 ROUTINES: Name Description ---- ----------- AlarmClockStart St...
24.611679
79
0.570852
e9efd0208a2c0f4f351ff9cd095de775e326bb34
455
asm
Assembly
oeis/182/A182398.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/182/A182398.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/182/A182398.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A182398: a(n) = Sum_{k=1..2n} k^2n (mod 2n). ; Submitted by Christian Krause ; 1,2,1,4,5,2,7,8,3,6,11,4,13,14,5,16,17,6,19,12,1,22,23,8,25,26,9,28,29,58,31,32,11,34,35,12,37,38,13,24,41,2,43,44,15,46,47,16,49,30,17,52,53,18,45,56,19,58,59,116,61,62,3,64,65,22,67,68,23,42,71,24,73,74,25,76,77,14,79,48,27,82,83,4,85,86...
41.363636
284
0.617582
1938cfe4bd8fe34f96cb7263df114001d2901fbf
602
asm
Assembly
oeis/050/A050441.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/050/A050441.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/050/A050441.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A050441: Partial sums of A051865. ; 0,1,14,50,120,235,406,644,960,1365,1870,2486,3224,4095,5110,6280,7616,9129,10830,12730,14840,17171,19734,22540,25600,28925,32526,36414,40600,45095,49910,55056,60544,66385,72590,79170,86136,93499,101270,109460,118080,127141,136654,146630,157080,168015,179446,191384,203840,216825,230...
54.727273
497
0.795681
d7e1281f3038748503fd52805da57c21d29939eb
1,424
asm
Assembly
boot/print/print_hex.asm
alichtman/masOSchism
3d2a088727087cfcf6e9f073181de28a0b499c01
[ "MIT" ]
null
null
null
boot/print/print_hex.asm
alichtman/masOSchism
3d2a088727087cfcf6e9f073181de28a0b499c01
[ "MIT" ]
null
null
null
boot/print/print_hex.asm
alichtman/masOSchism
3d2a088727087cfcf6e9f073181de28a0b499c01
[ "MIT" ]
null
null
null
;;;;;;;;;;;;;;;;;;;;;;;; ; Print hex values ; External code can call print_hex or print_hex_with_newline ; ARGS ; dx -> Hex value to be printed print_hex: pusha mov cx, 0 ; loop index variable jmp print_hex_loop print_hex_with_newline: pusha call print_hex call print_newline popa ret ...
24.135593
88
0.666433
e0c4ea2e3d6873498cc4e5c971ace461eee9d109
549
asm
Assembly
oeis/016/A016976.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/016/A016976.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/016/A016976.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A016976: a(n) = (6*n + 5)^8. ; 390625,214358881,6975757441,78310985281,500246412961,2251875390625,7984925229121,23811286661761,62259690411361,146830437604321,318644812890625,645753531245761,1235736291547681,2252292232139041,3936588805702081,6634204312890625,10828567056280801,17181861798319201,26584441929064321,402138...
78.428571
489
0.885246
fef79dc3d87ff4d51b7a47573f71fe009ab0676c
306,417
asm
Assembly
main/plugins/org.talend.model.migration/transformation/development/EModelCopyOfTos.asm
rdubois/tcommon-studio-se
97bac8fc3f65fc2cbb0079e1eec3731baa8704d1
[ "Apache-2.0" ]
null
null
null
main/plugins/org.talend.model.migration/transformation/development/EModelCopyOfTos.asm
rdubois/tcommon-studio-se
97bac8fc3f65fc2cbb0079e1eec3731baa8704d1
[ "Apache-2.0" ]
null
null
null
main/plugins/org.talend.model.migration/transformation/development/EModelCopyOfTos.asm
rdubois/tcommon-studio-se
97bac8fc3f65fc2cbb0079e1eec3731baa8704d1
[ "Apache-2.0" ]
null
null
null
<?xml version = '1.0' encoding = 'ISO-8859-1' ?> <asm version="1.0" name="0"> <cp> <constant value="EModelCopy"/> <constant value="links"/> <constant value="NTransientLinkSet;"/> <constant value="col"/> <constant value="J"/> <constant value="inElements"/> <constant value="main"/> <constant value="A"/> ...
26.749629
93
0.546399
aa9678bc36ab8303d2bf0512a48b0c9f34cc97f1
5,171
asm
Assembly
asm/uitostr.asm
drdeath863/WebLc3
5b18daa72c2390a52f4095a927fc9b9a3165fe88
[ "Unlicense" ]
null
null
null
asm/uitostr.asm
drdeath863/WebLc3
5b18daa72c2390a52f4095a927fc9b9a3165fe88
[ "Unlicense" ]
null
null
null
asm/uitostr.asm
drdeath863/WebLc3
5b18daa72c2390a52f4095a927fc9b9a3165fe88
[ "Unlicense" ]
null
null
null
.orig x3000 main LD r6, $stack LD r0, $num ; printn 3156 JSR printn ; - LEA r0, $div ; print " / " PUTS ; - LD r0, $denom ; printn 15 JSR printn ; - LEA r0, $eq ; print " = " PUTS ...
28.256831
64
0.348675
947d693b67b19f4853543f0903d542a668ce7a6b
16,569
asm
Assembly
engine/gfx/pic_animation.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
1
2021-07-05T23:48:37.000Z
2021-07-05T23:48:37.000Z
engine/gfx/pic_animation.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
1
2020-12-16T01:11:20.000Z
2020-12-16T22:53:56.000Z
engine/gfx/pic_animation.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
1
2021-07-05T23:33:22.000Z
2021-07-05T23:33:22.000Z
; Pic animation arrangement. Unused_AnimateMon_Slow_Normal: hlcoord 12, 0 ld a, [wBattleMode] cp WILD_BATTLE jr z, .wild ld e, ANIM_MON_SLOW ld d, $0 call AnimateFrontpic ret .wild ld e, ANIM_MON_NORMAL ld d, $0 call AnimateFrontpic ret AnimateMon_Menu: ld e, ANIM_MON_MENU ld d, $0 call AnimateFrontpi...
15.021759
79
0.711087
948f467428853bef4730528d243d5ed88616b33a
641
asm
Assembly
programs/oeis/271/A271476.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/271/A271476.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/271/A271476.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A271476: Total number of burnt pancakes flipped using the Min-bar(n) greedy algorithm. ; 1,10,75,628,6325,75966,1063615,17017960,306323433,6126468850,134782314931,3234775558620,84104164524445,2354916606684838,70647498200545575,2260719942417458896,76864478042193603025,2767121209518969709530,105150605961720848962843,42...
42.733333
445
0.842434
f449b0d55339903e8b8052a5f77fa6ecd5aaa845
923
asm
Assembly
programs/oeis/096/A096976.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/096/A096976.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/096/A096976.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A096976: Number of walks of length n on P_3 plus a loop at the end. ; 1,0,1,0,2,1,5,5,14,19,42,66,131,221,417,728,1341,2380,4334,7753,14041,25213,45542,81927,147798,266110,479779,864201,1557649,2806272,5057369,9112264,16420730,29587889,53317085,96072133,173118414,311945595,562110290,1012883066,1825158051,3288813893,5...
38.458333
607
0.757313
6f3e39922a0190c163afe359bb59251c2013303b
728
asm
Assembly
slave/source/core/source/fastcall.asm
Aekras1a/Angie-Ransomware
b1933c3e5fb3b2df7154c892db9c4e3b4620c7e3
[ "MIT" ]
6
2020-04-16T08:35:16.000Z
2022-02-09T21:36:29.000Z
slave/source/core/source/fastcall.asm
x1234xx/Angie-Ransomware
b1933c3e5fb3b2df7154c892db9c4e3b4620c7e3
[ "MIT" ]
null
null
null
slave/source/core/source/fastcall.asm
x1234xx/Angie-Ransomware
b1933c3e5fb3b2df7154c892db9c4e3b4620c7e3
[ "MIT" ]
4
2019-05-25T20:26:59.000Z
2021-03-22T16:47:06.000Z
[BITS 32] section .text global _KiFastSystemCall@0 global _KiJumpLongMode@8 _KiFastSystemCall@0: mov edx, esp sysenter ret _KiJumpLongMode@8: jmp 0x33:.L1 [BITS 64] .L1: xchg rsp, r14 mov r8d, dword [r14] add r14, 4 mov dword [0x3C + r13], r8d mov dword [0x48 + r13], r14d lea r11, [r14 + 4] mov dwo...
16.177778
30
0.637363
5a676e409e213cf37f84fd662c508f015eb65c53
306
asm
Assembly
programs/oeis/331/A331505.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/331/A331505.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/331/A331505.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A331505: Number of labeled graphs with n nodes and floor(n/2) edges. ; 1,1,3,15,45,455,1330,20475,58905,1221759,3478761,90858768,256851595,8093990190,22760723700,840261910995,2353351951665,99615373765775,278110855548955,13278694407181203,36976937738226486 add $0,1 mov $2,$0 bin $0,2 div $2,2 bin $0,$2
34
186
0.79085