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
247122c7bfbabbf7664352c1df672872ca4ba904
4,130
asm
Assembly
spriteextend.asm
KScl/z3rasm
7739c9bd6a0c803b1e4e1f435af3178b8e04207b
[ "MIT" ]
null
null
null
spriteextend.asm
KScl/z3rasm
7739c9bd6a0c803b1e4e1f435af3178b8e04207b
[ "MIT" ]
null
null
null
spriteextend.asm
KScl/z3rasm
7739c9bd6a0c803b1e4e1f435af3178b8e04207b
[ "MIT" ]
null
null
null
;============================================================================== ; Hook into vanilla table loading routine ;------------------------------------------------------------------------------ ; uses free space in bank 0 to stay in bank ; to hopefully minimize any possible performance penalty of this code ; on...
39.711538
86
0.502663
2e2df045b4c623d1629d7d761a6a06d1e1704116
2,118
asm
Assembly
boot/bootsect.asm
coldnine/alpha
03586b834f8b16861364126647c42ae1b2b7c0ca
[ "MIT" ]
8
2018-05-09T11:27:17.000Z
2022-01-28T11:37:06.000Z
boot/bootsect.asm
coldnine/proxima
03586b834f8b16861364126647c42ae1b2b7c0ca
[ "MIT" ]
null
null
null
boot/bootsect.asm
coldnine/proxima
03586b834f8b16861364126647c42ae1b2b7c0ca
[ "MIT" ]
1
2018-01-05T09:44:57.000Z
2018-01-05T09:44:57.000Z
;; =512 $mbr_size equ 0x200 ;; MBR magic number $mbr_magic equ 0xaa55 $alpha_addr equ 0x7c00 ;; init stack accordingly $bl_ss equ 0x0bc0 $bl_sp equ 0x0200 ;; kernel loading addr $kernel_offset equ 0x1000 [org $alpha_addr] [bits 16] _rm_start: ;; set ss, sp mov [boot_drive], dl mov dx, $bl_ss mov ss,...
18.743363
82
0.661473
582e28ed5712bcb2714209746a3ed9d20b9d287b
340
asm
Assembly
oeis/110/A110295.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/110/A110295.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/110/A110295.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A110295: a(n) = prime(n)*2^(n-1). ; Submitted by Jon Maiga ; 2,6,20,56,176,416,1088,2432,5888,14848,31744,75776,167936,352256,770048,1736704,3866624,7995392,17563648,37224448,76546048,165675008,348127232,746586112,1627389952,3388997632,6912212992,14361296896 mov $1,2 pow $1,$0 seq $0,40 ; The prime numbers. mul $1,2...
30.909091
199
0.744118
10efacecff661c2bc9ca3af3027a4952ee84117e
356
asm
Assembly
assembly/book_low-level-programming/ch_2/practice/strlen.asm
ZahFox/systems-programming
2c6c7f1ab318d2a74bb50503e8308e96bee94bf3
[ "MIT" ]
null
null
null
assembly/book_low-level-programming/ch_2/practice/strlen.asm
ZahFox/systems-programming
2c6c7f1ab318d2a74bb50503e8308e96bee94bf3
[ "MIT" ]
null
null
null
assembly/book_low-level-programming/ch_2/practice/strlen.asm
ZahFox/systems-programming
2c6c7f1ab318d2a74bb50503e8308e96bee94bf3
[ "MIT" ]
null
null
null
global _start section .data test_string: db "abcdef", 0 section .text strlen: ; rax will hold the length value xor rax, rax ; zeroing rax to avoid random values .loop: cmp byte [rdi+rax], 0 ; check for the null byte je .end inc rax jmp .loop .end: ret _start: mov rdi, test_string call strlen ...
15.478261
50
0.676966
b416d289921ce11a099d2520c28ce6bd9f5fe534
1,491
asm
Assembly
fibonacci.asm
kspalaiologos/cursed-asm
abb1ec73de3840a6d5b31c612f26dd38f3dc4d71
[ "CC0-1.0" ]
6
2020-08-11T20:28:41.000Z
2022-03-30T12:56:40.000Z
fibonacci.asm
kspalaiologos/cursed-asm
abb1ec73de3840a6d5b31c612f26dd38f3dc4d71
[ "CC0-1.0" ]
null
null
null
fibonacci.asm
kspalaiologos/cursed-asm
abb1ec73de3840a6d5b31c612f26dd38f3dc4d71
[ "CC0-1.0" ]
null
null
null
.text .globl _start _start: pushq %r12 mov rax, QWORD PTR m.2[rip] leaq z.1(%rip), %r10 push rbp orl $-1, %r12d xor r8d, r8d pushq %rbx mov BYTE PTR 4[rax], 1 movb $1, 2(%rax) lea rbx, a.0[rip] movl $1, %r9d mov ebp, 1 .L2: mov rax, QWORD PTR m.2[rip] cmpb $0, 4...
18.182927
33
0.512408
3e15609b327e6bae256ccae68c17f3f7fbc4c217
396
asm
Assembly
oeis/180/A180488.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/180/A180488.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/180/A180488.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A180488: Partial sums of A006864. ; Submitted by Christian Krause ; 0,1,3,9,23,60,152,388,984,2501,6347,16117,40911,103864,263664,669352,1699216,4313673,10950739,27799745,70572839,179157364,454811656,1154592108,2931065640,7440849549,18889457819,47953075565 lpb $0 mov $2,$0 sub $0,1 seq $2,6864 ; Number of Hami...
28.285714
190
0.739899
3b5932b9cff8fdd489e4e828c74833b4c7037043
193
asm
Assembly
programs/oeis/031/A031401.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/031/A031401.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/031/A031401.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A031401: Period of continued fraction for sqrt(A031400(n)). ; 1,2,4,8,4,4,4,4,4,4,4 pow $0,2 mov $2,11 sub $2,$0 div $2,4 add $2,1 add $0,$2 mov $3,16 min $3,$0 mov $0,$3 sub $0,2 mod $0,10
12.866667
61
0.601036
0edc38e45de2ddb58d0642599ebfc65e1857e29d
181
asm
Assembly
engine/battle/move_effects/sunny_day.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
28
2019-11-08T07:19:00.000Z
2021-12-20T10:17:54.000Z
engine/battle/move_effects/sunny_day.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
13
2020-01-11T17:00:40.000Z
2021-09-14T01:27:38.000Z
engine/battle/move_effects/sunny_day.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
22
2020-05-28T17:31:38.000Z
2022-03-07T20:49:35.000Z
BattleCommand_StartSun: ; startsun ld a, WEATHER_SUN ld [wBattleWeather], a ld a, 5 ld [wWeatherCount], a call AnimateCurrentMove ld hl, SunGotBrightText jp StdBattleTextbox
18.1
24
0.779006
47bedfd04fd8a0acfc5ff540e53da7dbd26258b2
4,078
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1020.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_1020.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_1020.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 %r9 push %rcx push %rdi push %rsi lea addresses_WT_ht+0x1ac4d, %rsi lea addresses_WT_ht+0xb12d, %rdi nop nop nop nop add $43321, %r9 mov $126, %rcx rep movsw nop add $35589, %r13 pop %rsi pop %rdi pop %rcx pop %r9 pop %r13 ret .global s_faulty_load s_faul...
63.71875
2,999
0.664051
39b5b89878f17866b19221db00cdfe294c2fb5cd
5,369
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca.log_21829_946.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca.log_21829_946.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca.log_21829_946.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 %r15 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0x2f32, %rsi lea addresses_WC_ht+0x8e62, %rdi nop nop nop xor $42373, %r13 mov $89, %rcx rep movsw nop add %rax, %rax lea addresses_UC_ht+0x1211a, %rsi lea addresses_WT_ht+0x124e2, %rdi and %r15, ...
41.620155
2,999
0.656174
f924960dd28d299214ef4e422a680a3f25589a62
5,549
asm
Assembly
Transynther/x86/_processed/US/_ht_zr_/i9-9900K_12_0xca.log_21829_1367.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_ht_zr_/i9-9900K_12_0xca.log_21829_1367.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_ht_zr_/i9-9900K_12_0xca.log_21829_1367.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 %r13 push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x16e30, %rsi lea addresses_A_ht+0x122fc, %rdi nop dec %r10 mov $69, %rcx rep movsq nop nop add $31226, %rsi lea addresses_normal_ht+0xb9a8, %rsi lea addresses_D_ht+0x6b40, %rdi clflush ...
41.721805
2,999
0.66102
e936790687a9c151d884c470cef32ecbcdc1ffdd
2,751
asm
Assembly
src/win32/932.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
7
2022-01-20T08:27:54.000Z
2022-03-17T10:15:31.000Z
src/win32/932.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
null
null
null
src/win32/932.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
null
null
null
; ############################################################################ ; ## WDOSX DOS Extender Copyright (c) 1996, 1999, Michael Tippach ## ; ## ## ; ## Released under the terms of the WDOSX license agreement. ## ; ##...
9.652632
82
0.582334
1998cd2cad1150dad66639d1e1cf73aaeb7748f1
617
asm
Assembly
programs/oeis/072/A072400.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/072/A072400.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/072/A072400.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A072400: (Factors of 4 removed from n) modulo 8. ; 1,2,3,1,5,6,7,2,1,2,3,3,5,6,7,1,1,2,3,5,5,6,7,6,1,2,3,7,5,6,7,2,1,2,3,1,5,6,7,2,1,2,3,3,5,6,7,3,1,2,3,5,5,6,7,6,1,2,3,7,5,6,7,1,1,2,3,1,5,6,7,2,1,2,3,3,5,6,7,5,1,2,3,5,5,6,7,6,1,2,3,7,5,6,7,6,1,2,3,1,5,6,7,2,1,2,3,3,5,6,7,7,1,2,3,5,5,6,7,6,1,2,3,7,5,6,7,2,1,2,3,1,5,6...
51.416667
501
0.518639
1fabe448b6372f7df5cf4b974a429660b52ff3ee
5,382
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2388.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2388.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2388.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 %r14 push %r15 push %r9 push %rcx push %rdi push %rsi lea addresses_normal_ht+0x16531, %r9 nop nop nop inc %r14 movups (%r9), %xmm1 vpextrq $0, %xmm1, %rcx nop nop nop nop and %rdi, %rdi lea addresses_UC_ht+0x85d5, %rsi lea addresses_D_ht+0x169d5, %rdi inc %r14 mov $118...
42.714286
2,999
0.659234
ff673240bd7cfce3cf7e7437a7738bc2740eba36
101
asm
Assembly
src/test/resources/data/generationtests/glass-irp.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
36
2020-06-29T06:52:26.000Z
2022-02-10T19:41:58.000Z
src/test/resources/data/generationtests/glass-irp.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
39
2020-07-02T18:19:34.000Z
2022-03-27T18:08:54.000Z
src/test/resources/data/generationtests/glass-irp.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
7
2020-07-02T06:00:05.000Z
2021-11-28T17:31:13.000Z
; Test case: xor a IRP ?value, 1 , 2, 4, 8 or ?value ENDM ld (value),a end: jp end value: db 0
9.181818
23
0.584158
bfb66f19233a734f0fd57e858d6d3fa085e1a089
343
asm
Assembly
src/test/resources/data/reorganizertests/test-local3-expected.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
36
2020-06-29T06:52:26.000Z
2022-02-10T19:41:58.000Z
src/test/resources/data/reorganizertests/test-local3-expected.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
39
2020-07-02T18:19:34.000Z
2022-03-27T18:08:54.000Z
src/test/resources/data/reorganizertests/test-local3-expected.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
7
2020-07-02T06:00:05.000Z
2021-11-28T17:31:13.000Z
s__CODE: _infobar_update_map: _infobar_update_map00173: ret _infobar_update_rupees: push ix _infobar_update_rupees00102: xor a jp z, _infobar_update_rupees00173 ; jr 00104$ ; -mdl _infobar_update_rupees00104: xor a _infobar_update_rupees00173: pop ix ret _infobar_update_rupees00176: ret s...
18.052632
37
0.784257
4bceadfcc1c58ec969d49d57c3138ddb144bacd2
722
asm
Assembly
ffight/lcs/enemy/20.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
a4a0c86c200241494b3f1834cd0aef8dc02f7683
[ "Apache-2.0" ]
6
2020-10-14T15:29:10.000Z
2022-02-12T18:58:54.000Z
ffight/lcs/enemy/20.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
a4a0c86c200241494b3f1834cd0aef8dc02f7683
[ "Apache-2.0" ]
null
null
null
ffight/lcs/enemy/20.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
a4a0c86c200241494b3f1834cd0aef8dc02f7683
[ "Apache-2.0" ]
1
2020-12-17T08:59:10.000Z
2020-12-17T08:59:10.000Z
copyright zengfr site:http://github.com/zengfr/romhack 003A06 movem.l D0-D3, -(A6) 003A0A movem.l D0-D3, -(A6) 003AE6 move.w (A1)+, D0 [1p+20, 1p+22, boss+20, boss+22, container+20, container+22, enemy+20, enemy+22, weapon+20, weapon+22] 003B0C movea.l ($20,A6), A1 [1p+20, 1p+22, boss+20, boss+22, container+20,...
55.538462
131
0.680055
4dd8ca38ee29e97aa2c497a6a9cb7db3289b2c56
257
asm
Assembly
asm/blink.asm
dspmathguru/lipsi
ba578a619fbd754fc1f465f068747bdcb6710278
[ "BSD-2-Clause" ]
62
2017-11-29T01:07:53.000Z
2022-03-28T00:14:59.000Z
asm/blink.asm
dspmathguru/lipsi
ba578a619fbd754fc1f465f068747bdcb6710278
[ "BSD-2-Clause" ]
4
2019-03-15T13:29:32.000Z
2020-06-16T07:07:33.000Z
asm/blink.asm
dspmathguru/lipsi
ba578a619fbd754fc1f465f068747bdcb6710278
[ "BSD-2-Clause" ]
14
2019-03-04T20:32:30.000Z
2021-09-13T12:32:59.000Z
# # A blinking and counting LED as hello world # ldi 0x00 st r1 outer: ld r1 addi 0x01 st r1 io 0x0 ldi 0x7f st r3 loop3: ldi 0xff st r2 loop2: ldi 0xff loop: subi 0x01 brnz loop ld r2 subi 0x01 st r2 brnz loop2 ld r3 subi 0x01 st r3 brnz loop3 br outer
7.787879
44
0.731518
3f7bd9003c22e7431dffee55bdfd8f7b528443f8
619
asm
Assembly
oeis/010/A010548.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/010/A010548.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/010/A010548.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A010548: Decimal expansion of square root of 97. ; 9,8,4,8,8,5,7,8,0,1,7,9,6,1,0,4,7,2,1,7,4,6,2,1,1,4,1,4,9,1,7,6,2,4,4,8,1,6,9,6,1,3,6,2,8,7,4,4,2,7,6,4,1,7,1,7,2,3,1,5,4,5,2,9,8,3,6,4,4,0,5,8,3,7,0,7,6,7,8,6,3,0,0,9,3,2,0,0,7,8,4,1,1,5,4,2,5,7,6,2 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
22e6dcc5842c15d90b84081db13067582d80f3eb
429
asm
Assembly
u7bg/itemLabels.asm
JohnGlassmyer/UltimaHacks
f9a114e00c4a1edf1ac7792b465feff2c9b88ced
[ "MIT" ]
68
2018-03-04T22:34:22.000Z
2022-03-10T15:18:32.000Z
u7bg/itemLabels.asm
ptrie/UltimaHacks
2c3557a86d94ad8b54b26bc395b9aed1604f8be1
[ "MIT" ]
19
2018-11-20T04:06:49.000Z
2021-11-08T16:37:10.000Z
u7bg/itemLabels.asm
ptrie/UltimaHacks
2c3557a86d94ad8b54b26bc395b9aed1604f8be1
[ "MIT" ]
4
2020-09-01T17:57:36.000Z
2022-01-04T20:51:11.000Z
%include "include/u7bg-all-includes.asm" defineAddress 243, 0x03CF, clickItemInWorld_produceText defineAddress 243, 0x044A, clickItemInWorld_produceText_end defineAddress 243, 0x0467, clickItemInWorld_end defineAddress 340, 0x1895, clickItemInInventory_produceText defineAddress 340, 0x1907, clickItemInInventory_produ...
35.75
63
0.86014
cc0d0f2290481e3502e6ea8d4533e69c473854a5
299
asm
Assembly
asm/mbr.asm
dyc-it/myos
8b679feb34663d0c31c2ed88d8936778b42e6b66
[ "MIT" ]
null
null
null
asm/mbr.asm
dyc-it/myos
8b679feb34663d0c31c2ed88d8936778b42e6b66
[ "MIT" ]
null
null
null
asm/mbr.asm
dyc-it/myos
8b679feb34663d0c31c2ed88d8936778b42e6b66
[ "MIT" ]
null
null
null
;boot.asm org 07c00h mov ax, cs mov ds, ax mov es, ax call DispStr jmp $ DispStr: mov ax, BootMessage mov bp, ax mov cx, 16 mov ax, 01301h mov bx, 000ch mov dl, 0 int 10h ret BootMessage: db "Booting OS..." times 510-($-$$) db 0 dw 0xaa55
14.238095
34
0.551839
ce2d96facf069743e69134da1f17980204410ff8
504
asm
Assembly
programs/oeis/258/A258645.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/258/A258645.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/258/A258645.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A258645: Fifth arithmetic derivative of n. ; 0,0,0,0,4,0,0,0,176,0,0,0,368,0,0,80,752,0,0,0,240,0,0,0,608,0,32,27,752,0,0,0,1520,1,0,176,560,0,0,368,284,0,0,0,1552,176,0,0,3120,1,80,112,560,0,1188,368,1312,0,0,0,1312,0,5,48,36864,1,0,0,288,16,0,0,912,0,176,176,1520,1,0,0,3424,2484,0,0,5056,0,80,752,2368,0,240,112,331...
84
296
0.642857
0af4911fe6e093407388d20664bd4ca43867251f
279
asm
Assembly
libsrc/osca/osca_version.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/osca/osca_version.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/osca/osca_version.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
; ; Get the OSCA Architecture version number ; by Stefano Bodrato, 2011 ; ; int osca_version(); ; ; ; $Id: osca_version.asm,v 1.2 2015/01/19 01:33:00 pauloscustodio Exp $ ; INCLUDE "flos.def" PUBLIC osca_version osca_version: call kjt_get_version ld h,d ld l,e ret
13.95
70
0.698925
671538f69e153d6ccbc4da616724a5f4faf75954
690
asm
Assembly
Working Disassembly/Levels/CNZ/Misc Object Data/Anim - Balloon.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
7e8a2c5df02271615ff4cae529521e6b1560d6b1
[ "Apache-2.0" ]
5
2021-07-09T08:17:56.000Z
2022-02-27T19:57:47.000Z
Working Disassembly/Levels/CNZ/Misc Object Data/Anim - Balloon.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
7e8a2c5df02271615ff4cae529521e6b1560d6b1
[ "Apache-2.0" ]
null
null
null
Working Disassembly/Levels/CNZ/Misc Object Data/Anim - Balloon.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
7e8a2c5df02271615ff4cae529521e6b1560d6b1
[ "Apache-2.0" ]
null
null
null
Ani_3185E: dc.w byte_31872-Ani_3185E dc.w byte_31878-Ani_3185E dc.w byte_3187C-Ani_3185E dc.w byte_31882-Ani_3185E dc.w byte_31886-Ani_3185E dc.w byte_3188C-Ani_3185E dc.w byte_31890-Ani_3185E dc.w byte_31896-Ani_3185E dc.w byte_3189A-Ani_3185E dc.w byte_318A0-Ani_3185E byte_31872: dc.b 7, 0, 1, ...
32.857143
44
0.623188
9cbfdab8281739558a133df1802c6109d00c33d3
645
asm
Assembly
programs/oeis/338/A338064.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/338/A338064.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/338/A338064.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A338064: Numbers k such that the Enots Wolley sequence A336957(k) is even. ; 2,3,6,7,10,11,14,15,18,19,22,23,26,27,30,31,34,35,38,39,42,43,46,47,50,51,54,55,58,59,62,63,66,67,70,71,74,75,78,79,82,83,86,87,90,91,94,95,98,99,102,103,106,107,110,111,114,115,118,119,122,123,126,127,130,131,134,135,138,139,142,143,146,147...
32.25
347
0.654264
334fd1acc1882ad6d9ac2d83bca11d6280388a70
1,217
asm
Assembly
Algorithms/Fibonacci/NASM/A2rec.asm
Sandeep228/Algorithm-and-Data-Structure-Collection
7b85dd1085bc6178aa67af345151b4032b6250fb
[ "MIT" ]
null
null
null
Algorithms/Fibonacci/NASM/A2rec.asm
Sandeep228/Algorithm-and-Data-Structure-Collection
7b85dd1085bc6178aa67af345151b4032b6250fb
[ "MIT" ]
null
null
null
Algorithms/Fibonacci/NASM/A2rec.asm
Sandeep228/Algorithm-and-Data-Structure-Collection
7b85dd1085bc6178aa67af345151b4032b6250fb
[ "MIT" ]
1
2021-10-08T12:14:19.000Z
2021-10-08T12:14:19.000Z
%include "asm_io.inc" segment .data segment .bss segment .text global asm_main asm_main: enter 0,0 pusha call read_int push eax call fib_rec pop ecx call print_int call print_nl popa mov eax, 0 leave ret fib_rec: enter 4,0 pusha mov eax, [ebp + 8] ;eax = n cmp eax, 0 ...
18.164179
98
0.585867
d65c834b9f6d98a5f92959c8a930b657719ab3b9
5,885
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_103.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_103.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_103.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 %r12 push %r14 push %r15 push %rcx push %rdi push %rsi lea addresses_D_ht+0x57b0, %rcx nop nop nop nop xor %r10, %r10 mov (%rcx), %r14d nop dec %r12 lea addresses_UC_ht+0x9718, %rcx nop nop add %r15, %r15 vmovups (%rcx), %ymm0 vextracti128 $0, %ymm0,...
41.153846
2,999
0.656245
014c46cdfd65afd6ee355d3e32a2b8a275afd6ed
1,020
asm
Assembly
asm/loops/andLoop.asm
IronHeart7334/AssemblyPrograms
e5b0649d2a1eb69bb5632c8219187d72fd69d057
[ "MIT" ]
null
null
null
asm/loops/andLoop.asm
IronHeart7334/AssemblyPrograms
e5b0649d2a1eb69bb5632c8219187d72fd69d057
[ "MIT" ]
null
null
null
asm/loops/andLoop.asm
IronHeart7334/AssemblyPrograms
e5b0649d2a1eb69bb5632c8219187d72fd69d057
[ "MIT" ]
null
null
null
; general comments ; sum references a named memory doubleword ; count is in ECX ; ; count := 0 ; sum := 500 ; while ((count <= 60) and (sum > 200)) ; subtract count from sum ; add 5 to count ; end while ; preprocessor directives .586 .MODEL FLAT ; external files to link with ; stack c...
19.245283
86
0.65098
738e0943c116e82d5dfd276eedfbe90bacfac39e
164,554
asm
Assembly
eurasia/services4/srvinit/devices/sgx/sgx_utils.asm
shaqfu786/GFX_Linux_DDK
f184ac914561fa100a5c92a488df777de8785f93
[ "FSFAP" ]
3
2020-03-13T23:37:00.000Z
2021-09-03T06:34:04.000Z
eurasia/services4/srvinit/devices/sgx/sgx_utils.asm
zzpianoman/GFX_Linux_DDK
f184ac914561fa100a5c92a488df777de8785f93
[ "FSFAP" ]
null
null
null
eurasia/services4/srvinit/devices/sgx/sgx_utils.asm
zzpianoman/GFX_Linux_DDK
f184ac914561fa100a5c92a488df777de8785f93
[ "FSFAP" ]
6
2015-02-05T03:01:01.000Z
2021-07-24T01:07:18.000Z
/***************************************************************************** Name : sgx_utils.asm Title : SGX microkernel utility code Author : Imagination Technologies Created : 29/08/2007 Copyright : 2006 by Imagination Technologies Limited. All rights reserved. No part of this software, either ma...
31.59639
137
0.668996
476adb1a8046af62199c0145fdb9f5bcf9a34d88
3,938
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1044.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_1044.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_1044.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: ret .global s_faulty_load s_faulty_load: push %r12 push %r13 push %r15 push %rbp push %rcx push %rdx // Load lea addresses_WT+0x10644, %rcx nop nop xor $62546, %r12 mov (%rcx), %edx xor $10105, %rbp // Faulty Load lea addresses_normal+0x1fabc, %r15 nop nop nop nop nop...
72.925926
2,999
0.662011
b112222a7eb016120428a02f19448fd6f13b398d
901
asm
Assembly
oeis/176/A176345.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/176/A176345.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/176/A176345.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A176345: Sum of gcd(k,n) from k = 1 to n over "regular" integers only (an integer k is regular if there is an x such that k^2 x == k (mod n)) ; Submitted by Simon Strandgaard ; 1,3,5,6,9,15,13,12,15,27,21,30,25,39,45,24,33,45,37,54,65,63,45,60,45,75,45,78,57,135,61,48,105,99,117,90,73,111,125,108,81,195,85,126,135,13...
24.351351
357
0.588235
f1266af3031c95bda5e9d1c9262841bb7b2deaeb
2,874
asm
Assembly
asm/prt.asm
I8087/Pop
ec54c642f59831df07cf35db94fb25079e69f308
[ "BSD-2-Clause" ]
1
2022-01-24T18:18:57.000Z
2022-01-24T18:18:57.000Z
asm/prt.asm
I8087/Pop
ec54c642f59831df07cf35db94fb25079e69f308
[ "BSD-2-Clause" ]
8
2016-04-26T18:44:38.000Z
2016-07-29T04:00:34.000Z
asm/prt.asm
I8087/Pop
ec54c642f59831df07cf35db94fb25079e69f308
[ "BSD-2-Clause" ]
null
null
null
; This is a stub for GoLink. ; Eventually it will contain needed functions. global __start global ___exit global ___malloc global ___free global ___strlen global ___strcpy global ___strinit global ___strcat global ___striter global ___strindex extern _main_E@0 extern _ExitProcess@4 extern _malloc@4 extern _free@4 se...
13.884058
46
0.614127
cc3eba699630fda143855e7cb23d5fa4d20c52ce
5,272
asm
Assembly
savefile/main.asm
stranck/fools2018-1
1c506b17343fcdfa708aafaf8e596153e2c63254
[ "MIT" ]
35
2018-04-01T06:55:28.000Z
2021-05-09T19:09:42.000Z
savefile/main.asm
stranck/fools2018-1
1c506b17343fcdfa708aafaf8e596153e2c63254
[ "MIT" ]
4
2018-04-01T15:32:55.000Z
2019-02-23T20:46:49.000Z
savefile/main.asm
stranck/fools2018-1
1c506b17343fcdfa708aafaf8e596153e2c63254
[ "MIT" ]
12
2018-04-01T15:48:09.000Z
2021-01-27T10:22:33.000Z
; === main.asm include "includes/symbols.asm" include "includes/charmap.asm" include "includes/macros.asm" include "main_sram2.asm" include "main_sram3.asm" include "main_wram.asm" include "maps/0000_MysteryZone.asm" include "maps/0110_CentralSquare.asm" include "maps/0210_NorthernPassage.asm" include "maps/0327_Gli...
36.867133
45
0.841047
35498f7fd4a2ad329505aca0227a7bedd6afdbf2
17,302
asm
Assembly
src/credit-block-editor.asm
ras88/stereo-editor
54fa5b4cb5fdfcfb13f7e06f676a73ad5d5f7261
[ "0BSD" ]
null
null
null
src/credit-block-editor.asm
ras88/stereo-editor
54fa5b4cb5fdfcfb13f7e06f676a73ad5d5f7261
[ "0BSD" ]
null
null
null
src/credit-block-editor.asm
ras88/stereo-editor
54fa5b4cb5fdfcfb13f7e06f676a73ad5d5f7261
[ "0BSD" ]
3
2021-03-24T15:17:01.000Z
2021-10-18T02:10:15.000Z
; ----------------------------------------------------------------------------- ; Copyright (c) 1988-2018 Robert A. Stoerrle ; ; Permission to use, copy, modify, and/or distribute this software for any ; purpose with or without fee is hereby granted, provided that the above ; copyright notice and this permission notice...
14.216927
79
0.566409
a5ac78ca11eba460a8416f00c874c71af32bd8a0
540
asm
Assembly
Modules/Module4/Division/division.asm
hackettccp/CSCI213
c2b5c3e1b5f47fa329a59b0a7261ebeee8e64059
[ "MIT" ]
null
null
null
Modules/Module4/Division/division.asm
hackettccp/CSCI213
c2b5c3e1b5f47fa329a59b0a7261ebeee8e64059
[ "MIT" ]
null
null
null
Modules/Module4/Division/division.asm
hackettccp/CSCI213
c2b5c3e1b5f47fa329a59b0a7261ebeee8e64059
[ "MIT" ]
null
null
null
#Demonstrates division with the div mnemonic #Run and look at the hi (remainder) and lo (quotient) registers .text li $t0, 100 #Dividend li $t1, 7 #Divisor div $t0, $t1 #Divides $t0 by $t1 (Result is stored to hi and lo) la $a0, quotient li $v0, 4 syscall mflo $a0 #Move the quotient to $a...
21.6
68
0.627778
08f92110dc0c9f2ebdfc7d74b2b838bca0b1c6a5
28,127
asm
Assembly
Games/banchorce/source/enemyai.asm
CiaranGruber/Ti-84-Calculator
96742a4a2b9e21aa9d675575dc7e4f26365430c0
[ "MIT" ]
1
2019-03-31T11:49:12.000Z
2019-03-31T11:49:12.000Z
Games/banchorce/source/enemyai.asm
CiaranGruber/Ti-84-Calculator
96742a4a2b9e21aa9d675575dc7e4f26365430c0
[ "MIT" ]
null
null
null
Games/banchorce/source/enemyai.asm
CiaranGruber/Ti-84-Calculator
96742a4a2b9e21aa9d675575dc7e4f26365430c0
[ "MIT" ]
1
2020-03-09T13:21:19.000Z
2020-03-09T13:21:19.000Z
;---------------------------------------------------------------; ; ; ; Banchor ; ; Enemy AI Scripts ; ; ...
31.011025
153
0.429516
0efcd19caea5be1257a4642bdd42098c6cef885f
174
asm
Assembly
libsrc/_DEVELOPMENT/adt/bv_stack/c/sccz80/bv_stack_empty.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
8
2017-01-18T12:02:17.000Z
2021-06-12T09:40:28.000Z
libsrc/_DEVELOPMENT/adt/bv_stack/c/sccz80/bv_stack_empty.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
1
2017-03-06T07:41:56.000Z
2017-03-06T07:41:56.000Z
libsrc/_DEVELOPMENT/adt/bv_stack/c/sccz80/bv_stack_empty.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
3
2017-03-07T03:19:40.000Z
2021-09-15T17:59:19.000Z
; int bv_stack_empty(bv_stack_t *s) SECTION code_clib SECTION code_adt_bv_stack PUBLIC bv_stack_empty EXTERN asm_bv_stack_empty defc bv_stack_empty = asm_bv_stack_empty
14.5
40
0.850575
484ba5f7815f8cb2a867e99a56fce3c6a0bf0cef
655
asm
Assembly
oeis/055/A055612.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/055/A055612.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/055/A055612.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A055612: a(n) = Product_{m=1..n} (binomial(n,m)+1). ; Submitted by Christian Krause ; 1,2,6,32,350,8712,526848,80289792,31428168318,31906468445000,84447578671097576,584524457418427932672,10604795873304968964262400,505245441738743508813986275328,63320582170435750241601032951040000,2090866929484922887986155235168543257...
43.666667
469
0.842748
6153dfdb226bdaac748c1b5c42d96a919f8439dc
626
asm
Assembly
solutions/10 - Emergency Escapades/size-40_speed-19.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
45
2018-09-05T04:56:59.000Z
2021-11-22T08:57:26.000Z
solutions/10 - Emergency Escapades/size-40_speed-19.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
36
2018-09-01T11:34:26.000Z
2021-05-19T23:20:49.000Z
solutions/10 - Emergency Escapades/size-40_speed-19.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
36
2018-09-01T07:44:19.000Z
2021-09-10T19:07:35.000Z
-- 7 Billion Humans (2053) -- -- 10: Emergency Escapades -- -- Author: soerface -- Size: 40 -- Speed: 19 a: step w step w b: step w if c == 1: if s == wall: step n step nw jump c endif if sw != hole: step sw jump d endif if nw != hole: step nw jump e endif if w != hole: step w jump f endif e...
9.343284
29
0.586262
48b0ccae6bb2220c511622e54271bb166a13c87c
656
asm
Assembly
oeis/192/A192832.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/192/A192832.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/192/A192832.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A192832: Molecular topological indices of the lattice graphs. ; 0,48,576,2880,9600,25200,56448,112896,207360,356400,580800,906048,1362816,1987440,2822400,3916800,5326848,7116336,9357120,12129600,15523200,19636848,24579456,30470400,37440000,45630000,55194048,66298176,79121280,93855600,110707200,129896448,151658496,176...
50.461538
501
0.82622
2070804642fe6e8352a1a6de673bd9fe94a84027
5,891
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21743_1494.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_21743_1494.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_21743_1494.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 %r15 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0x12f2c, %rsi lea addresses_WC_ht+0x12498, %rdi nop nop nop inc %rax mov $29, %rcx rep movsl nop nop xor $40091, %rbp lea addresses_WC_ht+0x10a2c, %rax nop nop nop and $17571, %rbp ...
40.07483
2,999
0.661348
5ab971d7fc81092e428cbc049a12cc3627c75ac0
2,232
asm
Assembly
game-projects/Zedda/Objects/TitleScreen/Triangle/Triangle.asm
wide-dot/thomson-to8-game-engine
f305368ff28fba6e6bd03d0138a36ff5ea67e925
[ "Apache-2.0" ]
11
2021-09-07T18:45:06.000Z
2022-02-15T06:36:19.000Z
game-projects/Zedda/Objects/TitleScreen/Triangle/Triangle.asm
dougmasten/thomson-to8-game-engine
b1f29e3b650e2296a5058570173e1c9068bccbe4
[ "Apache-2.0" ]
null
null
null
game-projects/Zedda/Objects/TitleScreen/Triangle/Triangle.asm
dougmasten/thomson-to8-game-engine
b1f29e3b650e2296a5058570173e1c9068bccbe4
[ "Apache-2.0" ]
1
2021-11-22T08:43:52.000Z
2021-11-22T08:43:52.000Z
; --------------------------------------------------------------------------- ; Object - Triangle ; ; input REG : [u] pointer to Object Status Table (OST) ; --------- ; ; Animated full screen Background ; ; --------------------------------------------------------------------------- INCLUDE "./Engine/Macros.asm...
20.477064
86
0.436828
90d3c45a9f2b180bbfb466ed623bf7a33af93bf0
4,827
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1317.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1317.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1317.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 %r15 push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x16f4b, %rsi lea addresses_D_ht+0xa743, %rdi nop nop inc %rbx mov $67, %rcx rep movsw nop nop nop nop and $4232, %r15 pop %rsi pop %rdi pop %rcx pop %rbx pop %r15 ret .global s_faulty_load s_faulty_l...
46.864078
2,999
0.657137
dbc7094a25f2dac662bdbaffe3f9b7f79e6f31a0
6,454
asm
Assembly
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_6543_704.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_6543_704.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_6543_704.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 %r14 push %r15 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x46c2, %r8 nop sub $22849, %r12 mov $0x6162636465666768, %r15 movq %r15, %xmm1 movups %xmm1, (%r8) nop add $38075, %r14 lea addresses_WC_ht+0x1c6c2, %r13 nop nop nop...
36.88
2,999
0.657267
0e8f2e001cb1113f43d14c0f68de125a23a58afe
714
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math32/z80/f32_fshexpop.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/math/float/math32/z80/f32_fshexpop.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/math/float/math32/z80/f32_fshexpop.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_clib SECTION code_fp_math32 PUBLIC m32_dhexpop EXTERN m32_fsmin m32_dhexpop: ; strtod helper ; ; create double from mantissa on stack ; ; enter : stack = mantissa, ret ; ; exit : DEHL'= double ; ; uses : af, bc', de', hl' exx pop bc ; my retur...
13.730769
73
0.521008
4d046b91f13edd493165eeeeeed6198facfaad37
1,230
asm
Assembly
cc4x86/tests/regressive/asm_listings/float2__optimize_noregalloc.asm
artyompal/C-compiler
0c13e96b926d4c3282be8e9629cbc7ba439ea2d4
[ "MIT" ]
4
2017-03-19T20:10:55.000Z
2022-01-20T08:34:25.000Z
cc4x86/tests/regressive/asm_listings/float2__optimize_noregalloc.asm
artyompal/C-compiler
0c13e96b926d4c3282be8e9629cbc7ba439ea2d4
[ "MIT" ]
null
null
null
cc4x86/tests/regressive/asm_listings/float2__optimize_noregalloc.asm
artyompal/C-compiler
0c13e96b926d4c3282be8e9629cbc7ba439ea2d4
[ "MIT" ]
null
null
null
.686 .model flat .xmm .data ___unnamed_float_0 dd 040000000h public ___unnamed_float_0 ___unnamed_float_1 dd 03f800000h public ___unnamed_float_1 ___unnamed_float_2 dd 040400000h public ___unnamed_float_2 ___unnamed_float_3 dd 040800000h public ___unnamed_flo...
24.6
53
0.634146
959ce0d34d48862dcd8a21749a80fea302ae74c2
467
asm
Assembly
oeis/133/A133602.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/133/A133602.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/133/A133602.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A133602: The matrix-vector product A133080 * A000108. ; Submitted by Jamie Morken(w1) ; 1,2,2,7,14,56,132,561,1430,6292,16796,75582,208012,950912,2674440,12369285,35357670,165002460,477638700,2244901890,6564120420,31030387440,91482563640,434542177290,1289904147324,6151850548776 mov $3,$0 mod $0,2 mov $2,$0 add $2,1 ...
20.304348
192
0.683084
14f25fae4b7325053988d81ecc9f17d3dfd69722
789
asm
Assembly
0-nASM/6stdo.asm
NavinShrinivas/os-dev
81e8e2f86cc3cbeca45c79dd1457f29aa0c2df35
[ "MIT" ]
null
null
null
0-nASM/6stdo.asm
NavinShrinivas/os-dev
81e8e2f86cc3cbeca45c79dd1457f29aa0c2df35
[ "MIT" ]
null
null
null
0-nASM/6stdo.asm
NavinShrinivas/os-dev
81e8e2f86cc3cbeca45c79dd1457f29aa0c2df35
[ "MIT" ]
null
null
null
;ye adding those line feeds in the end of those string worked in last program ;but we cant go around adding line feeds to end of strings is a stupid idea , c thinks otherwise , but still ;hence we are going write an other function to write linefeeds along with strings ;-----------------finds the len----------------- s...
18.785714
108
0.590621
a2b9afbdf7f3a9ef7d37def12ed2c0476d5f0c6f
10,064
asm
Assembly
Transynther/x86/_processed/US/_st_zr_sm_/i7-7700_9_0xca.log_21829_1244.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_st_zr_sm_/i7-7700_9_0xca.log_21829_1244.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_st_zr_sm_/i7-7700_9_0xca.log_21829_1244.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 %r11 push %r14 push %r15 push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0xc480, %r15 nop nop nop cmp %rdx, %rdx mov $0x6162636465666768, %r14 movq %r14, %xmm1 vmovups %ymm1, (%r15) nop sub %rcx, %rcx lea addresses_UC_ht+0x1b9c0, %r11 nop ...
28.111732
2,999
0.650437
bd758c995a6c76a158ce9b9ac00fa79b6fb813c7
64,889
asm
Assembly
uniq.asm
Vignesh-Nadar/xv6
601dda244865540bb0ace21a2ff5ae7e6cf181f9
[ "MIT-0" ]
null
null
null
uniq.asm
Vignesh-Nadar/xv6
601dda244865540bb0ace21a2ff5ae7e6cf181f9
[ "MIT-0" ]
null
null
null
uniq.asm
Vignesh-Nadar/xv6
601dda244865540bb0ace21a2ff5ae7e6cf181f9
[ "MIT-0" ]
null
null
null
_uniq: file format elf32-i386 Disassembly of section .text: 00000000 <get_line>: * 3: only print duplicate lines */ int output_format = 1; int ignore_case = 0; int get_line(char *line_ptr, int max, int fd) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 83 ec 28 ...
36.129733
64
0.436746
d55e593c3328197d7fced02b74055a5f6ab542c9
92
asm
Assembly
tools-src/gnu/binutils/gas/testsuite/gas/tic54x/in_mlib.asm
enfoTek/tomato.linksys.e2000.nvram-mod
2ce3a5217def49d6df7348522e2bfda702b56029
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/binutils/gas/testsuite/gas/tic54x/in_mlib.asm
unforgiven512/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/binutils/gas/testsuite/gas/tic54x/in_mlib.asm
unforgiven512/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
IN_MLIB .macro AA,BB,CC ADD #AA,a ADD #BB,b ADD #CC,a .endm
15.333333
23
0.434783
3f14add90885275fae7c2a995b8a32fe6e31b930
278
asm
Assembly
001-helloworld/04-x86-printf/helloworld.asm
mustafagonul/x86-assembly-examples
c84565062b3ccd7dc955f5a08e0c84837d9c3cb8
[ "MIT" ]
null
null
null
001-helloworld/04-x86-printf/helloworld.asm
mustafagonul/x86-assembly-examples
c84565062b3ccd7dc955f5a08e0c84837d9c3cb8
[ "MIT" ]
null
null
null
001-helloworld/04-x86-printf/helloworld.asm
mustafagonul/x86-assembly-examples
c84565062b3ccd7dc955f5a08e0c84837d9c3cb8
[ "MIT" ]
null
null
null
section .data msg db 'Hello World! %d',`\n`, `\0` ; Hello world message section .text global main ; declared for the linker extern printf main: push ebp mov ebp, esp mov eax, 1 push dword eax push dword msg call printf add esp, 12 mov esp, ebp pop ebp ret
12.086957
58
0.669065
03d0030d2733c22e711bf792404dc8e8673ed035
224
asm
Assembly
programs/oeis/017/A017529.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/017/A017529.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/017/A017529.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A017529: (12n)^9. ; 0,5159780352,2641807540224,101559956668416,1352605460594688,10077696000000000,51998697814228992,208215748530929664,692533995824480256,1999004627104432128,5159780352000000000 pow $0,9 mul $0,5159780352
37.333333
175
0.861607
6a51ad36552ab3c4000f57c53523151637556e72
495
asm
Assembly
src/src/c/borlandc/dpmi32/bios_equ.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
7
2022-01-20T08:27:54.000Z
2022-03-17T10:15:31.000Z
src/src/c/borlandc/dpmi32/bios_equ.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
null
null
null
src/src/c/borlandc/dpmi32/bios_equ.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
null
null
null
.386 .model flat,C PUBLIC _bios_equiplist PUBLIC _bios_memsize PUBLIC _bios_timeofday .code _bios_equiplist proc near sub eax,eax int 11h ret _bios_equiplist endp _bios_memsize proc near sub eax,eax int 12h ret _bios_memsize endp _bios_timeofday proc near mov edx,[esp+8] mov edx,[edx] shld ecx,edx...
10.76087
25
0.723232
574e4708166fa20d99ea1e8368e284e4c730898b
358
asm
Assembly
programs/oeis/055/A055962.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/055/A055962.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/055/A055962.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A055962: n + reversal of base 12 digits of n (written in base 10). ; 0,2,4,6,8,10,12,14,16,18,20,22,13,26,39,52,65,78,91,104,117,130,143,156,26,39,52,65,78,91,104,117,130,143,156,169,39,52,65,78,91,104,117,130,143,156,169,182,52,65,78,91,104,117,130,143,156,169,182,195,65,78 mov $1,$0 seq $1,56961 ; Base 12 reversal...
51.142857
208
0.681564
f1fc47da17006a871ef5dee75b07e5d3dbbe7ec0
453
asm
Assembly
oeis/330/A330892.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/330/A330892.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/330/A330892.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A330892: Square array of polygonal numbers read by descending antidiagonals (the transpose of A317302). ; Submitted by Christian Krause ; 0,1,0,0,1,0,-3,1,1,0,-8,0,2,1,0,-15,-2,3,3,1,0,-24,-5,4,6,4,1,0,-35,-9,5,10,9,5,1,0,-48,-14,6,15,16,12,6,1,0,-63,-20,7,21,25,22,15,7,1,0,-80,-27,8,28,36,35,28,18,8,1,0,-99,-35,9,36...
26.647059
203
0.611479
4654eca3a9de69a04d25c4c5a1f057f32546b0d1
1,875
asm
Assembly
counter24b.asm
erg0dic/Sec_dict
b0ba213fa9b3ae78c3872da303d232b45a9e0c4a
[ "MIT" ]
null
null
null
counter24b.asm
erg0dic/Sec_dict
b0ba213fa9b3ae78c3872da303d232b45a9e0c4a
[ "MIT" ]
null
null
null
counter24b.asm
erg0dic/Sec_dict
b0ba213fa9b3ae78c3872da303d232b45a9e0c4a
[ "MIT" ]
null
null
null
#include p18f87k22.inc global ac1, ac2, ac3, ac_temp1, ac_temp2, ac_temp3, init_counter24bit, counter24bit acs0 udata_acs ac1 res 1 ac2 res 1 ac3 res 1 ac_temp1 res 1 ac_temp2 res 1 ac_temp3 res 1 here_is_some code init_counter24bit movlw 0x00 movwf ac_temp1, 0 movwf ac_temp2, 0 movwf ac_temp3, 0 ret...
22.058824
85
0.722667
94b35f09d4316f57be5f5a8bb3ff00a22f731dbd
39,708
asm
Assembly
Appl/GeoWrite/Document/documentPage.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Appl/GeoWrite/Document/documentPage.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Appl/GeoWrite/Document/documentPage.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @---------------------------------------------------------------------- Copyright (c) Berkeley Softworks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: GeoWrite FILE: documentPage.asm REVISION HISTORY: Name Date Description ---- ---- ----------- Tony 3/92 Initial version DESCRIPT...
23.343915
80
0.666591
de9edf0489672af4a44d1738b3092eb0ee837320
53
asm
Assembly
test/jzas/semantic/valid/success03.asm
scoffey/jz80sim
0de07a5ef51a1e7131b27056744459f29cd11d39
[ "MIT" ]
1
2015-03-27T15:58:50.000Z
2015-03-27T15:58:50.000Z
test/jzas/semantic/valid/success03.asm
scoffey/jz80sim
0de07a5ef51a1e7131b27056744459f29cd11d39
[ "MIT" ]
null
null
null
test/jzas/semantic/valid/success03.asm
scoffey/jz80sim
0de07a5ef51a1e7131b27056744459f29cd11d39
[ "MIT" ]
null
null
null
init mac a end init mac macro reg ld reg, 0 endm
7.571429
13
0.679245
e8ad7f507aec9a9e1945995fab561e103f891b50
396
asm
Assembly
oeis/093/A093406.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/093/A093406.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/093/A093406.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A093406: a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) + a(n-4). ; Submitted by Christian Krause ; 1,3,11,31,71,145,289,601,1321,2979,6683,14743,32111,69697,151777,332113,728689,1598883,3503627,7668079,16774775,36704017,80343361,175916521,385196761,843365379,1846290395,4041672871,8847607391,19368919297,42403014721,9283064553...
44
230
0.714646
891400fb045228fde72149a603905af1bdf6cadc
367
asm
Assembly
oeis/158/A158893.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/158/A158893.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/158/A158893.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A158893: Triangle read by rows: T(n,1)=7n-6; T(n,m)= 1+n-m, 1<m<=n. ; Submitted by Christian Krause ; 1,8,1,15,2,1,22,3,2,1,29,4,3,2,1,36,5,4,3,2,1,43,6,5,4,3,2,1,50,7,6,5,4,3,2,1,57,8,7,6,5,4,3,2,1,64,9,8,7,6,5,4,3,2,1 mov $2,$0 lpb $0 add $4,1 mov $3,$4 cmp $3,$2 sub $2,$4 mul $3,$0 mov $0,$2 mul $3,...
19.315789
119
0.53406
c1e1ef37fd145c049d056c922d16230d37f7c372
1,265
nasm
Assembly
modules/taskman/path/pathman.nasm
r-tty/radios
fdfaaadd256564ea3ed1b7fc408e7aecf648ae2b
[ "BSD-3-Clause" ]
null
null
null
modules/taskman/path/pathman.nasm
r-tty/radios
fdfaaadd256564ea3ed1b7fc408e7aecf648ae2b
[ "BSD-3-Clause" ]
null
null
null
modules/taskman/path/pathman.nasm
r-tty/radios
fdfaaadd256564ea3ed1b7fc408e7aecf648ae2b
[ "BSD-3-Clause" ]
null
null
null
;******************************************************************************* ; pathman.nasm - head code of the path manager. ; Copyright (c) 2002 RET & COM Research. ;******************************************************************************* module tm.pathman %include "errors.ah" %include "parameters.ah" %in...
21.810345
80
0.506719
b7af294cabb54f67507ac4ed241cd31281c0cdd7
4,102
asm
Assembly
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_311.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_311.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_311.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 %r8 push %rax push %rcx push %rdi push %rsi lea addresses_UC_ht+0x1a092, %rsi lea addresses_WT_ht+0x1a6fa, %rdi clflush (%rdi) nop nop and $1664, %rax mov $86, %rcx rep movsl nop nop nop nop nop and $79, %r8 pop %rsi pop %rdi pop %rcx pop %rax pop %r8 ret .global s...
60.323529
2,999
0.664066
03041b5a899b93d30894f5c7b51c9e0e526649b7
6,685
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2035.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_2035.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_2035.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 %r14 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0xe6f8, %rsi lea addresses_D_ht+0x140f8, %rdi nop nop nop nop nop xor $20134, %r14 mov $61, %rcx rep movsq nop nop nop nop add $43178, %rdi lea addresses_UC_ht+0x19450, %rsi lea addresse...
34.817708
2,999
0.657442
4b77138d700525922ce89ba3c3b9f0235a9c85df
69,857
asm
Assembly
src/x86/looprestoration_sse.asm
EwoutH/rav1e
39f35d0c94a0523bc6c26042bb54f7dca28efb37
[ "BSD-2-Clause" ]
2,877
2018-02-16T01:02:07.000Z
2022-03-30T22:24:56.000Z
src/x86/looprestoration_sse.asm
EwoutH/rav1e
39f35d0c94a0523bc6c26042bb54f7dca28efb37
[ "BSD-2-Clause" ]
2,353
2018-02-12T22:13:01.000Z
2022-03-27T23:45:48.000Z
src/x86/looprestoration_sse.asm
EwoutH/rav1e
39f35d0c94a0523bc6c26042bb54f7dca28efb37
[ "BSD-2-Clause" ]
245
2018-02-13T16:56:16.000Z
2022-02-06T21:53:57.000Z
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; ; 1. Redistributions of source c...
28.524704
91
0.448173
1fd2373562d66f46536eda4e28da647de08e1d6d
1,315
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_1_745.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_0xca.log_1_745.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_0xca.log_1_745.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 %rax push %rbx push %rsi lea addresses_WC_ht+0x955a, %rbx nop nop sub %r10, %r10 mov (%rbx), %si nop nop sub %rax, %rax pop %rsi pop %rbx pop %rax pop %r10 ret .global s_faulty_load s_faulty_load: push %r13 push %r14 push %r15 push %rcx push %rdi push %rd...
17.533333
142
0.647148
9d57b551b670dfa26067aa5931598524a7bce34e
643
asm
Assembly
oeis/004/A004552.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/004/A004552.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/004/A004552.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A004552: Expansion of sqrt(3) in base 7. ; Submitted by Christian Krause ; 1,5,0,6,0,4,4,0,2,1,4,1,0,1,6,6,4,5,6,1,4,0,0,0,1,5,3,1,5,0,6,5,3,4,5,3,2,3,4,6,6,1,5,2,0,1,5,5,4,2,4,5,5,6,3,5,2,3,1,3,6,6,0,0,2,1,6,6,2,5,0,0,3,6,4,3,5,6,1,2,5,1,3,6,6,0,3,3,5,5,4,1,1,6,2,2,3,6,6,3 mov $1,1 mov $2,1 mov $3,$0 add $3,2 mov $...
16.075
201
0.511664
2894f131c3bfa7af568ca8efc99b39e0476fc8d5
12,540
asm
Assembly
Appl/Calendar/Main/mainMailbox.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Appl/Calendar/Main/mainMailbox.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Appl/Calendar/Main/mainMailbox.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (c) Copyright Geoworks 1996 -- All Rights Reserved GEOWORKS CONFIDENTIAL PROJECT: PC GEOS MODULE: Calendar\Main FILE: mainMailbox.asm AUTHOR: Jason Ho, Aug 8, 1996 ROUTINES: Name Description ---- ----------- ...
26.125
79
0.621292
8f79aa4795bbe0e8a04d026d5a645cf9acd2ba1b
1,666
asm
Assembly
Example/Example_Insane.asm
arnaud-carre/LSPlayer
7187ee0be4f9da9615245c9b33e4532560ccc58b
[ "MIT" ]
45
2021-03-10T21:45:45.000Z
2022-03-20T16:52:25.000Z
Example/Example_Insane.asm
arnaud-carre/LSPlayer
7187ee0be4f9da9615245c9b33e4532560ccc58b
[ "MIT" ]
5
2021-03-11T08:37:50.000Z
2022-02-15T21:40:03.000Z
Example/Example_Insane.asm
arnaud-carre/LSPlayer
7187ee0be4f9da9615245c9b33e4532560ccc58b
[ "MIT" ]
2
2021-03-15T13:46:33.000Z
2021-03-15T14:29:51.000Z
; ; LightSpeedPlayer usage example ; code move.w #$7fff,$dff09e move.w #(1<<5)|(1<<6)|(1<<7)|(1<<8),$dff096 move.w #(1<<5)|(1<<6)|(1<<13),$dff09a bsr clearSprites ; Init LSP player lea LSPMusic,a0 lea LSPBank,a1 lea copperDMAConPatch+3,a2 bsr LSP_MusicDriver ; setup copper...
18.931818
73
0.623049
7252dda28c13acbc4d20615e0dc969d4ff6b3998
19
asm
Assembly
src/main/fragment/mos6502-common/vbuyy_ge_vbum1_then_la1.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
2
2022-03-01T02:21:14.000Z
2022-03-01T04:33:35.000Z
src/main/fragment/mos6502-common/vbuyy_ge_vbum1_then_la1.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
src/main/fragment/mos6502-common/vbuyy_ge_vbum1_then_la1.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
cpy {m1} bcs {la1}
6.333333
9
0.578947
e62c2621b0e32b596b84967c3481cd4417bf1394
315
asm
Assembly
programs/oeis/158/A158907.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/158/A158907.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/158/A158907.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A158907: Row sums of triangle A158906. ; 1,3,4,6,6,9,8,11,11,13,12,17,14,17,18,20,18,23,20,25,24,25,24,31,27,29,30,33,30,37,32,37,36,37,38,44,38,41,42,47,42,49,44,49,50,49,48,57,51,55,54,57,54,61,58,63,60,61,60 mov $1,$0 seq $1,5 ; d(n) (also called tau(n) or sigma_0(n)), the number of divisors of n. add $0,$1
45
171
0.650794
486ea34532d3101951e79820f9e2e7f1695054e1
9,530
asm
Assembly
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_21829_346.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_21829_346.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_21829_346.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 %r13 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0x5b16, %rsi lea addresses_normal_ht+0x2824, %rdi nop inc %r13 mov $32, %rcx rep movsq nop nop nop nop nop xor $58718, %r13 lea addresses_UC_ht+0x6616, %rsi lea addresses_UC_ht+...
28.966565
2,999
0.653515
bbfab95c498722caf30d7a5d0ae5c9c02d1087b4
4,270
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2.log_5924_1177.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2.log_5924_1177.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2.log_5924_1177.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: ret .global s_faulty_load s_faulty_load: push %r14 push %r15 push %r8 push %r9 push %rbp push %rcx push %rdi push %rsi // Store lea addresses_normal+0x1dacb, %r14 nop nop add $58194, %r9 movb $0x51, (%r14) nop nop cmp %r8, %r8 // REPMOV lea addresses_RW+0x13c6b, %rsi ...
55.454545
2,999
0.660187
48796201f1d46c61cf2270c70e1a5b3ebc241332
1,461
asm
Assembly
Benchmarks/quicksort.asm
tim-roderick/simple-cpu-simulator
334baf1934751527b7e5ffa0ad85d5e53e7215a1
[ "MIT" ]
2
2019-12-09T12:02:50.000Z
2019-12-09T22:40:01.000Z
Benchmarks/quicksort.asm
tim-roderick/simple-cpu-simulator
334baf1934751527b7e5ffa0ad85d5e53e7215a1
[ "MIT" ]
null
null
null
Benchmarks/quicksort.asm
tim-roderick/simple-cpu-simulator
334baf1934751527b7e5ffa0ad85d5e53e7215a1
[ "MIT" ]
1
2020-05-04T09:13:50.000Z
2020-05-04T09:13:50.000Z
;r1 is base of Array, r2 is lo, r3 is hi, r4 is SP, r16 is copy slave for r4 LDC r1 0 LDC r2 0 LDC r3 100 MOV r16 r3 ADDI r4 r16 1 ;CALL QUICKSORT ST r1 -re1 r4 MOV r16 r4 ADDI r4 r16 1 J -QUICKSORT -re1 J -END -QUICKSORT CMP r14 r2 r3 BGEZ -re4 r14 ST r1 -re2 r4 MOV r16 r4 ADDI r4 r16 1 J -PARTITION -re2 ST r1 r...
10.742647
76
0.70089
212b518aeba10de411edd6e2e9b0a53c57622a31
298
asm
Assembly
programs/oeis/173/A173770.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/173/A173770.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/173/A173770.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A173770: a(n)=(4*10^n-13)/9. ; 3,43,443,4443,44443,444443,4444443,44444443,444444443,4444444443,44444444443,444444444443,4444444444443,44444444444443,444444444444443,4444444444444443,44444444444444443,444444444444444443 add $0,1 mov $1,10 pow $1,$0 sub $1,6 mul $1,4 div $1,9 add $1,2 mov $0,$1
24.833333
190
0.765101
bfe66e37f9234f101d694b604a13ad5489a03df0
689
asm
Assembly
oeis/077/A077988.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/077/A077988.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/077/A077988.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A077988: Expansion of 1/(1+2*x-2*x^3). ; Submitted by Jon Maiga ; 1,-2,4,-6,8,-8,4,8,-32,72,-128,192,-240,224,-64,-352,1152,-2432,4160,-6016,7168,-6016,0,14336,-40704,81408,-134144,186880,-210944,153600,66560,-555008,1417216,-2701312,4292608,-5750784,6098944,-3612672,-4276224,20750336,-48726016,88899584,-136298496,17...
40.529412
500
0.731495
20a24bbf79dd70b765952590e5c91dbd2eb1b7a6
3,100
asm
Assembly
programs/oeis/168/A168029.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/168/A168029.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/168/A168029.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A168029: n*(n^6+1)/2. ; 0,1,65,1095,8194,39065,139971,411775,1048580,2391489,5000005,9743591,17915910,31374265,52706759,85429695,134217736,205169345,306110025,446935879,640000010,900544281,1247178955,1702412735,2293235724,3051757825,4015905101,5230176615,6746464270,8624938169,10935000015,13756307071,17179869200,21309...
387.5
3,036
0.92129
03749da91f38b58afa0aa8af80a1b9ee9dec6b29
115
asm
Assembly
OSDev/Try-0/src/boot/entry.asm
Ashwin-Paudel/Tries
91ea32d715eedca528d143cf5e9dfd9ba70804e3
[ "Apache-2.0" ]
null
null
null
OSDev/Try-0/src/boot/entry.asm
Ashwin-Paudel/Tries
91ea32d715eedca528d143cf5e9dfd9ba70804e3
[ "Apache-2.0" ]
null
null
null
OSDev/Try-0/src/boot/entry.asm
Ashwin-Paudel/Tries
91ea32d715eedca528d143cf5e9dfd9ba70804e3
[ "Apache-2.0" ]
null
null
null
; ; entry.asm ; KripayaOS ; ; Call the kernel [global _start] [bits 32] _start: [extern main] call main jmp $
8.214286
17
0.652174
c47216c16b2bb6d1db40796343b6bb30615709b7
362
asm
Assembly
solutions/60 - Understaffed Sorting/size-24_speed-533.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
45
2018-09-05T04:56:59.000Z
2021-11-22T08:57:26.000Z
solutions/60 - Understaffed Sorting/size-24_speed-533.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
36
2018-09-01T11:34:26.000Z
2021-05-19T23:20:49.000Z
solutions/60 - Understaffed Sorting/size-24_speed-533.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
36
2018-09-01T07:44:19.000Z
2021-09-10T19:07:35.000Z
-- 7 Billion Humans (2053) -- -- 60: Understaffed Sorting -- -- Author: soerface -- Size: 24 -- Speed: 533 a: b: if w != wall: step w jump b endif mem1 = set s step s step s c: if ne < mem1: pickup ne drop pickup n step ne drop pickup sw step w drop step s endif if e != wall: step e mem1 = set n jump c ...
9.05
30
0.627072
21a3766ef0da6d961d8437d74d7ec93c5128dc6d
1,877
asm
Assembly
programs/oeis/231/A231667.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/231/A231667.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/231/A231667.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A231667: a(n) = Sum_{i=0..n} digsum_4(i)^4, where digsum_4(i) = A053737(i). ; 0,1,17,98,99,115,196,452,468,549,805,1430,1511,1767,2392,3688,3689,3705,3786,4042,4058,4139,4395,5020,5101,5357,5982,7278,7534,8159,9455,11856,11872,11953,12209,12834,12915,13171,13796,15092,15348,15973,17269,19670,20295,21591,23992,28088,2...
98.789474
1,593
0.797549
0f5c3ad576178b7751e05c2f680e674e3c8cfd1b
3,969
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_sm_/i7-8650U_0xd2_notsx.log_286_1421.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_sm_/i7-8650U_0xd2_notsx.log_286_1421.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_sm_/i7-8650U_0xd2_notsx.log_286_1421.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 %r14 push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0xe25, %rcx nop nop nop nop nop cmp $26041, %r10 mov (%rcx), %rbx nop nop dec %r14 lea addresses_normal_ht+0x14082, %r11 nop nop nop nop add $50733, %rsi movb (%r11), %bl nop nop and %r1...
31.007813
857
0.588561
f6cfb2a3df8fc2dd22557c68aef4d5739e60e1fb
200
asm
Assembly
libsrc/_DEVELOPMENT/libgen/c/sccz80/dirname.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/libgen/c/sccz80/dirname.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/libgen/c/sccz80/dirname.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; char *dirname(char *path) SECTION code_string PUBLIC dirname EXTERN asm_dirname defc dirname = asm_dirname ; SDCC bridge for Classic IF __CLASSIC PUBLIC _dirname defc _dirname = dirname ENDIF
11.764706
27
0.79
98fc1966ecd45923ee8ff50cadd72ef8ee359bd1
346
asm
Assembly
programs/oeis/074/A074602.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/074/A074602.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/074/A074602.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A074602: a(n) = 2^n + 7^n. ; 2,9,53,351,2417,16839,117713,823671,5765057,40354119,282476273,1977328791,13841291297,96889018599,678223089233,4747561542711,33232930635137,232630514118279,1628413598172593,11398895185897431 mov $2,2 pow $2,$0 add $2,2 mov $3,7 pow $3,$0 add $2,$3 mov $4,$2 add $4,2 mul $4,2 gcd $1,$4 su...
20.352941
192
0.722543
d8b52c75f65f4e0d19128d3582a06e109bf88196
107
asm
Assembly
test/hazard-tests/load-use.asm
skyzh/mips-simulator
61a319ab776fa30831e75aab906c6ef22bb7755e
[ "MIT" ]
35
2020-04-02T05:15:53.000Z
2022-03-13T14:15:32.000Z
test/hazard-tests/load-use.asm
skyzh/mips-simulator
61a319ab776fa30831e75aab906c6ef22bb7755e
[ "MIT" ]
1
2020-04-04T10:12:11.000Z
2020-04-04T10:12:11.000Z
test/hazard-tests/load-use.asm
skyzh/mips-simulator
61a319ab776fa30831e75aab906c6ef22bb7755e
[ "MIT" ]
1
2020-12-27T21:15:20.000Z
2020-12-27T21:15:20.000Z
li $a0, 100 li $a2, 0x2000 sb $a0, ($a2) lb $a1, ($a2) addi $a1, $a1, 2000 lb $a0, ($a2) add $a0, $a0, $a1
13.375
19
0.523364
c57879c0fa09b03c13e802484673d02630cb09cd
3,293
asm
Assembly
programs/oeis/017/A017068.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/017/A017068.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/017/A017068.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A017068: a(n) = (8*n)^4. ; 0,4096,65536,331776,1048576,2560000,5308416,9834496,16777216,26873856,40960000,59969536,84934656,116985856,157351936,207360000,268435456,342102016,429981696,533794816,655360000,796594176,959512576,1146228736,1358954496,1600000000,1871773696,2176782336,2517630976,2897022976,3317760000,378274...
470.428571
3,236
0.914667
ff59d71efecbd427409664f6ffa91b324e115788
2,857
asm
Assembly
projects/08/FunctionCalls/NestedCall/Sys.asm
nadavWeisler/Nand2Tetris
59c2e616c45044c15b99aeb8459d39b59e5e07ba
[ "MIT" ]
null
null
null
projects/08/FunctionCalls/NestedCall/Sys.asm
nadavWeisler/Nand2Tetris
59c2e616c45044c15b99aeb8459d39b59e5e07ba
[ "MIT" ]
null
null
null
projects/08/FunctionCalls/NestedCall/Sys.asm
nadavWeisler/Nand2Tetris
59c2e616c45044c15b99aeb8459d39b59e5e07ba
[ "MIT" ]
null
null
null
(Sys.init) @0 D=A @i M=D D=M @Sys.init.0 D;JEQ (Sys.init..0) @SP A=M M=0 @SP D=M D=D+1 M=D @i D=M D=D-1 M=D @Sys.init..0 D;JNE (Sys.init.0) @4000 D=A @SP A=M M=D @SP M=M+1 @0 D=A @THIS D=D+A @13 M=D @SP M=M-1 A=M D=M @13 A=M M=D @5000 D=A @SP A=M M=D @SP M=M+1 @1 D=A @THIS D=D+A @13 M=D @SP M=M-1 A=M D=M @13 A=M M=D @R...
4.714521
14
0.528876
f9d5ea5436c3e34f7841f46ac7518d9039535acc
514
asm
Assembly
programs/oeis/328/A328478.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/328/A328478.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/328/A328478.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A328478: Divide n by the largest primorial that divides it and repeat until a fixed point is reached; a(n) is the fixed point. ; 1,1,3,1,5,1,7,1,9,5,11,1,13,7,15,1,17,3,19,5,21,11,23,1,25,13,27,7,29,1,31,1,33,17,35,1,37,19,39,5,41,7,43,11,45,23,47,1,49,25,51,13,53,9,55,7,57,29,59,1,61,31,63,1,65,11,67,17,69,35,71,1,7...
51.4
269
0.663424
0a4784e97d55ba8d397c4e549091ea78376f7513
673
asm
Assembly
oeis/001/A001795.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/001/A001795.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/001/A001795.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A001795: Coefficients of Legendre polynomials. ; Submitted by Jamie Morken(s2) ; 1,1,7,33,715,4199,52003,334305,17678835,119409675,1641030105,11435320455,322476036831,2295919134019,32968493968795,238436656380769,27767032438524099,203236010537432691,2989949596465113373,22091732848375837675,655531760569123027205,488055...
67.3
481
0.849926
e4d47bb18533b7720af9d260887d0320e9c06183
3,067
asm
Assembly
Library/Ruler/uiControlCommon.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Library/Ruler/uiControlCommon.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Library/Ruler/uiControlCommon.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: uiControlCommon.asm AUTHOR: Jon Witort FUNCTIONS: Scope Name Description ----- ---- ----------- REVISION HISTORY: Name Date Descriptio...
21.598592
71
0.500489
2a44a7419f6968a22ead9813426c4d15ac1298f2
1,539
asm
Assembly
libsrc/target/rx78/gencon/generic_console_vpeek.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/target/rx78/gencon/generic_console_vpeek.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/target/rx78/gencon/generic_console_vpeek.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
MODULE generic_console_vpeek SECTION code_clib PUBLIC generic_console_vpeek EXTERN generic_console_font32 EXTERN generic_console_udg32 EXTERN screendollar EXTERN screendollar_with_count EXTERN ...
19.987013
62
0.488629
4a3b54c05cce884064e4ca22addb533d15ef001e
43,937
asm
Assembly
stressfs.asm
jhyunleehi/xv6-public
85fb0f281dc198c571553a7f625919c66905de6e
[ "MIT-0" ]
null
null
null
stressfs.asm
jhyunleehi/xv6-public
85fb0f281dc198c571553a7f625919c66905de6e
[ "MIT-0" ]
2
2021-04-14T15:27:25.000Z
2022-01-15T15:29:32.000Z
stressfs.asm
jhyunleehi/xv6-public
85fb0f281dc198c571553a7f625919c66905de6e
[ "MIT-0" ]
null
null
null
_stressfs: file format elf32-i386 Disassembly of section .text: 00000000 <main>: #include "fs.h" #include "fcntl.h" int main(int argc, char *argv[]) { 0: f3 0f 1e fb endbr32 4: 8d 4c 24 04 lea 0x4(%esp),%ecx 8: 83 e4 f0 and $0xfffffff0,%esp b: ff 71 fc ...
35.576518
60
0.426019
b0fa83461d24296f6f4fccd563bd56a46fd58a26
395
asm
Assembly
programs/oeis/189/A189793.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/189/A189793.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/189/A189793.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A189793: n+[nr/t]+[ns/t]; r=1, s=(sin(1))^2, t=(cos(1))^2. ; 6,12,20,26,34,40,46,54,60,68,74,82,88,94,102,108,116,122,130,136,142,150,156,164,170,178,184,190,198,204,212,218,226,232,238,246,252,260,266,274,280,286,294,300,308,314,320,328,334,342,348,356,362,368,376,382,390,396,404,410,416,424,430,438,444,452,458,464,...
65.833333
294
0.675949
1c93cc0bda27889302388601a40aab63ea50ddff
7,461
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca_notsx.log_21829_1716.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_0xca_notsx.log_21829_1716.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_0xca_notsx.log_21829_1716.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 %r15 push %r8 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1c65e, %rdi nop nop and %r15, %r15 movups (%rdi), %xmm7 vpextrq $1, %xmm7, %r8 nop cmp $4708, %rax lea addresses_D_ht+0x173bc, %rbx clflush (%rbx) nop nop nop nop nop add %rc...
32.298701
2,999
0.654068
64b112e76e30a31bd7e14fc8b458abc90967285b
1,670
asm
Assembly
src/tokens.asm
Veltas/zenv
71d358d369a9746aa7d38d48157625d1b6ccf5dc
[ "MIT" ]
6
2020-06-01T19:03:05.000Z
2021-12-21T22:39:05.000Z
src/tokens.asm
Veltas/zenv
71d358d369a9746aa7d38d48157625d1b6ccf5dc
[ "MIT" ]
8
2020-06-13T13:40:29.000Z
2021-09-17T15:28:36.000Z
src/tokens.asm
Veltas/zenv
71d358d369a9746aa7d38d48157625d1b6ccf5dc
[ "MIT" ]
null
null
null
; vi:syntax=z80 ; ZEnv - Forth for the ZX Spectrum ; Copyright 2021 (C) - Christopher Leonard, MIT Licence ; https://github.com/veltas/zenv ; Tokens vector IF tokenised ALIGN 0x100 tokens: exit_tok: DW exit dup_tok: DW dup question_dup_tok: DW question_dup less_than_tok: DW less_than greater_than_tok: DW gre...
12.846154
55
0.792814
b21ddf90e9456bd8f5b0e6e0fb7e1220e1cecb13
268
asm
Assembly
unittests/ASM/PrimaryGroup/3_F6_07_2.asm
cobalt2727/FEX
13087f8425aeaad28dc81bed46a83e1d72ff0db8
[ "MIT" ]
628
2020-03-06T14:01:32.000Z
2022-03-31T06:35:14.000Z
unittests/ASM/PrimaryGroup/3_F6_07_2.asm
cobalt2727/FEX
13087f8425aeaad28dc81bed46a83e1d72ff0db8
[ "MIT" ]
576
2020-03-06T08:25:12.000Z
2022-03-30T04:05:29.000Z
unittests/ASM/PrimaryGroup/3_F6_07_2.asm
cobalt2727/FEX
13087f8425aeaad28dc81bed46a83e1d72ff0db8
[ "MIT" ]
38
2020-03-07T06:10:00.000Z
2022-03-29T09:27:36.000Z
%ifdef CONFIG { "RegData": { "RAX": "0x0021" }, "MemoryRegions": { "0x100000000": "4096" } } %endif mov rdx, 0xe0000000 mov rax, 0x8 mov [rdx + 8 * 0], rax ; Test that 8bit divide divides a 16bit dividend mov ax, 0x0108 idiv byte [rdx + 8 * 0] hlt
12.181818
48
0.604478
08188899f15e8a6f6eebb7bcaa83198e33f5973b
8,346
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1623.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1623.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1623.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 %r14 push %r8 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x15552, %rsi lea addresses_UC_ht+0x16452, %rdi xor $18260, %rax mov $127, %rcx rep movsq add %r9, %r9 lea addresses_WT_ht+0x3c52, %rdi sub $44825, %r14 vmovups (%rdi), %ymm4 vex...
31.854962
2,999
0.652888
6ce3f4c69e08ba7bff6ef5cdce84617f15e058ea
1,335
asm
Assembly
programs/oeis/158/A158066.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/158/A158066.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/158/A158066.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A158066: a(n) = 49*n + 1. ; 50,99,148,197,246,295,344,393,442,491,540,589,638,687,736,785,834,883,932,981,1030,1079,1128,1177,1226,1275,1324,1373,1422,1471,1520,1569,1618,1667,1716,1765,1814,1863,1912,1961,2010,2059,2108,2157,2206,2255,2304,2353,2402,2451,2500,2549,2598,2647,2696,2745,2794,2843,2892,2941,2990,3039,30...
190.714286
1,275
0.789513
fbe26b3c89f7da30d87998ec89ca276cfe45d628
360
asm
Assembly
programs/oeis/123/A123737.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/123/A123737.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/123/A123737.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A123737: Partial sums of (-1)^floor(n*sqrt(2)). ; -1,0,1,0,-1,0,-1,-2,-1,0,-1,0,1,0,-1,0,1,0,1,2,1,0,1,0,-1,0,1,0,-1,0,-1,-2,-1,0,-1,0,1,0,-1,0,-1,-2,-1,0,-1,-2,-1,-2,-3,-2,-1,-2,-1,0,-1,-2,-1,0,-1,0,1,0,-1,0,-1,-2,-1,0,-1,0,1,0,-1,0,1,0,1,2,1,0,1,0,-1,0,1,0,-1,0,-1,-2,-1,0,-1,0,1,0,-1,0,1,0 seq $0,83037 ; a(n)=2*A0...
60
244
0.472222
1d75a085fe6dd11c6bacb2cc2af6d7592622c6be
310
asm
Assembly
programs/oeis/040/A040557.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/040/A040557.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/040/A040557.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A040557: Continued fraction for sqrt(582). ; 24,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48,8,48 sub $0,1 mod $0,2 mul $0,10 add $0,2 pow $0,2 div $0,26 mul $0,8 add $0,8
25.833333
189
0.609677
7a5247ff857e57ea8fff7d403df92fd45f4e5a30
8,452
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_340.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_340.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_340.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 %r11 push %r15 push %r8 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0xb0f4, %r8 nop nop nop nop xor %rsi, %rsi movb $0x61, (%r8) sub %r9, %r9 lea addresses_normal_ht+0x150f4, %rax nop nop nop and $40724, %r11 mov (%rax), %r15 nop and %...
32.015152
2,999
0.650615