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
691bdca14cd0cc1a14822fcbc3b589cf9051fe0c
12,847
asm
Assembly
Tests/base/Z80N/UIcode.i.asm
MrKWatkins/ZXSpectrumNextTests
d22f01338ef15b788bd324a32ba9c5ac335f71a3
[ "MIT" ]
23
2018-05-20T16:40:41.000Z
2022-01-03T23:12:38.000Z
Tests/base/Z80N/UIcode.i.asm
ped7g/ZXSpectrumNextTests
3a3082cf3b2b17e1d9cd4f1d5c71934a2c3ce862
[ "MIT" ]
3
2020-06-05T17:00:39.000Z
2021-06-27T16:37:06.000Z
Tests/base/Z80N/UIcode.i.asm
ped7g/ZXSpectrumNextTests
3a3082cf3b2b17e1d9cd4f1d5c71934a2c3ce862
[ "MIT" ]
2
2019-02-04T16:57:02.000Z
2019-08-26T17:48:18.000Z
; symbols to be defined externally: ; -- main data -- ; TEST_OPT_BIT_FULL - option "full" bit number ; TestOptions - currently selected options by user ; HelpTxt - chain of strings (will be printed per line), empty string marks total end ; MachineInfoLabels - top line labels (two, first is "machineID", second "core") ;...
30.157277
92
0.622169
52a9f18c572a5018d15944d10705ab7cad81f791
426
asm
Assembly
programs/subtract_two_numbers.asm
blurpy/8-bit-computer-emulator
cc5fbdaccbe36c7be42b636d91837726f4e5b97c
[ "MIT" ]
12
2021-03-28T13:31:18.000Z
2022-03-23T04:17:32.000Z
programs/subtract_two_numbers.asm
blurpy/8-bit-computer-emulator
cc5fbdaccbe36c7be42b636d91837726f4e5b97c
[ "MIT" ]
1
2021-05-22T17:35:16.000Z
2021-05-22T17:35:16.000Z
programs/subtract_two_numbers.asm
blurpy/8-bit-computer-emulator
cc5fbdaccbe36c7be42b636d91837726f4e5b97c
[ "MIT" ]
null
null
null
LDA 14 ; Put the value from memory location 14 in the A-register SUB 15 ; Put the value from memory location 15 in the B-register, and store A-B in the A-register OUT ; Output the value of the A-register HLT ; Halt the computer ORG 14 ; Change memory location to 14 DB 30 ; Define a byte w...
53.25
101
0.694836
ac405d7c2844d76b56d53ce3f0510eee784ef7ab
3,709
asm
Assembly
lib/stdlib.asm
lodvaer/YHBT
f0c998d05c40b0ad8c35d7873fbdf5847a927b25
[ "BSD-3-Clause" ]
2
2020-10-16T18:57:46.000Z
2021-06-19T20:40:31.000Z
lib/stdlib.asm
lodvaer/YHBT
f0c998d05c40b0ad8c35d7873fbdf5847a927b25
[ "BSD-3-Clause" ]
null
null
null
lib/stdlib.asm
lodvaer/YHBT
f0c998d05c40b0ad8c35d7873fbdf5847a927b25
[ "BSD-3-Clause" ]
1
2019-07-19T09:00:58.000Z
2019-07-19T09:00:58.000Z
;; Standard library definitions. EXIT_FAILURE = 1 EXIT_SUCCESS = 0 NULL = 0 RAND_MAX = 1 shl 32 - 1 ; include 'lib/wait.asm' ? WNOHANG = 0 WUNTRACED = 0 WEXITSTATUS = 0 WIFEXITED = 0 WIFSIGNALED = 0 WIFSTOPPED = 0 WSTOPSIG = 0 WTERMSIG = 0 ; Constants: _Exit = panic abort = pani...
15.326446
69
0.676193
20f18f6bf712d64ce74f09a404ec03c95e1b656d
804
asm
Assembly
masm/12_args.asm
oceanwavechina/assembly
803e4a4c03645fbbc026092b3329ea472e070cab
[ "Apache-2.0" ]
null
null
null
masm/12_args.asm
oceanwavechina/assembly
803e4a4c03645fbbc026092b3329ea472e070cab
[ "Apache-2.0" ]
null
null
null
masm/12_args.asm
oceanwavechina/assembly
803e4a4c03645fbbc026092b3329ea472e070cab
[ "Apache-2.0" ]
null
null
null
; 这段代码是演示: ; 实现大小写转换的功能 ; 1. 子程序调用时参数传递的用法 ; 2. 解决子程序调用时,寄存器冲突的方法:寄存器的值压栈 assume cs:code, ds:data data segment db 'conversation',0 ; 0结尾的字符串 data ends code segment start: mov ax, data mov ds, ax mov si, 0 ; 字符串的首地址,相当于c语言中i=0;i<size;++i时的 i mov cx, 12 ; 计数,相当于c语言中 i=0;i...
18.272727
59
0.55597
ecbd90cc45a405d19c7f943cdd0f305d9c545e80
282
asm
Assembly
src/asmtutor.com/src/helloworld-lf.asm
ishirshov/NASM-tutorial-for-Unix
75173993e35e29bce1c04908573cc034ff32363e
[ "Apache-2.0" ]
null
null
null
src/asmtutor.com/src/helloworld-lf.asm
ishirshov/NASM-tutorial-for-Unix
75173993e35e29bce1c04908573cc034ff32363e
[ "Apache-2.0" ]
null
null
null
src/asmtutor.com/src/helloworld-lf.asm
ishirshov/NASM-tutorial-for-Unix
75173993e35e29bce1c04908573cc034ff32363e
[ "Apache-2.0" ]
null
null
null
%include 'functions.asm' SECTION .data msg1 db 'Hello, brave world!', 0h msg2 db 'This is how we recycle in NASM', 0h SECTION .text global _start _start: mov eax, msg1 call sprintLF mov eax, msg2 call sprintLF call quit
14.1
53
0.588652
ccb590a355a3b660774ad418b3b11092b069b267
285
asm
Assembly
programs/oeis/069/A069072.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/069/A069072.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/069/A069072.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A069072: a(n) = (2n+1)*(2n+2)*(2n+3). ; 6,60,210,504,990,1716,2730,4080,5814,7980,10626,13800,17550,21924,26970,32736,39270,46620,54834,63960,74046,85140,97290,110544,124950,140556,157410,175560,195054,215940,238266,262080,287430,314364,342930 mul $0,2 mov $1,-4 bin $1,$0 mul $1,6
35.625
205
0.726316
f78255c076ad581a24a7da076ea10fad5d6037a6
8,725
asm
Assembly
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_21829_2296.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_0x48.log_21829_2296.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_0x48.log_21829_2296.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_normal_ht+0x4172, %r10 nop nop nop nop nop and $55794, %rdi mov $0x6162636465666768, %rsi movq %rsi, (%r10) nop nop nop nop add %r14, %r14 lea addresses_WC_ht+0xb742, %r8 xor $27041,...
31.160714
2,999
0.651232
e0fc1cc2546c23f83d63a4d99f46e7199e4aa308
681
asm
Assembly
src/test/ref/address-of-0.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
2
2022-03-01T02:21:14.000Z
2022-03-01T04:33:35.000Z
src/test/ref/address-of-0.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
src/test/ref/address-of-0.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
// Test address-of - use the pointer to get the value // Commodore 64 PRG executable file .file [name="address-of-0.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code [start=$80d] .segmentdef Data [startAfter="Code"] .segment Basic...
20.029412
63
0.582966
35bf192d1575bb33b098bae9e8d636d5ae3dae81
1,011
asm
Assembly
boot.asm
KenyStev/MicroFS_x86
56ac4fe5d6566fef1bbd3eeedabc8c0210062716
[ "MIT" ]
null
null
null
boot.asm
KenyStev/MicroFS_x86
56ac4fe5d6566fef1bbd3eeedabc8c0210062716
[ "MIT" ]
null
null
null
boot.asm
KenyStev/MicroFS_x86
56ac4fe5d6566fef1bbd3eeedabc8c0210062716
[ "MIT" ]
null
null
null
; *************************************** ; ; boot.asm ; *************************************** ; [ORG 0x7C00] [BITS 16] ; *************************************** ; ; BOOT ENTRY POINT ; *************************************** ; start: cli xor ax, ax mov ds, ax mov fs, ax mov ...
18.381818
49
0.313551
088f9b6e46f158922c286fee7db62e3907e0a75d
30,871
asm
Assembly
examples/music/funkyforest.asm
azurda/gingerbread
4e71a411224324a8d17b2b5baaab08074df1e68e
[ "Unlicense" ]
109
2019-01-19T06:59:40.000Z
2022-03-02T10:33:50.000Z
examples/music/funkyforest.asm
azurda/gingerbread
4e71a411224324a8d17b2b5baaab08074df1e68e
[ "Unlicense" ]
7
2020-01-03T21:52:40.000Z
2021-01-19T02:11:51.000Z
examples/music/funkyforest.asm
azurda/gingerbread
4e71a411224324a8d17b2b5baaab08074df1e68e
[ "Unlicense" ]
14
2020-01-04T20:22:35.000Z
2021-08-14T07:02:52.000Z
; File created by mod2gbt SECTION "funkyforest_0",ROMX funkyforest_0: DB $AB,$1F, $AB,$AA,$03, $93,$17, $8C,$0F DB $00, $2F, $00, $28 DB $00, $00, $00, $20 DB $00, $00, $00, $20 DB $28, $28, $22, $8C,$0F DB $20, $20, $20, $20 DB $AB,$1F, $A3,$1F, $8E,$17, $8C,$0F DB $28, $2...
29.513384
46
0.403939
5d840254f046685442e03803345ff5ac92bbae7e
129
asm
Assembly
libsrc/_DEVELOPMENT/font/fzx/fonts/utz/SkoolBrk/_ff_utz_SkoolBrkEXT.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/font/fzx/fonts/utz/SkoolBrk/_ff_utz_SkoolBrkEXT.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/font/fzx/fonts/utz/SkoolBrk/_ff_utz_SkoolBrkEXT.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
SECTION rodata_font_fzx PUBLIC _ff_utz_SkoolBrkEXT _ff_utz_SkoolBrkEXT: BINARY "font/fzx/fonts/utz/SkoolBrk/skoolbrkEXT.fzx"
14.333333
52
0.844961
aa4ca77135d1cadbd5ed4f36e693e651eb3cd450
5,727
asm
Assembly
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_1_1098.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_0xca.log_1_1098.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_0xca.log_1_1098.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 %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x938f, %rsi lea addresses_WC_ht+0x1de4f, %rdi nop cmp %r10, %r10 mov $14, %rcx rep movsq nop nop nop inc %r10 lea addresses_normal_ht+0x139fd, %rcx xor $1429, %r9 movl $0x61626...
20.308511
152
0.64257
5b66015bda46c8d63f5a508911294c37117a8b4e
93
asm
Assembly
Lab Assessment Submission/Lab Assessment 2/2_LA2_1731201042.asm
sakibsadmanshajib/CSE331L-Section-1-Fall20-NSU
85eadea4d9ff6f4ba2e474eed8d740468fe84907
[ "MIT" ]
null
null
null
Lab Assessment Submission/Lab Assessment 2/2_LA2_1731201042.asm
sakibsadmanshajib/CSE331L-Section-1-Fall20-NSU
85eadea4d9ff6f4ba2e474eed8d740468fe84907
[ "MIT" ]
null
null
null
Lab Assessment Submission/Lab Assessment 2/2_LA2_1731201042.asm
sakibsadmanshajib/CSE331L-Section-1-Fall20-NSU
85eadea4d9ff6f4ba2e474eed8d740468fe84907
[ "MIT" ]
null
null
null
org 100h A EQU 1 B EQU 2 C EQU 3 D EQU 4 MOV AX A ADD AX B ADD AX C ADD AX D MOV BX AX ret
6.642857
9
0.655914
bba57f22c96d1bd533c73f4085449e3f527edbba
732
asm
Assembly
main/Initializer/include/arch/x86_64/asm/longmode.inc.asm
AlexanderShirokih/avangard-os
dad51f376d722931b32ecf9e15704a72a26e39ee
[ "Apache-2.0" ]
null
null
null
main/Initializer/include/arch/x86_64/asm/longmode.inc.asm
AlexanderShirokih/avangard-os
dad51f376d722931b32ecf9e15704a72a26e39ee
[ "Apache-2.0" ]
null
null
null
main/Initializer/include/arch/x86_64/asm/longmode.inc.asm
AlexanderShirokih/avangard-os
dad51f376d722931b32ecf9e15704a72a26e39ee
[ "Apache-2.0" ]
null
null
null
check_long_mode: ; test if extended processor info in available mov eax, 0x80000000 ; implicit argument for cpuid cpuid ; get highest supported argument cmp eax, 0x80000001 ; it needs to be at least 0x80000001 jb .no_long_mode ; if it's less, the CPU is too old for long ...
43.058824
75
0.654372
205e30295a53a9368b3b7509b8fb8d3e88996fd3
1,911
asm
Assembly
Linux/etcpasswd.asm
EgeBalci/Shellcode
2475af53b20186283b3eb1572d4de58650ad4652
[ "MIT" ]
2
2017-04-11T21:58:34.000Z
2020-05-18T02:04:41.000Z
Linux/etcpasswd.asm
EgeBalci/Shellcode
2475af53b20186283b3eb1572d4de58650ad4652
[ "MIT" ]
null
null
null
Linux/etcpasswd.asm
EgeBalci/Shellcode
2475af53b20186283b3eb1572d4de58650ad4652
[ "MIT" ]
4
2017-04-11T21:58:35.000Z
2021-05-14T04:53:15.000Z
Linux/x86 - /etc/passwd Reader - 58 bytes #Greetz : Bomberman(Leader),wiremask.eu #Author : B3mB4m #Concat : Do not disturb -Bomberman #Info #File descriptor on EBX #Buffer on ECX #Bytes to read on EDX Disassembly of section .text: 08048060 <.text>: 8048060: 31 c9 xor %ecx,%ecx 8048...
37.470588
253
0.500785
e6b75fc08cafeb9c35e4785bf143e9b2df0bd777
5,840
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_1159_1130.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_notsx.log_1159_1130.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_notsx.log_1159_1130.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 %r14 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_WC_ht+0x11c7d, %rsi lea addresses_UC_ht+0x19b65, %rdi clflush (%rdi) nop nop nop nop nop dec %r14 mov $97, %rcx rep movsl nop add %r8, %r8 lea addresses_WT_ht+0x6df5, %rax nop nop nop nop cmp ...
38.933333
2,999
0.652911
6a5a035997131b36521558b0da6f7417c0a0baff
192,840
asm
Assembly
Palmtree.Math.Core.Implements/vs_build/x86_Release/pmc_parse.asm
rougemeilland/Palmtree.Math.Core.Implements
52f4f6c765d16c9b0baf1fd212c61a33daae138c
[ "MIT" ]
null
null
null
Palmtree.Math.Core.Implements/vs_build/x86_Release/pmc_parse.asm
rougemeilland/Palmtree.Math.Core.Implements
52f4f6c765d16c9b0baf1fd212c61a33daae138c
[ "MIT" ]
null
null
null
Palmtree.Math.Core.Implements/vs_build/x86_Release/pmc_parse.asm
rougemeilland/Palmtree.Math.Core.Implements
52f4f6c765d16c9b0baf1fd212c61a33daae138c
[ "MIT" ]
null
null
null
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1 TITLE Z:\Sources\Lunor\Repos\rougemeilland\Palmtree.Math.Core.Implements\Palmtree.Math.Core.Implements\pmc_parse.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRT INCLUDELIB OLDNAMES PUBLIC _Initialize_Parse PUBLIC _PMC...
24.044888
192
0.635522
a460e5a496dd7d6ef4cb0932f590c2a42cde2240
41,743
asm
Assembly
Library/Impex/Main/mainUtils.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Library/Impex/Main/mainUtils.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Library/Impex/Main/mainUtils.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: Impex/Main FILE: mainUtils.asm AUTHOR: Don Reeves, May 28, 1992 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Dat...
24.612618
79
0.578756
3372d5c0ea62cbec25bb297794064ea23adb8acb
662
asm
Assembly
programs/oeis/160/A160467.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/160/A160467.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/160/A160467.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A160467: a(n) = 1 if n is odd; otherwise, a(n) = 2^(k-1) where 2^k is the largest power of 2 that divides n. ; 1,1,1,2,1,1,1,4,1,1,1,2,1,1,1,8,1,1,1,2,1,1,1,4,1,1,1,2,1,1,1,16,1,1,1,2,1,1,1,4,1,1,1,2,1,1,1,8,1,1,1,2,1,1,1,4,1,1,1,2,1,1,1,32,1,1,1,2,1,1,1,4,1,1,1,2,1,1,1,8,1,1,1,2,1,1,1,4,1,1,1,2,1,1,1,16,1,1,1,2,1,1,...
82.75
508
0.531722
38eddc45d94520492352a63f17462c7c85c298bd
364
asm
Assembly
oeis/021/A021431.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/021/A021431.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/021/A021431.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A021431: Decimal expansion of 1/427. ; Submitted by Jamie Morken(m2) ; 0,0,2,3,4,1,9,2,0,3,7,4,7,0,7,2,5,9,9,5,3,1,6,1,5,9,2,5,0,5,8,5,4,8,0,0,9,3,6,7,6,8,1,4,9,8,8,2,9,0,3,9,8,1,2,6,4,6,3,7,0,0,2,3,4,1,9,2,0,3,7,4,7,0,7,2,5,9,9,5,3,1,6,1,5,9,2,5,0,5,8,5,4,8,0,0,9,3,6 seq $0,83811 ; Numbers n such that 2n+1 is the d...
45.5
199
0.593407
fc7db6e5cb0b3de6e73742ca59b33f1af231dd04
361
asm
Assembly
programs/oeis/340/A340479.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/340/A340479.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/340/A340479.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A340479: a(n) = R(n) + digsum(n). ; 0,2,4,6,8,10,12,14,16,18,2,13,24,35,46,57,68,79,90,101,4,15,26,37,48,59,70,81,92,103,6,17,28,39,50,61,72,83,94,105,8,19,30,41,52,63,74,85,96,107,10,21,32,43,54,65,76,87,98,109,12,23,34,45,56,67,78,89 seq $0,4086 ; Read n backwards (referred to as R(n) in many sequences). seq $0,62...
60.166667
201
0.637119
59673ffa3eb32403bcd7aee1c9bcc0b427a23a80
1,515
asm
Assembly
ruby/coroutine/win64/Context.asm
bkmgit/ruby-packer
8ca9c6785f9d9f389754514de2d4626df6713533
[ "MIT" ]
2,793
2019-07-28T02:15:11.000Z
2022-03-30T02:52:20.000Z
ruby/coroutine/win64/Context.asm
bkmgit/ruby-packer
8ca9c6785f9d9f389754514de2d4626df6713533
[ "MIT" ]
821
2019-07-28T13:31:29.000Z
2022-03-31T23:03:47.000Z
ruby/coroutine/win64/Context.asm
bkmgit/ruby-packer
8ca9c6785f9d9f389754514de2d4626df6713533
[ "MIT" ]
112
2019-08-01T17:27:07.000Z
2022-03-24T18:55:01.000Z
;; ;; This file is part of the "Coroutine" project and released under the MIT License. ;; ;; Created by Samuel Williams on 10/5/2018. ;; Copyright, 2018, by Samuel Williams. All rights reserved. ;; .code coroutine_transfer proc ; Save the thread information block: push qword ptr gs:[8] push qword ptr gs:[16] ...
18.9375
84
0.685149
8768a897b6a0b6b05368106625e890e691b7279a
1,158
asm
Assembly
programs/oeis/219/A219529.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/219/A219529.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/219/A219529.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A219529: Coordination sequence for 3.3.4.3.4 Archimedean tiling. ; 1,5,11,16,21,27,32,37,43,48,53,59,64,69,75,80,85,91,96,101,107,112,117,123,128,133,139,144,149,155,160,165,171,176,181,187,192,197,203,208,213,219,224,229,235,240,245,251,256,261,267,272,277,283,288,293,299,304,309,315,320,325,331,336,341,347,352,357,...
128.666667
1,042
0.750432
e446055466c3efcf12d367f3d54d8e3881c00ce3
366
asm
Assembly
programs/oeis/011/A011664.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/011/A011664.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/011/A011664.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A011664: A binary m-sequence: expansion of reciprocal of x^5+x^3+1. ; 0,0,0,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,0,0,1,1,0,1,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0,0,0,1,1,0,1,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,1,1,1,1,0 sub $0,749 cal $0,11662 ; A binary m-sequence: expansion of reciprocal of x^5 + x^2 +...
36.6
163
0.592896
47b3a5f8b6678dee06c3c0a5357f60e46f6b114b
4,052
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_93.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_93.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_93.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 %rcx push %rdi lea addresses_WC_ht+0xa9ac, %rdi nop nop nop sub %r15, %r15 mov $0x6162636465666768, %rcx movq %rcx, %xmm0 movups %xmm0, (%rdi) nop nop nop nop nop add $18981, %rdi pop %rdi pop %rcx pop %r15 ret .global s_faulty_load s_faulty_load: push %r...
62.338462
2,999
0.664116
91ae47fd5916fcef9a6e28cd67167b3cbad05c58
3,304
asm
Assembly
Source/10.0.18362.0/ucrt/string/amd64/strcmp.asm
825126369/UCRT
8853304fdc2a5c216658d08b6dbbe716aa2a7b1f
[ "MIT" ]
2
2021-01-27T10:19:30.000Z
2021-02-09T06:24:30.000Z
Source/10.0.18362.0/ucrt/string/amd64/strcmp.asm
825126369/UCRT
8853304fdc2a5c216658d08b6dbbe716aa2a7b1f
[ "MIT" ]
null
null
null
Source/10.0.18362.0/ucrt/string/amd64/strcmp.asm
825126369/UCRT
8853304fdc2a5c216658d08b6dbbe716aa2a7b1f
[ "MIT" ]
1
2021-01-27T10:19:36.000Z
2021-01-27T10:19:36.000Z
page ,132 title strcmp.asm - compare two strings ;*** ;strcmp.asm - routine to compare two strings (for equal, less, or greater) ; ; Copyright (c) Microsoft Corporation. All rights reserved. ; ;Purpose: ; STRCMP compares two strings and returns an integer ; to indicate whether the...
25.221374
80
0.556901
7ae4d0963f2d7b848d1f955f7d22e6a3314616c1
20,218
asm
Assembly
SOURCE/allProjects/tempSensorAssembly/Juan's Project.asm
llanesjuan/AllMyProjects
5944b248ae8f4f84cfea9fcf379f877909372551
[ "MIT" ]
null
null
null
SOURCE/allProjects/tempSensorAssembly/Juan's Project.asm
llanesjuan/AllMyProjects
5944b248ae8f4f84cfea9fcf379f877909372551
[ "MIT" ]
null
null
null
SOURCE/allProjects/tempSensorAssembly/Juan's Project.asm
llanesjuan/AllMyProjects
5944b248ae8f4f84cfea9fcf379f877909372551
[ "MIT" ]
null
null
null
$NOMOD51 $NOSYMBOLS ;***************************************************************************** ; Fall 2012 Project ; ; FILE NAME : Project.ASM ; DATE : 10/28/2012 ; TARGET MCU : C8051F340 ; DESCRIPTION : Starter Code to measure the external temperature using the ; LM35DZ tempera...
39.106383
133
0.34682
6c0a84a534ab08d5c7e37eabc2ac34ac66c7412f
408
asm
Assembly
oeis/242/A242123.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/242/A242123.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/242/A242123.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A242123: Primes modulo 25. ; Submitted by Jon Maiga ; 2,3,5,7,11,13,17,19,23,4,6,12,16,18,22,3,9,11,17,21,23,4,8,14,22,1,3,7,9,13,2,6,12,14,24,1,7,13,17,23,4,6,16,18,22,24,11,23,2,4,8,14,16,1,7,13,19,21,2,6,8,18,7,11,13,17,6,12,22,24,3,9,17,23,4,8,14,22,1,9,19,21,6,8,14,18,24,7,11,13,17,4,12,16,24,3,9,21,23,16 mul $...
45.333333
259
0.642157
c537d82df76897c3e0a806f7cc6ef7ac8e84b761
3,558
asm
Assembly
Altair101/asm/programs/opOutPlayerVfp.asm
tigerfarm/arduino
e51f111a092fe6737646b146a825f4eecbd05d44
[ "OLDAP-2.4", "OLDAP-2.7" ]
2
2021-12-12T23:27:10.000Z
2022-02-17T14:01:21.000Z
Altair101/asm/programs/opOutPlayerVfp.asm
tigerfarm/arduino
e51f111a092fe6737646b146a825f4eecbd05d44
[ "OLDAP-2.4", "OLDAP-2.7" ]
null
null
null
Altair101/asm/programs/opOutPlayerVfp.asm
tigerfarm/arduino
e51f111a092fe6737646b146a825f4eecbd05d44
[ "OLDAP-2.4", "OLDAP-2.7" ]
4
2021-08-29T19:55:49.000Z
2022-02-15T08:30:15.000Z
; ------------------------------------------------ ; Test MP3 player out ports. ; ; OUT 10, MP3 play options. ; regA =...
72.612245
116
0.262507
fe864c2f4869fe8d78911f942177cca9cf8ad03d
568
asm
Assembly
oeis/339/A339749.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/339/A339749.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/339/A339749.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A339749: a(n) is the greatest k > 0 such that 1+n, 1+2*n, ..., 1+n*k are pairwise coprime. ; Submitted by Jamie Morken(s3) ; 2,3,2,4,2,7,2,3,2,4,2,6,2,3,2,4,2,7,2,3,2,4,2,5,2,3,2,4,2,9,2,3,2,4,2,8,2,3,2,4,2,6,2,3,2,4,2,7,2,3,2,4,2,5,2,3,2,4,2,11,2,3,2,4,2,8,2,3,2,4,2,6,2,3,2,4,2,7,2,3,2,4,2,5,2,3,2 mov $1,1 mov $4,$...
19.586207
176
0.494718
da924232774a8f27bc5b7200bb214bd359ff0507
1,397
asm
Assembly
Library/Styles/UI/uiManager.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Library/Styles/UI/uiManager.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Library/Styles/UI/uiManager.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: Styles Library FILE: UI/uiManager.asm REVISION HISTORY: Name Date Description ---- ---- ----------- Tony 12/91 Initial version DESCRIPTION...
28.510204
80
0.289907
e49b2847c2cbd31bdcfcb770331ed394aec7310f
666
asm
Assembly
oeis/121/A121621.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/121/A121621.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/121/A121621.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A121621: Real part of (2 + 3i)^n. ; Submitted by Jon Maiga ; 1,2,-5,-46,-119,122,2035,6554,-239,-86158,-341525,-246046,3455641,17021162,23161315,-128629846,-815616479,-1590277918,4241902555,37641223154,95420159401,-107655263398,-1671083125805,-5284814079046,584824319281,71041880304722,276564805068235,182714776311554,...
39.176471
481
0.779279
fba50fd60e2458078f5a4e32aca67a8fffaf2ccb
365
asm
Assembly
programs/oeis/014/A014628.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/014/A014628.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/014/A014628.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A014628: Number of segments (and sides) created by diagonals of an n-gon in general position. ; 3,8,20,45,91,168,288,465,715,1056,1508,2093,2835,3760,4896,6273,7923,9880,12180,14861,17963,21528,25600,30225,35451,41328,47908,55245,63395,72416,82368,93313,105315,118440,132756,148333,165243,183560 add $0,2 mov $1,$0 bi...
33.181818
201
0.742466
8eda5495c920ce20edee9d8825c82cabf8baba0f
163
asm
Assembly
programs/oeis/074/A074280.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/074/A074280.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/074/A074280.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A074280: Duplicate of A000523. ; 0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5 add $0,1 lpb $0,$0 div $0,2 add $2,1 lpe mov $1,$2
16.3
73
0.546012
b7ad281c48707cb94d078c7211cb50c2782ba5de
2,438
asm
Assembly
Transynther/x86/_processed/US/_st_zr_/i9-9900K_12_0xca_notsx.log_16_1957.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_st_zr_/i9-9900K_12_0xca_notsx.log_16_1957.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_st_zr_/i9-9900K_12_0xca_notsx.log_16_1957.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 %r9 push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x2d04, %rsi lea addresses_D_ht+0x10304, %rdi nop nop add $16310, %r10 mov $100, %rcx rep movsb nop add $28352, %rcx lea addresses_D_ht+0x15604, %rdi sub $32777, %r9 mov (%rdi), %r11d ad...
18.19403
147
0.645611
afb27aebdcbcc477a129b31b3a96bfb4ec6654ad
98
asm
Assembly
programs/test_bit.asm
tofu13/pyc64
1ffb1d864de1b4df64f6eceb724ff653ce68aa2a
[ "MIT" ]
null
null
null
programs/test_bit.asm
tofu13/pyc64
1ffb1d864de1b4df64f6eceb724ff653ce68aa2a
[ "MIT" ]
null
null
null
programs/test_bit.asm
tofu13/pyc64
1ffb1d864de1b4df64f6eceb724ff653ce68aa2a
[ "MIT" ]
null
null
null
*=$2000 LDX #$f0 STX $02 LDA #$81 BIT $02 EOR $02 ORA $02 AND $02
10.888889
12
0.397959
b63b9aff6ec94dd1f054adda1ed05b035d46fa97
678
asm
Assembly
oeis/114/A114047.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/114/A114047.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/114/A114047.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A114047: x such that x^2 - 13*y^2 = 1. ; Submitted by Jon Maiga ; 1,649,842401,1093435849,1419278889601,1842222905266249,2391203911756701601,3103780835237293411849,4028705132934095091878401,5229256158767620191964752649,6787570465375238075075157060001,8810261234800900253827361899128649,11435712295201103154229840669911...
42.375
500
0.849558
35e9e63da72b9f4b25b3df0de78c07ca9169b39f
1,161
asm
Assembly
programs/oeis/163/A163888.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/163/A163888.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/163/A163888.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A163888: a(n) = 2*a(n-2) for n > 2; a(1) = 5, a(2) = 4. ; 5,4,10,8,20,16,40,32,80,64,160,128,320,256,640,512,1280,1024,2560,2048,5120,4096,10240,8192,20480,16384,40960,32768,81920,65536,163840,131072,327680,262144,655360,524288,1310720,1048576,2621440,2097152,5242880,4194304,10485760,8388608,20971520,16777216,4194304...
77.4
990
0.829457
bf30b7ed700bc5302e21cd54f7163a1138551c2b
951
asm
Assembly
lib/src/xr/x86/os2/xrnmlg.asm
zanud/xds-2.60
b4a32b9c9c91fe513fa5ff78ec87bb44102a3b72
[ "Apache-2.0" ]
53
2019-06-10T18:19:44.000Z
2021-12-28T18:56:00.000Z
Sources/Lib/src/xr/x86/os2/xrnmlg.asm
undecidedzogvisvitalispotent8stars360/xds
cfd20e209193c9cfcee94ad2ca30d8c32ead48c9
[ "Apache-2.0" ]
5
2020-07-10T16:06:48.000Z
2021-07-30T07:17:50.000Z
Sources/Lib/src/xr/x86/os2/xrnmlg.asm
undecidedzogvisvitalispotent8stars360/xds
cfd20e209193c9cfcee94ad2ca30d8c32ead48c9
[ "Apache-2.0" ]
20
2019-06-10T18:09:16.000Z
2021-10-02T19:46:42.000Z
.386p .387 ; COPYRIGHT (c) 1995,99 XDS. All Rights Reserved. ; Implementation for lg & lgl functions ifdef OS2 .model FLAT endif DGROUP group _DATA _DATA segment use32 dword public 'DATA' _DATA ends ifdef OS2 _TEXT ...
20.234043
73
0.532072
0e08b82b194d08eba684341dd729f045781a02fc
64
asm
Assembly
base/c64/clrscr.asm
zbyti/Mad-Pascal
546cae9724828f93047080109488be7d0d07d47e
[ "MIT" ]
1
2021-12-15T23:47:19.000Z
2021-12-15T23:47:19.000Z
base/c64/clrscr.asm
michalkolodziejski/Mad-Pascal
0a7a1e2f379e50b0a23878b0d881ff3407269ed6
[ "MIT" ]
null
null
null
base/c64/clrscr.asm
michalkolodziejski/Mad-Pascal
0a7a1e2f379e50b0a23878b0d881ff3407269ed6
[ "MIT" ]
null
null
null
; unit CRT: TextMode .proc @ClrScr jmp $e544 .endp
7.111111
21
0.5625
26d332de758ff8c7b6893c2b87fd3e892cd714bf
313
asm
Assembly
src/test/resources/data/generationtests/asmsx-labels-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/generationtests/asmsx-labels-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/generationtests/asmsx-labels-expected.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
7
2020-07-02T06:00:05.000Z
2021-11-28T17:31:13.000Z
; Test case to make sure local labels are saved in a way asMSX can parse them afterwards org #8000 db "AB", loop % 256, loop / 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 loop: call f1 jp loop f1: ld a, (hl) ld b, 8 f1_l1: inc a djnz f1_l1 ld b, 8 f1_l2: inc a djnz f1_l2 ld (hl), a ret ds #a000 - $, 0
15.65
88
0.603834
859177d21a3640a3f7b201ea78337bea084e108a
152
asm
Assembly
13 BCD Diff.asm
jpsxlr8/Microprocessor-Lab
76b123612d919ac80619e3da89c95fffd9e2b4d0
[ "MIT" ]
null
null
null
13 BCD Diff.asm
jpsxlr8/Microprocessor-Lab
76b123612d919ac80619e3da89c95fffd9e2b4d0
[ "MIT" ]
null
null
null
13 BCD Diff.asm
jpsxlr8/Microprocessor-Lab
76b123612d919ac80619e3da89c95fffd9e2b4d0
[ "MIT" ]
null
null
null
LXI H,8000H MOV C,M LXI D,8001H LXI H,8004H STC LOOP:MVI A,99H ACI 00H SUB M XCHG ADD M DAA MOV M,A XCHG INX H INX D DCR C JNZ LOOP HLT
8.444444
15
0.644737
fe42188b80b533f188660a81cb4c69bfac7ada9c
827
asm
Assembly
week_7/dataset/Assembly/056600.asm
Dumebi35/DumebiCSC102
56985f4852bc01c94dce2ee368c9612ad368f619
[ "MIT" ]
null
null
null
week_7/dataset/Assembly/056600.asm
Dumebi35/DumebiCSC102
56985f4852bc01c94dce2ee368c9612ad368f619
[ "MIT" ]
null
null
null
week_7/dataset/Assembly/056600.asm
Dumebi35/DumebiCSC102
56985f4852bc01c94dce2ee368c9612ad368f619
[ "MIT" ]
null
null
null
;extracting bit strings from the the date field .model small .stack 100h .data day db ? month db ? year dw ? .code main proc mov ax,@data mov ds,ax ;get day mov dx,126Ah ;0001 0010 0110 1010b ;example date Mar 10,1989 mov al,dl ;make a copy of dl and al,00011111b ;clear bits 5-7 mov day,al ...
20.170732
47
0.665054
e6726bc1b6b71be0f626221d8000dfd207fc6afd
602
asm
Assembly
oeis/191/A191902.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/191/A191902.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/191/A191902.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A191902: Number of compositions of odd positive integers into 5 parts <= n. ; 0,16,121,512,1562,3888,8403,16384,29524,50000,80525,124416,185646,268912,379687,524288,709928,944784,1238049,1600000,2042050,2576816,3218171,3981312,4882812,5940688,7174453,8605184,10255574,12150000,14314575,16777216,19567696,22717712,26260...
86
495
0.842193
ccab28e8c1058b609a66d9be5b72c4e3417a0769
151
asm
Assembly
src/file_selector.asm
I8087/libm
47874572a2bc1356e1ab70f9c29b6fa50875f3c3
[ "BSD-2-Clause" ]
13
2015-06-13T00:56:27.000Z
2022-01-25T16:55:26.000Z
src/file_selector.asm
I8087/libm
47874572a2bc1356e1ab70f9c29b6fa50875f3c3
[ "BSD-2-Clause" ]
10
2016-02-02T23:34:27.000Z
2019-06-11T22:41:23.000Z
src/file_selector.asm
I8087/libm
47874572a2bc1356e1ab70f9c29b6fa50875f3c3
[ "BSD-2-Clause" ]
1
2016-06-21T05:19:15.000Z
2016-06-21T05:19:15.000Z
global _file_selector _file_selector: push bp mov bp, sp call os_file_selector jnc .skip xor ax, ax .skip: pop bp ret
9.4375
25
0.615894
de24d81c091fb8a68f4fdb4a7e742a88ec46f4b7
54
asm
Assembly
tests/chkeq.asm
dimitrit/uz80as
b4fd490c9ce89ac30c5b130d951a1ed4288233d0
[ "MIT" ]
8
2017-05-03T10:49:20.000Z
2022-02-03T02:55:21.000Z
tests/chkeq.asm
vipoo/uz80as
7cf5c353a5c1ceeaf5ba7b502e220fb41e7d9fb0
[ "MIT" ]
1
2020-02-25T06:28:30.000Z
2020-03-30T17:09:50.000Z
tests/chkeq.asm
vipoo/uz80as
7cf5c353a5c1ceeaf5ba7b502e220fb41e7d9fb0
[ "MIT" ]
2
2020-02-26T21:12:55.000Z
2022-02-02T17:51:03.000Z
.ORG 0 START .DB 1, 2 NEXT .CHK NEXT .DB 3, 4 .END
9
14
0.574074
0a9a71b32651ad4e0e13b3b9b8af344f6c632ce5
63
asm
Assembly
kernel/src/core/tsshelper.asm
Remco123/CactusOS
de4c61211c2908cf1a27d8ccbeb6340133772454
[ "MIT" ]
87
2019-03-04T21:16:20.000Z
2022-01-30T15:10:44.000Z
kernel/src/core/tsshelper.asm
Remco123/CactusOS
de4c61211c2908cf1a27d8ccbeb6340133772454
[ "MIT" ]
5
2019-04-24T10:33:55.000Z
2021-06-13T09:46:28.000Z
kernel/src/core/tsshelper.asm
Remco123/CactusOS
de4c61211c2908cf1a27d8ccbeb6340133772454
[ "MIT" ]
2
2020-11-13T08:56:09.000Z
2021-08-01T06:38:31.000Z
global flush_tss flush_tss: mov ax, 0x28 ltr ax ret
12.6
16
0.650794
c2130714f71b958186a6e38c06ceadcb333c1f6f
4,093
asm
Assembly
samples/sms/tilemap_render/bidir_scroll_ADJ_SCR_MASKS/data/tilemap.asm
0x8BitDev/MAPeD-SPReD
da1a8a582980ea5963777a46fd3dfddc0d69aa82
[ "MIT" ]
23
2019-05-16T20:23:49.000Z
2022-03-13T21:53:10.000Z
samples/sms/tilemap_render/bidir_scroll_ADJ_SCR_MASKS/data/tilemap.asm
0x8BitDev/MAPeD-SPReD
da1a8a582980ea5963777a46fd3dfddc0d69aa82
[ "MIT" ]
6
2021-03-30T05:51:46.000Z
2022-01-07T13:18:44.000Z
samples/sms/tilemap_render/bidir_scroll_ADJ_SCR_MASKS/data/tilemap.asm
0x8BitDev/MAPeD-SPReD
da1a8a582980ea5963777a46fd3dfddc0d69aa82
[ "MIT" ]
null
null
null
;####################################################### ; ; Generated by MAPeD-SMS Copyright 2017-2021 0x8BitDev ; ;####################################################### ; export options: ; - tiles 4x4/(columns) ; - properties per CHR (screen attributes) ; - mode: bidirectional scrolling ; - layout: adjacent...
18.110619
133
0.641339
65b64bf4c4f26df9da6646166025826c8e00986e
613
asm
Assembly
src/core/bytecode/wasm/module/section/section.asm
Hiroshi123/bin_tools
95929eb218a82e30c43ee5bd209301a24abebffa
[ "MIT" ]
null
null
null
src/core/bytecode/wasm/module/section/section.asm
Hiroshi123/bin_tools
95929eb218a82e30c43ee5bd209301a24abebffa
[ "MIT" ]
4
2019-02-27T05:41:26.000Z
2020-07-16T00:24:24.000Z
src/core/bytecode/wasm/module/section/section.asm
Hiroshi123/bin_tools
95929eb218a82e30c43ee5bd209301a24abebffa
[ "MIT" ]
null
null
null
section .text default rel global _0x00_none ;; global _0x01_type global _0x02_import global _0x03_function global _0x04_table global _0x05_memory global _0x06_global global _0x07_export global _0x08_start global _0x09_element global _0x0a_code global _0x0b_data ;;; _0x00_none: ret ;; _0x01_type: ;; ...
11.788462
71
0.743883
173580ac76e027dbb29dd03b1998ca94d7670919
395
asm
Assembly
oeis/272/A272417.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/272/A272417.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/272/A272417.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A272417: Number of active (ON,black) cells at stage 2^n-1 of the two-dimensional cellular automaton defined by "Rule 469", based on the 5-celled von Neumann neighborhood. ; Submitted by Jon Maiga ; 1,8,44,204,876,3628,14764,59564,239276,959148,3840684,15370924,61500076,246033068,984197804,3936922284 mov $2,5 lpb $0 ...
26.333333
172
0.729114
ce223426c09b91e4c1b5148b87421afcd04bf870
4,286
asm
Assembly
4. PASSWORD'S VALIDATION CEHCK.asm
rng70/Assembly-Programming
38c60807b944b49e52f189930c5bf1beadf80d74
[ "MIT" ]
null
null
null
4. PASSWORD'S VALIDATION CEHCK.asm
rng70/Assembly-Programming
38c60807b944b49e52f189930c5bf1beadf80d74
[ "MIT" ]
null
null
null
4. PASSWORD'S VALIDATION CEHCK.asm
rng70/Assembly-Programming
38c60807b944b49e52f189930c5bf1beadf80d74
[ "MIT" ]
null
null
null
; THIS ASSEMBLY PROGRAM IS FOR CHECKING VALID PASSWORD ; A PASSWORD IS VALID WHEN IT FITS THE FOLLOWING CRITERIA ; AT LEAST: ; 1. ONE UPPERCASE LETTER ( ascii: 41H-5AH ) ; 2. ONE LOWERCASE LETTER ( ascii: 61H-7AH ) ; 3. AT LEAST ONE DIGIT ( ascii: 30H-39H ) ...
29.156463
93
0.423938
b9c4c33ce125fdaaf3bd9745e7f66c8cc36499f1
1,797
asm
Assembly
src/test/ref/memory-heap.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
2
2022-03-01T02:21:14.000Z
2022-03-01T04:33:35.000Z
src/test/ref/memory-heap.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
src/test/ref/memory-heap.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
// Experiments with malloc() // Commodore 64 PRG executable file .file [name="memory-heap.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code [start=$80d] .segmentdef Data [startAfter="Code"] .segment Basic :BasicUpstart(main) // ...
22.4625
110
0.605454
75f655f20189cd1c340012c8a323a4d39c2a756a
399
asm
Assembly
oeis/034/A034584.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/034/A034584.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/034/A034584.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A034584: Radon-Hurwitz numbers: log_2 of dimension of an irreducible R-module for Clifford algebra Cl_n. ; Submitted by Jamie Morken(s1) ; 0,1,2,2,3,3,3,3,4,5,6,6,7,7,7,7,8,9,10,10,11,11,11,11,12,13,14,14,15,15,15,15,16,17,18,18,19,19,19,19,20,21,22,22,23,23,23,23,24,25,26,26,27,27,27,27,28,29,30,30,31,31,31,31 mov ...
28.5
175
0.656642
48e2d8cafc36fc2c60b064e61c7ce337c8a9ab06
3,112
asm
Assembly
PRG/maps/World8L.asm
narfman0/smb3_pp1
38a58adafff67a403591e38875e9fae943a5fe76
[ "Unlicense" ]
null
null
null
PRG/maps/World8L.asm
narfman0/smb3_pp1
38a58adafff67a403591e38875e9fae943a5fe76
[ "Unlicense" ]
null
null
null
PRG/maps/World8L.asm
narfman0/smb3_pp1
38a58adafff67a403591e38875e9fae943a5fe76
[ "Unlicense" ]
null
null
null
.byte $D8, $D8, $D8, $D8, $D8, $D8, $D8, $D8, $D1, $D1, $D1, $D1, $D1, $D1, $D1, $D8 .byte $D8, $D8, $D1, $D1, $D8, $D8, $D8, $D1, $BC, $84, $85, $85, $85, $86, $D1, $D8 .byte $42, $D1, $D1, $D1, $D1, $D1, $D1, $D1, $54, $97, $95, $89, $95, $98, $D1, $D1 .byte $D1, $D1, $E5, $D1, $D1, $D1, $BC, $D1, $48, $9D, $42,...
72.372093
85
0.41838
7522b8708601b8fad5e826a00f7fc0b671dc9b83
14,467
asm
Assembly
source/function/stringmisc.asm
mega65dev/rom-assembler
1670a56a8246dcdcc18e83b345d577eba686cf32
[ "MIT" ]
null
null
null
source/function/stringmisc.asm
mega65dev/rom-assembler
1670a56a8246dcdcc18e83b345d577eba686cf32
[ "MIT" ]
null
null
null
source/function/stringmisc.asm
mega65dev/rom-assembler
1670a56a8246dcdcc18e83b345d577eba686cf32
[ "MIT" ]
null
null
null
; ******************************************************************************************** ; ******************************************************************************************** ; ; Name : stringmisc.asm ; Purpose : .. ; Created : 15th Nov 1991 ; Updated : 4th Jan 2021 ; Authors : Fred Bowen ; ...
39.527322
100
0.34596
c1e3dd825c523ae6a755797d37ffe5990d4b484e
686
asm
Assembly
oeis/024/A024913.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/024/A024913.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/024/A024913.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A024913: Numbers k such that 10*k - 7 is prime. ; Submitted by Christian Krause ; 1,2,3,5,6,8,9,11,12,17,18,20,23,24,27,29,30,32,36,38,39,44,45,47,51,53,57,60,62,65,66,68,69,74,75,78,83,86,87,89,96,99,102,104,107,110,111,113,116,117,120,122,123,129,131,138,143,144,146,149,150,153,155,156,159,162,167,170,173,174,176,1...
29.826087
352
0.655977
7129ea4622b57805d58f172b643a6ba4ce2db3a7
3,852
asm
Assembly
DSP/TI-Header/csl_c64xplus_intc_src/src/intc/_csl_intcIntrEnDisRes.asm
adildahlan/BE-thesis-Repo-McsDspRealtimeFeedback
fd61a78401bde72b0fb0d5df32f2fd1cbb631aeb
[ "BSD-2-Clause" ]
null
null
null
DSP/TI-Header/csl_c64xplus_intc_src/src/intc/_csl_intcIntrEnDisRes.asm
adildahlan/BE-thesis-Repo-McsDspRealtimeFeedback
fd61a78401bde72b0fb0d5df32f2fd1cbb631aeb
[ "BSD-2-Clause" ]
null
null
null
DSP/TI-Header/csl_c64xplus_intc_src/src/intc/_csl_intcIntrEnDisRes.asm
adildahlan/BE-thesis-Repo-McsDspRealtimeFeedback
fd61a78401bde72b0fb0d5df32f2fd1cbb631aeb
[ "BSD-2-Clause" ]
1
2020-05-14T00:50:50.000Z
2020-05-14T00:50:50.000Z
;/***************************************************************************** ; * Copyright (c) Texas Instruments Inc 2002, 2003, 2004, 2005 ; * ; * Use of this software is controlled by the terms and conditions found in the ; * license agreement under which this software has been supplied. ...
23.204819
81
0.567757
25848514e6a65d937c9aa75accc99f8974611c82
763
asm
Assembly
04/submission/Mult.asm
benkoo/nand2tetris
4d1e173724a8a278a6632fcbb4fc46d65c076f5f
[ "CC0-1.0" ]
null
null
null
04/submission/Mult.asm
benkoo/nand2tetris
4d1e173724a8a278a6632fcbb4fc46d65c076f5f
[ "CC0-1.0" ]
null
null
null
04/submission/Mult.asm
benkoo/nand2tetris
4d1e173724a8a278a6632fcbb4fc46d65c076f5f
[ "CC0-1.0" ]
null
null
null
// This file is part of www.nand2tetris.org // and the book "The Elements of Computing Systems" // by Nisan and Schocken, MIT Press. // File name: projects/04/Mult.asm // Multiplies R0 and R1 and stores the result in R2. // (R0, R1, R2 refer to RAM[0], RAM[1], and RAM[2], respectively.) //Compute RAM[2]=RAM[0...
12.306452
67
0.496723
bd2092df8c1ab8f293a8e36c67d532986986a7a8
1,419
asm
Assembly
programs/oeis/297/A297405.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/297/A297405.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/297/A297405.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A297405: Binary "cubes"; numbers whose binary representation consists of three consecutive identical blocks. ; 7,42,63,292,365,438,511,2184,2457,2730,3003,3276,3549,3822,4095,16912,17969,19026,20083,21140,22197,23254,24311,25368,26425,27482,28539,29596,30653,31710,32767,133152,137313,141474,145635,149796,153957,15811...
25.339286
681
0.649753
f7311c394a18510ede8538d65890b81b112c4397
348
asm
Assembly
programs/oeis/128/A128514.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/128/A128514.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/128/A128514.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A128514: Triangle, Pell sequence in every column. ; 1,2,1,5,2,1,12,5,2,1,29,12,5,2,1,70,29,12,5,2,1,169,70,29,12,5,2,1,408,169,70,29,12,5,2,1,985,408,169,70,29,12,5,2,1,2378,985,408,169,70,29,12,5,2,1 seq $0,25676 ; Exponent of 8 (value of i) in n-th number of form 8^i*9^j. seq $0,52937 ; Expansion of (2-3*x-x^2)/((...
49.714286
150
0.632184
a0ce78706610fd42d3ef677af01a2a63fdc9f99b
8,360
asm
Assembly
maps/CopycatsHouse2F.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
28
2019-11-08T07:19:00.000Z
2021-12-20T10:17:54.000Z
maps/CopycatsHouse2F.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
13
2020-01-11T17:00:40.000Z
2021-09-14T01:27:38.000Z
maps/CopycatsHouse2F.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
22
2020-05-28T17:31:38.000Z
2022-03-07T20:49:35.000Z
object_const_def ; object_event constants const COPYCATSHOUSE2F_COPYCAT1 ; if player is male const COPYCATSHOUSE2F_DODRIO const COPYCATSHOUSE2F_FAIRYDOLL ; lost item const COPYCATSHOUSE2F_MONSTERDOLL const COPYCATSHOUSE2F_BIRDDOLL const COPYCATSHOUSE2F_COPYCAT2 ; if player is female CopycatsHouse2F_MapScripts: ...
22
164
0.7939
1cc34223874ca0de6fa81f518da1b35135c3ce26
85
asm
Assembly
test/bitwidth32.asm
kspalaiologos/asmbf
c98a51d61724a46855de291a27d68a49a034810b
[ "MIT" ]
67
2020-08-03T06:26:35.000Z
2022-03-24T19:50:51.000Z
test/bitwidth32.asm
pyautogui/asmbf
37c54a8a62df2fc4bab28bdeb43237b4905cbecd
[ "MIT" ]
55
2019-10-02T19:37:08.000Z
2020-06-12T19:40:53.000Z
test/bitwidth32.asm
pyautogui/asmbf
37c54a8a62df2fc4bab28bdeb43237b4905cbecd
[ "MIT" ]
9
2019-05-18T11:59:41.000Z
2020-06-21T20:40:25.000Z
;flags=-x [bits 32] db 65536 rcl r1, 0 nav r1 raw .[ out .1 clr r1 raw .] out .0
5.666667
9
0.576471
4735dff88bc135ca8d6485015cf887d94f055c3f
497
asm
Assembly
programs/oeis/323/A323703.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/323/A323703.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/323/A323703.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A323703: Number of values of (X^3 + X) mod prime(n). ; 1,3,3,5,7,9,11,13,15,19,21,25,27,29,31,35,39,41,45,47,49,53,55,59,65,67,69,71,73,75,85,87,91,93,99,101,105,109,111,115,119,121,127,129,131,133,141,149,151,153,155,159,161,167,171,175,179,181,185,187,189,195,205,207,209,211,221,225,231,233,235,239,245,249,253,255,...
62.125
360
0.700201
e8cd5b48a472fe2f63edd32a5a64e59aa29273fd
418
asm
Assembly
programs/oeis/147/A147661.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/147/A147661.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/147/A147661.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A147661: a(n) = squarefree part of n^n. ; 1,1,3,1,5,1,7,1,1,1,11,1,13,1,15,1,17,1,19,1,21,1,23,1,1,1,3,1,29,1,31,1,33,1,35,1,37,1,39,1,41,1,43,1,5,1,47,1,1,1,51,1,53,1,55,1,57,1,59,1,61,1,7,1,65,1,67,1,69,1,71,1,73,1,3,1,77,1,79,1,1,1,83,1,85,1,87,1,89,1,91,1,93,1,95,1,97,1,11,1 lpb $0 mod $0,2 sub $0,1 lpe seq ...
46.444444
239
0.61244
14af51cda00c570a72441bc689292c418b4c86a7
5,280
asm
Assembly
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_21829_1053.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_21829_1053.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_21829_1053.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 %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0x17ba6, %rsi lea addresses_A_ht+0xaa6, %rdi nop nop nop nop nop sub $30900, %rbp mov $39, %rcx rep movsl nop xor %r12, %r12 pop %rsi pop %rdi pop %rcx pop %rbp pop %r12 ret .global s_faulty_load s_fa...
45.128205
2,999
0.653598
8f9580a2a11946f27a4b5516e28e508ba8898d88
545
asm
Assembly
oeis/069/A069623.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/069/A069623.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/069/A069623.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A069623: Number of perfect powers <= n. ; Submitted by Jon Maiga ; 1,1,1,2,2,2,2,3,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,6,6,7,7,7,7,7,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13...
28.684211
253
0.576147
4b31c8d23b49728dcab68f58d78cf09a9e0ba6c3
5,451
asm
Assembly
Proxy/Exports/psapi.asm
kozakura51/MelonLoader
618e5aab0ff07b1bdf52e7399094e847d035f2ad
[ "Apache-2.0" ]
558
2020-08-30T19:31:18.000Z
2022-03-31T22:45:45.000Z
Proxy/Exports/psapi.asm
kozakura51/MelonLoader
618e5aab0ff07b1bdf52e7399094e847d035f2ad
[ "Apache-2.0" ]
115
2020-11-19T10:59:11.000Z
2022-03-24T17:40:01.000Z
Proxy/Exports/psapi.asm
kozakura51/MelonLoader
618e5aab0ff07b1bdf52e7399094e847d035f2ad
[ "Apache-2.0" ]
191
2021-01-07T13:44:36.000Z
2022-03-31T05:25:23.000Z
ifdef RAX .code extern OriginalFuncs_psapi:QWORD EmptyWorkingSet proc jmp QWORD ptr OriginalFuncs_psapi[0 * 8] EmptyWorkingSet endp EnumDeviceDrivers proc jmp QWORD ptr OriginalFuncs_psapi[1 * 8] EnumDeviceDrivers endp EnumPageFilesA proc jmp QWORD ptr OriginalFuncs_psapi[2 * 8] EnumPageFilesA e...
31.69186
44
0.796368
205a762c5bfc78cba2ee8bebf12df224e03a0d08
19,407
asm
Assembly
Maths/multiply.asm
TinfoilAsteroid/EliteNext
417511cefd3d5c7dd7a46b0354eec801ea2c9ca2
[ "Unlicense" ]
9
2021-09-29T22:08:15.000Z
2022-03-23T05:35:43.000Z
Maths/multiply.asm
TinfoilAsteroid/EliteNext
417511cefd3d5c7dd7a46b0354eec801ea2c9ca2
[ "Unlicense" ]
1
2022-01-21T12:35:42.000Z
2022-01-21T17:47:24.000Z
Maths/multiply.asm
TinfoilAsteroid/EliteNext
417511cefd3d5c7dd7a46b0354eec801ea2c9ca2
[ "Unlicense" ]
1
2022-01-15T10:13:49.000Z
2022-01-15T10:13:49.000Z
HLequSRmulQdiv256: ;X.Y=x1lo.S*M/256 \ where M/256 is gradient ld hl,(varRS) ld a,(varQ) HLeqyHLmulAdiv256: push bc,,de ld de,0 ; de = XY ld b,a ; b = Q ShiftHLRight1...
47.334146
182
0.271706
9f38b978624730cf2dfb3a59e8f3097ecf095ed2
648
asm
Assembly
oeis/087/A087464.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/087/A087464.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/087/A087464.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A087464: Generalized multiplicative Jacobsthal sequence. ; Submitted by Jon Maiga ; 0,0,2,0,6,10,0,42,86,0,342,682,0,2730,5462,0,21846,43690,0,174762,349526,0,1398102,2796202,0,11184810,22369622,0,89478486,178956970,0,715827882,1431655766,0,5726623062,11453246122,0,45812984490,91625968982,0,366503875926,733007751850,...
49.846154
487
0.819444
7a5a2d83c936a2c8ead72b81880d9d6a183f6e5f
2,511
asm
Assembly
Sources/lcd_module/Name_LCD_Module.asm
billhhh/hcs12_relocatable_asm
e0ec9f5d215af8b057036eef3948b1f4fda9f13a
[ "MIT" ]
null
null
null
Sources/lcd_module/Name_LCD_Module.asm
billhhh/hcs12_relocatable_asm
e0ec9f5d215af8b057036eef3948b1f4fda9f13a
[ "MIT" ]
null
null
null
Sources/lcd_module/Name_LCD_Module.asm
billhhh/hcs12_relocatable_asm
e0ec9f5d215af8b057036eef3948b1f4fda9f13a
[ "MIT" ]
null
null
null
;Author: Bill Wang ;Date: 11/20/2016/ ;Module file INCLUDE 'mc9s12dp256.inc' XDEF DELAY XDEF DISPLAY XREF DATWRT4 XREF COMWRT4 R1 EQU $1001 R2 EQU $1002 R3 EQU $1003 R4 EQU $1004 NAME DC.B " HU WANG BILL ",0 DELAY: ...
22.827273
94
0.444843
96eb1fd2a351e84034d7394bb38a221ef6044538
1,681
asm
Assembly
programs/oeis/165/A165870.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/165/A165870.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/165/A165870.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A165870: Totally multiplicative sequence with a(p) = 49. ; 1,49,49,2401,49,2401,49,117649,2401,2401,49,117649,49,2401,2401,5764801,49,117649,49,117649,2401,2401,49,5764801,2401,2401,117649,117649,49,117649,49,282475249,2401,2401,2401,5764801,49,2401,2401,5764801,49,117649,49,117649,117649,2401,49,282475249,2401,11764...
152.818182
1,497
0.815586
a8c477bdf9503a8c9ce77b9910ee379085de071d
760
asm
Assembly
oeis/098/A098588.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/098/A098588.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/098/A098588.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A098588: a(n) = 2^n for n = 0..4; for n > 4, a(n) = 2*a(n-1) + a(n-5). ; Submitted by Simon Strandgaard ; 1,2,4,8,16,33,68,140,288,592,1217,2502,5144,10576,21744,44705,91912,188968,388512,798768,1642241,3376394,6941756,14272024,29342816,60327873,124032140,255006036,524284096,1077911008,2216149889,4556331918,936766987...
38
492
0.748684
be93b23baac3f580146bc298eb67af097e82aea7
277
asm
Assembly
test/assembly/src/override_asm.asm
chlorm-forks/gyp
a8921fcaab1a18c8cf7e4ab09ceb940e336918ec
[ "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
test/assembly/src/override_asm.asm
chlorm-forks/gyp
a8921fcaab1a18c8cf7e4ab09ceb940e336918ec
[ "BSD-3-Clause" ]
1,432
2017-06-21T04:08:48.000Z
2020-08-25T16:21:15.000Z
test/assembly/src/override_asm.asm
chlorm-forks/gyp
a8921fcaab1a18c8cf7e4ab09ceb940e336918ec
[ "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
; Copyright (c) 2012 Google Inc. All rights reserved. ; Use of this source code is governed by a BSD-style license that can be ; found in the LICENSE file. ; This is a placeholder. It should not be referenced if overrides work ; correctly. Bad stuff that shouldn't assemble.
30.777778
72
0.758123
ce20a5d64c1ef393c3ab374b54bef6e920618c2f
1,341
asm
Assembly
Demo1/Stage2/stage2.asm
mooseman/plan_42
0b726f06088c6940aa7050b5cef9f93a3cdcc788
[ "Unlicense" ]
7
2015-02-18T13:45:06.000Z
2019-01-24T21:49:18.000Z
Demo1/Stage2/stage2.asm
mooseman/plan_42
0b726f06088c6940aa7050b5cef9f93a3cdcc788
[ "Unlicense" ]
null
null
null
Demo1/Stage2/stage2.asm
mooseman/plan_42
0b726f06088c6940aa7050b5cef9f93a3cdcc788
[ "Unlicense" ]
2
2017-04-21T09:38:50.000Z
2020-05-26T22:13:58.000Z
;********************************************* ; Stage2.asm ; - Second Stage Bootloader ; ; Operating Systems Development Series ;********************************************* org 0x0 ; offset to 0, we will set segments later bits 16 ; we are still in real mode ; we are loaded at linear addre...
24.381818
55
0.446682
ef57aa7e813912e724e635f584fee3a7192a5a8e
1,060
asm
Assembly
Palmtree.Math.Core.Implements/vs_build/x64_Release/pmc_statistics.asm
rougemeilland/Palmtree.Math.Core.Implements
52f4f6c765d16c9b0baf1fd212c61a33daae138c
[ "MIT" ]
null
null
null
Palmtree.Math.Core.Implements/vs_build/x64_Release/pmc_statistics.asm
rougemeilland/Palmtree.Math.Core.Implements
52f4f6c765d16c9b0baf1fd212c61a33daae138c
[ "MIT" ]
null
null
null
Palmtree.Math.Core.Implements/vs_build/x64_Release/pmc_statistics.asm
rougemeilland/Palmtree.Math.Core.Implements
52f4f6c765d16c9b0baf1fd212c61a33daae138c
[ "MIT" ]
null
null
null
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1 include listing.inc INCLUDELIB MSVCRT INCLUDELIB OLDNAMES _DATA SEGMENT COMM statistics_info:BYTE:010H _DATA ENDS PUBLIC PMC_GetStatisticsInfo ; Function compile flags: /Ogtpy ; File z:\sources\lunor\repos\rougemeilland\palmtree.math.cor...
23.555556
120
0.769811
97b644090bab3bd80de22baafaaa8f41622133ab
3,897
asm
Assembly
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_1238.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_1238.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_1238.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 %r11 push %r12 push %r8 push %rax push %rbp // Store lea addresses_RW+0x14d56, %rbp nop nop nop nop sub $48660, %r8 movb $0x51, (%rbp) nop nop xor %rbp, %rbp // Faulty Load mov $0x1b23990000000ec1, %r8 xor %rax, %rax mov (...
76.411765
2,999
0.660251
9ebb6118bb35f014c6133ef308517f2f6846f032
242
asm
Assembly
src/test/resources/data/potests/test29.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
36
2020-06-29T06:52:26.000Z
2022-02-10T19:41:58.000Z
src/test/resources/data/potests/test29.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
39
2020-07-02T18:19:34.000Z
2022-03-27T18:08:54.000Z
src/test/resources/data/potests/test29.asm
cpcitor/mdlz80optimizer
75070d984e1f08474e6d397c7e0eb66d8be0c432
[ "Apache-2.0" ]
7
2020-07-02T06:00:05.000Z
2021-11-28T17:31:13.000Z
; Test case: test to see if MDL can track the file names / line numbers properly ; when optimizing code form macros defined in another file. include "test29-include.asm" ld_val 0 ld_val 1 ld_val 0 end: jp end val: db 0
17.285714
81
0.690083
1138bf1004631e5ded0ced6860d87f9d92104761
3,641
asm
Assembly
hopesup/src/pads.asm
gb-archive/libbet
5b099093a22e7241a6405244d301ca5ba08db140
[ "Zlib" ]
28
2018-10-09T16:05:19.000Z
2022-01-24T17:25:54.000Z
hopesup/src/pads.asm
ISSOtm/libbet
d0cf93b622ddc741e6bc8aa889bf40f1bae69eee
[ "Zlib" ]
15
2018-10-21T02:52:18.000Z
2021-05-31T01:00:44.000Z
hopesup/src/pads.asm
ISSOtm/libbet
d0cf93b622ddc741e6bc8aa889bf40f1bae69eee
[ "Zlib" ]
3
2018-12-19T09:20:50.000Z
2021-09-04T12:52:03.000Z
; ; SMS and Genesis controller reading for SMS ; ; Copyright 2020 Damian Yerrick ; ; This software is provided 'as-is', without any express or implied ; warranty. In no event will the authors be held liable for any damages ; arising from the use of this software. ; ; Permission is granted to anyone to use this softw...
23.191083
76
0.654765
dd85e0fd4f165a0bf739ab8663e8166180e2b98d
734
asm
Assembly
tb/tprog/asm/test.srav.asm
mshaklunov/mips_onemore
b52b01f4d3bf458285b610aafd700d23e8c7f676
[ "MIT" ]
null
null
null
tb/tprog/asm/test.srav.asm
mshaklunov/mips_onemore
b52b01f4d3bf458285b610aafd700d23e8c7f676
[ "MIT" ]
null
null
null
tb/tprog/asm/test.srav.asm
mshaklunov/mips_onemore
b52b01f4d3bf458285b610aafd700d23e8c7f676
[ "MIT" ]
null
null
null
#SRAV INSTRUCTION #RUN ALL SHIFTING MODES (0-31) #EACH RESULT'S BIT GO THROUGH 0 AND 1 #1 SIGNED BIT IS ZERO lui $1 0x7FFF ori $1 0xFFFF lui $2 0x7FFF ori $2 0xFFFF lui $4 0x0000 ori $4 0 lui $5 0x0000 ori $5 31 srav_loopa: srav $3 $1 $4 bne $3 $2 fail sll $0 $0 0 beq $4 $5 srav_enda ad...
13.849057
37
0.591281
a0aeb75b427dcc6a3fc7a7988df85ee6edf88ac0
612
asm
Assembly
untested/ARM/lcmArray.asm
GabrielRavier/Generic-Assembly-Samples
fbf803960a14307b7fce0165058d0d4048abaf42
[ "Unlicense" ]
null
null
null
untested/ARM/lcmArray.asm
GabrielRavier/Generic-Assembly-Samples
fbf803960a14307b7fce0165058d0d4048abaf42
[ "Unlicense" ]
null
null
null
untested/ARM/lcmArray.asm
GabrielRavier/Generic-Assembly-Samples
fbf803960a14307b7fce0165058d0d4048abaf42
[ "Unlicense" ]
null
null
null
code32 format ELF public _lcmArray section '.text' executable align 16 _lcmArray: ; Requires armv7ve cmp r1, #1 ldr r2, [r0] ble .return str lr, [sp, #-4] add lr, r0, r1, lsl #2 add r0, r0, #4 .loop: ldr r1, [r0], #4 cmp r2, #0 mul ip, r2, r1 bne .startGcdLoop b .check .gcdLoop: mo...
11.127273
35
0.584967
0aa04f998123982bb92224301780de2c8871996a
690
asm
Assembly
unittests/ASM/OpSize/66_6E.asm
woachk/FEX
66dc5ebc54f3ff9b51eed714eb37bff34a0a82e6
[ "MIT" ]
1
2020-05-24T22:00:46.000Z
2020-05-24T22:00:46.000Z
unittests/ASM/OpSize/66_6E.asm
Sonicadvance1/FEX
d84b536c4a2f785870a714bd5ed9f914dff735a3
[ "MIT" ]
null
null
null
unittests/ASM/OpSize/66_6E.asm
Sonicadvance1/FEX
d84b536c4a2f785870a714bd5ed9f914dff735a3
[ "MIT" ]
null
null
null
%ifdef CONFIG { "RegData": { "XMM0": ["0x45464748", "0x0"], "XMM1": ["0x5152535455565758", "0x0"] }, "MemoryRegions": { "0x100000000": "4096" } } %endif mov rdx, 0xe0000000 mov rax, 0x4142434445464748 mov [rdx + 8 * 0], rax mov rax, 0x5152535455565758 mov [rdx + 8 * 1], rax mov rax, 0x61626364656...
19.166667
107
0.633333
c38945cf51a3d1b31f4e1dc11f24495f874cba1c
3,551
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_717_142.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_717_142.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_717_142.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 %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0xc3b9, %rsi lea addresses_D_ht+0x1ce40, %rdi nop cmp $48226, %rbp mov $106, %rcx rep movsw and %r9, %r9 lea addresses_A_ht+0x15458, %r15 nop nop nop nop nop cmp $31877, %rdx mov (%r15),...
43.839506
2,150
0.661504
c3b2086363f21599e894802ff158e992a6d5bd0c
214
asm
Assembly
programs/oeis/052/A052898.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/052/A052898.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/052/A052898.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A052898: 2*n! + 1. ; 3,3,5,13,49,241,1441,10081,80641,725761,7257601,79833601,958003201,12454041601,174356582401,2615348736001,41845579776001,711374856192001,12804747411456001 mov $1,$0 fac $1 mul $1,2 add $1,1
26.75
156
0.771028
df6df1b800d68548fa1c15e7b7817f07d1efde1b
352
asm
Assembly
libsrc/graphics/zx81/udg/clsgraph.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/graphics/zx81/udg/clsgraph.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/graphics/zx81/udg/clsgraph.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
; ; ZX81 pseudo graphics routines ; ; cls () -- clear screen ; ; Stefano Bodrato - 2014 ; ; ; $Id: clsgraph.asm,v 1.2 2015/01/23 07:07:31 stefano Exp $ ; PUBLIC cleargraphics ;EXTERN loadudg6 EXTERN filltxt ;EXTERN base_graphics INCLUDE "graphics/grafix.inc" .cleargr...
14.08
65
0.605114
1d970e06dc1fc9e4d1bb84bec6bf894fb189d75d
485
asm
Assembly
programs/oeis/065/A065262.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/065/A065262.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/065/A065262.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A065262: The nonpositive side (-1, -2, -3, ...) of the site swap sequence A065261. The bisection of odd terms of A065261. ; 1,1,5,2,9,3,13,4,17,5,21,6,25,7,29,8,33,9,37,10,41,11,45,12,49,13,53,14,57,15,61,16,65,17,69,18,73,19,77,20,81,21,85,22,89,23,93,24,97,25,101,26,105,27,109,28,113,29,117,30,121,31,125,32,129,33,...
53.888889
314
0.670103
28393f7c77e1257fa505caf20dd9023e545dfc4c
314
asm
Assembly
oeis/101/A101356.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/101/A101356.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/101/A101356.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A101356: Binomial( 2*binomial(2*n,n-1),n-1). ; Submitted by Jon Maiga ; 1,8,435,227920,1278098745,82575323184816,65027115220581214701,650673256738362079479972000,85317908524399246240116500743559745,150076667939221169116862871933576383129271760 mov $1,$0 add $1,1 mul $1,2 bin $1,$0 mul $1,2 bin $1,$0 mov $0,$1
26.166667
173
0.783439
18a2789cf81538453cd27548899b3f5ec2ac7160
626
asm
Assembly
oeis/212/A212695.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/212/A212695.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/212/A212695.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A212695: Decimal expansion of the uniform exponent of simultaneous approximation of Q-linearly independent triples (1,x,x^3) by rational numbers. ; Submitted by Christian Krause ; 3,5,1,9,0,3,5,6,5,4,3,8,7,2,5,7,0,9,9,7,4,7,1,2,3,6,3,9,0,4,8,7,6,7,6,2,3,9,7,9,1,6,8,1,5,5,8,8,2,6,7,2,4,5,6,3,0,2,4,8,0,6,1,3,1,7,6,1,3,...
21.586207
201
0.584665
e43f69d219a2e7e449fcd90d696493e8950169db
1,578
asm
Assembly
programs/oeis/175/A175780.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/175/A175780.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/175/A175780.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A175780: Partial sums of floor(n^2/24). ; 0,0,0,0,0,1,2,4,6,9,13,18,24,31,39,48,58,70,83,98,114,132,152,174,198,224,252,282,314,349,386,426,468,513,561,612,666,723,783,846,912,982,1055,1132,1212,1296,1384,1476,1572,1672,1776,1884,1996,2113,2234,2360,2490,2625,2765,2910,3060,3215,3375,3540,3710,3886,4067,4254,4446,464...
92.823529
1,396
0.783904
7d4021b3467be12d060b908eda32dba1250f2c86
2,250
asm
Assembly
src/atalan/cpu/Z80/z80.asm
BigEd/atalan
95f8eee930c2baeec47594f278d4b8eefb6f4512
[ "MIT" ]
15
2018-02-07T15:54:22.000Z
2022-03-27T07:26:45.000Z
src/atalan/cpu/Z80/z80.asm
BigEd/atalan
95f8eee930c2baeec47594f278d4b8eefb6f4512
[ "MIT" ]
null
null
null
src/atalan/cpu/Z80/z80.asm
BigEd/atalan
95f8eee930c2baeec47594f278d4b8eefb6f4512
[ "MIT" ]
3
2021-03-09T00:13:43.000Z
2021-06-19T17:31:22.000Z
;Print characters based on format string stored after the call instruction. ;Plaftorm should define: ; ; Platform.NEW_LINE character system__print_mem PROC ;Destination address is in BC ld hl, store_char jr z80_print ENDP system__print_out PROC ld hl, platform__print_char ENDP ;IN: HL address...
16.18705
86
0.591556
dabbc88de5ccf79a733667e5c5443032215ea11c
404
asm
Assembly
programs/oeis/111/A111601.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/111/A111601.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/111/A111601.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A111601: Exponential (binomial) convolution of A001818 (with interspersed zeros) and A000142 (factorials). ; 1,2,9,36,225,1350,11025,88200,893025,8930250,108056025,1296672300,18261468225,255660555150,4108830350625,65741285610000,1187451971330625,21374135483951250,428670161650355625,8573403233007112500 add $0,1 mov $...
28.857143
195
0.762376
7c1c9c468c159da88904f7d74c6922a073fe921b
207
asm
Assembly
data/maps/headers/LavenderTown.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
1
2022-02-15T00:19:44.000Z
2022-02-15T00:19:44.000Z
data/maps/headers/LavenderTown.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
data/maps/headers/LavenderTown.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
map_header LavenderTown, LAVENDER_TOWN, OVERWORLD, NORTH | SOUTH | WEST connection north, Route10, ROUTE_10, 0 connection south, Route12, ROUTE_12, 0 connection west, Route8, ROUTE_8, 0 end_map_header
29.571429
72
0.782609
774bec606d14e55645c7dc94d4c33c324b848fe8
1,034
asm
Assembly
src/sfx.asm
Q-Bert-Reynolds/gun-hockey-gb
360eae9adfffc9f619f891facf0c83e846f372b5
[ "MIT" ]
1
2021-06-04T15:47:25.000Z
2021-06-04T15:47:25.000Z
src/sfx.asm
Q-Bert-Reynolds/gbedit
d74e7f3527531ae1e4f34df794ba1cd1c5fe2069
[ "MIT" ]
null
null
null
src/sfx.asm
Q-Bert-Reynolds/gbedit
d74e7f3527531ae1e4f34df794ba1cd1c5fe2069
[ "MIT" ]
null
null
null
SECTION "SFX", ROMX, BANK[SFX_BANK] SelectSound:: DB 3;steps DB %0001 ;disable mask DB 2, %1110, SFX_CH_1 ;ticks, mask, channel DB 0, $FF, $FF ;sweep, duty/len, volume DW E5 ;frequency DB 4, %1110, SFX_CH_1 DB 0, $FF, $FF DW C6 DB 2, %1110, SFX_CH_1 DB 0, $FF, $FF DW A6 ...
19.509434
61
0.597679
2a9ceb0dc6c63d16d979251e56d7e1735a0229da
934
asm
Assembly
lab programs/Hardware/3b.asm
Amanskywalker/mp-lab
4103c61c0b0fee67cfda6dab313adfaebdb5badb
[ "MIT" ]
null
null
null
lab programs/Hardware/3b.asm
Amanskywalker/mp-lab
4103c61c0b0fee67cfda6dab313adfaebdb5badb
[ "MIT" ]
null
null
null
lab programs/Hardware/3b.asm
Amanskywalker/mp-lab
4103c61c0b0fee67cfda6dab313adfaebdb5badb
[ "MIT" ]
null
null
null
;Read the status of two 8-bit inputs (x & y) from the logic controller ;interface and display x*y .model small initds macro mov ax, @data mov ds,ax endm init8255 macro mov al,cw mov dx,cr out dx,al endm inpb macro mov dx,pb in al,dx endm outpa macro mov dx,pa out dx,al endm prin...
11.675
71
0.657388
753284c63797d7f55347b4a814da2881114e07b4
8,827
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_st_zr_sm_/i3-7100_9_0x84_notsx.log_21829_306.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_st_zr_sm_/i3-7100_9_0x84_notsx.log_21829_306.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_st_zr_sm_/i3-7100_9_0x84_notsx.log_21829_306.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 %r12 push %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0xf8bf, %rcx nop nop nop nop dec %rsi mov $0x6162636465666768, %rbp movq %rbp, %xmm1 vmovups %ymm1, (%rcx) nop nop nop cmp %r11, %r11 lea addresses_normal_ht+0x1a73f, %r9 nop no...
31.080986
2,999
0.651977
afb20f4b23f68a4f421606930eba6b3994dca41f
650
asm
Assembly
int10_override.asm
p2mate/focus_loader
862081a1096e4f59284237e9e2a1296b0aff62f0
[ "Apache-2.0" ]
null
null
null
int10_override.asm
p2mate/focus_loader
862081a1096e4f59284237e9e2a1296b0aff62f0
[ "Apache-2.0" ]
null
null
null
int10_override.asm
p2mate/focus_loader
862081a1096e4f59284237e9e2a1296b0aff62f0
[ "Apache-2.0" ]
null
null
null
.MODEL SMALL .CODE public int10_override_, setup_int10_ int10_override_ proc far cmp ax, 4f01h je check_mode01 cmp ax, 4f02h jne chain_to_prev cmp bx, 4136h jne chain_to_prev push cx push bx and bx, 4000h or bx, [mode] jmp chain_to_prev_and_restore check_mode01: cmp cx, 136h jne chain_to_prev p...
11.607143
37
0.738462
5ec808e27638da543353746e0b18dcc61292dba0
1,689
asm
Assembly
src/arch/x64/routines.asm
benner/nebulet
fb98938ce00563e3f3ad74711ff3575ac30a53b4
[ "MIT" ]
2,283
2018-03-12T09:45:05.000Z
2022-03-14T21:48:07.000Z
src/arch/x64/routines.asm
benner/nebulet
fb98938ce00563e3f3ad74711ff3575ac30a53b4
[ "MIT" ]
46
2018-03-21T16:45:53.000Z
2020-02-05T09:52:02.000Z
src/arch/x64/routines.asm
benner/nebulet
fb98938ce00563e3f3ad74711ff3575ac30a53b4
[ "MIT" ]
81
2018-03-21T16:20:24.000Z
2022-03-18T15:45:44.000Z
.global x86_64_context_switch .global erms_memcpy .global erms_memset .intel_syntax noprefix # Context Switching # ----------------- # ThreadContext { # 0x0: flags # 0x8: rbx # 0x10: r12 # 0x18: r13 # 0x20: r14 # 0x28: r15 # 0x30: rbp # 0x38: rsp # } # # rdi <- reference to previous `...
18.358696
54
0.555358
d375fdde4501a3da4364020ee9bea141f1bb2043
337
asm
Assembly
programs/oeis/021/A021531.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/021/A021531.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/021/A021531.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A021531: Decimal expansion of 1/527. ; 0,0,1,8,9,7,5,3,3,2,0,6,8,3,1,1,1,9,5,4,4,5,9,2,0,3,0,3,6,0,5,3,1,3,0,9,2,9,7,9,1,2,7,1,3,4,7,2,4,8,5,7,6,8,5,0,0,9,4,8,7,6,6,6,0,3,4,1,5,5,5,9,7,7,2,2,9,6,0,1,5,1,8,0,2,6,5,6,5,4,6,4,8,9,5,6,3,5,6 add $0,1 mov $1,10 pow $1,$0 sub $1,6 mul $1,5 div $1,17 add $1,4 div $1,155 mod...
24.071429
199
0.543027
146230e689f906b32b8d45f72691c6300a71a658
390
asm
Assembly
libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_start.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_start.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_start.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; ---------------------------------------------------------------- ; Z88DK INTERFACE LIBRARY FOR THE BIFROST*2 ENGINE ; ; See "bifrost2.h" for further details ; ---------------------------------------------------------------- ; void BIFROST2_start(void) SECTION code_clib SECTION code_bifrost2 PUBLIC _BIFROST2_start ...
22.941176
66
0.538462
c6061a74b5cac373b0c161b93dc77008ed5b95b0
102
asm
Assembly
Mips/Studies/printingCharacter.asm
otavreis/-Computer-Architecture-and-Organization
317c7077b1b08a50985767d8114af5be580cc764
[ "MIT" ]
1
2020-09-03T00:16:24.000Z
2020-09-03T00:16:24.000Z
Mips/Studies/printingCharacter.asm
otavreis/-Computer-Architecture-and-Organization
317c7077b1b08a50985767d8114af5be580cc764
[ "MIT" ]
null
null
null
Mips/Studies/printingCharacter.asm
otavreis/-Computer-Architecture-and-Organization
317c7077b1b08a50985767d8114af5be580cc764
[ "MIT" ]
null
null
null
.data myCharacter: .byte 'm' .text li $v0, 4 #uses code 4 la $a0, myCharacter syscall
14.571429
26
0.588235
292162a8c7d58c98683d57a30206478aa8a0835d
75,612
asm
Assembly
grep.asm
swu038/CS183lab2
b9c4db70ae1b36f4a6b7c26c0361d6728532d1cb
[ "MIT-0" ]
null
null
null
grep.asm
swu038/CS183lab2
b9c4db70ae1b36f4a6b7c26c0361d6728532d1cb
[ "MIT-0" ]
null
null
null
grep.asm
swu038/CS183lab2
b9c4db70ae1b36f4a6b7c26c0361d6728532d1cb
[ "MIT-0" ]
null
null
null
_grep: file format elf32-i386 Disassembly of section .text: 00001000 <grep>: char buf[1024]; int match(char*, char*); void grep(char *pattern, int fd) { 1000: 55 push %ebp 1001: 89 e5 mov %esp,%ebp 1003: 83 ec 28 sub $0x28,%esp int n, m; c...
37.376174
64
0.425356