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
37ebdefdfc11d81becc8ee4001ea1e88cf449088
2,370
asm
Assembly
source/vsync-example.asm
kieranhj/intro-to-interrupts
546056611f0b26e2ef4b1c8046b60c3c8a5b893f
[ "MIT" ]
5
2020-09-04T14:18:51.000Z
2022-01-05T17:15:49.000Z
source/vsync-example.asm
kieranhj/intro-to-interrupts
546056611f0b26e2ef4b1c8046b60c3c8a5b893f
[ "MIT" ]
null
null
null
source/vsync-example.asm
kieranhj/intro-to-interrupts
546056611f0b26e2ef4b1c8046b60c3c8a5b893f
[ "MIT" ]
null
null
null
\ ****************************************************************** \ * Vsync Interrupt example. \ * \ ****************************************************************** IRQ1V = &204 IRQ2V = &206 \ ****************************************************************** \ * Zero page vars \ *****************************...
27.882353
85
0.373418
d829139c327a3699e0f898d47eadc08f00aaa8c0
589
asm
Assembly
oeis/105/A105279.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/105/A105279.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/105/A105279.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A105279: a(0)=0; a(n) = 10*a(n-1) + 10. ; 0,10,110,1110,11110,111110,1111110,11111110,111111110,1111111110,11111111110,111111111110,1111111111110,11111111111110,111111111111110,1111111111111110,11111111111111110,111111111111111110,1111111111111111110,11111111111111111110,111111111111111111110,1111111111111111111110,1...
65.444444
496
0.867572
6a7de82c0652740e66e836d4b7c9250eeca58bd0
301
asm
Assembly
src/game/flats.asm
blambi/floppybird
c40ee54ee0fcb134d846c2af96a91ac6c7113e77
[ "MIT" ]
354
2015-01-23T05:39:16.000Z
2022-03-18T07:21:31.000Z
src/game/flats.asm
blambi/floppybird
c40ee54ee0fcb134d846c2af96a91ac6c7113e77
[ "MIT" ]
4
2015-09-14T04:07:52.000Z
2022-01-05T13:00:14.000Z
src/game/flats.asm
blambi/floppybird
c40ee54ee0fcb134d846c2af96a91ac6c7113e77
[ "MIT" ]
50
2015-01-20T03:05:25.000Z
2022-02-10T14:17:26.000Z
draw_flats: push ax push cx mov ax, 0 .flats: push flats push 40 ; w push 50 ; h push 0 ; sx push 0 ; sy push 40 ; sw push 50 ; sh push ax ; dx push 106 ; dy push 0 ; trasnsparent color push 0 call blit_fast add ax, 40 cmp ax, 320 jl .flats pop cx pop ax ret
10.75
30
0.591362
3433726d361d4fb5af9957026c9fe4380b1c1ed7
273
asm
Assembly
assembly/08/gcd.asm
mahzoun/programs
39fbd730d635ed49a0af2d16dd486eba1db2f295
[ "MIT" ]
null
null
null
assembly/08/gcd.asm
mahzoun/programs
39fbd730d635ed49a0af2d16dd486eba1db2f295
[ "MIT" ]
null
null
null
assembly/08/gcd.asm
mahzoun/programs
39fbd730d635ed49a0af2d16dd486eba1db2f295
[ "MIT" ]
null
null
null
section .data num1 dw 73 num2 dw 5 section .text global _start _start: mov ax, [num1] mov bx, [num2] gcd: cmp bx, 0 je fin xor dx, dx div bx cmp dx, 0 je fin mov ax, bx mov bx, dx jmp gcd fin: mov dx, bx exit: mov ebx, 0 mov eax, 1 int 80h
10.111111
15
0.600733
d894ba651ccd8e5556163f0e1032696a1546d0a0
218
asm
Assembly
data/maps/objects/SilphCoElevator.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
1
2022-02-15T00:19:44.000Z
2022-02-15T00:19:44.000Z
data/maps/objects/SilphCoElevator.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
data/maps/objects/SilphCoElevator.asm
opiter09/ASM-Machina
75d8e457b3e82cc7a99b8e70ada643ab02863ada
[ "CC0-1.0" ]
null
null
null
SilphCoElevator_Object: db $f ; border block def_warps warp 1, 3, 0, UNUSED_MAP_ED warp 2, 3, 0, UNUSED_MAP_ED def_signs sign 3, 0, 1 ; SilphCoElevatorText1 def_objects def_warps_to SILPH_CO_ELEVATOR
15.571429
38
0.738532
32f16627369cafcb01ef08581fa937cbdf45d081
53,390
asm
Assembly
ls.asm
yonigev/OSAssignment2
f9f538b32135ae2841900fbb24386417908f49ab
[ "MIT-0" ]
null
null
null
ls.asm
yonigev/OSAssignment2
f9f538b32135ae2841900fbb24386417908f49ab
[ "MIT-0" ]
null
null
null
ls.asm
yonigev/OSAssignment2
f9f538b32135ae2841900fbb24386417908f49ab
[ "MIT-0" ]
null
null
null
_ls: file format elf32-i386 Disassembly of section .text: 00000000 <fmtname>: #include "user.h" #include "fs.h" char* fmtname(char *path) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 53 push %ebx 4: 83 ec 14 sub $0x14,%esp ...
35.032808
73
0.425529
96020c126f3aeefa785296777e1ebb564a777d37
5,636
asm
Assembly
Transynther/x86/_processed/US/_st_/i7-7700_9_0xca.log_21829_1388.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_st_/i7-7700_9_0xca.log_21829_1388.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_st_/i7-7700_9_0xca.log_21829_1388.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 %rax push %rbx push %rcx push %rdi push %rsi lea addresses_normal_ht+0x6af7, %r10 sub $56456, %r12 vmovups (%r10), %ymm2 vextracti128 $0, %ymm2, %xmm2 vpextrq $0, %xmm2, %rax nop nop nop nop and %r10, %r10 lea addresses_WC_ht+0x5927, %rax n...
40.546763
2,999
0.655075
70793eb78ddecd6bdd1c4600a3410039e6a3c8ac
939
asm
Assembly
programs/oeis/055/A055832.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/055/A055832.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/055/A055832.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A055832: T(n,n-5), where T is the array in A055830. ; 8,30,73,145,255,413,630,918,1290,1760,2343,3055,3913,4935,6140,7548,9180,11058,13205,15645,18403,21505,24978,28850,33150,37908,43155,48923,55245,62155,69688,77880,86768,96390,106785,117993,130055,143013,156910,171790,187698,204680,222783,242055,262545,284303,30738...
36.115385
674
0.762513
3da3702a31ff6ee480fa86cb2083e3b562d16a63
1,268
asm
Assembly
chap18/ex8/mce_scalar.asm
JamesType/optimization-manual
61cdcebb16e0768a6ab7e85ed535e64e9d8cc31a
[ "0BSD" ]
374
2021-06-08T10:42:01.000Z
2022-03-29T14:21:45.000Z
chap18/ex8/mce_scalar.asm
JamesType/optimization-manual
61cdcebb16e0768a6ab7e85ed535e64e9d8cc31a
[ "0BSD" ]
1
2021-06-11T20:24:02.000Z
2021-06-11T20:24:02.000Z
chap18/ex8/mce_scalar.asm
JamesType/optimization-manual
61cdcebb16e0768a6ab7e85ed535e64e9d8cc31a
[ "0BSD" ]
39
2021-06-08T11:25:29.000Z
2022-03-05T05:14:17.000Z
; ; Copyright (C) 2021 by Intel Corporation ; ; Permission to use, copy, modify, and/or distribute this software for any ; purpose with or without fee is hereby granted. ; ; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH ; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHA...
23.924528
79
0.694006
eb6ac0a6832f588cd797cd1d70a1a4b8bd54b8a9
208
asm
Assembly
libsrc/_DEVELOPMENT/stdio/c/sccz80/clearerr_unlocked.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/stdio/c/sccz80/clearerr_unlocked.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/stdio/c/sccz80/clearerr_unlocked.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; void clearerr_unlocked(FILE *stream) SECTION code_clib SECTION code_stdio PUBLIC clearerr_unlocked EXTERN asm_clearerr_unlocked clearerr_unlocked: push hl pop ix jp asm_clearerr_unlocked
12.235294
38
0.793269
77de87a853b7b5dd5dded657cbce0c6e612ddf7f
7,394
asm
Assembly
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2.log_21829_1586.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2.log_21829_1586.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2.log_21829_1586.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0xd14d, %rsi lea addresses_WT_ht+0x11dae, %rdi nop cmp %r9, %r9 mov $107, %rcx rep movsb nop nop nop nop nop xor $40907, %r14 lea addresses_WC_ht+0x712d, %rsi nop nop nop xor %...
36.78607
2,999
0.65445
8b88e5ffb5b25fd0b55b4e1b7baa863b8b57b5b1
3,090
asm
Assembly
Examples/ch15/Mode13.asm
satadriver/LiunuxOS_t
c6222f04b6e734002cbf1aa366eb62e51f0ebbe5
[ "Apache-2.0" ]
null
null
null
Examples/ch15/Mode13.asm
satadriver/LiunuxOS_t
c6222f04b6e734002cbf1aa366eb62e51f0ebbe5
[ "Apache-2.0" ]
null
null
null
Examples/ch15/Mode13.asm
satadriver/LiunuxOS_t
c6222f04b6e734002cbf1aa366eb62e51f0ebbe5
[ "Apache-2.0" ]
null
null
null
; Memory Mapped Graphics, Mode 13 (Mode13.asm) Comment ! This program demonstrates direct memory mapping in video graphics Mode 13 (320 x 200, 256 colors). The video memory is a two-dimensional array of memory bytes which can be addressed and modified individually. Each byte represents a pixel on the screen, ...
24.140625
65
0.614887
8d679b215b854ae9ee0da87e49be9eec3e3714a0
5,261
asm
Assembly
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_26.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_26.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_26.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x4a5e, %rsi lea addresses_D_ht+0x75ec, %rdi nop nop nop nop nop inc %rdx mov $2, %rcx rep movsq nop nop nop sub $58742, %r9 lea addresses_WT_ht+0x2f9e, %rsi lea addresses_UC_ht+0x1ca5e, %rdi ...
42.088
2,999
0.662232
0da084a027579be924a28d0c4d1f35140858ee93
276
asm
Assembly
libsrc/_DEVELOPMENT/inttypes/z80/asm_strtoumax.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/inttypes/z80/asm_strtoumax.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/inttypes/z80/asm_strtoumax.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; uintmax_t strtoumax(const char *nptr, char **endptr, int base) SECTION code_clib SECTION code_inttypes PUBLIC asm_strtoumax IFDEF __SDCC EXTERN asm_strtoull defc asm_strtoumax = asm_strtoull ELSE EXTERN asm_strtoul defc asm_strtoumax = asm_strtoul ENDIF
13.8
64
0.778986
54648016e447712d9e37086b50e5071e3fbb6a54
1,754
asm
Assembly
MenuFunc.asm
bbernardoni/MathTI83
9b2c7da3b486fd3a41761413332e3ba7f0ffec6f
[ "MIT" ]
null
null
null
MenuFunc.asm
bbernardoni/MathTI83
9b2c7da3b486fd3a41761413332e3ba7f0ffec6f
[ "MIT" ]
1
2019-10-13T06:14:21.000Z
2019-10-13T14:02:45.000Z
MenuFunc.asm
bbernardoni/MathTI83
9b2c7da3b486fd3a41761413332e3ba7f0ffec6f
[ "MIT" ]
null
null
null
SetTI: ;put a line of 6 pixels to the left of the screen di push BC push HL push DE ld A, (pencol) dec A ld C, A srl A srl A srl A add A, $20 ld D, A ld A, C and 7 ld C, A ld A, 7 sub C ld E, 1 LineLoopShift6: or A jr Z, LineLoopSkip6 sla E dec A jr LineLoopShift6 LineLoopSkip6: ld A, $80 out ...
11.539474
50
0.619726
829ddc0437e31c6f1445134e3276048e7cb4292a
202
asm
Assembly
libsrc/graphics/gal/pointxy.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/graphics/gal/pointxy.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/graphics/gal/pointxy.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_clib PUBLIC pointxy EXTERN pointxy_MODE0 EXTERN pointxy_MODE1 EXTERN __gal_mode pointxy: ld a,(__gal_mode) cp 1 jp z,pointxy_MODE1 and a ret nz jp pointxy_MODE0
11.222222
22
0.722772
ae0b4b5ebfc2915b1751fd3cf212f349fff2ed72
3,108
asm
Assembly
deps/gmp.js/mpn/alpha/rshift.asm
6un9-h0-Dan/cobaul
11115a7a77924d6e1642f847c613efb25f217e56
[ "MIT" ]
184
2020-04-15T14:28:37.000Z
2020-09-22T15:57:55.000Z
deps/gmp.js/mpn/alpha/rshift.asm
6un9-h0-Dan/cobaul
11115a7a77924d6e1642f847c613efb25f217e56
[ "MIT" ]
3
2020-09-22T05:09:36.000Z
2020-09-22T11:56:00.000Z
deps/gmp.js/mpn/alpha/rshift.asm
6un9-h0-Dan/cobaul
11115a7a77924d6e1642f847c613efb25f217e56
[ "MIT" ]
5
2020-04-21T19:50:23.000Z
2020-09-22T10:58:02.000Z
dnl Alpha mpn_rshift -- Shift a number right. dnl Copyright 1994, 1995, 2000, 2009 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl it under the terms of the GNU Lesser General Public License as publish...
18.282353
79
0.68758
988dda611c8a46a9888d73489f6c04de869fefa7
1,015
asm
Assembly
src/util/oli/wm/rsiz.asm
olifink/qspread
d6403d210bdad9966af5d2a0358d4eed3f1e1c02
[ "MIT" ]
null
null
null
src/util/oli/wm/rsiz.asm
olifink/qspread
d6403d210bdad9966af5d2a0358d4eed3f1e1c02
[ "MIT" ]
null
null
null
src/util/oli/wm/rsiz.asm
olifink/qspread
d6403d210bdad9966af5d2a0358d4eed3f1e1c02
[ "MIT" ]
null
null
null
; standard window resize event handling include win1_mac_oli include win1_keys_wman include win1_keys_wwork include win1_keys_wstatus include win1_keys_wdef_long include win1_keys_qdos_pt section utility xdef xwm_rsiz ;+++ ; resize event handling ; ; Entry Exit ; d1 new size ; a2 wman vector preserve...
17.5
49
0.712315
ca3057761dd25904e63d0e247fe8e3230f60e85e
21,622
asm
Assembly
unc18/bars.asm
FolkertVanVerseveld/c64
a244b976cc650a86566b88066c0f7cb3a3915f09
[ "MIT" ]
1
2018-12-26T22:55:37.000Z
2018-12-26T22:55:37.000Z
unc18/bars.asm
FolkertVanVerseveld/c64
a244b976cc650a86566b88066c0f7cb3a3915f09
[ "MIT" ]
null
null
null
unc18/bars.asm
FolkertVanVerseveld/c64
a244b976cc650a86566b88066c0f7cb3a3915f09
[ "MIT" ]
null
null
null
:BasicUpstart2(start) .var vic = $0000 .var irq_line_top = $20 - 1 .var irq_line_bottom = $e8 .var irq_line_border = $100 .var screen = vic + $0400 .var colram = $d800 .var font = vic + $2800 .var lines_border_top = $30 - irq_line_top + 1 // FIXME use proper value (now using dummy testvalue) .var lines_middle = $...
31.021521
205
0.508279
7fb336acf25bed9aaa4def05ee05adabf60bcdec
830
asm
Assembly
oeis/142/A142760.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/142/A142760.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/142/A142760.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A142760: Primes congruent to 33 mod 59. ; Submitted by Jon Maiga ; 151,269,859,977,1213,1567,2039,2393,3691,4517,4871,5107,6287,7349,7703,8293,8647,9001,9473,10181,10771,10889,11243,11597,11833,12541,12659,13249,13367,13721,14783,15137,15373,15727,16553,17497,17851,18913,19031,19267,19739,21391,21863,22453,22571,2280...
34.583333
500
0.73253
003e1200eaa28c2fb7e725fbd6b0e3ea6ab6d76d
2,237
asm
Assembly
Ejercicios/Cap_10/10-1-Contador_TOI.asm
moisotico/Microprocesadores
ce434318f1245e60ac47ae0b1af2b424695bfc77
[ "MIT" ]
null
null
null
Ejercicios/Cap_10/10-1-Contador_TOI.asm
moisotico/Microprocesadores
ce434318f1245e60ac47ae0b1af2b424695bfc77
[ "MIT" ]
null
null
null
Ejercicios/Cap_10/10-1-Contador_TOI.asm
moisotico/Microprocesadores
ce434318f1245e60ac47ae0b1af2b424695bfc77
[ "MIT" ]
null
null
null
; Moises Campos Zepeda ; 06-06-2020 ; IE0623: Microprocesadores ; Ejercicio 5: Desplazamiento de LEDS ; Include File #include registers.inc ; ***************************************************************************** ; Data Structures ; ***************************************************...
34.415385
91
0.229772
c791afcbb604eb93fa272a3b1c917d78e69dc9f5
693
asm
Assembly
oeis/064/A064924.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/064/A064924.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/064/A064924.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A064924: If n is prime then a(n) = n; for the subsequent nonprime positions a(n + k) = (k+1)*n; then at the next prime position a new subsequence begins. ; Submitted by Jon Maiga ; 2,3,6,5,10,7,14,21,28,11,22,13,26,39,52,17,34,19,38,57,76,23,46,69,92,115,138,29,58,31,62,93,124,155,186,37,74,111,148,41,82,43,86,129,17...
46.2
348
0.68254
864ac3a48154c3c6aa7356599036da873739cd52
2,323
asm
Assembly
programs/oeis/052/A052149.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/052/A052149.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/052/A052149.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A052149: Nonsquare rectangles on an n X n board. ; 0,4,22,70,170,350,644,1092,1740,2640,3850,5434,7462,10010,13160,17000,21624,27132,33630,41230,50050,60214,71852,85100,100100,117000,135954,157122,180670,206770,235600,267344,302192,340340,381990,427350,476634,530062,587860,650260,717500,789824,867482,950730,1039830,1...
193.583333
2,187
0.866121
dd481db3923daf443d976805949e805374edf381
612
asm
Assembly
oeis/135/A135277.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/135/A135277.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/135/A135277.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A135277: a(n) = prime(2n-1) + prime(2n) + prime(2n+1). ; Submitted by Christian Krause ; 10,23,41,59,83,109,131,159,187,211,235,269,301,319,349,395,425,457,487,519,551,581,607,661,689,713,749,789,817,841,883,931,961,1015,1049,1079,1119,1151,1187,1229,1271,1303,1331,1367,1391,1433,1477,1511,1553,1611,1667,1703,1735,17...
87.428571
463
0.754902
4375b74ae0961db76c6216f0563c654a0d603d2c
1,828
asm
Assembly
libtool/src/gmp-6.1.2/mpn/s390_32/esame/addmul_1.asm
kroggen/aergo
05af317eaa1b62b21dc0144ef74a9e7acb14fb87
[ "MIT" ]
1,602
2015-01-06T11:26:31.000Z
2022-03-30T06:17:21.000Z
libtool/src/gmp-6.1.2/mpn/s390_32/esame/addmul_1.asm
kroggen/aergo
05af317eaa1b62b21dc0144ef74a9e7acb14fb87
[ "MIT" ]
11,789
2015-01-05T04:50:15.000Z
2022-03-31T23:39:19.000Z
libtool/src/gmp-6.1.2/mpn/s390_32/esame/addmul_1.asm
kroggen/aergo
05af317eaa1b62b21dc0144ef74a9e7acb14fb87
[ "MIT" ]
498
2015-01-08T18:58:18.000Z
2022-03-20T15:37:45.000Z
dnl S/390-32 mpn_addmul_1 for systems with MLR instruction dnl Copyright 2011 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl it under the terms of either: dnl dnl * the GNU Lesser General Public...
25.041096
79
0.690372
80cee8360aaf10b7ec5d6c25c9eca1c2de4c9369
1,161
asm
Assembly
programs/oeis/317/A317311.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/317/A317311.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/317/A317311.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A317311: Multiples of 11 and odd numbers interleaved. ; 0,1,11,3,22,5,33,7,44,9,55,11,66,13,77,15,88,17,99,19,110,21,121,23,132,25,143,27,154,29,165,31,176,33,187,35,198,37,209,39,220,41,231,43,242,45,253,47,264,49,275,51,286,53,297,55,308,57,319,59,330,61,341,63,352,65,363,67,374,69,385,71,396,73,407,75,418,77,429,7...
68.294118
969
0.70801
888eba80b1f7d21b6fb296d848f4eb93ae9b4ea8
5,978
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_214_1519.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_214_1519.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_214_1519.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_WT_ht+0x27e3, %rsi lea addresses_normal_ht+0xdaab, %rdi clflush (%rsi) nop xor $14760, %r11 mov $70, %rcx rep movsl dec %rax lea addresses_WT_ht+0x29b7, %rsi lea addresses_normal_ht+0x8cd5, %r...
23.170543
641
0.653396
f06030a8e4679cad9c4180c0c7b12e7ca991d490
3,349
asm
Assembly
ver0/4_osInOrder/4_fileSys/boot/boot.asm
RongbinZhuang/simpleOS
81a817eb5f2c7891ab3f107a5cd5e0f0c31af143
[ "MIT" ]
null
null
null
ver0/4_osInOrder/4_fileSys/boot/boot.asm
RongbinZhuang/simpleOS
81a817eb5f2c7891ab3f107a5cd5e0f0c31af143
[ "MIT" ]
null
null
null
ver0/4_osInOrder/4_fileSys/boot/boot.asm
RongbinZhuang/simpleOS
81a817eb5f2c7891ab3f107a5cd5e0f0c31af143
[ "MIT" ]
null
null
null
org 07c00h jmp START ;.inc file included %include "fat12hdr.inc" %include "load.inc" ;constant define wDataSector equ RootDirSectors+DeltaSectorNo wSectorNo dw 0 bOdd db 0 LOADERNAME db "LOADER BIN" ,0 MESSAGELENGTH equ 9 MESSAGE: db "BOOTING " .1: db "READY " .2: db "NO LOADER" ;v...
16.829146
47
0.62347
c041a3b22e9a47693951da4e2b899c1b76a5799a
550
nasm
Assembly
code/misc/shellcode/encoders/xor/xor_decoder.nasm
rbctee/MalwareDevelopment
115cc5a7f2a0d42a6e7b6ae81b2b07ea514537e2
[ "BSD-3-Clause" ]
null
null
null
code/misc/shellcode/encoders/xor/xor_decoder.nasm
rbctee/MalwareDevelopment
115cc5a7f2a0d42a6e7b6ae81b2b07ea514537e2
[ "BSD-3-Clause" ]
null
null
null
code/misc/shellcode/encoders/xor/xor_decoder.nasm
rbctee/MalwareDevelopment
115cc5a7f2a0d42a6e7b6ae81b2b07ea514537e2
[ "BSD-3-Clause" ]
null
null
null
; Author: rbct ; Shellcode length: 20 bytes without the encoded shellcode global _start section .text _start: jmp short CallDecodeShellcode DecodeShellcode: pop esi xor ecx, ecx mov cl, 27 DecodeInstruction: xor byte [esi], 0xaa inc esi loop DecodeInstruction jmp short shellcod...
17.1875
178
0.696364
54e30b653e98b89b5e03d227ef0128a594c328b5
489
asm
Assembly
F0xC_WIN/include/util/newLine.asm
Pusty/F0xC
946be39e872d9f1119cf04290cb7aa3aac39a9bc
[ "BSL-1.0" ]
null
null
null
F0xC_WIN/include/util/newLine.asm
Pusty/F0xC
946be39e872d9f1119cf04290cb7aa3aac39a9bc
[ "BSL-1.0" ]
null
null
null
F0xC_WIN/include/util/newLine.asm
Pusty/F0xC
946be39e872d9f1119cf04290cb7aa3aac39a9bc
[ "BSL-1.0" ]
null
null
null
%ifndef PRINT_NLINE %define PRINT_NLINE %ifndef _WRITEFILE extern _WriteFile@20 %endif ;0 args () ;example call newLine ;_WriteFile@20 in kernel32 ;std_addr = ADDR TEMP STORAGE ;str_tmp = 16 byte reserved ;std_handle = STD OUTPUT HANDLE newLine: pop dword [std_addr] mov [std_tmp], byte 0x0D mov [std_tmp+1],...
17.464286
31
0.695297
81941c575b38ede5c2649d245310f956a70f2c92
124
asm
Assembly
code/splitter.asm
MasterQ32/TIS-100
9a257320baa48b38af53a0b341d7bbaf7d664406
[ "MIT" ]
4
2018-05-08T06:59:24.000Z
2021-04-13T12:34:26.000Z
code/splitter.asm
MasterQ32/TIS-100
9a257320baa48b38af53a0b341d7bbaf7d664406
[ "MIT" ]
null
null
null
code/splitter.asm
MasterQ32/TIS-100
9a257320baa48b38af53a0b341d7bbaf7d664406
[ "MIT" ]
null
null
null
LOOP: MOV UP,ACC JLZ LEFT JGZ RIGHT MOV ACC,DOWN JMP LOOP LEFT: MOV ACC,LEFT JMP LOOP RIGHT: MOV ACC,RIGHT JMP LOOP
10.333333
14
0.709677
0dddad7acaf35ecd3a2c51b6361be508a379a8b1
1,708
asm
Assembly
libsrc/_DEVELOPMENT/sound/sn76489/z80/asm_PSGlib_Stop.asm
ahjelm/z88dk
c4de367f39a76b41f6390ceeab77737e148178fa
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/sound/sn76489/z80/asm_PSGlib_Stop.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/sound/sn76489/z80/asm_PSGlib_Stop.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; ************************************************** ; PSGlib - C programming library for the SEGA PSG ; ( part of devkitSMS - github.com/sverx/devkitSMS ) ; ************************************************** INCLUDE "PSGlib_private.inc" SECTION code_clib SECTION code_PSGlib PUBLIC asm_PSGlib_Stop EXTERN __PSGlib_M...
18.170213
92
0.65281
98a5d4ee755ddc096630ce32f2b0abb2e33e37db
1,337
asm
Assembly
ASM/src/initial_save.asm
Edos512/OoT-RandomizerNoER
59e4c565986b37d7a83d8523ee7c7ee5701873b5
[ "MIT" ]
344
2018-07-07T07:36:26.000Z
2022-03-27T22:48:10.000Z
ASM/src/initial_save.asm
Edos512/OoT-RandomizerNoER
59e4c565986b37d7a83d8523ee7c7ee5701873b5
[ "MIT" ]
1,076
2018-07-09T04:01:39.000Z
2022-03-31T17:18:22.000Z
ASM/src/initial_save.asm
Edos512/OoT-RandomizerNoER
59e4c565986b37d7a83d8523ee7c7ee5701873b5
[ "MIT" ]
320
2018-07-02T01:19:41.000Z
2022-03-25T01:28:30.000Z
;=========================================== ; Writes extra data to the initial save file ;=========================================== write_initial_save: sb a1, 33(s1) ; this was the instruction we replaced to make room for the jump to this function ; it is writing the Z at the end of...
39.323529
113
0.551234
422c3b459968ba21f92200c60b32b508af2c6c11
3,543
asm
Assembly
kernel/boot/boot_hdd.asm
ssebs/xos
8c50cb7753690ad67696131a8b9935947e1a8075
[ "MIT" ]
15
2020-05-02T22:04:24.000Z
2021-08-31T16:56:59.000Z
kernel/boot/boot_hdd.asm
JamesLinus/xos
3fba0cb15e84b5f7cd08e0a29ed5f86087192d2e
[ "MIT" ]
null
null
null
kernel/boot/boot_hdd.asm
JamesLinus/xos
3fba0cb15e84b5f7cd08e0a29ed5f86087192d2e
[ "MIT" ]
1
2019-07-20T10:10:36.000Z
2019-07-20T10:10:36.000Z
;; xOS32 ;; Copyright (C) 2016-2017 by Omar Mohammad. ;; boot/boot_hdd.asm -- Harddisk boot sector use16 org 0 jmp short relocate nop align 8 filesystem_block: .fs_magic db 0xF3 .usage_block_size dd 7500 .volume_label db "XOS",0 relocate: cli cld push ds push si xor ax, ax mo...
13.471483
65
0.604855
063105551e8571b0efc276145b4d57107a8ad236
1,128
asm
Assembly
programs/oeis/079/A079946.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/079/A079946.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/079/A079946.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A079946: Binary expansion of n has form 11**...*0. ; 6,12,14,24,26,28,30,48,50,52,54,56,58,60,62,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254,384,386,388,390,392,394,396,398...
86.769231
990
0.724291
a153f2214f9f829eb4b99bcd79616c7d81123365
7,371
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_526.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_526.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_526.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x18b9f, %rsi add $40738, %r11 mov (%rsi), %bx nop nop nop and %r9, %r9 lea addresses_WT_ht+0x1e9f, %r13 nop nop nop nop nop and %rbx, %rbx mov (%r13), %r10d nop nop ...
33.811927
2,999
0.655813
77b8850d8284cdff052ed3c9eeb1bbe723a5d25f
4,906
asm
Assembly
Opus/asm/formulan.asm
Computer-history-Museum/MS-Word-for-Windows-v1.1
549a2a32e930694df7b91e3273b886d735fa9151
[ "MIT" ]
2
2018-01-22T14:38:52.000Z
2019-02-25T02:16:30.000Z
Microsoft DOS/Word 1.1a CHM Distribution/Opus/asm/formulan.asm
mindcont/Open-Source
416917cbe3d4469cc036d05e7c858b05b8081ded
[ "CC0-1.0" ]
null
null
null
Microsoft DOS/Word 1.1a CHM Distribution/Opus/asm/formulan.asm
mindcont/Open-Source
416917cbe3d4469cc036d05e7c858b05b8081ded
[ "CC0-1.0" ]
1
2021-06-25T17:34:43.000Z
2021-06-25T17:34:43.000Z
; FORMULAN.ASM ; Fetch routines used by Formula .xlist memS = 1 ?WIN = 1 ?PLM = 1 ?NODATA = 1 ?TF = 1 include w2.inc include noxport.inc include consts.inc include structs.inc .list ; CODE IN THIS MODULE IS APP...
20.613445
79
0.637587
4e9fd346448a2e77f56abb960f52ed9a67babe38
17,175
asm
Assembly
src/clinkster.asm
demoscene-source-archive/blue-morpho
25b4064432a8d71abd179a28ac5fe2967c15a9e6
[ "MIT-0" ]
null
null
null
src/clinkster.asm
demoscene-source-archive/blue-morpho
25b4064432a8d71abd179a28ac5fe2967c15a9e6
[ "MIT-0" ]
null
null
null
src/clinkster.asm
demoscene-source-archive/blue-morpho
25b4064432a8d71abd179a28ac5fe2967c15a9e6
[ "MIT-0" ]
2
2021-08-24T14:26:21.000Z
2021-11-03T13:58:52.000Z
; If set to 1, timing information is generated during music generation ; which is needed for Clinkster_GetInstrumentTrigger. ; Set it to 0 if you don't need this functionality. %define CLINKSTER_GENERATE_TIMING_DATA 0 ; Offset applied by Clinkster_GetPosition to compensate for graphics latency. ; Measured in samples ...
18.193856
77
0.724891
103f504c9a9484e069e3446bb20f58d88e99dcc5
1,816
asm
Assembly
Kernel/asm/interrupts.asm
LucasCasa/Kerner
8a5c230d228923b3b0815df6a8f0191ecafad6c5
[ "BSD-3-Clause" ]
null
null
null
Kernel/asm/interrupts.asm
LucasCasa/Kerner
8a5c230d228923b3b0815df6a8f0191ecafad6c5
[ "BSD-3-Clause" ]
null
null
null
Kernel/asm/interrupts.asm
LucasCasa/Kerner
8a5c230d228923b3b0815df6a8f0191ecafad6c5
[ "BSD-3-Clause" ]
null
null
null
GLOBAL _cli GLOBAL _sti GLOBAL picMasterMask GLOBAL picSlaveMask GLOBAL _write_port GLOBAL _int_timer_hand GLOBAL _int_keyboard_hand GLOBAL _int80_hand GLOBAL haltcpu GLOBAL _call_int80 EXTERN timer_handler EXTERN keyboard_handler EXTERN sys_manager SECTION .text _cli: cli ret _sti: sti ret _write_port: ...
16.509091
89
0.593062
314be88db794c55a824b92817ac18d0effc2a487
2,780
asm
Assembly
src/draw_countdown.asm
Fabian-Schneider01/Virtual-Piano
aa232b4fc4fa09fa43643db8ae10414406166df5
[ "MIT" ]
1
2021-10-30T19:03:41.000Z
2021-10-30T19:03:41.000Z
src/draw_countdown.asm
Fabian-Schneider01/Virtual-Piano
aa232b4fc4fa09fa43643db8ae10414406166df5
[ "MIT" ]
null
null
null
src/draw_countdown.asm
Fabian-Schneider01/Virtual-Piano
aa232b4fc4fa09fa43643db8ae10414406166df5
[ "MIT" ]
null
null
null
#a 5 second countdown will be printed to prepare the user for the game .data initialize: .word 0x10040000 #heap base address .text addi sp, sp, -24 sw a0, (sp) sw a7, 4(sp) sw t0, 8(sp) sw t1, 12(sp) sw t2, 16(sp) sw t3, 20(sp) #numbers will be drawn in white countdown_setup: #max value of loop -> first draw whi...
16.547619
90
0.694964
12eb470c21226d6e21cf08f0cc94992bbdf5206d
481
asm
Assembly
programs/oeis/160/A160722.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/160/A160722.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/160/A160722.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A160722: Number of "ON" cells at n-th stage in a certain 2-dimensional cellular automaton based on Sierpinski triangles (see Comments for precise definition). ; 0,1,5,9,19,23,33,43,65,69,79,89,111,121,143,165,211,215,225,235,257,267,289,311,357,367,389,411,457,479,525,571,665,669,679,689,711,721,743,765,811,821,843,8...
68.714286
208
0.75052
e2734fdeccad1ca1cbfa64620decf09b62176efe
683
asm
Assembly
oeis/117/A117402.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/117/A117402.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/117/A117402.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A117402: Row sums of triangle A117401: a(n) = Sum_{k=0..n} 2^((n-k)*k) for n>=0. ; Submitted by Jamie Morken(s1.) ; 1,2,4,10,34,162,1090,10370,139522,2654722,71435266,2718435330,146299424770,11134711111682,1198484887715842,182431106853797890,39271952800672710658,11955805018770498519042,5147453397489773531365378,31341...
45.533333
468
0.821376
74d0c8ba9facfdec6071b1e8ae8f90c65abfa316
4,080
asm
Assembly
src/shaders/h264/ildb/save_Top_UV_8x2_Mbaff.asm
me176c-dev/android_hardware_intel-vaapi-driver
0f2dca8d604220405e4678c0b6c4faa578d994ec
[ "MIT" ]
192
2018-01-26T11:51:55.000Z
2022-03-25T20:04:19.000Z
src/shaders/h264/ildb/save_Top_UV_8x2_Mbaff.asm
me176c-dev/android_hardware_intel-vaapi-driver
0f2dca8d604220405e4678c0b6c4faa578d994ec
[ "MIT" ]
256
2017-01-23T02:10:27.000Z
2018-01-23T10:00:05.000Z
src/shaders/h264/ildb/save_Top_UV_8x2_Mbaff.asm
me176c-dev/android_hardware_intel-vaapi-driver
0f2dca8d604220405e4678c0b6c4faa578d994ec
[ "MIT" ]
64
2018-01-30T19:51:53.000Z
2021-11-24T01:26:14.000Z
/* * Copyright © <2010>, Intel Corporation. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merg...
40.8
115
0.668627
e8828e4069205cef5494743d6294148955c5d897
5,806
asm
Assembly
dv3/q40/hd/init.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
dv3/q40/hd/init.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
dv3/q40/hd/init.asm
olifink/smsqe
c546d882b26566a46d71820d1539bed9ea8af108
[ "BSD-2-Clause" ]
null
null
null
; DV3 Q40 IDE Initialisation V3.03  1992 Tony Tebby ; ; v3.03 2020-05-06 delay whilst waiting for drive to come online (wl) ; v3.02 WIN_CHECK,CARD_DIR$ added @ w. lenerz 2020 ; V3.01 Additions for LBA access  W. Lenerz 2017 Nov 21 ; section dv3 xdef hd_init xdef ide.0 xdef ide.1 xdef ideo.data xdef...
19.883562
77
0.721667
a6788f9ac781c2e8f3e986fbe30788c6f7c93e7f
196
asm
Assembly
mc-sema/validator/x86/tests/Test32RR1.asm
randolphwong/mcsema
eb5b376736e7f57ff0a61f7e4e5a436bbb874720
[ "BSD-3-Clause" ]
2
2021-08-07T16:21:29.000Z
2021-11-17T10:58:37.000Z
mc-sema/validator/x86/tests/Test32RR1.asm
randolphwong/mcsema
eb5b376736e7f57ff0a61f7e4e5a436bbb874720
[ "BSD-3-Clause" ]
null
null
null
mc-sema/validator/x86/tests/Test32RR1.asm
randolphwong/mcsema
eb5b376736e7f57ff0a61f7e4e5a436bbb874720
[ "BSD-3-Clause" ]
null
null
null
BITS 32 ;TEST_FILE_META_BEGIN ;TEST_TYPE=TEST_F ;TEST_IGNOREFLAGS=FLAG_AF ;TEST_FILE_META_END ; Test32RR1 mov ebx, 0x0 ;TEST_BEGIN_RECORDING test ebx, ebx ;TEST_END_RECORDING
16.333333
25
0.755102
fc9bd878b0d728d36538ca4b18271a8aed1c41fa
4,271
asm
Assembly
Library/Kernel/Drive/driveC.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Library/Kernel/Drive/driveC.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Library/Kernel/Drive/driveC.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: Kernel/Drive FILE: driveC.asm REVISION HISTORY: Name Date Description ---- ---- ----------- Tony 3/91 Initial version DESCRIPTION: This ...
22.597884
80
0.515102
290ab251f17219751affcd28d010fa7321ec6941
491
asm
Assembly
oeis/272/A272646.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/272/A272646.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/272/A272646.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A272646: a(0)=a(1)=1; thereafter a(n) = (4*n-3)*a(n-1) + 2*a(n-2). ; Submitted by Jon Maiga ; 1,1,7,65,859,14733,311111,7807241,227032211,7507677445,278238129887,11422778680257,514581516871339,25237339884056125,1338608176888717303,76351140762424998521,4660096802861702344387,303058994467535502382197,209203908118656730...
27.277778
263
0.727088
f78dcdd384376163ca126bba085a6dfa9f15cebe
3,287
asm
Assembly
bfvmm/src/hve/arch/intel_x64/exception.asm
ilovepi/hypervisor
6a61cccec6574d4daad2553e053099d437e4b929
[ "MIT" ]
5
2020-03-28T18:31:24.000Z
2022-03-16T07:51:29.000Z
bfvmm/src/hve/arch/intel_x64/exception.asm
ilovepi/hypervisor
6a61cccec6574d4daad2553e053099d437e4b929
[ "MIT" ]
1
2020-08-21T00:56:00.000Z
2022-01-02T14:54:13.000Z
bfvmm/src/hve/arch/intel_x64/exception.asm
ilovepi/hypervisor
6a61cccec6574d4daad2553e053099d437e4b929
[ "MIT" ]
1
2022-03-28T20:05:34.000Z
2022-03-28T20:05:34.000Z
; ; Copyright (C) 2019 Assured Information Security, Inc. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify...
20.54375
80
0.667782
aa5b5ef374e2780781a78d3898312ff2719522ad
8,773
asm
Assembly
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_858.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_858.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_21829_858.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 %r13 push %r14 push %r8 push %rcx push %rdi push %rsi lea addresses_D_ht+0x1e24f, %rsi nop cmp %r8, %r8 and $0xffffffffffffffc0, %rsi movaps (%rsi), %xmm5 vpextrq $1, %xmm5, %r11 nop nop nop nop nop cmp %r12, %r12 lea addresses_WC_ht+0x1136a, %r14 no...
31
2,999
0.65713
304f48f1ed64fac2727c1f452105e20371259d5b
1,726
asm
Assembly
src/HexManiac.Tests/test_code/Expand03_-_Relearner_move_tutor.asm
jonakselm/HexManiacAdvance
b73a67274458ecb4d99816661b109a0c5bc00d39
[ "MIT" ]
64
2019-05-06T13:45:56.000Z
2022-03-30T09:42:05.000Z
src/HexManiac.Tests/test_code/Expand03_-_Relearner_move_tutor.asm
jonakselm/HexManiacAdvance
b73a67274458ecb4d99816661b109a0c5bc00d39
[ "MIT" ]
16
2019-05-18T02:29:08.000Z
2022-02-08T13:26:48.000Z
src/HexManiac.Tests/test_code/Expand03_-_Relearner_move_tutor.asm
jonakselm/HexManiacAdvance
b73a67274458ecb4d99816661b109a0c5bc00d39
[ "MIT" ]
38
2019-07-23T20:18:16.000Z
2022-03-05T23:46:39.000Z
.text .align 2 .thumb .thumb_func .global newmovesetstyle main: lsl r2, r5, #0x1 add r2, r2, r5 ldr r1, [sp, #0x10] add r0, r2, r1 ldrb r0, [r0, #0x2] ldr r1, [sp, #0xC] add r7, r2, #0x0 add r5, #0x1 mov r12, r5 cmp r0, r1 bgt later mov r4, #0x0 cmp r1, r0 beq later2 mov r4, #0x1 neg r4, r4 ldr r0, [sp...
15.54955
23
0.586327
9de2ff9ab3808cc8da93cac6788c9fa5aa99d09b
79
asm
Assembly
Tests/yasm-regression/lds.asm
13xforever/x86-assembly-textmate-bundle
f1bb62f77b776d87d0fd85b0276d4237ff72c43c
[ "MIT" ]
69
2015-04-16T18:01:22.000Z
2022-02-15T07:54:26.000Z
Tests/yasm-regression/lds.asm
javiercbk/x86-assembly-textmate-bundle
62d700e0196f62ef4353a9b95c2e64beb0a6afda
[ "MIT" ]
17
2016-09-20T08:49:09.000Z
2021-02-19T15:01:04.000Z
Tests/yasm-regression/lds.asm
javiercbk/x86-assembly-textmate-bundle
62d700e0196f62ef4353a9b95c2e64beb0a6afda
[ "MIT" ]
19
2016-05-31T07:11:14.000Z
2021-07-19T10:17:12.000Z
[bits 16] lds ax,[1] ; out: c5 06 01 00 lds eax,[1] ; out: 66 c5 06 01 00
15.8
35
0.544304
49c356b4878528335d69d45cc223fd45642b4ed9
8,476
asm
Assembly
Library/Breadbox/CDADOS/CDAMain.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Library/Breadbox/CDADOS/CDAMain.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Library/Breadbox/CDADOS/CDAMain.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Jens-Michael Gross 1997 -- All Rights Reserved PROJECT: MM-Projekt MODULE: (MS)CDEX CDRom Driver FILE: CDAMain.asm AUTHOR: Jens-Michael Gross REVISION HISTORY: Name Date Description ---- ---- ----------- JMG 28.07....
27.881579
81
0.503539
3b657feecd9b6e2bae7cf0c1283c2192da827d20
690
asm
Assembly
Mid-Term/Solution/1.asm
Shakib-IO/CSE331L-Section-10-Fall20-NSU
ec2b944300f906f21500bd08c316a3d775f91477
[ "MIT" ]
null
null
null
Mid-Term/Solution/1.asm
Shakib-IO/CSE331L-Section-10-Fall20-NSU
ec2b944300f906f21500bd08c316a3d775f91477
[ "MIT" ]
null
null
null
Mid-Term/Solution/1.asm
Shakib-IO/CSE331L-Section-10-Fall20-NSU
ec2b944300f906f21500bd08c316a3d775f91477
[ "MIT" ]
null
null
null
; You may customize this and other start-up templates; ; The location of this template is c:\emu8086\inc\0_com_template.txt .MODEL SMALL .STACK 100H .DATA PROMPT_1 DB "ENTER INTEGER 1: $" PROMPT_2 DB 0DH,0AH, "ENTER INTEGER 2: $" PROMPT_3 DB 0DH,0AH, "DIFF OF THE INTEGERS: $" .CODE MAIN PROC MOV ...
13.529412
68
0.582609
d63cd1b4e5ac91b7757c24bccd0d5763263b9604
51
asm
Assembly
libsrc/nc100/txtinverseoff.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/nc100/txtinverseoff.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/nc100/txtinverseoff.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
PUBLIC txtinverseoff .txtinverseoff jp 0xB845
10.2
22
0.784314
79e7f85d0259d98fb54c177e88d3b76e29c27d77
320
asm
Assembly
oeis/021/A021311.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/021/A021311.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/021/A021311.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A021311: Decimal expansion of 1/307. ; Submitted by Jamie Morken(s2.) ; 0,0,3,2,5,7,3,2,8,9,9,0,2,2,8,0,1,3,0,2,9,3,1,5,9,6,0,9,1,2,0,5,2,1,1,7,2,6,3,8,4,3,6,4,8,2,0,8,4,6,9,0,5,5,3,7,4,5,9,2,8,3,3,8,7,6,2,2,1,4,9,8,3,7,1,3,3,5,5,0,4,8,8,5,9,9,3,4,8,5,3,4,2,0,1,9,5,4,3 seq $0,173833 ; 10^n - 3. div $0,307 mod $0,10
40
199
0.559375
f4d9d79d37225c2e8dfe7291d1450c90a698c190
481
asm
Assembly
int/int91_def.asm
ssbostan/zagros
7ac9959b07d4e5459cdfc9bd34b9ef062c4b9050
[ "MIT" ]
21
2020-03-28T09:40:49.000Z
2022-01-28T17:26:01.000Z
int/int91_def.asm
ssbostan/zagros
7ac9959b07d4e5459cdfc9bd34b9ef062c4b9050
[ "MIT" ]
null
null
null
int/int91_def.asm
ssbostan/zagros
7ac9959b07d4e5459cdfc9bd34b9ef062c4b9050
[ "MIT" ]
1
2019-12-21T14:36:27.000Z
2019-12-21T14:36:27.000Z
; ==================== ZagrOS ==================== ; Zagros Open Source Operating System ; Saeid Bostandoust (ssbostan@linuxmail.org) ; Bostandoust.IR ; ==================== ZagrOS ==================== ; ================ int 91h define ================ mov al, 91h mov bl, 04h mul bl mov b...
19.24
52
0.401247
211aeb0686afb76846e43f6c68558fa800a73627
2,699
asm
Assembly
paging/procedures.asm
ilya101010/asm_studies
8014446d021b0f3d50f091fd88cbf3ea726fc160
[ "WTFPL" ]
1
2019-09-17T01:06:02.000Z
2019-09-17T01:06:02.000Z
paging/procedures.asm
ilya101010/asm_studies
8014446d021b0f3d50f091fd88cbf3ea726fc160
[ "WTFPL" ]
null
null
null
paging/procedures.asm
ilya101010/asm_studies
8014446d021b0f3d50f091fd88cbf3ea726fc160
[ "WTFPL" ]
null
null
null
; basic procedures for IO and other life stuff format ELF include 'macro.inc' section '.text' executable Use32 demo_cdecl: push ebp mov ebp, esp ; [ebp+8] - first arg ; [ebp+12] - second arg ; ... ; [ebp+4*(i+1)] - i-th arg pop ebp ret ; # output public write ; write(src, x, y, color) // null-terminated s...
14.280423
51
0.62764
9c170ddb7002e0364bd81e938cc39728b59b2c7a
120
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/div2_fastcall.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/div2_fastcall.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sdcc/div2_fastcall.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_fp_math32 PUBLIC _div2_fastcall EXTERN m32_fsdiv2_fastcall defc _div2_fastcall = m32_fsdiv2_fastcall
17.142857
42
0.858333
d7e7c9b668359d5ddb463e2eb110029c7c1b2bb9
1,313
asm
Assembly
programs/oeis/015/A015448.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/015/A015448.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/015/A015448.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A015448: a(0) = 1, a(1) = 1, and a(n) = 4*a(n-1) + a(n-2) for n >= 2. ; 1,1,5,21,89,377,1597,6765,28657,121393,514229,2178309,9227465,39088169,165580141,701408733,2971215073,12586269025,53316291173,225851433717,956722026041,4052739537881,17167680177565,72723460248141,308061521170129,1304969544928657,5527939700884757,...
164.125
1,130
0.887281
d9720fbd7c7cb83f23c662780103fe71581958cf
639
asm
Assembly
oeis/191/A191641.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/191/A191641.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/191/A191641.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A191641: a(n) = floor((1 + 4^n)/(1 + 4*n)). ; Submitted by Jon Maiga ; 1,1,5,15,48,163,565,1985,7085,25575,93206,342392,1266205,4709393,17602325,66076419,248983611,941362695,3569842947,13574217626,51741723660,197665011735,756653163200,2901803883615,11147523830125,42891425022576,165269711096165,637677823344495,2463507...
45.642857
482
0.821596
9cd879d3fb9b7b4318661c5b441f0c01105d9e16
1,326
asm
Assembly
Program03/Prog03.asm
jasarsoft/asm-example
9a65a1eac11881c5b8086c293a223a8cebeb444e
[ "Apache-2.0" ]
1
2018-06-09T07:11:35.000Z
2018-06-09T07:11:35.000Z
Program03/Prog03.asm
jasarsoft/asm-example
9a65a1eac11881c5b8086c293a223a8cebeb444e
[ "Apache-2.0" ]
null
null
null
Program03/Prog03.asm
jasarsoft/asm-example
9a65a1eac11881c5b8086c293a223a8cebeb444e
[ "Apache-2.0" ]
null
null
null
;Zadatak 3: Ispisati jedan karakter na monitoru, pozicija karaktera je data sa x i y ; koordinatama, program treba da izracuna adresu u video memoriji. Prog03 Segment ;definicija segmenta assume CS:Prog03, DS:Prog03 ;pocetak CS i DS segmenta Start: mov ax, Prog03 ...
33.15
84
0.435897
c911daa482666cc74ad1429b9f0505e1d497232c
6,666
asm
Assembly
tables/graphics_tables.asm
indigodarkwolf/x16-matriculate-text
dcc2ac02119b437cf668fc6bfbd4fa931b5c45ad
[ "MIT" ]
9
2019-09-08T08:40:57.000Z
2021-02-09T08:00:19.000Z
src/tables/graphics_tables.asm
indigodarkwolf/x16-spiral
89e70163fbc28de73c4a4c71d897a0b76d53bebe
[ "MIT" ]
1
2019-09-14T21:54:50.000Z
2019-09-15T19:10:02.000Z
tables/graphics_tables.asm
indigodarkwolf/x16-matriculate-text
dcc2ac02119b437cf668fc6bfbd4fa931b5c45ad
[ "MIT" ]
2
2019-10-13T12:12:16.000Z
2020-06-25T01:24:14.000Z
;================================================= ;================================================= ; ; Graphics lib tables ; ;------------------------------------------------- .byte 0, 0 ; Load into $A000 ; Gfx_palette_decrement_table: ; $X0, $X1, $X2, $X3, $X4, $X5, $X6, $X7, $X8, $X9, $XA, $XB, $XC, $X...
82.296296
119
0.555356
19ebad50f4b5c8b876e484e561ada97b17acb1d8
291
asm
Assembly
libsrc/_DEVELOPMENT/l/sdcc/____sdcc_ll_sub_de_bc_hlix.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/l/sdcc/____sdcc_ll_sub_de_bc_hlix.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/l/sdcc/____sdcc_ll_sub_de_bc_hlix.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_clib SECTION code_l_sdcc PUBLIC ____sdcc_ll_sub_de_bc_hlix EXTERN ____sdcc_ll_sub_de_bc_hl ____sdcc_ll_sub_de_bc_hlix: push bc IFDEF __SDCC_IX push ix pop bc ELSE push iy pop bc ENDIF add hl,bc pop bc jp ____sdcc_ll_sub_de_bc_hl
9.7
33
0.725086
f9547eb19c99f4549032c0e65dd75a2f97453295
6,289
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_634.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_634.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_634.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 %r13 push %r14 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1551e, %r14 nop nop nop nop nop xor %rdi, %rdi and $0xffffffffffffffc0, %r14 vmovntdqa (%r14), %ymm3 vextracti128 $0, %ymm3, %xmm3 vpextrq $1, %xmm3, %r11 sub %rdx, %rdx lea ...
40.057325
2,999
0.659564
9499005496c7015752f7125e8ceec52aec14129e
5,779
asm
Assembly
source/syscalls-asm.asm
rammolina/nanodump
c3edff933a3e810612810636a2d0360a0eab09c4
[ "Apache-2.0" ]
null
null
null
source/syscalls-asm.asm
rammolina/nanodump
c3edff933a3e810612810636a2d0360a0eab09c4
[ "Apache-2.0" ]
null
null
null
source/syscalls-asm.asm
rammolina/nanodump
c3edff933a3e810612810636a2d0360a0eab09c4
[ "Apache-2.0" ]
null
null
null
.code EXTERN GetSyscallAddress: PROC EXTERN SW2_GetSyscallNumber: PROC SyscallNotFound PROC mov eax, 0C0000225h ret SyscallNotFound ENDP NtOpenProcess PROC push rcx push rdx push r8 push r9 sub rsp, 028h call GetSyscallAddress add rsp, 028h push rax sub rsp, 028h mov ecx, 0CD9B2A0Fh call SW2_GetSyscallN...
13.285057
33
0.750303
627877ae112cb296f1d429255a8e589be6cda458
143
asm
Assembly
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver1/sfc/ys_w32.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver1/sfc/ys_w32.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver1/sfc/ys_w32.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
Name: ys_w32.asm Type: file Size: 8674 Last-Modified: '2016-05-13T04:51:16Z' SHA-1: 0C36C5D27E034BB85955CC9E74D45ACD6149A5DB Description: null
20.428571
47
0.811189
e25f577dd855f84bc5ca19158403d4e3223737d5
871
asm
Assembly
src/test/ref/liverange-7.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
2
2022-03-01T02:21:14.000Z
2022-03-01T04:33:35.000Z
src/test/ref/liverange-7.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
src/test/ref/liverange-7.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
// Test effective live range and register allocation // Here main::c, out2::c and out::c can all have the same allocation - and the global idx can be allocated to a hardware register. // Commodore 64 PRG executable file .file [name="liverange-7.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basi...
20.255814
130
0.609644
c83274dd9ff6416987716679dca027be318c4fbe
959
asm
Assembly
lib/src/xr/x86/os2/xrnmln.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/xrnmln.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/xrnmln.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 ln & lnl functions ifdef OS2 .model FLAT endif DGROUP group _DATA _DATA segment use32 dword public 'DATA' _DATA ends ifdef OS2 _TEXT ...
20.404255
73
0.527633
17050ccc8dfce966d6544c00d418783b14c96875
401
asm
Assembly
programs/oeis/286/A286888.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/286/A286888.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/286/A286888.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A286888: Floor of the average gap between consecutive primes among the first n primes, for n > 1. ; 1,1,1,2,2,2,2,2,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5 add $0,1 mov $1,$...
33.416667
201
0.578554
91bce8c018bfbd8440dfa1df8dea476599c5e057
802
asm
Assembly
oeis/247/A247564.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/247/A247564.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/247/A247564.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A247564: a(n) = 3*a(n-2) - 4*a(n-4) with a(0) = 2, a(1) = 1, a(2) = 3, a(3) = 1. ; Submitted by Christian Krause ; 2,1,3,1,1,-1,-9,-7,-31,-17,-57,-23,-47,-1,87,89,449,271,999,457,1201,287,-393,-967,-5983,-4049,-16377,-8279,-25199,-8641,-10089,7193,70529,56143,251943,139657,473713,194399,413367,24569,-654751,-703889,-...
34.869565
500
0.67207
21ca13718fd0c1c65165901a082c378509611c7c
681
asm
Assembly
oeis/176/A176372.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/176/A176372.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/176/A176372.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A176372: y-values in the solution to x^2 - 66*y^2 = 1. ; Submitted by Jamie Morken(s3) ; 0,8,1040,135192,17573920,2284474408,296964099120,38603048411192,5018099329355840,652314309767848008,84795842170490885200,11022807167854047227992,1432880135978855648753760,186263394870083380290760808,24212808452974860582150151280,...
48.642857
498
0.85022
39357b7e58019e991fc5c14cf637abf7ee6d5ca6
12,694
asm
Assembly
source/command/key.asm
mega65dev/rom-assembler
1670a56a8246dcdcc18e83b345d577eba686cf32
[ "MIT" ]
null
null
null
source/command/key.asm
mega65dev/rom-assembler
1670a56a8246dcdcc18e83b345d577eba686cf32
[ "MIT" ]
null
null
null
source/command/key.asm
mega65dev/rom-assembler
1670a56a8246dcdcc18e83b345d577eba686cf32
[ "MIT" ]
null
null
null
; ******************************************************************************************** ; ******************************************************************************************** ; ; Name : key.asm ; Purpose : .. ; Created : 15th Nov 1991 ; Updated : 4th Jan 2021 ; Authors : Fred Bowen ; ; *****...
45.992754
111
0.312746
690239aa1b18313c4d857f2580ec0edb7c5a6460
477
asm
Assembly
programs/oeis/095/A095394.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/095/A095394.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/095/A095394.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A095394: a(n) = Floor[n^((n)/(n+1))], integer part of n^x where x = n/(n+1) < 1. ; 1,1,2,3,3,4,5,6,7,8,9,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,61,62,63,64,65,66,67,68 mov $3,$0 add $0,4 mul $0,2...
20.73913
208
0.563941
562ae4571f99ef9e820d95252f55566158863033
401
asm
Assembly
programs/oeis/077/A077876.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/077/A077876.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/077/A077876.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A077876: Expansion of (1-x)^(-1)/(1-x+2*x^2). ; 1,2,1,-2,-3,2,9,6,-11,-22,1,46,45,-46,-135,-42,229,314,-143,-770,-483,1058,2025,-90,-4139,-3958,4321,12238,3597,-20878,-28071,13686,69829,42458,-97199,-182114,12285,376514,351945,-401082,-1104971,-302806,1907137,2512750,-1301523,-6327022 mov $1,2 mov $2,6 lpb $0 sub ...
25.0625
239
0.630923
f8b8faf2beaffedb676b8bf11ee6bd8aa1e6030a
628
asm
Assembly
programs/oeis/158/A158372.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/158/A158372.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/158/A158372.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A158372: 576n - 1. ; 575,1151,1727,2303,2879,3455,4031,4607,5183,5759,6335,6911,7487,8063,8639,9215,9791,10367,10943,11519,12095,12671,13247,13823,14399,14975,15551,16127,16703,17279,17855,18431,19007,19583,20159,20735,21311,21887,22463,23039,23615,24191,24767,25343,25919,26495,27071,27647,28223,28799,29375,29951,305...
104.666667
583
0.808917
bd332448bdbee7275aa042cb9274104a8dc975cb
291
asm
Assembly
programs/oeis/155/A155605.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/155/A155605.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/155/A155605.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A155605: 7^n+3^n-1. ; 1,9,57,369,2481,17049,118377,825729,5771361,40373289,282534297,1977503889,13841818641,96890604729,678227855817,4747575858849,33232973616321,232630643127369,1628413985330937,11398896347634609 mov $1,3 pow $1,$0 mov $2,7 pow $2,$0 add $1,$2 div $1,8 mul $1,8 add $1,1
24.25
192
0.766323
21e87c030225cc8fc6f99e6d4a525311e915cc10
390
asm
Assembly
Course Material/Codes/Lab5_1.asm
1813355042-Kamal/CSE331L-Section-1-Fall20-NSU
0d6ce50d466ef5cc2f8a1ee35eea1b5be673bcb6
[ "MIT" ]
3
2020-11-01T02:49:29.000Z
2020-11-29T18:20:42.000Z
Course Material/Codes/Lab5_1.asm
1813355042-Kamal/CSE331L-Section-1-Fall20-NSU
0d6ce50d466ef5cc2f8a1ee35eea1b5be673bcb6
[ "MIT" ]
2
2020-12-06T02:46:02.000Z
2020-12-06T05:28:42.000Z
Course Material/Codes/Lab5_1.asm
1813355042-Kamal/CSE331L-Section-1-Fall20-NSU
0d6ce50d466ef5cc2f8a1ee35eea1b5be673bcb6
[ "MIT" ]
29
2020-11-01T03:46:08.000Z
2020-11-22T05:11:32.000Z
.MODEL SMALL .STACK 100H .DATA PROMPT DB "Upper-case letter from A to Z are-$" .CODE MAIN PROC MOV AX, @DATA MOV DS, AX LEA DX, PROMPT MOV AH, 9 INT 21H MOV CX, 26 MOV AH, 2 MOV DL, 65 @LOOP: INT 21H INC DL DEC CX JNZ @LOOP ...
8.863636
47
0.471795
def5055383a491447eb803a67c2f4ab714bed1b4
388
asm
Assembly
oeis/049/A049070.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/049/A049070.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/049/A049070.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A049070: a(n) = (n+1)^2*binomial(2*n+2,n-1)/2. ; Submitted by Jamie Morken(s4) ; 0,2,27,224,1500,8910,49049,256256,1288872,6298500,30093910,141210432,652860520,2981331990,13472983125,60343756800,268187306640,1183875281820,5194996380090,22676052360000,98513956031400,426171522716940,1836562780483002 add $0,1 mov $1,$0...
27.714286
219
0.747423
bf85a439f19bd0cf0157e486592b296f49ff671f
61
asm
Assembly
tests/data/labels/projects/sjasmplus/sld_zx128/subfolder/sub1.asm
jacobly0/DeZog
cabeec9b873362cc78802ee7d205eb8757b71758
[ "MIT" ]
93
2020-01-18T15:29:16.000Z
2022-03-13T09:03:58.000Z
tests/data/labels/projects/sjasmplus/sld_zx128/subfolder/sub1.asm
jacobly0/DeZog
cabeec9b873362cc78802ee7d205eb8757b71758
[ "MIT" ]
54
2020-02-08T20:31:47.000Z
2022-03-31T15:46:25.000Z
tests/data/labels/projects/sjasmplus/sld_zx128/subfolder/sub1.asm
jacobly0/DeZog
cabeec9b873362cc78802ee7d205eb8757b71758
[ "MIT" ]
18
2020-03-13T13:38:24.000Z
2022-03-23T23:58:03.000Z
MMU 3, 7, 0xC000 sub_b7: ld a,7 ld a,7 ret
7.625
20
0.459016
de3cd1266c8344c2e1805dd4659a3a2688abf221
6,496
asm
Assembly
Transynther/x86/_processed/NC/_ht_zr_/i7-7700_9_0xca_notsx.log_961_1951.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NC/_ht_zr_/i7-7700_9_0xca_notsx.log_961_1951.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NC/_ht_zr_/i7-7700_9_0xca_notsx.log_961_1951.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r14 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0xaa65, %rsi lea addresses_D_ht+0x1bfc0, %rdi nop nop cmp $14464, %r8 mov $53, %rcx rep movsw nop sub %rax, %rax lea addresses_D_ht+0x13dfd, %rsi lea addresses_A_ht+0x143cd, %rd...
38.898204
2,882
0.657174
af0815550f77dea552331fa50276556081fb6c9e
459
asm
Assembly
oeis/052/A052974.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/052/A052974.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/052/A052974.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A052974: Expansion of (1 - 2x)/(1 - 2x - x^2 - x^3 + 2x^4). ; Submitted by Christian Krause ; 1,0,1,3,5,14,34,81,200,487,1187,2899,7072,17256,42109,102748,250717,611779,1492805,3642610,8888370,21688597,52922564,129136875,315108171,768898587,1876197092,4578127192,11171133721,27258794552,66514455833 add $0,1 mov $2,1 ...
22.95
206
0.660131
3f3e40523e775d5e850b41673032e3051533e122
6,434
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_1575.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_1575.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_1575.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 %r8 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0xf368, %r10 nop nop nop sub $32489, %rdx mov (%r10), %r8d nop nop nop nop add %r10, %r10 lea addresses_WT_ht+0x48d8, %rbx nop nop nop and $1942, %rcx mov (%rbx), %rdi nop nop n...
38.526946
2,999
0.6576
d0528bd1d9f5a868ba38855fbbdfbf9ffbfe75e7
715
asm
Assembly
oeis/102/A102721.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/102/A102721.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/102/A102721.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A102721: Numbers n such that 11*n + 13 is prime. ; Submitted by Jamie Morken(s4) ; 0,6,8,14,18,20,24,36,38,48,50,54,60,66,68,74,84,96,98,108,110,116,126,134,138,140,144,146,150,168,176,180,188,200,216,218,224,228,230,236,246,248,258,264,266,276,284,288,290,300,314,318,320,330,336,344,350,354,356,374,386,398,404,410,4...
31.086957
379
0.668531
cc3e0d1d03e548227bc15c545e83f678b38bceab
401
asm
Assembly
testPrograms/develop/test.asm
i582/simple-typescript-compiler
e41e97880fc36c7f2c93dd9063f42a509791034d
[ "MIT" ]
2
2020-02-24T10:45:47.000Z
2020-03-15T14:48:58.000Z
testPrograms/develop/test.asm
i582/simple-typescript-compiler
e41e97880fc36c7f2c93dd9063f42a509791034d
[ "MIT" ]
null
null
null
testPrograms/develop/test.asm
i582/simple-typescript-compiler
e41e97880fc36c7f2c93dd9063f42a509791034d
[ "MIT" ]
null
null
null
.586 .model flat, stdcall include <\masm32\include\msvcrt.inc> include <\masm32\include\kernel32.inc> includelib <\masm32\lib\msvcrt.lib> includelib <\masm32\lib\kernel32.lib> data segment div_operand_1 dd 0 div_operand_2 dd 0 print_format db "%d ", 0 data ends text segment __start: enter 0, 0 ...
10.552632
38
0.685786
5ee77584474c6a0a9dc79c3e6111b238be461b64
159
asm
Assembly
zeropage.asm
SvenMichaelKlose/libultimem
6fbbff4b6abfa8da0c4177793d2df0caa44dc229
[ "MIT" ]
null
null
null
zeropage.asm
SvenMichaelKlose/libultimem
6fbbff4b6abfa8da0c4177793d2df0caa44dc229
[ "MIT" ]
null
null
null
zeropage.asm
SvenMichaelKlose/libultimem
6fbbff4b6abfa8da0c4177793d2df0caa44dc229
[ "MIT" ]
null
null
null
.exportzp s, d, c, tmp .zeropage s: .res 4 ; Source register. d: .res 4 ; Destination register. c: .res 2 ; Size register. tmp: .res 1
15.9
39
0.559748
3f316555fe7b1f274ff55617e59cd39e08cd9835
792
asm
Assembly
oeis/092/A092178.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/092/A092178.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/092/A092178.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A092178: Primes congruent to 8 mod 13. ; Submitted by Jon Maiga ; 47,73,151,229,281,307,359,463,541,593,619,827,853,983,1009,1061,1087,1217,1321,1373,1399,1451,1607,1789,1867,1997,2153,2179,2309,2543,2621,2647,2699,2777,2803,3011,3037,3089,3167,3271,3323,3557,3583,3739,3947,4051,4129,4259,4337,4363,4441,4493,4519,459...
36
485
0.715909
205ddd42497d5a4fdfaaf309e7c11089d1323df2
394
asm
Assembly
examples/mix-c-asm/sources/mynum-8051.asm
JohnHau/cmake-tutorial
7ba24e39927fd506ba65fe5387e0b847906030cd
[ "MIT" ]
null
null
null
examples/mix-c-asm/sources/mynum-8051.asm
JohnHau/cmake-tutorial
7ba24e39927fd506ba65fe5387e0b847906030cd
[ "MIT" ]
null
null
null
examples/mix-c-asm/sources/mynum-8051.asm
JohnHau/cmake-tutorial
7ba24e39927fd506ba65fe5387e0b847906030cd
[ "MIT" ]
null
null
null
RSEG DOVERLAY:DATA:NOROOT(0) RSEG IOVERLAY:IDATA:NOROOT(0) RSEG ISTACK:IDATA:NOROOT(0) RSEG PSTACK:XDATA:NOROOT(0) RSEG XSTACK:XDATA:NOROOT(0) PUBLIC mynum RSEG NEAR_CODE:CODE:NOROOT(0) mynum: CODE ; Saved register size: 0 ; Auto size: 0 ...
20.736842
37
0.525381
dade6cf2038771911fae1ff2c4787ff9c36a0661
1,449
asm
Assembly
programs/oeis/038/A038754.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/038/A038754.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/038/A038754.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A038754: a(2n) = 3^n, a(2n+1) = 2*3^n. ; 1,2,3,6,9,18,27,54,81,162,243,486,729,1458,2187,4374,6561,13122,19683,39366,59049,118098,177147,354294,531441,1062882,1594323,3188646,4782969,9565938,14348907,28697814,43046721,86093442,129140163,258280326,387420489,774840978,1162261467,2324522934,3486784401,6973568802,1046035...
120.75
1,335
0.890269
c2798de122031ebafb5ef59986e7006e50470a9e
638
asm
Assembly
07/MemoryAccess/StaticTest/StaticTest.asm
tthero/tthero-nand2tetris
fa65c171c3cf4d74dbee765dfd44de1d8dcef6a0
[ "Unlicense" ]
null
null
null
07/MemoryAccess/StaticTest/StaticTest.asm
tthero/tthero-nand2tetris
fa65c171c3cf4d74dbee765dfd44de1d8dcef6a0
[ "Unlicense" ]
null
null
null
07/MemoryAccess/StaticTest/StaticTest.asm
tthero/tthero-nand2tetris
fa65c171c3cf4d74dbee765dfd44de1d8dcef6a0
[ "Unlicense" ]
null
null
null
// push constant 111 @111 D=A @SP A=M M=D @SP M=M+1 // push constant 333 @333 D=A @SP A=M M=D @SP M=M+1 // push constant 888 @888 D=A @SP A=M M=D @SP M=M+1 // pop static 8 @16 D=M @8 D=A+D @SP A=M M=D @SP AM=M-1 D=M @SP A=M+1 A=M M=D // pop static 3 @16 D=M @3 D=A+D @SP A=M M=D @SP AM=M-1 D=M @SP A=M+1 A=M M=D // pop s...
5.547826
20
0.54232
62f5ed6eba35bfac4f7b42a976cd74cdde7d3b5c
644
asm
Assembly
programs/oeis/003/A003663.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/003/A003663.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/003/A003663.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A003663: a(n) is smallest number != a(j)+a(k), j<k. ; 1,6,8,10,12,15,17,19,24,26,28,33,35,37,42,44,46,51,53,55,60,62,64,69,71,73,78,80,82,87,89,91,96,98,100,105,107,109,114,116,118,123,125,127,132,134,136,141,143,145,150,152,154,159,161,163,168,170,172,177,179,181,186,188,190,195,197,199,204,206,208,213,215,217,222,2...
23.851852
364
0.625776
2f8889b9bb04c8b21e073ae59efc8c30e0e7d970
405
asm
Assembly
libsrc/_DEVELOPMENT/target/rc2014/driver/terminal/rc_01_output_siob/rc_01_output_siob_iterm_msg_bs.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/target/rc2014/driver/terminal/rc_01_output_siob/rc_01_output_siob_iterm_msg_bs.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/target/rc2014/driver/terminal/rc_01_output_siob/rc_01_output_siob_iterm_msg_bs.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
INCLUDE "config_private.inc" SECTION code_driver SECTION code_driver_terminal_output PUBLIC rc_01_output_siob_iterm_msg_bs EXTERN rc_01_output_siob_oterm_msg_putc_send rc_01_output_siob_iterm_msg_bs: ; backspace ; can use: af, bc, de, hl, ix call backspace ld c,' ' call rc_01_output_siob_oterm_ms...
16.875
45
0.802469
d6cc430cf166337f32af1bae205f7f16ea8789be
1,948
asm
Assembly
programs/oeis/081/A081441.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/081/A081441.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/081/A081441.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A081441: a(n) = (2*n^3 - n^2 - n + 2)/2. ; 1,1,6,22,55,111,196,316,477,685,946,1266,1651,2107,2640,3256,3961,4761,5662,6670,7791,9031,10396,11892,13525,15301,17226,19306,21547,23955,26536,29296,32241,35377,38710,42246,45991,49951,54132,58540,63181,68061,73186,78562,84195,90091,96256,102696,109417,116425,123726,131326...
194.8
1,846
0.842916
af9e9036f15149d86e37c3f30ddeb1fae80afb04
3,430
asm
Assembly
src/routines/loader.asm
zdimension/Cesium
bf202346ba89a6b413c0d19dd9faa4be89fc85a3
[ "BSD-3-Clause" ]
5
2018-08-22T13:26:03.000Z
2021-08-29T14:31:32.000Z
src/routines/loader.asm
zdimension/Cesium
bf202346ba89a6b413c0d19dd9faa4be89fc85a3
[ "BSD-3-Clause" ]
null
null
null
src/routines/loader.asm
zdimension/Cesium
bf202346ba89a6b413c0d19dd9faa4be89fc85a3
[ "BSD-3-Clause" ]
null
null
null
flashRAMCode equ ramcode .assume adl = 1 cesiumLoader_Start: relocate(cursorImage) cesiumLoader: call DeletePgrmFromUserMem ; now we deleted ourselves. cool. ld a,(AutoBackup) or a,a call nz,SaveRAMState ; Save ram state if option is set call _boot_ClearVRAM ld a,$2D ld (mpLcdCtrl),a ; Set L...
21.572327
158
0.703207
da2b2cde8d6d21a6fb64d12d30fee180ecda425a
4,386
asm
Assembly
sys/kernel/src/arch/x86/asm.asm
neri/toe
8442f82bce551ce27b23b24336a285f25d422e98
[ "MIT" ]
null
null
null
sys/kernel/src/arch/x86/asm.asm
neri/toe
8442f82bce551ce27b23b24336a285f25d422e98
[ "MIT" ]
null
null
null
sys/kernel/src/arch/x86/asm.asm
neri/toe
8442f82bce551ce27b23b24336a285f25d422e98
[ "MIT" ]
null
null
null
;; TOE ASM PART [bits 32] [section .text] ; fn asm_sch_switch_context(current: *mut u8, next: *mut u8); %define CTX_SP 0x10 %define CTX_BP 0x14 %define CTX_BX 0x18 %define CTX_SI 0x1C %define CTX_DI 0x20 %define CTX_TSS_SP0 0x24 %define CTX_USER_CS 0x60 %defin...
15.776978
109
0.611491
51e6d8aaec7fab564469a033f99af743c538f551
8,618
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_868.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_868.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_868.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 %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x1ae71, %rbp nop nop nop nop add $4054, %rcx mov $0x6162636465666768, %r9 movq %r9, %xmm0 vmovups %ymm0, (%rbp) nop cmp %r12, %r12 lea addresses_normal_ht+0x13871, %r9 nop nop...
32.156716
2,999
0.655953
c40e0e46f97c9a81040160df12e87c54a32c13bd
695,609
asm
Assembly
kernel.asm
farshben/OS
e7e10d30574012abb71d7581db6d3bb4c48db02d
[ "MIT-0" ]
null
null
null
kernel.asm
farshben/OS
e7e10d30574012abb71d7581db6d3bb4c48db02d
[ "MIT-0" ]
null
null
null
kernel.asm
farshben/OS
e7e10d30574012abb71d7581db6d3bb4c48db02d
[ "MIT-0" ]
null
null
null
kernel: file format elf32-i386 Disassembly of section .text: 80100000 <multiboot_header>: 80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh 80100006: 00 00 add %al,(%eax) 80100008: fe 4f 52 decb 0x52(%edi) 8010000b: e4 0f in $0xf,%al 8010000c <entry>:...
38.159471
140
0.540779
a5dcb252370c6cea0a2b80c395a4717ea0ee7b35
473
asm
Assembly
oeis/035/A035028.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/035/A035028.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/035/A035028.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A035028: First differences of A002002. ; Submitted by Jon Maiga ; 4,20,104,552,2972,16172,88720,489872,2719028,15157188,84799992,475894200,2677788492,15102309468,85347160608,483183316512,2739851422820,15558315261812,88462135512712,503569008273992,2869602773253884,16368396446913420,93449566652932784 add $0,1 mov $1,1...
21.5
235
0.727273
e90bc157bf88ab65f8d10225f807cfb78b3e31fa
4,133
asm
Assembly
u7-common/patch-printRuneTextOnSpellbook.asm
JohnGlassmyer/UltimaHacks
f9a114e00c4a1edf1ac7792b465feff2c9b88ced
[ "MIT" ]
68
2018-03-04T22:34:22.000Z
2022-03-10T15:18:32.000Z
u7-common/patch-printRuneTextOnSpellbook.asm
ptrie/UltimaHacks
2c3557a86d94ad8b54b26bc395b9aed1604f8be1
[ "MIT" ]
19
2018-11-20T04:06:49.000Z
2021-11-08T16:37:10.000Z
u7-common/patch-printRuneTextOnSpellbook.asm
ptrie/UltimaHacks
2c3557a86d94ad8b54b26bc395b9aed1604f8be1
[ "MIT" ]
4
2020-09-01T17:57:36.000Z
2022-01-04T20:51:11.000Z
; Draws the spellbook displaying spell runes in place of reagent counts on ; spells if the Shift key is held. startPatch EXE_LENGTH, printRuneTextOnSpellbook %macro SpellbookDialog_update_stackFrame 0 %assign .arg_pn_viewport 0x08 %assign .var_x -0x08 %assign .var_y -0x0A ...
24.02907
74
0.700702
8ea0398437ec46b9b4240a6b0e5c551c6b053684
819
asm
Assembly
Examples/ch06/ArryScan.asm
satadriver/LiunuxOS_t
c6222f04b6e734002cbf1aa366eb62e51f0ebbe5
[ "Apache-2.0" ]
null
null
null
Examples/ch06/ArryScan.asm
satadriver/LiunuxOS_t
c6222f04b6e734002cbf1aa366eb62e51f0ebbe5
[ "Apache-2.0" ]
null
null
null
Examples/ch06/ArryScan.asm
satadriver/LiunuxOS_t
c6222f04b6e734002cbf1aa366eb62e51f0ebbe5
[ "Apache-2.0" ]
null
null
null
TITLE Scanning an Array (ArryScan.asm) ; Scan an array for the first nonzero value. ; Last update: 2/16/02 INCLUDE Irvine32.inc .data intArray SWORD 0,0,0,0,1,20,35,-12,66,4,0 ;intArray SWORD 1,0,0,0 ;intArray SWORD 0,0,0,0 ;intArray SWORD 0,0,0,1 noneMsg BYTE "A non-zero value was not found",0 .co...
21
56
0.688645
3e2b121c1d238018f2c6971b64ea6a469783930a
60
asm
Assembly
gfx/pokemon/remoraid/anim_idle.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
28
2019-11-08T07:19:00.000Z
2021-12-20T10:17:54.000Z
gfx/pokemon/remoraid/anim_idle.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
13
2020-01-11T17:00:40.000Z
2021-09-14T01:27:38.000Z
gfx/pokemon/remoraid/anim_idle.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
22
2020-05-28T17:31:38.000Z
2022-03-07T20:49:35.000Z
setrepeat 2 frame 1, 07 frame 4, 07 dorepeat 1 endanim
10
12
0.7