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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3136d9efeda1d5c686ab6bd515a583af27d57b0d | 359 | asm | Assembly | programs/oeis/137/A137866.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/137/A137866.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/137/A137866.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A137866: a(1)=0. For n >= 2, a(n) = gcd(a(n-1)+1, n).
; 0,1,1,2,1,2,1,2,3,2,1,2,1,2,3,4,1,2,1,2,3,2,1,2,1,2,3,4,1,2,1,2,3,2,1,2,1,2,3,4,1,2,1,2,3,2,1,2,1,2,3,4,1,2,1,2,3,2,1,2,1,2,3,4,5,6,1,2,3,2,1,2,1,2,3,4,1,2,1,2,3,2,1,2,1,2,3,4,1,2,1,2,3,2,1,2,1,2,3,4
mov $2,$0
lpb $0
mov $0,$2
add $1,1
add $3,2
gcd $1,$... | 25.642857 | 201 | 0.479109 |
32fc157fc8e656a4a1376346d01dc382cf71c473 | 348 | asm | Assembly | oeis/340/A340495.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/340/A340495.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/340/A340495.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A340495: Records in first differences of A340494.
; Submitted by Jamie Morken(s2)
; 2,3,8,33,138,563,2268,9093,36398,145623,582528,2330153,9320658,37282683,149130788,596523213,2386092918,9544371743,38177487048,152709948273,610839793178,2443359172803
mov $2,1
lpb $0
sub $0,1
trn $1,1
add $1,$2
mul $2,4
add ... | 23.2 | 167 | 0.735632 |
eb32e0515f65040edca17b2715df0d6e1beec653 | 2,440 | asm | Assembly | mbr.asm | promix17/asm_mbr_iso | 849d4754ccfc59d538a2219df7be91b3ede4c93f | [
"MIT"
] | null | null | null | mbr.asm | promix17/asm_mbr_iso | 849d4754ccfc59d538a2219df7be91b3ede4c93f | [
"MIT"
] | null | null | null | mbr.asm | promix17/asm_mbr_iso | 849d4754ccfc59d538a2219df7be91b3ede4c93f | [
"MIT"
] | null | null | null | %define BOOT_ADDR 0x7C00
%define endl 10,13,0
jmp boot_start
copyright db "Promix17 boot iso v 0.2", endl
sendl db endl
boot_start:
cld
xor cx, cx
mov ss, cx
mov es, cx
mov ds, cx
mov sp, BOOT_ADDR
mov bp, sp
mov si, BOOT_ADDR + copyright
call print
jmp start
print:
pusha
print_char_loop:
lodsb
... | 11.960784 | 44 | 0.613525 |
0b50ee1888e90e002dc4972e537fbf888f8320cf | 669 | asm | Assembly | oeis/028/A028910.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/028/A028910.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/028/A028910.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A028910: Arrange digits of 2^n in descending order.
; Submitted by Jamie Morken(r1)
; 1,2,4,8,61,32,64,821,652,521,4210,8420,9640,9821,86431,87632,66553,732110,644221,885422,8765410,9752210,9444310,8888630,77766211,55443332,88766410,877432211,866554432,987653210,8774432110,8876444321,9997664422,9998855432,99887764111... | 74.333333 | 497 | 0.843049 |
77dca94cd2fa6d159ff44e2252b604305cb250d2 | 698 | asm | Assembly | tests/dos/testlods.asm | wwiv/door86c | bfdc6408bf632da74a1e58d97da3257d715f3f6e | [
"Apache-2.0"
] | 1 | 2021-11-04T03:13:25.000Z | 2021-11-04T03:13:25.000Z | tests/dos/testlods.asm | wwiv/door86c | bfdc6408bf632da74a1e58d97da3257d715f3f6e | [
"Apache-2.0"
] | null | null | null | tests/dos/testlods.asm | wwiv/door86c | bfdc6408bf632da74a1e58d97da3257d715f3f6e | [
"Apache-2.0"
] | null | null | null | ; ----------------------------------------------------------------------------
; lods.asm
; ----------------------------------------------------------------------------
.model small
.stack 128
.code
start: mov ax, @data
mov ds, ax
xor ax, ax
mov ah, 0Eh
... | 18.864865 | 78 | 0.313754 |
8598064e7114dddbc781cf1c458e823924c9fe77 | 6,230 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1290.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.log_21829_1290.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.log_21829_1290.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 %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x1ecba, %rdx
nop
and $21034, %rdi
mov $0x6162636465666768, %rcx
movq %rcx, %xmm6
vmovups %ymm6, (%rdx)
nop
nop
nop
nop
inc %r9
lea addresses_UC_ht+0x34ea, %r15
nop
nop
nop
inc ... | 37.305389 | 2,999 | 0.658587 |
9ead06de8c4f22935fe865175e5c5a474eab7f1f | 1,061 | asm | Assembly | Working Disassembly/General/Sprites/Shields/Map - Invincibility.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | Working Disassembly/General/Sprites/Shields/Map - Invincibility.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | Working Disassembly/General/Sprites/Shields/Map - Invincibility.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | dc.w word_18AFC-Map_Invincibility
dc.w word_18AFE-Map_Invincibility
dc.w word_18B06-Map_Invincibility
dc.w word_18B0E-Map_Invincibility
dc.w word_18B16-Map_Invincibility
dc.w word_18B1E-Map_Invincibility
dc.w word_18B26-Map_Invincibility
dc.w word_18B2E-Map_Invincibility
dc.w word_18B36-Map_Invincibil... | 39.296296 | 48 | 0.634307 |
2339866fb96c08e090b86295a545110074fa91b7 | 635 | asm | Assembly | oeis/014/A014633.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/014/A014633.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/014/A014633.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A014633: Even pentagonal numbers.
; Submitted by Jamie Morken(s1.)
; 0,12,22,70,92,176,210,330,376,532,590,782,852,1080,1162,1426,1520,1820,1926,2262,2380,2752,2882,3290,3432,3876,4030,4510,4676,5192,5370,5922,6112,6700,6902,7526,7740,8400,8626,9322,9560,10292,10542,11310,11572,12376,12650,13490,13776,14652,14950,158... | 52.916667 | 499 | 0.774803 |
42115fd8fc3688f8cab121e1aa921a1b61d5ca8b | 5,600 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_21829_1916.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_21829_1916.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48_notsx.log_21829_1916.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 %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x16778, %rsi
lea addresses_WT_ht+0x8378, %rdi
cmp %rdx, %rdx
mov $69, %rcx
rep movsw
nop
dec %rax
lea addresses_UC_ht+0x1c378, %r10
nop
nop
nop
and %r13, %r13
movb $0x61, (%r10)
no... | 42.105263 | 2,999 | 0.658393 |
860aef7e4631b8b3f0a3c0d58f122fa7284c7d08 | 5,330 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca.log_21829_1302.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_1302.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_1302.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 %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x1e448, %rsi
lea addresses_A_ht+0x15840, %rdi
nop
nop
nop
cmp $30445, %rdx
mov $71, %rcx
rep movsl
nop
cmp $611, %rsi
lea addresses_WC_ht+0x23d0, %r12
inc %r11
movw $0x6162, (%r12)
nop
... | 45.948276 | 2,999 | 0.657786 |
9823af038d0fe9a32242cf49744d42b24e710370 | 57,929 | asm | Assembly | grep.asm | KaushikKPDARE/xv6-Clone-System-Call | 43ae5658d425b694b7f89761509dcda690a3389a | [
"Apache-2.0",
"MIT-0"
] | null | null | null | grep.asm | KaushikKPDARE/xv6-Clone-System-Call | 43ae5658d425b694b7f89761509dcda690a3389a | [
"Apache-2.0",
"MIT-0"
] | null | null | null | grep.asm | KaushikKPDARE/xv6-Clone-System-Call | 43ae5658d425b694b7f89761509dcda690a3389a | [
"Apache-2.0",
"MIT-0"
] | null | null | null |
_grep: file format elf32-i386
Disassembly of section .text:
00000000 <grep>:
char buf[1024];
int match(char*, char*);
void
grep(char *pattern, int fd)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 ec 28 sub $0x28,%esp
int n, m;
char *p, *q;
... | 34.771309 | 70 | 0.432184 |
df3c64dd3ee1e4634f89007d69878e73b8a8c733 | 884 | asm | Assembly | programs/oeis/083/A083445.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/083/A083445.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/083/A083445.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A083445: Largest n-digit number minus the product of its digits; i.e., a(n) = 99999... (n 9's) - 9^n.
; 18,270,3438,40950,468558,5217030,56953278,612579510,6513215598,68618940390,717570463518,7458134171670,77123207545038,794108867905350,8146979811148158,83322818300333430,849905364703000878,8649148282327007910,8784233... | 73.666667 | 701 | 0.873303 |
cbd5db960f9d9141029364ea51a8e31e1fc281d6 | 50,740 | asm | Assembly | reports/05_proggetinst_1.exp2.asm | arnaudroger/re2j-benchmark | ecfb2d6975948a1fbb53ccf101b285655b850058 | [
"MIT"
] | null | null | null | reports/05_proggetinst_1.exp2.asm | arnaudroger/re2j-benchmark | ecfb2d6975948a1fbb53ccf101b285655b850058 | [
"MIT"
] | null | null | null | reports/05_proggetinst_1.exp2.asm | arnaudroger/re2j-benchmark | ecfb2d6975948a1fbb53ccf101b285655b850058 | [
"MIT"
] | null | null | null | # JMH version: 1.19
# VM version: JDK 1.8.0_131, VM 25.131-b11
# VM invoker: /usr/lib/jvm/java-8-oracle/jre/bin/java
# VM options: <none>
# Warmup: 20 iterations, 1 s each
# Measurement: 20 iterations, 1 s each
# Timeout: 10 min per iteration
# Threads: 1 thread, will synchronize iterations
# Benchmark mode: Throughput... | 80.539683 | 144 | 0.435396 |
2402fda3ab6bed195bc96289cb9ead1f4601029d | 661 | asm | Assembly | oeis/087/A087214.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/087/A087214.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/087/A087214.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A087214: Expansion of e.g.f.: exp(x)/(1-x^2/2).
; Submitted by Jamie Morken(s2)
; 1,1,2,4,13,41,196,862,5489,31033,247006,1706816,16302397,133131649,1483518128,13978823146,178022175361,1901119947857,27237392830234,325091511083548,5175104637744461,68269217327545081,1195449171318970492,17272111983868905494,329943971284... | 41.3125 | 469 | 0.816944 |
7d41bd9acfc7be62f2e2a21875bec9217519ac8c | 547 | asm | Assembly | programs/oeis/180/A180663.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/180/A180663.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/180/A180663.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A180663: Mirror image of the Golden Triangle: T(n,k) = A001654(n-k) for n>=0 and 0<=k<=n.
; 0,1,0,2,1,0,6,2,1,0,15,6,2,1,0,40,15,6,2,1,0,104,40,15,6,2,1,0,273,104,40,15,6,2,1,0,714,273,104,40,15,6,2,1,0,1870,714,273,104,40,15,6,2,1,0,4895,1870,714,273,104,40,15,6,2,1,0,12816,4895,1870,714,273,104,40,15,6,2,1,0,33552,... | 78.142857 | 312 | 0.650823 |
45e5077efd29e499628e14f2b7127be08bca1ca4 | 413 | asm | Assembly | oeis/116/A116406.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/116/A116406.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/116/A116406.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A116406: Expansion of ((1+x-2x^2)+(1+x)*sqrt(1-4x^2))/(2(1-4x^2)).
; Submitted by Jamie Morken(s1)
; 1,1,2,3,7,11,26,42,99,163,382,638,1486,2510,5812,9908,22819,39203,89846,155382,354522,616666,1401292,2449868,5546382,9740686,21977516,38754732,87167164,154276028,345994216,614429672,1374282019,2448023843
mov $3,$0
di... | 25.8125 | 205 | 0.687651 |
e1d190da75434b19ccb98db5bb4d90893bd3e949 | 2,637 | asm | Assembly | ASS4/rem_dup_word_sent (q8).asm | rahulkumawat1/NASM | 09b69e1338e59e43b6ff7403337d13810070d59f | [
"MIT"
] | null | null | null | ASS4/rem_dup_word_sent (q8).asm | rahulkumawat1/NASM | 09b69e1338e59e43b6ff7403337d13810070d59f | [
"MIT"
] | null | null | null | ASS4/rem_dup_word_sent (q8).asm | rahulkumawat1/NASM | 09b69e1338e59e43b6ff7403337d13810070d59f | [
"MIT"
] | null | null | null | ;;;nahi samajh aaye to puch lena;;;
read_string:
pusha
mov byte[len],0
mov dword[size],0
mov eax,0
mov ebx,string
read_loop:
pusha
mov eax,3
mov ebx,0
mov ecx,temp
mov edx,1
int 80h
popa
cmp byte[temp],10
je end_read
mov cl,byte[temp]
cmp cl,' '
je inc_eax
mov cl,byte[temp]
mov byte[ebx+eax],cl
inc eax
inc byte[len]... | 11.668142 | 56 | 0.662874 |
992408ee9a924d27c9c49b5f8e68aadafe02710d | 4,855 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_3635_312.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_3635_312.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_3635_312.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 %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x13b5f, %rbp
nop
dec %r10
mov (%rbp), %r12d
nop
nop
xor $63019, %rsi
lea addresses_WC_ht+0x13ba9, %rsi
lea addresses_normal_ht+0x7ac0, %rdi
nop
nop
nop
nop
nop
xor $22325, %rdx
mov $45,... | 47.135922 | 2,999 | 0.660144 |
07c2704d7be7687eb8dfcddedb0b16c1eb799671 | 36,864 | asm | Assembly | Library/Mailbox/Outbox/outboxTransmitQ.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Library/Mailbox/Outbox/outboxTransmitQ.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Library/Mailbox/Outbox/outboxTransmitQ.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1994 -- All Rights Reserved
PROJECT: Clavin
MODULE: Outbox -- Queueing Messages for Transmit Threads
FILE: outboxTransmitQ.asm
AUTHOR: Adam de Boor, May 2, 1994
ROUTINES:
Name Description
---- ... | 27.428571 | 79 | 0.625136 |
5c19fa1f0d266e9142ff5ab2d8479db230cd10ce | 731 | asm | Assembly | oeis/022/A022917.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/022/A022917.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/022/A022917.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A022917: Multinomial coefficient n!/ ([n/4]!, [(n+1)/4]!, [(n+2)/4]!, [(n+3)/4]!).
; Submitted by Jamie Morken(s4.)
; 1,1,2,6,24,60,180,630,2520,7560,25200,92400,369600,1201200,4204200,15765750,63063000,214414200,771891120,2933186256,11732745024,41064607584,150570227808,577185873264,2308743493056,8245512475200,306261... | 40.611111 | 481 | 0.774282 |
7cc958f26a9a35d1d1af4f233de9b0e7bad8d964 | 278 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_tan_fastcall.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_tan_fastcall.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_ix/cm48_sdccix_tan_fastcall.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
; float tan(float x) __z88dk_fastcall
SECTION code_clib
SECTION code_fp_math48
PUBLIC cm48_sdccix_tan_fastcall
EXTERN cm48_sdccixp_dx2m48, am48_tan, cm48_sdccixp_m482d
cm48_sdccix_tan_fastcall:
call cm48_sdccixp_dx2m48
call am48_tan
jp cm48_sdccixp_m482d
| 15.444444 | 56 | 0.816547 |
7feaddb1f304518cef065d8ad921cb1f65a355bd | 319 | asm | Assembly | oeis/127/A127577.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/127/A127577.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/127/A127577.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A127577: Numbers n for which 32n+31 is prime.
; Submitted by Jon Maiga
; 3,5,6,11,14,18,26,30,33,35,39,44,45,48,51,54,56,60,65,66,68,69,74,80,83,84,89,98,104,105,111,123,128,129,138,144,146,149,150,156,158,159,164,168,170,171,180,188,189,191,195,198
add $0,1
seq $0,127578 ; Primes congruent to 31 mod 32.
div $0,32
| 39.875 | 178 | 0.702194 |
2cec5ba08a08429d16c6d08d1d4530ee996b9891 | 237 | asm | Assembly | maskleast4.asm | adey99/8085asmcodes | 8049bbf4cc698f5ac9309fee2c5b827680acc8de | [
"MIT"
] | null | null | null | maskleast4.asm | adey99/8085asmcodes | 8049bbf4cc698f5ac9309fee2c5b827680acc8de | [
"MIT"
] | null | null | null | maskleast4.asm | adey99/8085asmcodes | 8049bbf4cc698f5ac9309fee2c5b827680acc8de | [
"MIT"
] | null | null | null | // MASK OFF LEAST SIGNIFICANT 4 BITS OF AN 8-BIT NUMBER
// The number to be masked is stored in C050
// Answer is stored in C051
LDA C050
ANI F0
STA C051
HLT
// EXAMPLE-> C050=96
// Answer-> C051=90
# ORG C050
# DB 96H
| 16.928571 | 55 | 0.649789 |
0b501f2222be7883fcb00e09235a59ccb93aeba6 | 310 | asm | Assembly | programs/oeis/258/A258054.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/258/A258054.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/258/A258054.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A258054: Circle of fifths cycle (counterclockwise).
; 1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4,9,2,7,12,5,10,3,8,1,6,11,4
mul $0,5
mod $0,12
add $0,1
| 44.285714 | 226 | 0.590323 |
ba3e93214f6e64f98b7be8eb39b874a96e7129a3 | 3,863 | asm | Assembly | common/titleScreen.asm | laoo/TimePilot | 88b2548ab23d213677047ca530b68f9523ea7140 | [
"MIT"
] | 24 | 2018-05-17T05:55:38.000Z | 2021-12-30T10:22:45.000Z | common/titleScreen.asm | laoo/TimePilot | 88b2548ab23d213677047ca530b68f9523ea7140 | [
"MIT"
] | 1 | 2018-06-27T11:08:01.000Z | 2018-06-27T11:08:01.000Z | common/titleScreen.asm | laoo/TimePilot | 88b2548ab23d213677047ca530b68f9523ea7140 | [
"MIT"
] | 3 | 2018-05-19T03:47:19.000Z | 2021-06-01T12:33:32.000Z |
.proc titleScreen
jsr waitFrameNormal
lda #0
sta dmactl
jsr clearbufScreenSimple
jsr clearbufScreenTxt
jsr copyTitleLogo
jsr copyTitleTexts
jsr waitFrameNormal
lda <dataTitleScreenDlist
sta dlptr
lda >dataTitleScreenDlist
sta dlptr+1
jsr setTitleScreenNMI
jsr gameInit.disable... | 17.09292 | 46 | 0.689102 |
70eb33ae484c2ca8760e180291d6b6d62efd94b7 | 111 | asm | Assembly | audio/sfx/collision_1.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | 1 | 2022-02-15T00:19:44.000Z | 2022-02-15T00:19:44.000Z | audio/sfx/collision_1.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | audio/sfx/collision_1.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | SFX_Collision_1_Ch5:
duty_cycle 2
pitch_sweep 5, -2
square_note 15, 15, 1, 768
pitch_sweep 0, 8
sound_ret
| 15.857143 | 27 | 0.756757 |
a36ed98c92f4e08a3ba3b148fb04c619d657ca49 | 1,161 | asm | Assembly | programs/oeis/285/A285953.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/285/A285953.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/285/A285953.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A285953: Positions of 0 in A285952; complement of A285954.
; 3,5,8,12,14,18,21,23,26,30,33,35,39,41,44,48,50,54,57,59,63,65,68,72,75,77,80,84,86,90,93,95,98,102,105,107,111,113,116,120,123,125,128,132,134,138,141,143,147,149,152,156,158,162,165,167,170,174,177,179,183,185,188,192,194,198,201,203,207,209,212,216,219,2... | 64.5 | 965 | 0.71404 |
2be4f539dbb86c82b120fd9b1110eb3178509f4b | 453 | asm | Assembly | programs/oeis/008/A008486.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/008/A008486.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/008/A008486.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A008486: Expansion of (1 + x + x^2)/(1 - x)^2.
; 1,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204,207,210,213,216,219,222,225,228... | 56.625 | 363 | 0.677704 |
04ab7c25f9cde61721c5d85149e16824db8f5347 | 6,601 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2289.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_2289.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_2289.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 %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1d76, %rsi
lea addresses_UC_ht+0xa7f6, %rdi
nop
nop
nop
and $29408, %rbx
mov $62, %rcx
rep movsq
nop
nop
lfence
lea addresses_WT_ht+0xdbc6, %rsi
lea addresses_A_ht+0xcc66, %... | 35.299465 | 2,999 | 0.661263 |
7fbd8d2006f28ae3b9dc16e6e5b15a082690e8cd | 928 | asm | Assembly | programs/oeis/010/A010785.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/010/A010785.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/010/A010785.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A010785: Repdigit numbers, or numbers with repeated digits.
; 0,1,2,3,4,5,6,7,8,9,11,22,33,44,55,66,77,88,99,111,222,333,444,555,666,777,888,999,1111,2222,3333,4444,5555,6666,7777,8888,9999,11111,22222,33333,44444,55555,66666,77777,88888,99999,111111,222222,333333,444444,555555,666666,777777,888888,999999,1111111,222... | 71.384615 | 696 | 0.800647 |
e1dac8c2438125333594dd48b59eb7d498ee4f6a | 559 | asm | Assembly | oeis/111/A111283.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/111/A111283.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/111/A111283.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A111283: Number of permutations avoiding the patterns {4321, 45132, 45231, 35412, 53412, 45213, 43512, 45312, 456123, 451623, 356124}; number of strong sorting class based on 4321.
; Submitted by Christian Krause
; 1,2,6,23,96,409,1751,7505,32176,137956,591501,2536132,10873981,46623553,199904321,857114814,3674987126,... | 29.421053 | 199 | 0.728086 |
8d5be8d121c658d276b9bffa5551e11caeeabde6 | 528 | asm | Assembly | programs/oeis/139/A139610.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/139/A139610.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/139/A139610.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A139610: a(n) = 45*n + 10.
; 10,55,100,145,190,235,280,325,370,415,460,505,550,595,640,685,730,775,820,865,910,955,1000,1045,1090,1135,1180,1225,1270,1315,1360,1405,1450,1495,1540,1585,1630,1675,1720,1765,1810,1855,1900,1945,1990,2035,2080,2125,2170,2215,2260,2305,2350,2395,2440,2485,2530,2575,2620,2665,2710,2755,280... | 88 | 477 | 0.761364 |
43ea628f18201147951199737ba1c357cba3f808 | 1,346 | asm | Assembly | gfx/numbers.asm | tbsp/Adjustris | d899e2f539c07ac49fd42c055605bf778a2df09d | [
"CC0-1.0"
] | 11 | 2017-10-30T17:27:32.000Z | 2021-08-30T19:52:51.000Z | gfx/numbers.asm | tbsp/Adjustris | d899e2f539c07ac49fd42c055605bf778a2df09d | [
"CC0-1.0"
] | 2 | 2017-11-18T01:15:58.000Z | 2018-02-01T07:09:09.000Z | gfx/numbers.asm | tbsp/Adjustris | d899e2f539c07ac49fd42c055605bf778a2df09d | [
"CC0-1.0"
] | 3 | 2017-10-31T16:25:15.000Z | 2019-08-31T22:10:49.000Z | ; NUMBERS.Z80
;
; Tile Source File.
;
; Info:
; Section : Tiles
; Bank : 0
; Form : All tiles as one unit.
; Format : Gameboy 4 color.
; Compression : None.
; Counter : None.
; Tile size : 8 x 8
; Til... | 27.469388 | 50 | 0.480684 |
fde52d3a1e15f6fdbec1dfb59a47feecfa89cd9e | 4,513 | asm | Assembly | util/gut/lchp.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | util/gut/lchp.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | util/gut/lchp.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; Load file into heap V1.00 1988 Tony Tebby
section gen_util
xdef gu_lchp
xdef gu_lchpx
xdef gu_lchph
xdef gu_lchpf
xref gu_iowp
xref gu_achp0
xref gu_rchp
xref gu_fclos
include 'dev8_keys_hdr'
in... | 33.42963 | 78 | 0.534678 |
a1e7b3a8c00ddc97f66e3f625963ca64f91e7fb2 | 647 | asm | Assembly | oeis/246/A246133.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/246/A246133.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/246/A246133.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A246133: Binomial(2n, n) - 2 mod n^3.
; Submitted by Jamie Morken(s1.)
; 0,4,18,4,0,58,0,68,504,754,0,1562,0,2062,2518,580,0,922,0,818,6535,7990,0,12058,250,4398,2691,10358,0,12422,0,16964,10666,29482,3680,42818,0,41158,19791,13618,0,54430,0,71942,40993,73006,0,12058,3430,122254,98278,127494,0,91318,40180,23158,13033... | 49.769231 | 496 | 0.746522 |
2e0afdac1bc78608bec1074a7bba7013dc494f52 | 409 | asm | Assembly | programs/oeis/070/A070940.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/070/A070940.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/070/A070940.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A070940: Number of digits that must be counted from left to right to reach the last 1 in the binary representation of n.
; 1,1,2,1,3,2,3,1,4,3,4,2,4,3,4,1,5,4,5,3,5,4,5,2,5,4,5,3,5,4,5,1,6,5,6,4,6,5,6,3,6,5,6,4,6,5,6,2,6,5,6,4,6,5,6,3,6,5,6,4,6,5,6,1,7,6,7,5,7,6,7,4,7,6,7,5,7,6,7,3,7,6,7,5,7,6,7,4,7,6,7,5,7,6,7,2,7,6... | 29.214286 | 201 | 0.586797 |
585961a66cafe6bc9801858491b08740ee2fa31c | 49,596 | asm | Assembly | assemblyImageFile/GUI.asm | CRZbulabula/assemblyImageFile | 0f3c4237537675718e4c0ca6c774f6a8b37cb6fe | [
"MIT"
] | 1 | 2020-10-22T02:11:26.000Z | 2020-10-22T02:11:26.000Z | assemblyImageFile/GUI.asm | CRZbulabula/assemblyImageFilter | 0f3c4237537675718e4c0ca6c774f6a8b37cb6fe | [
"MIT"
] | 6 | 2020-10-27T14:19:56.000Z | 2020-11-05T13:27:20.000Z | assemblyImageFile/GUI.asm | CRZbulabula/assemblyImageFilter | 0f3c4237537675718e4c0ca6c774f6a8b37cb6fe | [
"MIT"
] | null | null | null | .386
.Model Flat, StdCall
Option Casemap :None
;==================== INCLUDE =======================
INCLUDE header.inc
INCLUDE structure.inc
INCLUDE images.inc
INCLUDE dll.inc
;==================== FUNCTION =======================
rand PROTO C
printf PROTO C :ptr sbyte, :VARARG
RandStr PROTO
Del... | 32.954153 | 156 | 0.719272 |
2b8a6b91d6c884125110a3000ee437affac53655 | 5,687 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0x48_notsx.log_21829_1650.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0x48_notsx.log_21829_1650.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0x48_notsx.log_21829_1650.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 %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xfc5b, %rsi
lea addresses_normal_ht+0xe05b, %rdi
nop
nop
dec %rbp
mov $11, %rcx
rep movsb
nop
nop
nop
nop
and $29358, %r13
lea addresses_UC_ht+0x1545b, %rbx
clflush (%rbx)
nop
nop
add ... | 39.493056 | 2,999 | 0.656234 |
6d34b9455e04f722331fc4a7be6039f42977806e | 3,516 | asm | Assembly | projects/Kirbys_Dream_Land_2.windfish/configuration/regions.asm | jverkoey/awaken | 743755248996deb7181ae92f6e60be5656439c44 | [
"Apache-2.0"
] | 68 | 2020-12-16T10:06:48.000Z | 2022-03-29T19:54:01.000Z | projects/Kirbys_Dream_Land_2.windfish/configuration/regions.asm | jverkoey/awaken | 743755248996deb7181ae92f6e60be5656439c44 | [
"Apache-2.0"
] | 62 | 2020-12-19T04:28:41.000Z | 2021-02-15T22:18:16.000Z | projects/Kirbys_Dream_Land_2.windfish/configuration/regions.asm | jverkoey/awaken | 743755248996deb7181ae92f6e60be5656439c44 | [
"Apache-2.0"
] | 4 | 2021-01-17T03:51:22.000Z | 2021-01-21T16:26:53.000Z | RST_0000: ; [Region] $00:$0000 [8]
RST_0008: ; [Region] $00:$0008 [8]
RST_0010: ; [Region] $00:$0010 [8]
RST_0018: ; [Region] $00:$0018 [8]
RST_0020: ; [Region] $00:$0020 [8]
RST_0028: ; [Region] $00:$0028 [8]
RST_0030: ; [Region] $00:$0030 [8]
RST_0038: ; [Region] $00:$0038 [8]
VBlankInterrupt: ; [Region] $00:... | 20.323699 | 57 | 0.628555 |
4cb3db3c7d55698b96e703671c563d80bb37177d | 3,017 | asm | Assembly | base/mvdm/wow16/user/wsphelp.asm | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | base/mvdm/wow16/user/wsphelp.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | base/mvdm/wow16/user/wsphelp.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | ;++
;
; WOW v1.0
;
; Copyright (c) 1991, Microsoft Corporation
;
; WSPHELP.ASM
; Win16 wsprintf/wvsprintf helper services
;
; History:
;
; Created 28-May-1991 by Jeff Parsons (jeffpar)
; Copied from WIN31 and edited (as little as possible) for WOW16
;--
;
; WSPHELP.ASM
;
; Assembly ... | 21.397163 | 75 | 0.53762 |
8c913177a2abe7434c7f97680584e1a8a40e4375 | 730 | asm | Assembly | PRG/levels/Plains/4-5Bonus.asm | narfman0/smb3_pp1 | 38a58adafff67a403591e38875e9fae943a5fe76 | [
"Unlicense"
] | null | null | null | PRG/levels/Plains/4-5Bonus.asm | narfman0/smb3_pp1 | 38a58adafff67a403591e38875e9fae943a5fe76 | [
"Unlicense"
] | null | null | null | PRG/levels/Plains/4-5Bonus.asm | narfman0/smb3_pp1 | 38a58adafff67a403591e38875e9fae943a5fe76 | [
"Unlicense"
] | null | null | null | ; Original address was $AF30
; 4-5 bonus room and unused exit
.word W405L ; Alternate level layout
.word W405O ; Alternate object layout
.byte LEVEL1_SIZE_05 | LEVEL1_YSTART_170
.byte LEVEL2_BGPAL_05 | LEVEL2_OBJPAL_08 | LEVEL2_XSTART_18 | LEVEL2_UNUSEDFLAG
.byte LEVEL3_TILESET_11 | LEVEL3_VSCROLL_LOCKED | LEVEL3_... | 48.666667 | 85 | 0.656164 |
6bfae31d61c650ba074ce6d3494b6958a874c0e9 | 4,539 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1568.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_1568.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_1568.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %rbp
push %rsi
lea addresses_normal_ht+0x11349, %r10
nop
xor %r12, %r12
mov (%r10), %r15d
nop
nop
add $63627, %r12
lea addresses_normal_ht+0x12619, %r12
nop
nop
nop
sub $53278, %rsi
movw $0x6162, (%r12)
nop
nop
nop
cmp $61272, %rbp
pop %rsi... | 52.172414 | 2,999 | 0.661159 |
50425cefa477a986e11c36b9938dcd266c61b78c | 667 | asm | Assembly | iod/con2/aur8/sppref.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | iod/con2/aur8/sppref.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | iod/con2/aur8/sppref.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; 8 bit sprite preference table V2.02 1999 Tony Tebby
;
; 2002-11-12 2.01 Added mode 64 definition (MK)
; 2002-12-15 2.02 Added more mode definitions (JG)
section driver
xdef pt_sppref ; 14 sprite preference table
xdef pt_spnative
; The size and order of the table must comply with the definition
; ... | 26.68 | 73 | 0.685157 |
6a71578783e201770a04b2ae33c1a2fb63572e02 | 257 | asm | Assembly | libsrc/stdio/abc80/getk.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/stdio/abc80/getk.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | libsrc/stdio/abc80/getk.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | ;
; ABC80 Routines
;
; getk() Read key status
;
; Maj 2000 - Stefano Bodrato
;
;
; $Id: getk.asm,v 1.2 2001/04/13 14:13:59 stefano Exp $
;
XLIB getk
.getk
in a,(56)
bit 7,a
jr z,nokey
sub 128
jr keyread
.nokey xor a
.keyread
ld l,a
ld h,0
ret
| 9.178571 | 55 | 0.618677 |
9327cf3940e4c56d86db3ad2fe6546c19352230c | 582 | asm | Assembly | programs/oeis/132/A132226.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/132/A132226.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/132/A132226.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A132226: Placement sequence for the dense normalized fractal sequence A132224.
; 1,2,3,2,5,4,3,2,9,8,7,6,5,4,3,2,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,65,64,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40... | 64.666667 | 269 | 0.654639 |
e315ad557e5ca0c84ea32102f0c4b7ba69e1ea4f | 350 | asm | Assembly | iod/con2/q40ql/initb.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | iod/con2/q40ql/initb.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | iod/con2/q40ql/initb.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; Q40 QL Mode initialise Display 1992 Tony Tebby QJUMP
section init
xdef cn_initb
xdef cn_crcol
xdef cn.inkcl
include 'dev8_keys_q40'
section con
section init
;+++
; Set console linkage
;
; d1 s
; d2 s
; a0 s
; a1 s
; a3 c p console linkage
; a4 s
;---
cn_initb
moveq #q40.d4,d1
jsr cn_disp_... | 11.666667 | 63 | 0.671429 |
fa0b65e27a26a0cfaa805192134feb5286f90368 | 324 | asm | Assembly | programs/oeis/292/A292552.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/292/A292552.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/292/A292552.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A292552: Nontotients of the form 10^k - 2.
; 98,998,9998,99998,999998,9999998,99999998,999999998,9999999998,99999999998,999999999998,9999999999998,99999999999998,999999999999998,9999999999999998,99999999999999998,999999999999999998,9999999999999999998,99999999999999999998
add $0,2
mov $1,10
pow $1,$0
sub $1,2
mov $0... | 36 | 229 | 0.820988 |
6f50e650d1a97f2d6ca3a2b92ec735c74f62b963 | 692 | asm | Assembly | oeis/289/A289215.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/289/A289215.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/289/A289215.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A289215: a(n) = n! * Laguerre(n,-9).
; Submitted by Jon Maiga
; 1,10,119,1626,24945,422994,7836255,157169826,3388099329,78031713690,1910451937671,49510386761130,1353167691897969,38878205830928226,1170930069982659375,36875214316479123954,1211549306913066598785,41445016025330141416746,1473442955416649975287959,54350190... | 34.6 | 471 | 0.802023 |
3e4c5fcd1ccf82b85ae8e04112f5cd8edcfc6698 | 854 | asm | Assembly | y2s2/csa/practicals/prac-4/p4-ex-3-1.asm | ouldevloper/university | 4bb4a7e86912b46aa625900d2985b4d1e436cf4e | [
"MIT"
] | 8 | 2019-06-22T14:29:51.000Z | 2021-09-22T16:58:12.000Z | y2s2/csa/practicals/prac-4/p4-ex-3-1.asm | ouldevloper/university | 4bb4a7e86912b46aa625900d2985b4d1e436cf4e | [
"MIT"
] | 1 | 2020-06-30T06:38:00.000Z | 2020-07-08T06:37:57.000Z | y2s2/csa/practicals/prac-4/p4-ex-3-1.asm | ouldevloper/university | 4bb4a7e86912b46aa625900d2985b4d1e436cf4e | [
"MIT"
] | 9 | 2020-04-04T12:59:50.000Z | 2022-03-27T22:44:58.000Z | ; Ex 2, allow user to enter 2 digit, diplay product
; Note: prod must less than 10
.MODEL SMALL
.STACK 100
.DATA
txt1 DB "Enter 1st digit: $"
txt2 DB "Enter 2nd digit: $"
NL DB 13, 10, "$"
.CODE
MAIN PROC
MOV AX,@DATA
MOV DS,AX
; Accept input
MOV AH, 09H
LEA DX, txt1
... | 13.138462 | 51 | 0.492974 |
bbad54463cc6a06ed67e787723853a4683e28d8c | 463 | asm | Assembly | oeis/339/A339411.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/339/A339411.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/339/A339411.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A339411: Product of partial sums of odd squares.
; Submitted by Jon Maiga
; 1,1,10,350,29400,4851000,1387386000,631260630000,429257228400000,415950254319600000,553213838245068000000,979741707532015428000000,2253405927323635484400000000,6591212337421633791870000000000,24084289880938649875492980000000000,10825888301481... | 27.235294 | 269 | 0.792657 |
799e41f75b0ab020ce365799800d66bb138b30e4 | 548 | asm | Assembly | programs/oeis/001/A001333.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/001/A001333.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/001/A001333.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A001333: Numerators of continued fraction convergents to sqrt(2).
; 1,1,3,7,17,41,99,239,577,1393,3363,8119,19601,47321,114243,275807,665857,1607521,3880899,9369319,22619537,54608393,131836323,318281039,768398401,1855077841,4478554083,10812186007,26102926097,63018038201,152139002499,367296043199,886731088897,21407582... | 45.666667 | 399 | 0.813869 |
a0e58493e3f3cdc387aa382a70041c3be781ed8c | 897 | asm | Assembly | oeis/086/A086616.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/086/A086616.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/086/A086616.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A086616: Partial sums of the large Schroeder numbers (A006318).
; Submitted by Jon Maiga
; 1,3,9,31,121,515,2321,10879,52465,258563,1296281,6589727,33887465,175966211,921353249,4858956287,25786112993,137604139011,737922992937,3974647310111,21493266631001,116642921832963,635074797251889,3467998148181631,18989465797056... | 26.382353 | 476 | 0.722408 |
ce2ff9d3776111cbabacb45476207a495e1d7e88 | 386 | asm | Assembly | Engine Hacks/FE8-Item Range Fix/Weapon Attack.asm | sme23/Christmas2 | f3f3daeda1afe2b78bfed38cbf60d8bc17ca9f79 | [
"CC0-1.0"
] | 3 | 2020-06-15T14:22:38.000Z | 2020-06-28T19:44:52.000Z | Wizardry/Necessary/ItemRangeFix/RangeDisplay/Weapon_Attack.asm | sme23/WhatHeck | 746a2be83358aaa4e855182176b47c4808f2587a | [
"CC0-1.0"
] | null | null | null | Wizardry/Necessary/ItemRangeFix/RangeDisplay/Weapon_Attack.asm | sme23/WhatHeck | 746a2be83358aaa4e855182176b47c4808f2587a | [
"CC0-1.0"
] | null | null | null | .thumb
.org 0x0
@r4 has min nibble, r3 = r2 = max nibble
push {r14}
lsl r1,r4,#0x4
orr r1,r2
cmp r1,#0xFF
bne NotTotal
mov r4,#0x1
mov r2,r1
b GoBack
NotTotal:
cmp r2,#0x0
bne GoBack
ldr r0,CurrentCharPtr
ldr r0,[r0]
ldr r3,GetMagOver2
bl goto_r3
mov r2,r0
GoBack:
pop {r0}
bx r0
goto_r3:
bx r3
.align... | 12.0625 | 40 | 0.704663 |
35a8b99f4cd7c0ff7d6cd7b6a175f0ee1582042f | 266 | asm | Assembly | libsrc/_DEVELOPMENT/arch/zx/display/c/sccz80/zx_saddrpdown.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/arch/zx/display/c/sccz80/zx_saddrpdown.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/arch/zx/display/c/sccz80/zx_saddrpdown.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
; void *zx_saddrpdown(void *saddr)
SECTION code_clib
SECTION code_arch
PUBLIC zx_saddrpdown
EXTERN asm_zx_saddrpdown
defc zx_saddrpdown = asm_zx_saddrpdown
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _zx_saddrpdown
defc _zx_saddrpdown = zx_saddrpdown
ENDIF
| 14 | 38 | 0.830827 |
47d08951fd6d8baf17db0a8bbe2b3dd91a367ffb | 7,085 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1147.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.log_21829_1147.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.log_21829_1147.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1908b, %rax
nop
nop
sub $24108, %r15
mov (%rax), %rcx
sub %r10, %r10
lea addresses_normal_ht+0x2c8b, %rdi
nop
nop
nop
and %rax, %rax
mov (%rdi), %r15w
nop
nop
nop
nop
nop
xor... | 34.0625 | 2,999 | 0.653211 |
4ab73fb2d159a405235acd30d00afeff06408d69 | 1,283 | asm | Assembly | libsrc/_DEVELOPMENT/EXAMPLES/sms/speechbubbles/font_8x8_bubble.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/EXAMPLES/sms/speechbubbles/font_8x8_bubble.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/EXAMPLES/sms/speechbubbles/font_8x8_bubble.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | SECTION rodata_user
PUBLIC _font_8x8_bubble
_font_8x8_bubble:
; A
defb 0, 0, 0, 0, 0, 0, 0, 0
; B - top left
defb %00000000
defb %00000111
defb %00001000
defb %00010000
defb %00010000
defb %00010000
defb %00010000
defb %00010000
; C - left or right side
defb %00010000... | 14.747126 | 28 | 0.629774 |
7609fbeaa03f6ade96237c9e1b0121f06378be39 | 6,617 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_9616_1742.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_9616_1742.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_9616_1742.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 %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xff64, %rsi
lea addresses_D_ht+0x18954, %rdi
nop
cmp %r15, %r15
mov $68, %rcx
rep movsq
nop
nop
cmp $51803, %rsi
lea addresses_WC_ht+0x47b4, %r13
add $62693, %rdi
mov $0x616263646566676... | 38.47093 | 2,999 | 0.656491 |
7b2344b1aa9a89f29282bc74efa92324081e7ccc | 682 | asm | Assembly | oeis/241/A241478.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/241/A241478.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/241/A241478.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A241478: a(n) = 4^n*(n/4 + binomial(n-1/2, -1/2)).
; Submitted by Jamie Morken(s4)
; 1,3,14,68,326,1532,7068,32104,143942,638444,2806196,12239768,53035804,228504408,979640696,4181649360,17780949574,75348050252,318312780612,1341015321784,5635404667700,23628002057736,98861122208008,412853709749168,1721097463947036,7163... | 40.117647 | 479 | 0.807918 |
c8f6fa81cc324545504cbc0218edbe322e962790 | 90 | asm | Assembly | lab15/cases/character.asm | Brant-Skywalker/ZJUI-ECE-120-SP21 | b8d444620f4a57766ac3f1346d7ec4608b35adbe | [
"MIT"
] | null | null | null | lab15/cases/character.asm | Brant-Skywalker/ZJUI-ECE-120-SP21 | b8d444620f4a57766ac3f1346d7ec4608b35adbe | [
"MIT"
] | null | null | null | lab15/cases/character.asm | Brant-Skywalker/ZJUI-ECE-120-SP21 | b8d444620f4a57766ac3f1346d7ec4608b35adbe | [
"MIT"
] | null | null | null | ; sample test file for lab 14
.ORIG x5000
.FILL x20
.FILL x41
.STRINGZ "E"
.END
| 8.181818 | 29 | 0.622222 |
4832da0e9ad73a5d2b56b4d2137c239629898b27 | 458 | nasm | Assembly | Projetos/F-Assembly/src/nasm/div.nasm | brunoartc/GladOS | ba8ccbb6e0e46dbe5f93cb6533d8956cd7ffffae | [
"Unlicense"
] | null | null | null | Projetos/F-Assembly/src/nasm/div.nasm | brunoartc/GladOS | ba8ccbb6e0e46dbe5f93cb6533d8956cd7ffffae | [
"Unlicense"
] | 40 | 2018-03-12T00:40:25.000Z | 2020-02-20T21:58:52.000Z | Projetos/F-Assembly/src/nasm/div.nasm | brunoartc/Z01-GladOS | ba8ccbb6e0e46dbe5f93cb6533d8956cd7ffffae | [
"Unlicense"
] | 1 | 2018-03-02T13:32:33.000Z | 2018-03-02T13:32:33.000Z | ; Arquivo: Div.nasm
; Curso: Elementos de Sistemas
; Criado por: Luciano Soares
; Data: 27/03/2017
; Divide R0 por R1 e armazena o resultado em R2.
; (R0, R1, R2 refer to RAM[0], RAM[1], and RAM[2], respectively.)
; divisao para numeros inteiros positivos
leaw $0, %A
movw (%A), %D
leaw $1, %A
DIVS: ... | 20.818182 | 66 | 0.578603 |
6228851d07cb49500165781cec77bd1ed77d8061 | 405 | asm | Assembly | data/mapObjects/route11gateupstairs.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 16 | 2018-08-28T21:47:01.000Z | 2022-02-20T20:29:59.000Z | data/mapObjects/route11gateupstairs.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 5 | 2019-04-03T19:53:11.000Z | 2022-03-11T22:49:34.000Z | data/mapObjects/route11gateupstairs.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 2 | 2019-12-09T19:46:02.000Z | 2020-12-05T21:36:30.000Z | Route11GateUpstairsObject:
db $a ; border block
db $1 ; warps
db $7, $7, $4, ROUTE_11_GATE_1F
db $2 ; signs
db $2, $1, $3 ; Route11GateUpstairsText3
db $2, $6, $4 ; Route11GateUpstairsText4
db $2 ; objects
object SPRITE_BUG_CATCHER, $4, $2, WALK, $2, $1 ; person
object SPRITE_OAK_AIDE, $2, $6, STAY, NONE, $... | 23.823529 | 61 | 0.681481 |
c962229ce31c896f959116cdd5cdaf5ff62a7626 | 6,021 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1316.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_1316.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_1316.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 %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0xd3fe, %rsi
lea addresses_normal_ht+0x13a6e, %rdi
nop
nop
nop
add %rdx, %rdx
mov $90, %rcx
rep movsb
nop
sub $10105, %r11
lea addresses_WT_ht+0x160ae, %rcx
nop
nop
nop
nop
cmp $22671, ... | 40.14 | 2,999 | 0.659691 |
1ee781228bf4297461d0e226900790e3de3ba279 | 447 | asm | Assembly | libsrc/math/z88math/dne.asm | Toysoft/z88dk | f930bef9ac4feeec91a07303b79ddd9071131a24 | [
"ClArtistic"
] | 8 | 2017-01-18T12:02:17.000Z | 2021-06-12T09:40:28.000Z | libsrc/math/z88math/dne.asm | Toysoft/z88dk | f930bef9ac4feeec91a07303b79ddd9071131a24 | [
"ClArtistic"
] | 1 | 2017-03-06T07:41:56.000Z | 2017-03-06T07:41:56.000Z | libsrc/math/z88math/dne.asm | Toysoft/z88dk | f930bef9ac4feeec91a07303b79ddd9071131a24 | [
"ClArtistic"
] | 3 | 2017-03-07T03:19:40.000Z | 2021-09-15T17:59:19.000Z | ;
; Z88dk Z88 Maths Library
;
;
; $Id: dne.asm,v 1.4 2016-06-22 19:55:06 dom Exp $
SECTION code_fp
PUBLIC dne
EXTERN fsetup
EXTERN stkequcmp
INCLUDE "fpp.def"
; TOS != FA?
.dne
call fsetup
fpp(FP_EQ)
;Invert the result, not particularly elegant, but it works!
ex d... | 15.964286 | 59 | 0.52349 |
d97cc0e28511dc3f69ef8155441c3782a67a35be | 515 | asm | Assembly | programs/oeis/063/A063245.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/063/A063245.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/063/A063245.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A063245: Dimension of the space of weight 2n cuspidal newforms for Gamma_0( 98 ).
; 3,10,18,23,31,38,44,51,59,64,72,79,85,92,100,105,113,120,126,133,141,146,154,161,167,174,182,187,195,202,208,215,223,228,236,243,249,256,264,269,277,284,290,297,305,310,318,325,331,338
mov $1,$0
mov $2,$0
mov $5,$0
mul $0,2
mov $3,3
... | 18.392857 | 186 | 0.603883 |
e904dcedf0659e6eb29a6782f71f4deaeeeffde0 | 8,864 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_1960.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_1960.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_1960.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 %r13
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xe197, %r13
nop
nop
nop
nop
nop
cmp $64471, %r12
movups (%r13), %xmm3
vpextrq $1, %xmm3, %rbx
nop
nop
nop
nop
nop
cmp %r15, %r15
lea addresses_D_ht+0x4557, %rcx
dec... | 29.350993 | 2,999 | 0.654445 |
7bbd38bcfff851dcc60fc53313c7ab6636301ab9 | 611 | asm | Assembly | oeis/053/A053643.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/053/A053643.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/053/A053643.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A053643: a(n) = ceiling(binomial(n,6)/n).
; 0,0,0,0,0,1,1,4,10,21,42,77,132,215,334,501,728,1032,1428,1938,2584,3392,4389,5609,7084,8855,10964,13455,16380,19793,23751,28319,33563,39556,46376,54106,62832,72650,83657,95960,109668,124900,141778,160433,181002,203627,228459,255657,285384,317814,353127,391510,433160,478281... | 55.545455 | 500 | 0.782324 |
cfbc91c3f467fd483c4a3a69026d46dcf0dd5a66 | 5,223 | asm | Assembly | tp_01_09/include/utils_64.asm | mjFer/TDIII-UTN-FRBA-TPS-2014 | 1b57b52fa8233c78297b0e5471d1c82e4c85451b | [
"MIT"
] | 2 | 2020-04-01T14:45:17.000Z | 2020-04-01T14:45:23.000Z | tp_01_10/include/utils_64.asm | mjFer/TDIII-UTN-FRBA-TPS-2014 | 1b57b52fa8233c78297b0e5471d1c82e4c85451b | [
"MIT"
] | null | null | null | tp_01_10/include/utils_64.asm | mjFer/TDIII-UTN-FRBA-TPS-2014 | 1b57b52fa8233c78297b0e5471d1c82e4c85451b | [
"MIT"
] | null | null | null | ;***********************************************************
; UTN-2014-UTILS
;***********************************************************
;***********************************************************
; Author : Fernandez Marcelo Joaquin
; Date : 23th May 2014
;*************************************************... | 30.723529 | 123 | 0.531495 |
d560c5b185d5a30a65232772010d02d51205083b | 233 | asm | Assembly | libsrc/stdio/mtx/fgetc_cons.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/stdio/mtx/fgetc_cons.asm | andydansby/z88dk-MK2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | null | null | null | libsrc/stdio/mtx/fgetc_cons.asm | andydansby/z88dk-MK2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | null | null | null | ;
; Memotech MTX stdio
;
; getkey() Wait for keypress
;
; Stefano Bodrato - Aug. 2010
;
;
; $Id: fgetc_cons.asm,v 1.1 2010/08/05 06:14:09 stefano Exp $
;
XLIB fgetc_cons
.fgetc_cons
call $79
jr z,fgetc_cons
ld h,0
ld l,a
ret
| 11.65 | 61 | 0.660944 |
a512531d1ae3cc68764ddf64ec64e25a11c1b0a0 | 110 | asm | Assembly | data/mcp/asm/prog_09_02.asm | colinw7/CZ80 | 458e83ffdca23dcfc92e78de9b802219a85f059a | [
"MIT"
] | null | null | null | data/mcp/asm/prog_09_02.asm | colinw7/CZ80 | 458e83ffdca23dcfc92e78de9b802219a85f059a | [
"MIT"
] | null | null | null | data/mcp/asm/prog_09_02.asm | colinw7/CZ80 | 458e83ffdca23dcfc92e78de9b802219a85f059a | [
"MIT"
] | null | null | null | 0D00 06 01
0D02 78
0D03 CD 00 0E
0D06 4F
0D07 04
0D08 C3 02 0D
0E00 57
0E01 CB 27
0E03 CB 27
0E05 82
0E06 C9
| 8.461538 | 13 | 0.727273 |
7281fb5c9585c40d824909e63de856a881e59386 | 3,513 | asm | Assembly | Multiplication.asm | erg0dic/Sec_dict | b0ba213fa9b3ae78c3872da303d232b45a9e0c4a | [
"MIT"
] | null | null | null | Multiplication.asm | erg0dic/Sec_dict | b0ba213fa9b3ae78c3872da303d232b45a9e0c4a | [
"MIT"
] | null | null | null | Multiplication.asm | erg0dic/Sec_dict | b0ba213fa9b3ae78c3872da303d232b45a9e0c4a | [
"MIT"
] | null | null | null | #include p18f87k22.inc
global Mul_temp_A, Mul_temp_C, Mul_temp_B, Mul_temp_D, Mul_temp_E
global hex_to_dec
extern LCD_Write_Hex, LCD_Clear_Screen
acs0 udata_acs
Mul_temp_1 res 1 ; reserve 1 byte for each variable Mul_temp
Mul_temp_2 res 1
Mul_temp_3 res 1
Mul_temp_4 res 1
Mul_temp_5 res 1
Mul_temp_6 ... | 23.736486 | 99 | 0.715058 |
7623b03fe7a06d9b7112cdadc26caca8cf9d4aa3 | 266 | asm | Assembly | programs/oeis/033/A033417.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/033/A033417.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/033/A033417.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A033417: a(n) = floor(97/n).
; 97,48,32,24,19,16,13,12,10,9,8,8,7,6,6,6,5,5,5,4,4,4,4,4,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
add $0,1
mov $1,97
div $1,$0
mov $0,$1
| 33.25 | 194 | 0.522556 |
a68b9f2b5545fe0ec0ebf152673f7077a0c586b0 | 4,329 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca.log_21829_1779.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca.log_21829_1779.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca.log_21829_1779.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 %r13
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x108cb, %r13
xor $33359, %r12
mov (%r13), %r10d
nop
nop
add %r8, %r8
lea addresses_UC_ht+0x1d23, %rsi
lea addresses_WC_ht+0x11ee3, %rdi
nop
nop
nop
nop
nop
cmp %r12, %r12
mov $97, %rcx
... | 54.1125 | 2,999 | 0.662509 |
22648cd7ed716bfe12e58b30a2e94902e93ab6bf | 598 | asm | Assembly | programs/oeis/080/A080855.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/080/A080855.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/080/A080855.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A080855: a(n) = (9*n^2 - 3*n + 2)/2.
; 1,4,16,37,67,106,154,211,277,352,436,529,631,742,862,991,1129,1276,1432,1597,1771,1954,2146,2347,2557,2776,3004,3241,3487,3742,4006,4279,4561,4852,5152,5461,5779,6106,6442,6787,7141,7504,7876,8257,8647,9046,9454,9871,10297,10732,11176,11629,12091,12562,13042,13531,14029,14536,15... | 85.428571 | 530 | 0.769231 |
dedb9e9e078b7c41bebf117169f89ae5c8262ee7 | 1,517 | asm | Assembly | _build/dispatcher/jmp_ippsGFpECSetPointHashBackCompatible_aa97efb1.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | 1 | 2021-10-04T10:21:54.000Z | 2021-10-04T10:21:54.000Z | _build/dispatcher/jmp_ippsGFpECSetPointHashBackCompatible_aa97efb1.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | null | null | null | _build/dispatcher/jmp_ippsGFpECSetPointHashBackCompatible_aa97efb1.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | null | null | null | extern m7_ippsGFpECSetPointHashBackCompatible:function
extern n8_ippsGFpECSetPointHashBackCompatible:function
extern y8_ippsGFpECSetPointHashBackCompatible:function
extern e9_ippsGFpECSetPointHashBackCompatible:function
extern l9_ippsGFpECSetPointHashBackCompatible:function
extern n0_ippsGFpECSetPointHashBackCompatible... | 38.897436 | 167 | 0.854977 |
202d1c314f0e59bf6e0a87a80bac1991a2996799 | 35,348 | asm | Assembly | Code/CustomControl/RATools/Src/Tools.asm | CherryDT/FbEditMOD | beb0eb22cae1b8f7203d55bd6b293d8ec88231ca | [
"Unlicense"
] | 11 | 2016-12-03T16:35:42.000Z | 2022-03-26T06:02:53.000Z | Code/CustomControl/RATools/Src/Tools.asm | CherryDT/FbEditMOD | beb0eb22cae1b8f7203d55bd6b293d8ec88231ca | [
"Unlicense"
] | 1 | 2018-02-24T20:17:46.000Z | 2018-03-02T08:57:40.000Z | Code/CustomControl/RATools/Src/Tools.asm | CherryDT/FbEditMOD | beb0eb22cae1b8f7203d55bd6b293d8ec88231ca | [
"Unlicense"
] | 4 | 2018-10-19T01:14:55.000Z | 2021-09-11T18:51:48.000Z |
;ToolCldWndProc PROTO :DWORD,:DWORD,:DWORD,:DWORD
.code
Do_ToolFloat proc uses esi,lpTool:DWORD
LOCAL tW:DWORD
LOCAL tH:DWORD
mov esi,lpTool
mov eax,[esi].TOOL.dck.fr.right
sub eax,[esi].TOOL.dck.fr.left
mov tW,eax
mov eax,[esi].TOOL.dck.fr.bottom
sub eax,[esi].TO... | 26.320179 | 142 | 0.639188 |
93d5ba7bdfba662278c7800ac38c36ed2a4382e6 | 496 | asm | Assembly | programs/oeis/008/A008726.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/008/A008726.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/008/A008726.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A008726: Molien series 1/((1-x)^2*(1-x^8)) for 3-dimensional group [2,n] = *22n.
; 1,2,3,4,5,6,7,8,10,12,14,16,18,20,22,24,27,30,33,36,39,42,45,48,52,56,60,64,68,72,76,80,85,90,95,100,105,110,115,120,126,132,138,144,150,156,162,168,175,182,189,196,203,210,217,224,232,240,248,256,264,272,280,288,297,306,315,324,333,34... | 49.6 | 358 | 0.675403 |
17d85fad2ed8bc04db37bd40c094c42b179df288 | 1,103 | asm | Assembly | Programming for Embedded Systems/Labs/Lab 2/Task 1/Task 1/main.asm | sathwikkannam/courses-HKR | 3a3fe0275575f21e27152ffcef4bcf47733404cd | [
"MIT"
] | null | null | null | Programming for Embedded Systems/Labs/Lab 2/Task 1/Task 1/main.asm | sathwikkannam/courses-HKR | 3a3fe0275575f21e27152ffcef4bcf47733404cd | [
"MIT"
] | null | null | null | Programming for Embedded Systems/Labs/Lab 2/Task 1/Task 1/main.asm | sathwikkannam/courses-HKR | 3a3fe0275575f21e27152ffcef4bcf47733404cd | [
"MIT"
] | null | null | null | ;This program stores integers in registers and adds the contents of two registers.
;It then stores the result into memory.
;The process is repeated for different register pairs: (R1, R2), (R17, R18), (R19, R20)
.include "m328pdef.inc" ;this file must correspond to the processor to be used
.list
tester: ... | 36.766667 | 89 | 0.687217 |
e40dcf04e53fe77b593f51e0551acde6e0ee7182 | 1,181 | asm | Assembly | programs/oeis/204/A204542.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/204/A204542.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/204/A204542.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A204542: Numbers that are congruent to {1, 4, 11, 14} mod 15.
; 1,4,11,14,16,19,26,29,31,34,41,44,46,49,56,59,61,64,71,74,76,79,86,89,91,94,101,104,106,109,116,119,121,124,131,134,136,139,146,149,151,154,161,164,166,169,176,179,181,184,191,194,196,199,206,209,211,214,221,224,226,229,236,239,241,244,251,254,256,259,26... | 62.157895 | 973 | 0.707875 |
8d279b8936bb2b8fd3ef82cdff1504771f6402de | 225 | asm | Assembly | solutions/50 - Cubical Communication/size-9_speed-46.asm | michaelgundlach/7billionhumans | 02c6f3963364362c95cb516cbc6ef1efc073bb2e | [
"MIT"
] | 45 | 2018-09-05T04:56:59.000Z | 2021-11-22T08:57:26.000Z | solutions/50 - Cubical Communication/size-9_speed-46.asm | michaelgundlach/7billionhumans | 02c6f3963364362c95cb516cbc6ef1efc073bb2e | [
"MIT"
] | 36 | 2018-09-01T11:34:26.000Z | 2021-05-19T23:20:49.000Z | solutions/50 - Cubical Communication/size-9_speed-46.asm | michaelgundlach/7billionhumans | 02c6f3963364362c95cb516cbc6ef1efc073bb2e | [
"MIT"
] | 36 | 2018-09-01T07:44:19.000Z | 2021-09-10T19:07:35.000Z | -- 7 Billion Humans (2056) --
-- 50: Cubical Communication --
-- Author: tiansh
-- Size: 9
-- Speed: 46
mem1 = set sw
a:
b:
if mem1 > 1:
mem1 = calc mem1 - 1
jump b
endif
takefrom s
giveto se
step w
mem1 = set 4
jump a
| 10.227273 | 31 | 0.622222 |
cca4231911959b768d235094a1720ccc9d1b94a7 | 408 | asm | Assembly | programs/oeis/308/A308044.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/308/A308044.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/308/A308044.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A308044: a(n) = 2*prevprime(2*n-1) - 2*n, where prevprime(n) is the largest prime < n.
; 0,0,2,4,2,8,10,8,14,16,14,20,18,16,26,28,26,24,34,32,38,40,38,44,42,40,50,48,46,56,58,56,54,64,62,68,70,68,66,76,74,80,78,76,86,84,82,80,94,92,98,100,98,104,106,104,110,108,106,104,102,100,98,124
mul $0,2
add $0,1
seq $0,175856 ... | 51 | 197 | 0.644608 |
0560a4280a661f571b9cbad973136619e6a0eb8a | 47 | asm | Assembly | gfx/pokemon/starmie/anim_idle.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 28 | 2019-11-08T07:19:00.000Z | 2021-12-20T10:17:54.000Z | gfx/pokemon/starmie/anim_idle.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 13 | 2020-01-11T17:00:40.000Z | 2021-09-14T01:27:38.000Z | gfx/pokemon/starmie/anim_idle.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 22 | 2020-05-28T17:31:38.000Z | 2022-03-07T20:49:35.000Z | frame 2, 08
frame 3, 08
dorepeat 1
endanim
| 9.4 | 12 | 0.680851 |
f9c17c7e9efa57d80062355f556724db9c65b6c0 | 549 | asm | Assembly | 14-factorial/factorial.asm | gashev/assembly-examples | 3e7e5d37af00e6d6202a589ffa36a888edb5be16 | [
"Unlicense"
] | 1 | 2021-01-06T01:45:37.000Z | 2021-01-06T01:45:37.000Z | 14-factorial/factorial.asm | gashev/assembly-examples | 3e7e5d37af00e6d6202a589ffa36a888edb5be16 | [
"Unlicense"
] | null | null | null | 14-factorial/factorial.asm | gashev/assembly-examples | 3e7e5d37af00e6d6202a589ffa36a888edb5be16 | [
"Unlicense"
] | null | null | null | extern exit
extern printf
SECTION .data
format: db '%d! = %d', 10, 0
SECTION .text
GLOBAL _start
_start:
; Init factorial.
mov rax, 1
; Init index.
mov rbx, 0
loop:
; Calc next factorial
inc rbx
mul rbx
; Print
push rax
mov rdx, rax ; Store factorial
mov... | 13.725 | 41 | 0.562842 |
0c809a925da6ea9313d08d15ed8517338efbe37f | 1,023 | asm | Assembly | patches/free_7F4000/free_7F4000.asm | RPGHacker/SMW-Workspace | dbbc37a650b71800c5113b28f115aa6ffc59fa7f | [
"MIT"
] | 9 | 2017-11-03T17:37:24.000Z | 2021-10-16T23:01:24.000Z | patches/free_7F4000/free_7F4000.asm | RPGHacker/SMW-Workspace | dbbc37a650b71800c5113b28f115aa6ffc59fa7f | [
"MIT"
] | 17 | 2017-11-03T17:37:16.000Z | 2021-11-02T14:42:12.000Z | patches/free_7F4000/free_7F4000.asm | RPGHacker/SMW-Workspace | dbbc37a650b71800c5113b28f115aa6ffc59fa7f | [
"MIT"
] | 3 | 2018-01-14T21:49:55.000Z | 2019-06-27T10:41:27.000Z | @asar 1.50
;;;;;;;;;;;;;;;;;;;;;;;;;
;OW Tilemap Reload Patch;
;;;;;;;;;;;;;;;;;;;;;;;;;
incsrc freeconfig.cfg
incsrc ../shared/shared.asm
print "Free 7F4000 v1.0 - (c) RPG Hacker"
math pri on
math round off
pushtable
cleartable
namespace free_7F4000_
;;;;;;;;;
;Hijacks;
;;;;;;;;;
; Code to execute on ... | 10.65625 | 93 | 0.59433 |
6270eb0af14e778f169807b0577b97c8bdf80ff5 | 11,794 | asm | Assembly | Cameras/FFXIII/InjectableGenericCameraSystem/Interceptor.asm | ghostinthecamera/IGCS-GITC | d46db76d1b49384bb81e01765b9a0056f593da9c | [
"BSD-2-Clause"
] | 42 | 2019-04-21T22:05:43.000Z | 2022-03-29T18:18:31.000Z | Cameras/FFXIII/InjectableGenericCameraSystem/Interceptor.asm | ghostinthecamera/IGCS-GITC | d46db76d1b49384bb81e01765b9a0056f593da9c | [
"BSD-2-Clause"
] | 13 | 2019-07-26T18:21:26.000Z | 2021-06-28T21:27:39.000Z | Cameras/FFXIII/InjectableGenericCameraSystem/Interceptor.asm | ghostinthecamera/IGCS-GITC | d46db76d1b49384bb81e01765b9a0056f593da9c | [
"BSD-2-Clause"
] | 8 | 2019-08-08T17:06:16.000Z | 2022-03-29T18:20:06.000Z | ;////////////////////////////////////////////////////////////////////////////////////////////////////////
;// Part of Injectable Generic Camera System
;// Copyright(c) 2017, Frans Bouma
;// All rights reserved.
;// https://github.com/FransBouma/InjectableGenericCameraSystem
;//
;// Redistribution and use in source and ... | 40.390411 | 149 | 0.601068 |
579cd9152ab6736318edfa624fc3209000a0713c | 567 | asm | Assembly | oeis/127/A127952.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/127/A127952.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/127/A127952.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A127952: Triangle read by rows, T(n,k) = (n+1)*C(n-1,k-1).
; Submitted by Christian Krause
; 1,0,2,0,3,3,0,4,8,4,0,5,15,15,5,0,6,24,36,24,6,0,7,35,70,70,35,7,0,8,48,120,160,120,48,8,0,9,63,189,315,315,189,63,9,0,10,80,280,560,700,560,280,80,10,0,11,99,396,924,1386,1386,924,396,99,11,0,12,120,540,1440,2520,3024,2520,1... | 29.842105 | 336 | 0.643739 |
bb8f6a99fa59312b8889cfb4b76019fc2578d7ce | 1,889 | asm | Assembly | assembly_code/chp7_06.asm | farhana1i/BelalHashmi-Assembly-Exercise-Solutions | 065887fa443ff905384d417ab6e8e0ebbb6ced83 | [
"MIT"
] | 104 | 2018-08-25T00:01:41.000Z | 2022-01-26T14:07:32.000Z | assembly_code/chp7_06.asm | farhana1i/BelalHashmi-Assembly-Exercise-Solutions | 065887fa443ff905384d417ab6e8e0ebbb6ced83 | [
"MIT"
] | 5 | 2021-01-14T14:04:39.000Z | 2021-06-14T10:48:35.000Z | assembly_code/chp7_06.asm | farhana1i/BelalHashmi-Assembly-Exercise-Solutions | 065887fa443ff905384d417ab6e8e0ebbb6ced83 | [
"MIT"
] | 29 | 2018-09-19T19:26:34.000Z | 2021-04-29T21:01:26.000Z | ; Write a subroutine “strcpy” that takes the address of two parameters via stack,
;the one pushed first is source and the second is the destination.
;The function should copy the source on the destination
;including the null character assuming that sufficient space is reserved starting at destination.
[org 0x010... | 18.70297 | 108 | 0.505558 |
b68f40c75d5e2c0f190a73ac511bf6f2ae88c388 | 1,855 | asm | Assembly | programs/oeis/272/A272073.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/272/A272073.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/272/A272073.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A272073: Exponents of x in the numerator of cluster variables of rank 2 cluster algebras.
; 3,6,15,24,57,90,213,336,795,1254,2967,4680,11073,17466,41325,65184,154227,243270,575583,907896,2148105,3388314,8016837,12645360,29919243,47193126,111660135,176127144,416721297,657315450,1555225053,2453134656,5804178915,9155223... | 103.055556 | 1,622 | 0.895418 |
1f2a7439c21b8bbd271338b2e85b81a9695e4c0a | 4,329 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_847.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_847.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_847.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 %r14
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x17f01, %rsi
lea addresses_normal_ht+0x1d981, %rdi
xor $5554, %r9
mov $60, %rcx
rep movsb
nop
nop
nop
and $50314, %r14
lea addresses_WT_ht+0xa301, %r12
nop
sub %r11, %r11
movb (%r12... | 59.30137 | 2,999 | 0.663433 |
b1e577ce66ab12817844f1f028fb0ba70febae37 | 681 | asm | Assembly | tests/nasm/punpckldq.asm | Tuna0128/Tuna0128.github.io | 7976c8236209a09f82fddd7c74ebcec86119d491 | [
"BSD-2-Clause-FreeBSD"
] | 12,700 | 2015-01-04T15:03:42.000Z | 2022-03-31T06:43:06.000Z | tests/nasm/punpckldq.asm | Tuna0128/Tuna0128.github.io | 7976c8236209a09f82fddd7c74ebcec86119d491 | [
"BSD-2-Clause-FreeBSD"
] | 566 | 2015-01-01T18:16:40.000Z | 2022-03-31T19:59:10.000Z | tests/nasm/punpckldq.asm | Tuna0128/Tuna0128.github.io | 7976c8236209a09f82fddd7c74ebcec86119d491 | [
"BSD-2-Clause-FreeBSD"
] | 1,182 | 2015-01-05T09:20:48.000Z | 2022-03-31T12:16:52.000Z | global _start
section .data
align 16
quad1:
dq 0x00ad00adad007fff
quad2:
dq 0xac4b1b9de29df0ff
quad3:
dq 0x01008080f0f0ff42
quad4:
dq 0x0123456789abcdef
mydword:
dd 0xcafebabe
myaddress:
dq 0x00adbeefc0de00ce
%include "header.inc"
movq mm0, [quad1]
movq mm1, [quad2]
movq mm2, [quad3]
movq mm3, [quad4]... | 15.837209 | 23 | 0.725404 |
8f9ffd07f5a5384bfd7a1404a516a22b62593ae9 | 401 | asm | Assembly | sk/sfx/C2.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 9 | 2017-10-09T20:28:45.000Z | 2021-06-29T21:19:20.000Z | sk/sfx/C2.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 12 | 2018-08-01T13:52:20.000Z | 2022-02-21T02:19:37.000Z | sk/sfx/C2.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 2 | 2018-02-17T19:50:36.000Z | 2019-10-30T19:28:06.000Z | Sound_C2_Header:
smpsHeaderStartSong 3
smpsHeaderVoice Sound_C2_Voices
smpsHeaderTempoSFX $01
smpsHeaderChanSFX $01
smpsHeaderSFXChannel cPSG3, Sound_C2_PSG3, $00, $00
; PSG3 Data
Sound_C2_PSG3:
smpsPSGform $E7
dc.b nCs4
Sound_C2_Loop00:
dc.b $04, $04, $04, $04, $03, $03
smpsContinuousLoop S... | 19.095238 | 52 | 0.750623 |
5d420204a1b5eecc4bcb653bdbb8842b6161d0fc | 191 | asm | Assembly | MySource/1-mycode_template.asm | mdabdullahibnaharun/Assembly-Language | a56500622b961c7ecf9690ad9d2136c3e05ea1f7 | [
"MIT"
] | null | null | null | MySource/1-mycode_template.asm | mdabdullahibnaharun/Assembly-Language | a56500622b961c7ecf9690ad9d2136c3e05ea1f7 | [
"MIT"
] | null | null | null | MySource/1-mycode_template.asm | mdabdullahibnaharun/Assembly-Language | a56500622b961c7ecf9690ad9d2136c3e05ea1f7 | [
"MIT"
] | null | null | null | org 100h
include "emu8086.inc"
.model small
.stack 100h
.data
.code
main proc
mov ah,4ch
int 21h
main endp
end main
ret | 8.681818 | 23 | 0.47644 |
ece77c70f55ca210d1b07794a8f4fe60fa08fc32 | 472 | asm | Assembly | oeis/284/A284964.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/284/A284964.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/284/A284964.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A284964: Numbers with digits 3 and 9 only.
; Submitted by Jon Maiga
; 3,9,33,39,93,99,333,339,393,399,933,939,993,999,3333,3339,3393,3399,3933,3939,3993,3999,9333,9339,9393,9399,9933,9939,9993,9999,33333,33339,33393,33399,33933,33939,33993,33999,39333,39339,39393,39399,39933,39939
add $0,1
mov $2,1
lpb $0
mov $3,$... | 19.666667 | 213 | 0.665254 |
dabb6bf7ad48efda9e8648fba6d951094e0de749 | 4,283 | nasm | Assembly | kernel/x86dev/pit.nasm | r-tty/radios | fdfaaadd256564ea3ed1b7fc408e7aecf648ae2b | [
"BSD-3-Clause"
] | null | null | null | kernel/x86dev/pit.nasm | r-tty/radios | fdfaaadd256564ea3ed1b7fc408e7aecf648ae2b | [
"BSD-3-Clause"
] | null | null | null | kernel/x86dev/pit.nasm | r-tty/radios | fdfaaadd256564ea3ed1b7fc408e7aecf648ae2b | [
"BSD-3-Clause"
] | null | null | null | ;-------------------------------------------------------------------------------
; pit.nasm - Programmable Interval Timer (PIT) control routines.
;-------------------------------------------------------------------------------
%include "hw/pit.ah"
%include "hw/kbc.ah"
publicproc TMR_InitCounter,TMR_CountCPUspeed
publ... | 19.035556 | 80 | 0.585104 |
f14d67c19c758c4871b986fe910a6a3e4e855674 | 1,555 | asm | Assembly | asm/doorrando.asm | oobitydoo/ALttPDoorRandomizer | ef5e94b4dd885344fa3c389c15c59af8179c3561 | [
"MIT"
] | null | null | null | asm/doorrando.asm | oobitydoo/ALttPDoorRandomizer | ef5e94b4dd885344fa3c389c15c59af8179c3561 | [
"MIT"
] | null | null | null | asm/doorrando.asm | oobitydoo/ALttPDoorRandomizer | ef5e94b4dd885344fa3c389c15c59af8179c3561 | [
"MIT"
] | null | null | null | !add = "clc : adc"
!sub = "sec : sbc"
!bge = "bcs"
!blt = "bcc"
; Free RAM notes
; Normal doors use $AB-AC for scrolling indicator
; Normal doors use $FE to store the trap door indicator
; Spiral doors use $045e to store stair type
; Gfx uses $b1 to for sub-sub-sub-module thing
; Hooks into various routines
incsrc dr... | 25.916667 | 110 | 0.731833 |
c2a71731c2389b01028256eccdbd7358a5458bd8 | 603 | asm | Assembly | factorial_iter.asm | jatin69/mca102-SP | 5d46231025504f7f7b9bbd59e4f4f748d7369258 | [
"MIT"
] | null | null | null | factorial_iter.asm | jatin69/mca102-SP | 5d46231025504f7f7b9bbd59e4f4f748d7369258 | [
"MIT"
] | null | null | null | factorial_iter.asm | jatin69/mca102-SP | 5d46231025504f7f7b9bbd59e4f4f748d7369258 | [
"MIT"
] | null | null | null | ; Author - Jatin Rohilla
; Course - MCA 102
; Objective - Factorial - iterative
; data segment
DATA SEGMENT
; number whose factorial needs to be found
; works upto 7! due to DD size limits
NUMBER DD 5
; to store factorial of the number
FACTORIAL DD ?
DATA ENDS
; code segment
CODE SEGMENT
... | 15.461538 | 47 | 0.620232 |
b508c14c579d51a11fd6d919e4a8a2154604cf85 | 600 | asm | Assembly | oeis/024/A024047.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/024/A024047.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/024/A024047.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A024047: a(n) = 4^n - n^11.
; Submitted by Jon Maiga
; 1,3,-2032,-177083,-4194048,-48827101,-362792960,-1977310359,-8589869056,-31380797465,-99998951424,-285307476307,-742991593472,-1792093285173,-4049296734208,-8648682117551,-17587891077120,-34254716438449,-64199690602496,-116215380991275,-203700488372224,-345879454... | 60 | 494 | 0.823333 |
bd6d1334d3f1d99b9ea25918d68ba525decde46a | 497 | asm | Assembly | libsrc/_DEVELOPMENT/alloc/malloc/c/sdcc_iy/memalign.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/alloc/malloc/c/sdcc_iy/memalign.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/alloc/malloc/c/sdcc_iy/memalign.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; void *memalign(size_t alignment, size_t size)
INCLUDE "clib_cfg.asm"
SECTION code_alloc_malloc
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $01
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC _memalign
EXTERN _aligned_alloc
defc _memalign = _aligned_alloc
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ELSE
;;;;;;;;;;;... | 16.032258 | 47 | 0.49497 |
e62f594ef62e1b2f48a182e216e98e78c46cf671 | 592 | asm | Assembly | oeis/031/A031371.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/031/A031371.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/031/A031371.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A031371: a(n) = prime(5n-1).
; Submitted by Simon Strandgaard
; 7,23,43,67,89,109,139,167,193,227,251,277,311,347,373,401,433,461,491,523,569,599,619,653,683,727,757,797,827,859,887,937,971,1009,1033,1063,1097,1129,1181,1217,1249,1289,1307,1367,1423,1447,1481,1499,1549,1579,1609,1637,1693,1723,1759,1801,1861,1879,193... | 65.777778 | 462 | 0.741554 |
d616f01d22c8f0a6261c916504944e525eb0e1d8 | 1,372 | asm | Assembly | eater-6502/snakeGame/lcd.asm | willgames-afk/code_stuff | 6db4226c49077bdcc9a8cf1de5ae854ed366445b | [
"MIT"
] | null | null | null | eater-6502/snakeGame/lcd.asm | willgames-afk/code_stuff | 6db4226c49077bdcc9a8cf1de5ae854ed366445b | [
"MIT"
] | null | null | null | eater-6502/snakeGame/lcd.asm | willgames-afk/code_stuff | 6db4226c49077bdcc9a8cf1de5ae854ed366445b | [
"MIT"
] | null | null | null | ;LCD SUBROUTINES
;Include labels.s
lcd_wait:
;Checks the LCD busy flag until it's not set.
pha ;don't overwrite the A register
lda #%00000000 ;set PORTB to input
sta DDRB
lcd_busy:
lda #RW ;Send Instruction
sta PORTA
lda #(RW | E)
sta PORTA
lda PORTB
and #%10000000 ; We only car... | 21.4375 | 75 | 0.653061 |
b982c02d2eaee4f818cab62c6fd1c5bea26104fc | 368 | asm | Assembly | data/mapHeaders/route5.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 16 | 2018-08-28T21:47:01.000Z | 2022-02-20T20:29:59.000Z | data/mapHeaders/route5.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 5 | 2019-04-03T19:53:11.000Z | 2022-03-11T22:49:34.000Z | data/mapHeaders/route5.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | 2 | 2019-12-09T19:46:02.000Z | 2020-12-05T21:36:30.000Z | Route5_h:
db OVERWORLD ; tileset
db ROUTE_5_HEIGHT, ROUTE_5_WIDTH ; dimensions (y, x)
dw Route5Blocks, Route5TextPointers, Route5Script ; blocks, texts, scripts
db NORTH | SOUTH ; connections
NORTH_MAP_CONNECTION ROUTE_5, CERULEAN_CITY, -3, 2, CeruleanCityBlocks
SOUTH_MAP_CONNECTION ROUTE_5, SAFFRON_CITY, -3, 2, ... | 40.888889 | 75 | 0.793478 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.