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
5ddcf6e7d0a0f6a2967de5f1dcfc477a1c53651d
2,579
asm
Assembly
source/video.asm
wilsonpilon/msx-menu
21110eb2e93ed033ed95d80f282b869c09f3714b
[ "Apache-2.0" ]
null
null
null
source/video.asm
wilsonpilon/msx-menu
21110eb2e93ed033ed95d80f282b869c09f3714b
[ "Apache-2.0" ]
null
null
null
source/video.asm
wilsonpilon/msx-menu
21110eb2e93ed033ed95d80f282b869c09f3714b
[ "Apache-2.0" ]
null
null
null
;***** Imprime uma string armazenada em RAM (STR) na SCREEN IV *************** ; POSY e passada via BASIC representa a linha da impressao ; POSX tambem passada via BASIC representa a coluna ; WIDT e calculada em outras rotinas que usam NPRIN e tem o tamanho da string PTSTR: call CALCXY ;Posicio...
38.492537
79
0.459868
e8e21cb5b850d0caf30d375015132e66c32c693c
407
asm
Assembly
programs/oeis/194/A194050.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/194/A194050.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/194/A194050.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A194050: Natural fractal sequence of A014739. ; 1,1,2,3,1,2,3,4,1,2,3,4,5,6,7,1,2,3,4,5,6,7,8,9,10,11,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,1,2,3,4,5,6,7,8,9,10 mov $3,$0 add $0,1 mov $2,$3 lpb $0,1 mov $1,$0 add $0,$2 sub $0,...
21.421053
199
0.555283
fe95ee854d377f502f50a27f95dbbccfd4023192
749
asm
Assembly
learn-assembly/asm101/asm101-16.asm
hailehong95/Practice-Coding
729acdd596f15657b717975bfa54da1e39114f8a
[ "MIT" ]
null
null
null
learn-assembly/asm101/asm101-16.asm
hailehong95/Practice-Coding
729acdd596f15657b717975bfa54da1e39114f8a
[ "MIT" ]
null
null
null
learn-assembly/asm101/asm101-16.asm
hailehong95/Practice-Coding
729acdd596f15657b717975bfa54da1e39114f8a
[ "MIT" ]
null
null
null
; asm101-16: Chuoi nghich dao .model small .stack 100h .data str1 db 'Nhap chuoi: $' str2 db 13,10,'Chuoi nghich dao: $' .code main proc mov ax, @data mov ds, ax mov ah, 09h lea dx, str1 int 21h mov cx,0 input: mov ah, 1 int 21h cmp al,13 ; 13 = enter j...
15.604167
64
0.512684
a4bbcf1e6f723390ac8d601f636d0faab7d6fcc5
4,994
asm
Assembly
MASM/12date.asm
iamvk1437k/mpmc
3640b29f29b3ffa78747b13b2ca8ac77c49695eb
[ "MIT" ]
1
2022-01-01T11:27:43.000Z
2022-01-01T11:27:43.000Z
MASM/12date.asm
iamvk1437k/mpmc
3640b29f29b3ffa78747b13b2ca8ac77c49695eb
[ "MIT" ]
null
null
null
MASM/12date.asm
iamvk1437k/mpmc
3640b29f29b3ffa78747b13b2ca8ac77c49695eb
[ "MIT" ]
null
null
null
ASSUME CS:CODE, DS:DATA ; code and data segment initialization DATA SEGMENT YY DW ? MM DB ? D DB ? TDAY DW SUN,MON,TUE,WED,THU,FRI,SAT ; define the days of the week SUN DB'SUNDAY,$' MON DB'MONDAY,$' TUE DB'TUESDAY,$' WED DB'WEDNESDAY,$' THU DB'THURS...
53.698925
99
0.31678
ac5acb39521ff6b6fb96ff3397d744b4a4d4337a
15,486
asm
Assembly
base/ntos/ke/amd64/intsup.asm
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
base/ntos/ke/amd64/intsup.asm
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
base/ntos/ke/amd64/intsup.asm
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
TITLE "Interrupt Object Support Routines" ;++ ; ; Copyright (c) 2000 Microsoft Corporation ; ; Module Name: ; ; intsup.asm ; ; Abstract: ; ; This module implements the platform specific code to support interrupt ; objects. It contains the interrupt dispatch code and the code template ; ...
32.195426
89
0.603577
4abd1b7c9bd476de59ba89440a8a434a23573247
10,876
asm
Assembly
Test/ZXSP/template_z80.asm
sparks-c16/zasm
c03a31c6d7ec2c2aecb1d6dc6b4ced73b7cf00c4
[ "BSD-2-Clause" ]
43
2019-12-06T23:46:40.000Z
2022-03-31T15:34:44.000Z
Test/ZXSP/template_z80.asm
sparks-c16/zasm
c03a31c6d7ec2c2aecb1d6dc6b4ced73b7cf00c4
[ "BSD-2-Clause" ]
21
2019-12-27T01:49:08.000Z
2022-03-31T15:38:42.000Z
Test/ZXSP/template_z80.asm
sparks-c16/zasm
c03a31c6d7ec2c2aecb1d6dc6b4ced73b7cf00c4
[ "BSD-2-Clause" ]
13
2019-12-27T00:38:46.000Z
2022-03-15T08:34:51.000Z
#!/usr/local/bin/zasm -o original/ ; ================================================================ ; Example file for target 'z80' ; Emulator snapshot format for Sinclair computers ; Copyright (c) Günter Woigk 1994 - 2015 ; mailto:kio@little-bat.de ; =======================================================...
35.083871
127
0.574476
5e6847166d666d42cae513f0413cdccbd3098ea8
591
asm
Assembly
programs/oeis/131/A131579.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/131/A131579.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/131/A131579.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A131579: Period 10: repeat 0, 3, 6, 9, 2, 5, 8, 1, 4, 7. ; 0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7,0,3,6,9,2,5,8,1,4,7...
84.428571
501
0.502538
3f8d100331e7d7f270ca71aafaeaa819bb8f9021
1,028
asm
Assembly
programs/oeis/091/A091818.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/091/A091818.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/091/A091818.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A091818: Sum of even proper divisors of 2n. Sum of the even divisors of 2n that are less than 2n. ; 0,2,2,6,2,12,2,14,8,16,2,32,2,20,18,30,2,42,2,44,22,28,2,72,12,32,26,56,2,84,2,62,30,40,26,110,2,44,34,100,2,108,2,80,66,52,2,152,16,86,42,92,2,132,34,128,46,64,2,216,2,68,82,126,38,156,2,116,54,148,2,246,2,80,98,128,3...
146.857143
820
0.688716
ed1ce5d75de22be9c34fe4c3fba95f42fb0fd35a
372
asm
Assembly
programs/oeis/188/A188861.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/188/A188861.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/188/A188861.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A188861: Number of n X 4 binary arrays without the pattern 0 1 diagonally, vertically or antidiagonally. ; 16,41,68,95,122,149,176,203,230,257,284,311,338,365,392,419,446,473,500,527,554,581,608,635,662,689,716,743,770,797,824,851,878,905,932,959,986,1013,1040,1067,1094,1121,1148,1175,1202,1229,1256,1283,1310,1337,13...
41.333333
215
0.739247
5bf5b4092a9ab4ee61972c1bbe2801989bbe0794
491
asm
Assembly
programs/oeis/008/A008344.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/008/A008344.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/008/A008344.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A008344: a(1)=0; thereafter a(n+1) = a(n) - n if a(n) >= n otherwise a(n+1) = a(n) + n. ; 0,1,3,0,4,9,3,10,2,11,1,12,0,13,27,12,28,11,29,10,30,9,31,8,32,7,33,6,34,5,35,4,36,3,37,2,38,1,39,0,40,81,39,82,38,83,37,84,36,85,35,86,34,87,33,88,32,89,31,90,30,91,29,92,28,93,27,94,26,95,25,96,24,97,23,98,22,99,21,100,20,101,...
35.071429
292
0.594705
03d1cc1737eaf20f11926e4f751172348bce0b5e
6,636
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1154.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_notsx.log_21829_1154.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_notsx.log_21829_1154.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 %r8 push %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x1ad26, %r9 dec %r8 mov $0x6162636465666768, %rcx movq %rcx, %xmm4 and $0xffffffffffffffc0, %r9 movntdq %xmm4, (%r9) nop nop nop nop nop xor %r10, %r10 lea addresses_D_ht+0...
38.137931
2,999
0.662749
21607cc0f49b4392884bfa7c3737bea8b183b5ea
2,341
asm
Assembly
scripts/silvercave.asm
adhi-thirumala/EvoYellow
6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c
[ "Unlicense" ]
null
null
null
scripts/silvercave.asm
adhi-thirumala/EvoYellow
6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c
[ "Unlicense" ]
null
null
null
scripts/silvercave.asm
adhi-thirumala/EvoYellow
6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c
[ "Unlicense" ]
null
null
null
SilverCaveScript: call EnableAutoTextBoxDrawing ld hl, SilverCaveTrainerHeaders ld de, SilverCaveScriptPointers ld a, [wRoute4CurScript] call ExecuteCurMapScriptInTable ld [wRoute4CurScript], a ret ;this is all pretty much just terrible junk coding. >_> however, I did eventually get it to work. SilverCaveScript...
27.541176
231
0.840666
85d78b01b0645008c3374c7a58f832737233cfe0
489
asm
Assembly
libsrc/msx/gen_get_vdp_reg.asm
andydansby/z88dk-mk2
51c15f1387293809c496f5eaf7b196f8a0e9b66b
[ "ClArtistic" ]
1
2020-09-15T08:35:49.000Z
2020-09-15T08:35:49.000Z
libsrc/msx/gen_get_vdp_reg.asm
andydansby/z88dk-MK2
51c15f1387293809c496f5eaf7b196f8a0e9b66b
[ "ClArtistic" ]
null
null
null
libsrc/msx/gen_get_vdp_reg.asm
andydansby/z88dk-MK2
51c15f1387293809c496f5eaf7b196f8a0e9b66b
[ "ClArtistic" ]
null
null
null
; ; z88dk library: Generic VDP support code ; ; void get_vdp_reg(int reg) ; ;============================================================== ; Gets the value of a VDP register ;============================================================== ; ; $Id: gen_get_vdp_reg.asm,v 1.1 2010/06/30 13:21:38 stefano Exp $ ; XLIB get...
15.774194
66
0.478528
a65e95db573502510d7c5f38da77ea7270d018f2
676
asm
Assembly
ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.asm
nicklela/edk2
dfafa8e45382939fb5dc78e9d37b97b500a43613
[ "Python-2.0", "Zlib", "BSD-2-Clause", "MIT", "BSD-2-Clause-Patent", "BSD-3-Clause" ]
3,012
2015-01-01T19:58:18.000Z
2022-03-31T22:07:14.000Z
ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.asm
nicklela/edk2
dfafa8e45382939fb5dc78e9d37b97b500a43613
[ "Python-2.0", "Zlib", "BSD-2-Clause", "MIT", "BSD-2-Clause-Patent", "BSD-3-Clause" ]
1,199
2015-01-12T08:00:01.000Z
2022-03-29T18:14:42.000Z
ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibV7Support.asm
nicklela/edk2
dfafa8e45382939fb5dc78e9d37b97b500a43613
[ "Python-2.0", "Zlib", "BSD-2-Clause", "MIT", "BSD-2-Clause-Patent", "BSD-3-Clause" ]
1,850
2015-01-01T11:28:12.000Z
2022-03-31T18:10:59.000Z
//------------------------------------------------------------------------------ // // Copyright (c) 2016, Linaro Limited. All rights reserved. // // SPDX-License-Identifier: BSD-2-Clause-Patent // //------------------------------------------------------------------------------ INCLUDE AsmMacroExport.i...
25.037037
81
0.39497
03aa245ba0c12d94871a875329d6734604815696
1,404
asm
Assembly
5e05/5e05.asm
sqph/td-micl
fbd130a6a741a38945c80bd8a1c2cfa7105754bd
[ "Unlicense" ]
null
null
null
5e05/5e05.asm
sqph/td-micl
fbd130a6a741a38945c80bd8a1c2cfa7105754bd
[ "Unlicense" ]
null
null
null
5e05/5e05.asm
sqph/td-micl
fbd130a6a741a38945c80bd8a1c2cfa7105754bd
[ "Unlicense" ]
null
null
null
; 5e05.asm global main section .rodata fichier DB `brol`, 0 ; nom du fichier section .bss descr RESD 1 ; descripteur de fichier section .text main: mov eax, 5 ; numéro de service: 5 (open) mov ebx, fichier ; adresse du nom du fichier mov ecx, 0q ...
22.645161
69
0.518519
de64296619d77f89fc7f1cba4887ddbb0410436f
363
asm
Assembly
programs/oeis/025/A025683.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/025/A025683.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/025/A025683.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A025683: Exponent of 9 (value of i) in n-th number of form 9^i*10^j. ; 0,1,0,2,1,0,3,2,1,0,4,3,2,1,0,5,4,3,2,1,0,6,5,4,3,2,1,0,7,6,5,4,3,2,1,0,8,7,6,5,4,3,2,1,0,9,8,7,6,5,4,3,2,1,0,10,9,8,7,6,5,4,3,2,1,0,11,10,9,8,7,6,5,4,3,2,1,0,12,11,10,9,8,7,6,5,4,3,2,1,0,13,12,11,10,9,8,7,6,5 lpb $0 sub $0,1 add $2,1 mov $...
30.25
211
0.53719
7243eaf453c50a2eca14ef3fb81bf929e0c5dfee
782
asm
Assembly
data/pokemon/base_stats/vulpix.asm
AtmaBuster/pokeplat-gen2
fa83b2e75575949b8f72cb2c48f7a1042e97f70f
[ "blessing" ]
6
2021-06-19T06:41:19.000Z
2022-02-15T17:12:33.000Z
data/pokemon/base_stats/vulpix.asm
AtmaBuster/pokeplat-gen2-old
01e42c55db5408d72d89133dc84a46c699d849ad
[ "blessing" ]
null
null
null
data/pokemon/base_stats/vulpix.asm
AtmaBuster/pokeplat-gen2-old
01e42c55db5408d72d89133dc84a46c699d849ad
[ "blessing" ]
2
2021-08-11T19:47:07.000Z
2022-01-01T07:07:56.000Z
db 0 ; species ID placeholder db 38, 41, 40, 65, 50, 65 ; hp atk def spd sat sdf db FIRE, FIRE ; type db 190 ; catch rate db 63 ; base exp db BURNT_BERRY, BURNT_BERRY ; items db GENDER_F75 ; gender ratio db 20 ; step cycles to hatch INCBIN "gfx/pokemon/vulpix/front.dimensions" db GROWTH_MEDIUM...
39.1
356
0.740409
ecea0f59fdd56aa20bd3dc7e58dbf149527865a9
5,700
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_44.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_44.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_44.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 %rax push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0x5f2e, %rcx nop nop nop nop nop xor $15291, %r12 mov $0x6162636465666768, %r10 movq %r10, (%rcx) nop nop nop nop cmp %r15, %r15 lea addresses_D_ht+0x8a2e, %rax nop ...
39.583333
2,999
0.659298
a4371a235b8e5cb7b1e330e4b6f711b95558717f
399
asm
Assembly
solutions/67 - Decimal Doubler/size-20_speed-219.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
45
2018-09-05T04:56:59.000Z
2021-11-22T08:57:26.000Z
solutions/67 - Decimal Doubler/size-20_speed-219.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
36
2018-09-01T11:34:26.000Z
2021-05-19T23:20:49.000Z
solutions/67 - Decimal Doubler/size-20_speed-219.asm
michaelgundlach/7billionhumans
02c6f3963364362c95cb516cbc6ef1efc073bb2e
[ "MIT" ]
36
2018-09-01T07:44:19.000Z
2021-09-10T19:07:35.000Z
-- 7 Billion Humans (2053) -- -- 67: Decimal Doubler -- -- Author: Tiza59 -- Size: 20 -- Speed: 219 step s if s != button: pickup c mem3 = set myitem step s a: drop step se step nw mem3 = calc mem3 x 2 if e >= 5: mem3 = calc mem3 + 1 else: mem3 = calc mem3 + 0 endif if mem3 >= 10: mem3 = calc mem3 -...
10.783784
29
0.591479
944fb081a66ff0f62dc78e4dd6766e453d86d894
969
asm
Assembly
programs/oeis/060/A060548.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/060/A060548.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/060/A060548.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A060548: a(n) is the number of D3-symmetric patterns that may be formed with a top-down equilateral triangular arrangement of closely packed black and white cells satisfying the local matching rule of Pascal's triangle modulo 2, where n is the number of cells in each edge of the arrangement. The matching rule is such...
64.6
446
0.752322
d363cf5ecb143a054f750539a15fe9c16f66706a
5,810
asm
Assembly
micro_kernel/interrupts.asm
bursaiskender/BaseLevelComputerKernel
fa76bafe48ea8780f5dec6165d0454ef13892d50
[ "MIT" ]
1
2020-07-17T12:37:54.000Z
2020-07-17T12:37:54.000Z
micro_kernel/interrupts.asm
bursaiskender/BaseLevelComputerKernel
fa76bafe48ea8780f5dec6165d0454ef13892d50
[ "MIT" ]
null
null
null
micro_kernel/interrupts.asm
bursaiskender/BaseLevelComputerKernel
fa76bafe48ea8780f5dec6165d0454ef13892d50
[ "MIT" ]
1
2019-02-13T10:39:32.000Z
2019-02-13T10:39:32.000Z
STRING isr0_msg, "Divide by Zero exception " STRING isr1_msg, "Debug Exception " STRING isr2_msg, "Non Maskale Interrupt Exception " STRING isr3_msg, "Breakpoint Exception " STRING isr4_msg, "Into Detected Overflow Exception " STRING isr5_msg, "Out Of Bounds Exception " STRING isr6_msg, "Invalid Opcode Exception " STRI...
25.26087
62
0.706713
19c01600dba0f8ec9f1a509f7fd2aadd5183629c
605
asm
Assembly
programs/oeis/069/A069306.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/069/A069306.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/069/A069306.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A069306: Number of 2 X n binary arrays with a path of adjacent 1's from upper left corner to anywhere in right hand column. ; 5,12,29,70,169,408,985,2378,5741,13860,33461,80782,195025,470832,1136689,2744210,6625109,15994428,38613965,93222358,225058681,543339720,1311738121,3166815962,7645370045,18457556052,44560482149...
46.538462
387
0.801653
26ca51fd7e179b8ed4bdbf76e5f1dfba7753cc74
494
asm
Assembly
oeis/344/A344006.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/344/A344006.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/344/A344006.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A344006: a(n) = m*(m+1)/n, where A344005(n) is the smallest number m such that n divides m*(m+1). ; Submitted by Jon Maiga ; 2,1,2,3,4,1,6,7,8,2,10,1,12,3,2,15,16,4,18,1,2,5,22,3,24,6,26,2,28,1,30,31,4,8,6,2,36,9,4,6,40,1,42,3,2,11,46,5,48,12,6,3,52,13,2,1,6,14,58,4,60,15,12,63,10,2,66,4,8,3,70,1,72,18,8,5,6,2,78,3,8...
44.909091
247
0.619433
6562be72146c292c8bce40111de5c5ea1f7f527d
1,175
asm
Assembly
src/coreclr/vm/arm/thunktemplates.asm
berkansasmaz/runtime
7626c5d8be527d6735eddcdc7c97423211d8f9e9
[ "MIT" ]
8
2022-02-19T15:57:07.000Z
2022-03-10T06:00:02.000Z
src/coreclr/vm/arm/thunktemplates.asm
berkansasmaz/runtime
7626c5d8be527d6735eddcdc7c97423211d8f9e9
[ "MIT" ]
6
2020-03-20T18:33:48.000Z
2022-01-13T13:20:05.000Z
src/coreclr/vm/arm/thunktemplates.asm
berkansasmaz/runtime
7626c5d8be527d6735eddcdc7c97423211d8f9e9
[ "MIT" ]
2
2022-02-24T06:39:57.000Z
2022-03-18T16:03:11.000Z
; Licensed to the .NET Foundation under one or more agreements. ; The .NET Foundation licenses this file to you under the MIT license. #include "ksarm.h" #include "asmconstants.h" #include "asmmacros.h" TEXTAREA ALIGN 4 #define DATA_SLOT(stub, field) stub##Code + PAGE_SIZE + stub##Data__##field LE...
26.704545
79
0.699574
6841a311df93bb67eb72f3d88cf8b1441b58dbbf
27,852
asm
Assembly
Snake.asm
Zoomelectrico/Snake
3f654abe3aeb6381240d80b0fcd185d805a26722
[ "MIT" ]
null
null
null
Snake.asm
Zoomelectrico/Snake
3f654abe3aeb6381240d80b0fcd185d805a26722
[ "MIT" ]
null
null
null
Snake.asm
Zoomelectrico/Snake
3f654abe3aeb6381240d80b0fcd185d805a26722
[ "MIT" ]
2
2018-06-29T12:42:21.000Z
2020-08-10T07:22:34.000Z
################################################# # 1er Proyecto de Organización del Computador # # Snake Version 2.0 # # Germano Rojas & José Quevedo # # Teclas para usar: # # w (Arriba/up) # # ...
38.310867
166
0.650259
59a7cc85dfa5102ac47852c8b5ae7acb50fc6105
144
asm
Assembly
other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/mak.lzh/mak/maped3.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/mak.lzh/mak/maped3.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/mak.lzh/mak/maped3.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
Name: maped3.asm Type: file Size: 46302 Last-Modified: '1992-02-13T07:48:24Z' SHA-1: E711F6B7A5B3C9083B37828E025254FBF1DF6600 Description: null
20.571429
47
0.8125
62b1f10c8c4e80d3bce7dfa740ff7b98dae7939c
619
asm
Assembly
programs/oeis/194/A194391.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/194/A194391.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/194/A194391.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A194391: Numbers m such that Sum_{k=1..m} (<1/2 + k*r> - <k*r>) > 0, where r=sqrt(12) and < > denotes fractional part. ; 1,3,5,7,9,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,31,33,35,37,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,59,61,63,65,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,85,87,89,91,9...
20.633333
200
0.531502
14a9d70a398d490163f22c5d4a0b2af26f224be0
643
asm
Assembly
oeis/325/A325805.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/325/A325805.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/325/A325805.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A325805: "Sloping octal numbers": write numbers in octal under each other (right-justified), read diagonals in upward direction, convert to decimal. ; Submitted by Jamie Morken(w4) ; 0,1,2,3,4,5,6,15,8,9,10,11,12,13,14,23,16,17,18,19,20,21,22,31,24,25,26,27,28,29,30,39,32,33,34,35,36,37,38,47,40,41,42,43,44,45,46,55,...
30.619048
294
0.642302
202a4e37a284603c262e36b160791bc51863205e
1,181
asm
Assembly
_build/dispatcher/jmp_ippsGFpECInitStd192r1_ffc1d72c.asm
zyktrcn/ippcp
b0bbe9bbb750a7cf4af5914dd8e6776a8d544466
[ "Apache-2.0" ]
1
2021-10-04T10:21:54.000Z
2021-10-04T10:21:54.000Z
_build/dispatcher/jmp_ippsGFpECInitStd192r1_ffc1d72c.asm
zyktrcn/ippcp
b0bbe9bbb750a7cf4af5914dd8e6776a8d544466
[ "Apache-2.0" ]
null
null
null
_build/dispatcher/jmp_ippsGFpECInitStd192r1_ffc1d72c.asm
zyktrcn/ippcp
b0bbe9bbb750a7cf4af5914dd8e6776a8d544466
[ "Apache-2.0" ]
null
null
null
extern m7_ippsGFpECInitStd192r1:function extern n8_ippsGFpECInitStd192r1:function extern y8_ippsGFpECInitStd192r1:function extern e9_ippsGFpECInitStd192r1:function extern l9_ippsGFpECInitStd192r1:function extern n0_ippsGFpECInitStd192r1:function extern k0_ippsGFpECInitStd192r1:function extern ippcpJumpIndexForMergedLib...
30.282051
111
0.813717
b7e61d914d74979459be8b965bd2fa7929b1044b
500
asm
Assembly
oeis/274/A274657.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/274/A274657.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/274/A274657.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A274657: Numerators of the coefficients of z^n/n! for the expansion of hypergeometric([1/2,1/2],[1];z). ; Submitted by Christian Krause ; 1,1,9,75,3675,59535,2401245,57972915,13043905875,418854310875,30241281245175,1212400457192925,213786613951685775,10278202593831046875,1070401384414690453125,60013837619516978071875...
55.555556
238
0.81
185402c4f5994e5fc69c77f7ebce768dbbf6bdcf
291
asm
Assembly
programs/oeis/040/A040551.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/040/A040551.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/040/A040551.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A040551: Continued fraction for sqrt(575). ; 23,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46 mov $1,23 lpb $0,1 mod $0,2 mul $1,2 lpe gcd $1,$0
29.1
189
0.604811
5aaf72982834469b863c68547ff5bf0eb00ae431
4,261
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1887.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_0x48.log_21829_1887.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_0x48.log_21829_1887.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 %rax push %rbx push %rsi lea addresses_WT_ht+0xf0d2, %rax xor $38173, %rsi mov (%rax), %r12d nop nop nop nop dec %rbx pop %rsi pop %rbx pop %rax pop %r12 ret .global s_faulty_load s_faulty_load: push %r11 push %r15 push %rax push %rbx push %rcx push %rdi ...
58.369863
2,999
0.660643
c59771dcc8470f2cd9c78ea615a72bd0a8214760
381
asm
Assembly
programs/oeis/117/A117673.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/117/A117673.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/117/A117673.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A117673: a(n) is the least k such that k*2*prime(n) + 1 is prime. ; 1,1,1,2,1,2,3,5,1,1,5,2,1,2,3,1,6,3,2,4,2,2,1,1,2,3,3,3,5,1,2,1,3,2,4,3,5,2,7,1,1,3,1,2,9,2,5,6,12,6,1,1,3,1,3,3,4,3,2,1,3,1,2,3,3,13,3,5,3,5,7,1,3,2,6,6,12,3,4,2,1,5,1,2,5,1,4,15,3,6,3,4,2,1,2,3,1,16,5,9 seq $0,6093 ; a(n) = prime(n) - 1. seq $0,34...
47.625
206
0.55643
f48062175cbfd2ea2a261554ccbff11970fe4c5e
796
asm
Assembly
krakensvm/ia32e/segment_intrins.asm
fengjixuchui/krakensvm-mg
91652779af063bbc50b895796d4071dcccdca235
[ "MIT" ]
45
2022-03-13T07:17:19.000Z
2022-03-30T02:01:46.000Z
krakensvm/ia32e/segment_intrins.asm
fengjixuchui/krakensvm-mg
91652779af063bbc50b895796d4071dcccdca235
[ "MIT" ]
null
null
null
krakensvm/ia32e/segment_intrins.asm
fengjixuchui/krakensvm-mg
91652779af063bbc50b895796d4071dcccdca235
[ "MIT" ]
11
2022-03-13T07:27:16.000Z
2022-03-16T00:55:21.000Z
; got this Semantics idea from Daax & XEROXZ ; XEROXZ - (https://githacks.org/_xeroxz/bluepill/-/blob/master/segment_intrin.asm) ; Daax - 7 Days virtualization .code __reades proc mov rax, es ret __reades endp __readcs proc mov rax, cs ret __readcs endp __readss proc mov rax, ss ret __readss...
12.246154
83
0.678392
f4d84b2b7c70ad871fc17c94217d60055093eb26
2,235
asm
Assembly
recitations/DetailedStack.asm
lauras5/cs270_comporg
f00048e66a8ba52de3887200e73fb8a10b72227e
[ "MIT" ]
null
null
null
recitations/DetailedStack.asm
lauras5/cs270_comporg
f00048e66a8ba52de3887200e73fb8a10b72227e
[ "MIT" ]
null
null
null
recitations/DetailedStack.asm
lauras5/cs270_comporg
f00048e66a8ba52de3887200e73fb8a10b72227e
[ "MIT" ]
null
null
null
; STEPS: ; 1. CALLER: push arguments (last to first) ; 2. CALLER: invoke subroutine (JSR) ; 3. CALLEE: allocate return address, push R7 & R5 ; 4. CALLEE: set up new R5, allocate space for local var ; 5. CALLEE: execute function code ; 6. CALLEE: store result into return value slot ; 7. CALLEE: pop local vars, pop R5 & ...
45.612245
80
0.447427
08d75240d133897916455c26d661fd93a8a47cb2
494
asm
Assembly
oeis/028/A028026.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/028/A028026.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/028/A028026.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A028026: Expansion of 1/((1-3x)(1-4x)(1-5x)(1-7x)). ; Submitted by Christian Krause ; 1,19,230,2270,19971,163569,1278040,9670540,71557541,521211119,3754036650,26822296410,190541788711,1347984742669,9507913700060,66919750327880,470277075161481,3301201972518219,23154999755212270,162319024049252950,1137407684744763851 ...
27.444444
232
0.716599
33a092280b523a80b75d050a3ec55e94173fdc54
792
asm
Assembly
programs/oeis/221/A221543.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/221/A221543.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/221/A221543.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A221543: Number of 0..n arrays of length 5 with each element differing from at least one neighbor by something other than 1, starting with 0. ; 3,22,103,303,716,1455,2658,4487,7128,10791,15710,22143,30372,40703,53466,69015,87728,110007,136278,166991,202620,243663,290642,344103,404616,472775,549198,634527,729428,83459...
14.666667
200
0.637626
acfd76fe6b44c1d1452f90450710f3ecd2d03fac
269
asm
Assembly
kernal/src/kernal_loader.asm
arpitchakladar/bazl
bd871d06b440b03bf05b153a3705ca3321b081f3
[ "MIT" ]
null
null
null
kernal/src/kernal_loader.asm
arpitchakladar/bazl
bd871d06b440b03bf05b153a3705ca3321b081f3
[ "MIT" ]
null
null
null
kernal/src/kernal_loader.asm
arpitchakladar/bazl
bd871d06b440b03bf05b153a3705ca3321b081f3
[ "MIT" ]
null
null
null
bits 16 extern BOOT_DRIVE_NUMBER extern main extern sys_call section .text global _start _start: mov [BOOT_DRIVE_NUMBER], dl ; initialize system calls cli mov bx, sys_call mov [0x0088], bx mov [0x008a], cs sti ; start call main jmp $
11.695652
29
0.67658
e4f5eb5ab6d64737c69002ba00f1531e078e9494
638
asm
Assembly
programs/oeis/238/A238535.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/238/A238535.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/238/A238535.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A238535: Sum of divisors d of n where d > sqrt(n). ; 0,2,3,4,5,9,7,12,9,15,11,22,13,21,20,24,17,33,19,35,28,33,23,50,25,39,36,49,29,61,31,56,44,51,42,75,37,57,52,78,41,84,43,77,69,69,47,108,49,85,68,91,53,108,66,106,76,87,59,147,61,93,93,112,78,132,67,119,92,129,71,171,73,111,115,133,88,156,79,166,108,123,83,201,102,...
24.538462
324
0.568966
b101748024d27fa03157b69cd4d2b1bf83bfce7b
236
asm
Assembly
Assignment-1/Assignment1/supporting_files/program_templates/descending_template.asm
abhiisshheekk/CS311-COA-Lab
c5effdc22bd7c1c35ba44fe3a6f8998c8189554e
[ "MIT" ]
1
2021-05-16T14:13:12.000Z
2021-05-16T14:13:12.000Z
Assignment-1/Assignment1/supporting_files/program_templates/descending_template.asm
abhiisshheekk/CS311-COA-Lab
c5effdc22bd7c1c35ba44fe3a6f8998c8189554e
[ "MIT" ]
null
null
null
Assignment-1/Assignment1/supporting_files/program_templates/descending_template.asm
abhiisshheekk/CS311-COA-Lab
c5effdc22bd7c1c35ba44fe3a6f8998c8189554e
[ "MIT" ]
1
2022-03-19T14:56:20.000Z
2022-03-19T14:56:20.000Z
.data a: 70 80 40 20 10 30 50 60 n: 8 .text // your code here // you may change the numbers in the array, and the size of the array; but allow the name of the array to remain as 'a', and size as 'n' // remove these comments!
13.882353
136
0.661017
c630b12c7a367698a227185b21205f3970e718ae
350
asm
Assembly
programs/oeis/080/A080846.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/080/A080846.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/080/A080846.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A080846: Fixed point of the morphism 0->010, 1->011, starting from a(1) = 0. ; 0,1,0,0,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,1,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0 add $0,1 lpb $0 lpb $0 dif $0,3 ...
29.166667
201
0.534286
39d3bc8f1857343597aafedd54f221ba2c9a0104
12,329
asm
Assembly
Appl/Calendar/Misc/miscPrint.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Appl/Calendar/Misc/miscPrint.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Appl/Calendar/Misc/miscPrint.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: Calendar/Misc - Printing Mechanisms FILE: miscPrint.asm AUTHOR: Don Reeves, February 25, 1990 ROUTINES: Name Description ---- ----------- ...
25.420619
79
0.632087
955806cd74852c6ddb29306f534545b693cb2dff
4,563
asm
Assembly
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_1649_878.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_notsx.log_1649_878.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_notsx.log_1649_878.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 %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x12424, %rsi lea addresses_A_ht+0x950c, %rdi nop nop nop nop nop and %rbp, %rbp mov $110, %rcx rep movsl nop nop add $33257, %r11 lea addresses_WT_ht+0x110dc, %r14 nop nop nop nop nop and %rbp, %...
50.7
2,999
0.66053
3f8be49d134b62898c1b39f7c1681629a338adaf
944
asm
Assembly
programs/oeis/156/A156865.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/156/A156865.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/156/A156865.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A156865: 729000n - 612180. ; 116820,845820,1574820,2303820,3032820,3761820,4490820,5219820,5948820,6677820,7406820,8135820,8864820,9593820,10322820,11051820,11780820,12509820,13238820,13967820,14696820,15425820,16154820,16883820,17612820,18341820,19070820,19799820,20528820,21257820,21986820,22715820,23444820,24173820...
157.333333
885
0.872881
143f83a544c278f58f5ac076f846d319b48d382a
310
asm
Assembly
libsrc/_DEVELOPMENT/adt/p_forward_list/c/sccz80/p_forward_list_remove.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
8
2017-01-18T12:02:17.000Z
2021-06-12T09:40:28.000Z
libsrc/_DEVELOPMENT/adt/p_forward_list/c/sccz80/p_forward_list_remove.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
1
2017-03-06T07:41:56.000Z
2017-03-06T07:41:56.000Z
libsrc/_DEVELOPMENT/adt/p_forward_list/c/sccz80/p_forward_list_remove.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
3
2017-03-07T03:19:40.000Z
2021-09-15T17:59:19.000Z
; void *p_forward_list_remove(p_forward_list_t *list, void *item) SECTION code_clib SECTION code_adt_p_forward_list PUBLIC p_forward_list_remove EXTERN asm_p_forward_list_remove p_forward_list_remove: pop af pop bc pop hl push hl push bc push af jp asm_p_forward_list_remove
14.090909
65
0.767742
936ed1deb86d315e88fbde247ac5c6fae4c56fe9
3,730
asm
Assembly
main/swos1617.asm
zlatkok/swospp
27a2d2061af2f46c59f2470b138c7170c45fe03b
[ "MIT" ]
12
2016-02-18T12:53:52.000Z
2022-02-09T11:07:23.000Z
main/swos1617.asm
zlatkok/swospp
27a2d2061af2f46c59f2470b138c7170c45fe03b
[ "MIT" ]
null
null
null
main/swos1617.asm
zlatkok/swospp
27a2d2061af2f46c59f2470b138c7170c45fe03b
[ "MIT" ]
null
null
null
; Implement SWOS 96/97 specific entry in main menu [list -] %include "swos.inc" %include "swsmenu.inc" [list +] section .data ; special entry for SWOS 96/97 swosAnniversaryEntry: dw 92 ; x dw 165 ; y dw 120 ; width dw 16 ; height dw 2 ; type 2 - positions db -1 ; left - nothin...
25.033557
94
0.645576
f7cc48886113025733931a7d6bfaa2fbb4089756
11,101
asm
Assembly
code/6502/tests/inp/kbtest.asm
visrealm/hbc-56
9c082946e247e79edc12867299b5b0fda3b6c873
[ "MIT" ]
65
2021-07-22T10:32:02.000Z
2022-03-30T04:42:45.000Z
code/6502/tests/inp/kbtest.asm
visrealm/hbc-56
9c082946e247e79edc12867299b5b0fda3b6c873
[ "MIT" ]
5
2022-03-29T20:23:57.000Z
2022-03-30T23:12:42.000Z
code/6502/tests/inp/kbtest.asm
visrealm/hbc-56
9c082946e247e79edc12867299b5b0fda3b6c873
[ "MIT" ]
4
2021-12-30T17:13:23.000Z
2022-03-05T09:07:22.000Z
; Troy's HBC-56 - Input test ; ; Copyright (c) 2021 Troy Schrapel ; ; This code is licensed under the MIT license ; ; https://github.com/visrealm/hbc-56 ; !src "hbc56kernel.inc" Y_OFFSET = 4 PRESSED_KEY_COUNT = HBC56_USER_ZP_START pressedTable = $1000 extPressedTable = $1100 hbc56Meta: +setHbc...
33.639394
380
0.452482
15ed5c8078ee425e2bb880460aa85ca154f108ff
201
asm
Assembly
libsrc/_DEVELOPMENT/arch/zx/misc/c/sdcc_iy/zx_cls_attr.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/arch/zx/misc/c/sdcc_iy/zx_cls_attr.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/arch/zx/misc/c/sdcc_iy/zx_cls_attr.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; void zx_cls_attr(uchar attr) SECTION code_clib SECTION code_arch PUBLIC _zx_cls_attr EXTERN asm_zx_cls_attr _zx_cls_attr: pop af pop hl push hl push af jp asm_zx_cls_attr
10.578947
30
0.726368
30818e00b2e61b3957148696ebc7b4d3f372f06c
11,520
asm
Assembly
libsrc/target/gb/gbdk/font.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
38
2021-06-18T12:56:15.000Z
2022-03-12T20:38:40.000Z
libsrc/target/gb/gbdk/font.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
2
2021-06-20T16:28:12.000Z
2021-11-17T21:33:56.000Z
libsrc/target/gb/gbdk/font.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
6
2021-06-18T18:18:36.000Z
2021-12-22T08:01:32.000Z
; font.ms ; ; Michael Hope, 1999 ; michaelh@earthling.net ; Distrubuted under the Artistic License - see www.opensource.org ; INCLUDE "target/gb/def/gb_globals.def" PUBLIC tmode_out PUBLIC tmode PUBLIC asm_setchar PUBLIC asm_font_load PUBLIC asm_font_set PUBLIC asm_load_z88dk_font ...
22.412451
84
0.544271
e5f0339f79d6f06c7330ea3d5a68e042cf6c3ec1
9,640
asm
Assembly
Driver/IFS/DOS/Common/msSFT.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Driver/IFS/DOS/Common/msSFT.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Driver/IFS/DOS/Common/msSFT.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: msSFT.asm AUTHOR: Adam de Boor, Mar 16, 1992 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Descri...
27.386364
81
0.55332
522f2694d45ae1c9975ed61ad5cac7f1eb52279a
432
asm
Assembly
programs/oeis/086/A086483.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/086/A086483.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/086/A086483.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A086483: Bit that is two places to left of least significant bit in binary expansion of n. ; 0,0,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,1,1,0,1,0,0,1,0,1,1,1,1,0,0,0,0,0,1,0,1,1,0,1,0,0,1,1,1,0,0,0,0,1,1,0,1,1,0,1,0,1,1,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,0,0,0,1,1,0,1,0,0,1,0,1,1,1,1,0,0,0,0,0,1,0,1,1 sub $0,1 mul $...
30.857143
211
0.56713
4b6b5b66cbfa3118785d07023ce90154dd67c9c9
1,740
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc_read.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc_read.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc_read.asm
Frodevan/z88dk
f27af9fe840ff995c63c80a73673ba7ee33fffac
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_fp_math16 PUBLIC cm16_sdcc_readr PUBLIC cm16_sdcc_read1 PUBLIC cm32_sdcc_read1 .cm16_sdcc_readr ; sdcc half_t primitive ; Read right sdcc half_t from the stack ; ; Convert from sdcc_half calling to f16 half_t. ; ; enter : stack = sdcc_half right, sdcc_half left, ret1, ret0 ;...
21.219512
79
0.516092
9c0446d254184cf31745a278904e0b9c6946bb79
7,626
asm
Assembly
basic/src/evaluate/string.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
13
2020-03-31T08:21:22.000Z
2021-07-28T20:03:29.000Z
basic/src/evaluate/string.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
37
2020-03-31T06:35:37.000Z
2020-09-17T08:56:48.000Z
basic/src/evaluate/string.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
5
2020-05-10T10:23:06.000Z
2022-01-14T02:21:02.000Z
; ***************************************************************************** ; ***************************************************************************** ; ; Name: string.asm ; Purpose: String concatenation / splitting functions ; Created: 5th March 2020 ; Reviewed: 17th March 2020 ; Author: Paul Robson (...
31.254098
89
0.498426
39a32704eee4c2b3698eb1d0ea377927a93bb3c9
829
asm
Assembly
oeis/142/A142678.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/142/A142678.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/142/A142678.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A142678: Primes congruent to 22 mod 57. ; Submitted by Jon Maiga ; 79,193,307,421,877,991,1447,1789,2017,2131,2473,3271,3499,3613,3727,4297,4639,5209,5323,5437,5779,6007,6121,6577,6691,7489,7603,7717,8059,8287,8629,8971,9199,9769,9883,10111,10453,10567,10909,11251,11593,11821,12049,12163,12277,12391,12619,13417,13759...
34.541667
499
0.728589
510fb0c8ee2dc673286463a151ee34b228c41f3c
39,400
asm
Assembly
money-run/money-run.asm
avik-das/gbdev
663f2675aab85953ce02c88bf16582b4fd85f81e
[ "BSD-3-Clause" ]
6
2016-03-30T04:40:26.000Z
2020-04-11T13:50:15.000Z
money-run/money-run.asm
avik-das/gbdev
663f2675aab85953ce02c88bf16582b4fd85f81e
[ "BSD-3-Clause" ]
null
null
null
money-run/money-run.asm
avik-das/gbdev
663f2675aab85953ce02c88bf16582b4fd85f81e
[ "BSD-3-Clause" ]
null
null
null
; money-run.asm - Avik Das ; ; A simple side-scroller, in which the character is asked to go from ; left to right, navigating over a series procedurally generated ; columns. ; ; The name is refers to the gameplay mechanic in which the player will ; be trying to collect money while avoiding getting stuck amongst the ; c...
27.571728
72
0.627868
a47529502f84a4a4caf9974a02f491fa4a01ab73
16,422
asm
Assembly
src/third_party/openh264/src/codec/common/x86/mb_copy.asm
ilya-fedin/tg_owt
d5c3d43b959c7e9e7d8004b9b7fdadd12ce7d589
[ "BSD-3-Clause" ]
3,565
2015-01-03T21:02:47.000Z
2022-03-30T13:37:29.000Z
src/third_party/openh264/src/codec/common/x86/mb_copy.asm
ilya-fedin/tg_owt
d5c3d43b959c7e9e7d8004b9b7fdadd12ce7d589
[ "BSD-3-Clause" ]
2,103
2015-01-02T21:32:34.000Z
2022-03-31T23:30:13.000Z
src/third_party/openh264/src/codec/common/x86/mb_copy.asm
ilya-fedin/tg_owt
d5c3d43b959c7e9e7d8004b9b7fdadd12ce7d589
[ "BSD-3-Clause" ]
1,319
2015-01-01T10:02:18.000Z
2022-03-28T15:31:20.000Z
;*! ;* \copy ;* Copyright (c) 2009-2013, Cisco Systems ;* All rights reserved. ;* ;* Redistribution and use in source and binary forms, with or without ;* modification, are permitted provided that the following conditions ;* are met: ;* ;* * Redistributions of source code must retain the abo...
26.659091
112
0.468335
abd6cd1b6147535d4b1e1a5bf0a62fcd4f81f061
471
asm
Assembly
oeis/318/A318456.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/318/A318456.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/318/A318456.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A318456: a(n) = n OR A001065(n), where OR is bitwise-or (A003986) and A001065 = sum of proper divisors. ; Submitted by Simon Strandgaard ; 1,3,3,7,5,6,7,15,13,10,11,28,13,14,15,31,17,23,19,22,31,30,23,60,31,26,31,28,29,62,31,63,47,54,47,55,37,54,55,58 mov $1,$0 seq $0,203 ; a(n) = sigma(n), the sum of the divisors o...
52.333333
114
0.670913
6a3226a60430869fef17ea28951e1b4d858bd38f
342
asm
Assembly
programs/oeis/174/A174048.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/174/A174048.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/174/A174048.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A174048: Prime(A173919(n)) ; 2,3,5,7,11,13,17,29,31,37,41,53,59,61,67,79,83,107,109,113,127,151,157,173,179,181,191,199,211,239,241,271,277,281,283,317,331,349,353,359,367,397,401,421,431,457,461,503,509,541,547,557,563,577,587,593,599 seq $0,93515 ; Numbers k such that either k or k-1 is a prime. sub $0,2 seq $0,40...
48.857143
208
0.701754
c4d8f21fd869f8f0f05fe755a8c95445eeca5d8f
789
asm
Assembly
oeis/227/A227665.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/227/A227665.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/227/A227665.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A227665: Number of lattice paths from {n}^3 to {0}^3 using steps that decrement one component by 1 such that for each point (p_1,p_2,p_3) we have abs(p_{i}-p_{i+1}) <= 1. ; Submitted by Jamie Morken(s4) ; 1,6,44,320,2328,16936,123208,896328,6520712,47437640,345104904,2510609608,18264477064,132872558664,966636864776,7...
49.3125
474
0.808619
b50d1e55dff2bbb2b470d11df245fe9d95fd5fc0
3,016
asm
Assembly
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_31_2128.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_31_2128.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_31_2128.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r13 push %r14 push %r15 push %rbp push %rbx push %rcx push %rdi // Store mov $0x6df, %rcx nop nop nop nop nop xor %rbx, %rbx mov $0x5152535455565758, %r15 movq %r15, %xmm7 movups %xmm7, (%rcx) nop nop nop nop inc %rcx // ...
18.05988
123
0.642905
b2683d959b368aa868aed37eccb9d2331328ec24
648
asm
Assembly
programs/oeis/057/A057211.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/057/A057211.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/057/A057211.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A057211: n-th run has length n. ; 1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,...
43.2
501
0.503086
0e46d44d3b4045e15345aa414fda582409bf2de2
556
asm
Assembly
programs/oeis/143/A143689.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/143/A143689.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/143/A143689.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A143689: a(n) = (3*n^2 - n + 2)/2. ; 1,2,6,13,23,36,52,71,93,118,146,177,211,248,288,331,377,426,478,533,591,652,716,783,853,926,1002,1081,1163,1248,1336,1427,1521,1618,1718,1821,1927,2036,2148,2263,2381,2502,2626,2753,2883,3016,3152,3291,3433,3578,3726,3877,4031,4188,4348,4511,4677,4846,5018,5193,5371,5552,5736,5923...
69.5
481
0.746403
a5641570cf6f0fab9a7d53ed75fa3cd3087ac49c
29,342
asm
Assembly
data/battle_anims/framesets.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
28
2019-11-08T07:19:00.000Z
2021-12-20T10:17:54.000Z
data/battle_anims/framesets.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
13
2020-01-11T17:00:40.000Z
2021-09-14T01:27:38.000Z
data/battle_anims/framesets.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
22
2020-05-28T17:31:38.000Z
2022-03-07T20:49:35.000Z
BattleAnimFrameData: ; entries correspond to BATTLEANIMFRAMESET_* constants dw .Frameset_00 ; BATTLEANIMFRAMESET_00 dw .Frameset_01 ; BATTLEANIMFRAMESET_01 dw .Frameset_02 ; BATTLEANIMFRAMESET_02 dw .Frameset_03 ; BATTLEANIMFRAMESET_03 dw .Frameset_04 ; BATTLEANIMFRAMESET_04 dw .Frameset_05 ; BATTLEANIMFRAMESET_0...
23.122143
54
0.806591
e69713776a121c378afaf6aeec68e7eaf6402dc6
522
asm
Assembly
programs/oeis/178/A178960.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/178/A178960.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/178/A178960.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A178960: Numbers n such that n! contains every digit at least once. ; 23,27,31,33,34,35,36,37,39,40,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101 mov $2,$0 mul $0,3 lpb $0 mov $4,...
20.076923
213
0.586207
f113ba22efbcb311b6266a20c855a34776694a50
90
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sccz80/dne.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sccz80/dne.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sccz80/dne.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
SECTION code_fp_math48 PUBLIC dne EXTERN cm48_sccz80p_dne defc dne = cm48_sccz80p_dne
10
27
0.833333
5cbebb8436402e84011fe180c768476edb2ced8a
1,882
asm
Assembly
MakeOsMyself/day01/hello_os.asm
tomoyuki-nakabayashi/MyPlayGround
58719b581d4479511b42dff1516afc3b3af286aa
[ "Apache-2.0" ]
null
null
null
MakeOsMyself/day01/hello_os.asm
tomoyuki-nakabayashi/MyPlayGround
58719b581d4479511b42dff1516afc3b3af286aa
[ "Apache-2.0" ]
13
2018-05-12T00:53:08.000Z
2018-11-22T03:00:16.000Z
MakeOsMyself/day01/hello_os.asm
tomoyuki-nakabayashi/MyPlayGround
58719b581d4479511b42dff1516afc3b3af286aa
[ "Apache-2.0" ]
null
null
null
; hello-os ; TAB=4 DB 0xeb, 0x4e, 0x90 DB "HELLOIPL" ; ブートセレクタの名前を自由にかいていよい (8Byte) DW 512 ; 1セクタの大きさ (512にしなければならない) DB 1 ; クラスタの大きさ (1セクタにしなければならない) DW 1 ; FATがどこから始まるか ...
38.408163
83
0.435175
aa0800026d12f2f4f4c575fee014d18cbcf2ec5b
198
asm
Assembly
examples/mix-c-asm/sources/mynum-stm8.asm
JohnHau/cmake-tutorial
7ba24e39927fd506ba65fe5387e0b847906030cd
[ "MIT" ]
14
2021-11-12T05:30:26.000Z
2022-03-24T07:03:18.000Z
examples/mix-c-asm/sources/mynum-stm8.asm
JohnHau/cmake-tutorial
7ba24e39927fd506ba65fe5387e0b847906030cd
[ "MIT" ]
3
2021-10-21T03:13:51.000Z
2022-02-14T15:45:25.000Z
examples/mix-c-asm/sources/mynum-stm8.asm
JohnHau/cmake-tutorial
7ba24e39927fd506ba65fe5387e0b847906030cd
[ "MIT" ]
4
2021-11-05T09:40:17.000Z
2022-03-27T12:11:02.000Z
PUBLIC mynum SECTION `.near_func.text`:CODE:REORDER:NOROOT(0) CODE mynum: LDW X, #0x2a RET SECTION VREGS:DATA:REORDER:NOROOT(0) END
15.230769
56
0.515152
fbcc5ea3ea4b62e98bf50dfa0cdb9fa360868c00
63,956
asm
Assembly
prog3.asm
mmend175/xv6_OS
9f446f254ef3bc85800c5daafbb92fb19011cb31
[ "MIT-0" ]
null
null
null
prog3.asm
mmend175/xv6_OS
9f446f254ef3bc85800c5daafbb92fb19011cb31
[ "MIT-0" ]
null
null
null
prog3.asm
mmend175/xv6_OS
9f446f254ef3bc85800c5daafbb92fb19011cb31
[ "MIT-0" ]
null
null
null
_prog3: file format elf32-i386 Disassembly of section .text: 00000000 <main>: struct lock_t *lock; extern struct lock_t *lock; int main (int argc , char * argv []) { 0: 8d 4c 24 04 lea 0x4(%esp),%ecx 4: 83 e4 f0 and $0xfffffff0,%esp 7: ff 71 fc pushl -0x4(%e...
32.764344
159
0.428263
d5ea714ca5a59dc8a07416b7e683a11e7aeb3486
225
asm
Assembly
libsrc/strings/strrchr.asm
andydansby/z88dk-mk2
51c15f1387293809c496f5eaf7b196f8a0e9b66b
[ "ClArtistic" ]
1
2020-09-15T08:35:49.000Z
2020-09-15T08:35:49.000Z
libsrc/strings/strrchr.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
null
null
null
libsrc/strings/strrchr.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
null
null
null
; CALLER linkage for function pointers XLIB strrchr LIB strrchr_callee XREF ASMDISP_STRRCHR_CALLEE .strrchr pop hl pop bc pop de push de push bc push hl jp strrchr_callee + ASMDISP_STRRCHR_CALLEE
12.5
45
0.728889
4a84bfcc319593de95d2f3c75ce53a552e16cd21
746
asm
Assembly
Computer Organization and Architecture/Assignments/calltest.asm
MekAkUActOR/Ugrad_Projects
bf74d37d4f86d4d43f971ba3712821d8a3ea9772
[ "MIT" ]
null
null
null
Computer Organization and Architecture/Assignments/calltest.asm
MekAkUActOR/Ugrad_Projects
bf74d37d4f86d4d43f971ba3712821d8a3ea9772
[ "MIT" ]
null
null
null
Computer Organization and Architecture/Assignments/calltest.asm
MekAkUActOR/Ugrad_Projects
bf74d37d4f86d4d43f971ba3712821d8a3ea9772
[ "MIT" ]
null
null
null
;an x86 assembly language program: call a function data_seg segment C DW 0H ends stack_seg segment ST DB 100DUP(0) TOP EQU 100 ends code_seg segment assume cs:code_seg, ds:data_seg, ss:stack_seg start: MOV AX, data_seg MOV DS, AX MOV AX, stack_seg MOV SS, AX MO...
15.541667
51
0.510724
8962793815545972e3555365922a8f12b7248c50
2,894
asm
Assembly
src/third_party/red_tamarin_stable/tamarin-cental/platform/win32/win64setjmp.asm
michaelpdu/flash_feature_extraction
29226a4c0e81240fd5c53fd9c80b0f6b0f5a8f95
[ "Apache-2.0" ]
1
2018-11-25T01:05:03.000Z
2018-11-25T01:05:03.000Z
avmplus/platform/win32/win64setjmp.asm
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
avmplus/platform/win32/win64setjmp.asm
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2019-04-12T04:18:27.000Z
2019-04-12T04:18:27.000Z
; This Source Code Form is subject to the terms of the Mozilla Public ; License, v. 2.0. If a copy of the MPL was not distributed with this ; file, You can obtain one at http://mozilla.org/MPL/2.0/. PUBLIC longjmp64 PUBLIC _setjmp3 PUBLIC modInternal .data? .code _setjmp3 : ; proc jmp_buf : qword arg : qword ; R...
26.309091
69
0.566344
ec1fcb508596bc4dd060ad5543c6e0224b32662b
145
asm
Assembly
src/src/c/borlandc/dpmi32/parsfnm.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
7
2022-01-20T08:27:54.000Z
2022-03-17T10:15:31.000Z
src/src/c/borlandc/dpmi32/parsfnm.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
null
null
null
src/src/c/borlandc/dpmi32/parsfnm.asm
amindlost/wdosx
1e256d22c1547e7b1f1ccd23e400f5b81b8bd013
[ "Unlicense" ]
null
null
null
.386 .model flat,C PUBLIC parsfnm .code ; FCB functions are plain silly, I don't care parsfnm proc near sub eax,eax ret parsfnm endp end
9.0625
45
0.724138
8936c6ee4669258bb3c1d677a7482bdf17216159
297
asm
Assembly
laborator/lab-04/5-min/min.asm
Matei-Iordache/IOCLA-labs
ef82c212c68b2cee0f792cf356ea42fc9422e466
[ "MIT" ]
null
null
null
laborator/lab-04/5-min/min.asm
Matei-Iordache/IOCLA-labs
ef82c212c68b2cee0f792cf356ea42fc9422e466
[ "MIT" ]
null
null
null
laborator/lab-04/5-min/min.asm
Matei-Iordache/IOCLA-labs
ef82c212c68b2cee0f792cf356ea42fc9422e466
[ "MIT" ]
null
null
null
%include "../io.mac" section .text global main extern printf main: ;cele doua numere se gasesc in eax si ebx ; TODO: aflati minimul mov eax, 4 mov ebx, 1 cmp eax, ebx jl min xchg eax, ebx min: PRINTF32 `%d\n\x0`, eax ; afiseaza minimul ret
12.913043
46
0.579125
f5c3f88d81b32d170da5aa2a450ac335cea97f1e
568,005
asm
Assembly
kernel/kernel.asm
noakrams/OS-assignment1
fd87b500b2e47ee94db540c4ce241e55b6dc34b6
[ "MIT-0" ]
null
null
null
kernel/kernel.asm
noakrams/OS-assignment1
fd87b500b2e47ee94db540c4ce241e55b6dc34b6
[ "MIT-0" ]
null
null
null
kernel/kernel.asm
noakrams/OS-assignment1
fd87b500b2e47ee94db540c4ce241e55b6dc34b6
[ "MIT-0" ]
null
null
null
kernel/kernel: file format elf64-littleriscv Disassembly of section .text: 0000000080000000 <_entry>: 80000000: 00009117 auipc sp,0x9 80000004: 18010113 addi sp,sp,384 # 80009180 <stack0> 80000008: 6505 lui a0,0x1 8000000a: f14025f3 csrr a1,mhartid ...
42.083796
105
0.518761
6e771e3fdc03b9ee15f08bf8d9959a9eef3d8b2a
1,372
asm
Assembly
Laburi/Lab4/8-divide/divide.asm
DanBrezeanu/IOCLA
1a22cc2949afc72818289f47288e32004f633fd1
[ "MIT" ]
2
2019-11-18T15:56:21.000Z
2020-01-18T01:22:37.000Z
Laburi/Lab4/8-divide/divide.asm
zatbogdan99/IOCLA
3d499ad18624f571e6c49ff891649a05ac9908e4
[ "MIT" ]
null
null
null
Laburi/Lab4/8-divide/divide.asm
zatbogdan99/IOCLA
3d499ad18624f571e6c49ff891649a05ac9908e4
[ "MIT" ]
null
null
null
%include "io.inc" ; https://en.wikibooks.org/wiki/X86_Assembly/Arithmetic section .data string_quotient db "Quotient: ", 0 string_remainder db "Remainder: ", 0 dividend1 db 91 divisor1 db 27 dividend2 dd 67254 divisor2 dw 1349 dividend3 dq 690941487 divisor3 dd 87621 section .text glo...
19.323944
66
0.650875
fa8b12e0c0e374e94aa0e3109325d39bd9c53016
483
asm
Assembly
programs/oeis/034/A034834.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/034/A034834.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/034/A034834.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A034834: One seventh of sept-factorial numbers. ; 1,14,294,8232,288120,12101040,592950960,33205253760,2091930986880,146435169081600,11275508019283200,947142673619788800,86189983299400780800,8446618363341276518400,886894928150834034432000,99332231952893411856384000,11820535602394316010909696000,14893874859016838173746...
37.153846
348
0.846791
e61d109ba6f17701578b15df78324491ead29566
9,727
asm
Assembly
src/arch/ia32/boot/floppy/boot.asm
zhengruohuang/toddler
0d7bde9aaf1fab8fed5f37973eeda9eaa100bd7a
[ "BSD-2-Clause" ]
80
2016-03-27T04:26:57.000Z
2021-12-24T08:27:55.000Z
src/arch/ia32/boot/floppy/boot.asm
zhengruohuang/toddler
0d7bde9aaf1fab8fed5f37973eeda9eaa100bd7a
[ "BSD-2-Clause" ]
1
2016-12-08T18:08:20.000Z
2018-02-23T02:51:35.000Z
src/arch/ia32/boot/floppy/boot.asm
zhengruohuang/toddler
0d7bde9aaf1fab8fed5f37973eeda9eaa100bd7a
[ "BSD-2-Clause" ]
11
2017-05-09T01:42:07.000Z
2020-02-13T13:56:36.000Z
;==============================================================================; ; ; ; Floppy Boot Sector for Toddler on IA32 ; ; ...
33.311644
94
0.338953
3336fdf50616c52664ba25c36aa936d9a19d3a1b
1,330
asm
Assembly
tp_01_07/bootld.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/bootld.asm
mjFer/TDIII-UTN-FRBA-TPS-2014
1b57b52fa8233c78297b0e5471d1c82e4c85451b
[ "MIT" ]
null
null
null
tp_01_10/bootld.asm
mjFer/TDIII-UTN-FRBA-TPS-2014
1b57b52fa8233c78297b0e5471d1c82e4c85451b
[ "MIT" ]
null
null
null
[ORG 0x7C00];BIOS loads bootsector here %ifndef KERNEL_MEMORY %error "Kernel start address not defined" ;kernel_memory must be 16 byte aligned %endif %ifndef KERNEL_SIZE_SECTORS %error "Kernel size (in sectors) not defined" %endif [BITS 16] ;for real mode; 16-bit instructions cli ...
33.25
86
0.536842
48129b573878b0e156796d9e9c9ebf9a2c67197a
5,175
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2877.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_2877.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_2877.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 %r8 push %rcx push %rdi push %rsi lea addresses_UC_ht+0xb03e, %rsi nop nop nop sub $13010, %r14 movb (%rsi), %r11b nop nop nop nop nop cmp %r12, %r12 lea addresses_UC_ht+0x1ab9e, %rsi lea addresses_WC_ht+0x983e, %rdi nop nop nop nop xor $28...
43.855932
2,999
0.662029
f4042925428a01434693d307f17d98b6fe6e89b4
360
asm
Assembly
libsrc/_DEVELOPMENT/math/float/am9511/lam32/c/sdcc/___mulsint2slong_callee.asm
dikdom/z88dk
40c55771062b0ea9bb2f0d5b73e2f754fc12b6b0
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/math/float/am9511/lam32/c/sdcc/___mulsint2slong_callee.asm
dikdom/z88dk
40c55771062b0ea9bb2f0d5b73e2f754fc12b6b0
[ "ClArtistic" ]
2
2022-03-20T22:17:35.000Z
2022-03-24T16:10:00.000Z
libsrc/_DEVELOPMENT/math/float/am9511/lam32/c/sdcc/___mulsint2slong_callee.asm
jorgegv/z88dk
127130cf11f9ff268ba53e308138b12d2b9be90a
[ "ClArtistic" ]
null
null
null
SECTION code_clib SECTION code_fp_am9511 PUBLIC ___mulsint2slong_callee EXTERN cam32_sdcc___mulsint2slong_callee ; multiply two signed 16-bit multiplicands into a 32-bit product ; ; enter : stack = multiplicand (16-bit), multiplicand (16-bit), ret ; ; exit : dehl = product defc ___mulsint2slong_cal...
22.5
70
0.775
5e38835a5ba7af324087ebc5de51a5ba335c61f7
648
asm
Assembly
programs/oeis/062/A062813.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/062/A062813.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/062/A062813.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A062813: a(n) = Sum_{i=0..n-1} i*n^i. ; 0,2,21,228,2930,44790,800667,16434824,381367044,9876543210,282458553905,8842413667692,300771807240918,11046255305880158,435659737878916215,18364758544493064720,824008854613343261192,39210261334551566857170,1972313422155189164466189,104567135734072022160664820,582798055084001756...
30.857143
425
0.773148
847ac0f7f08c456a34c90f3efdaaeb16705e78cc
758
asm
Assembly
oeis/089/A089591.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/089/A089591.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/089/A089591.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A089591: "Lazy binary" representation of n. Also called redundant binary representation of n. ; Submitted by Christian Krause ; 0,1,10,11,20,101,110,111,120,201,210,1011,1020,1101,1110,1111,1120,1201,1210,2011,2020,2101,2110,10111,10120,10201,10210,11011,11020,11101,11110,11111,11120,11201,11210,12011,12020,12101,121...
108.285714
501
0.811346
48990294b2a42d687455beeac86db8f06b68e07c
823
asm
Assembly
oeis/141/A141916.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/141/A141916.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/141/A141916.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A141916: Primes congruent to 12 mod 23. ; Submitted by Christian Krause ; 127,173,311,449,541,587,863,1093,1231,1277,1553,1783,2243,2381,2473,2657,2749,2887,3163,3209,3301,3347,3623,3761,3853,4129,4451,4957,5003,5233,5279,5417,5647,5693,5923,6199,6337,6521,6659,7027,7211,7349,7487,7717,7901,7993,8039,8269,8821,8867,9...
35.782609
496
0.727825
7684881b545729528f9be62ad3f5f3500106e938
188
asm
Assembly
PRG/objects/Unused13.asm
narfman0/smb3_pp1
38a58adafff67a403591e38875e9fae943a5fe76
[ "Unlicense" ]
null
null
null
PRG/objects/Unused13.asm
narfman0/smb3_pp1
38a58adafff67a403591e38875e9fae943a5fe76
[ "Unlicense" ]
null
null
null
PRG/objects/Unused13.asm
narfman0/smb3_pp1
38a58adafff67a403591e38875e9fae943a5fe76
[ "Unlicense" ]
null
null
null
.byte $01 ; Unknown purpose .byte OBJ_REDTROOPA, $1D, $16 .byte OBJ_FLYINGREDPARATROOPA, $29, $17 .byte OBJ_REDTROOPA, $37, $14 .byte OBJ_REDTROOPA, $38, $19 .byte $FF ; Terminator
23.5
40
0.691489
4b8c22e1fafa6475cb20cacda78f4de11f513e8a
3,369
asm
Assembly
programs/oeis/140/A140162.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/140/A140162.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/140/A140162.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A140162: a(1)=1, a(n) = a(n-1) + n^5 if n odd, a(n) = a(n-1) + n^0 if n is even. ; 1,2,245,246,3371,3372,20179,20180,79229,79230,240281,240282,611575,611576,1370951,1370952,2790809,2790810,5266909,5266910,9351011,9351012,15787355,15787356,25552981,25552982,39901889,39901890,60413039,60413040,89042191,89042192,1281775...
140.375
3,069
0.876521
a879226f41ab376efc2d4b25d75820854c5c13d0
3,497
asm
Assembly
boot/ipl.asm
uchan-nos/bitnos
fe8e08448db418e07417d0d31d72b801ebf3078b
[ "Zlib" ]
null
null
null
boot/ipl.asm
uchan-nos/bitnos
fe8e08448db418e07417d0d31d72b801ebf3078b
[ "Zlib" ]
null
null
null
boot/ipl.asm
uchan-nos/bitnos
fe8e08448db418e07417d0d31d72b801ebf3078b
[ "Zlib" ]
null
null
null
READ_SEC equ 0x7e00 TEMP equ 0x7e04 org 0x7c00 JMP entry DB 0x90 DB "BITNOS " ; ブートセクタの名前を自由に書いてよい(8バイト) DW 512 ; 1セクタの大きさ(512にしなければいけない) DB 1 ; クラスタの大きさ(1セクタにしなければいけない) DW 1 ; FATがどこから始まるか(普通は1セクタ目からにする) DB 2 ; FATの個数(2にしなければいけない) DW 224 ; ルートディレクトリ領域の大きさ(普通は224エントリにする) DW 2880 ; このド...
18.405263
53
0.637403
6601d89c860a3d04da7daccb97722858a7bc4946
304
asm
Assembly
programs/oeis/176/A176222.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/176/A176222.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/176/A176222.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A176222: a(n) = (n^2-3*n+1+(-1)^n)/2. ; 0,3,5,10,14,21,27,36,44,55,65,78,90,105,119,136,152,171,189,210,230,253,275,300,324,351,377,406,434,465,495,528,560,595,629,666,702,741,779,820,860,903,945,990,1034,1081,1127,1176,1224,1275,1325,1378,1430 mov $1,$0 mod $0,2 add $1,2 bin $1,2 add $1,$0 sub $1,1
30.4
206
0.654605
0246b1393b5b7cb314ff6bfc2b073cba8ac5d112
8,452
asm
Assembly
src/main.asm
nrkn/lo-a-rad-dragon
da66827ee8244955a8adb9576e023c4708c7f83d
[ "MIT" ]
null
null
null
src/main.asm
nrkn/lo-a-rad-dragon
da66827ee8244955a8adb9576e023c4708c7f83d
[ "MIT" ]
null
null
null
src/main.asm
nrkn/lo-a-rad-dragon
da66827ee8244955a8adb9576e023c4708c7f83d
[ "MIT" ]
null
null
null
processor 6502 include "vcs.h" include "macro.h" ; ------------------------------------------------------------------------------ ; Setup variables ; ------------------------------------------------------------------------------ seg.u Variables org $80 PlayerX byte PlayerY byte OldX ...
21.343434
80
0.401088
edaa2e1d04430e4925161541e8b7fb79d29f1984
1,923
asm
Assembly
Modul 3/latih15.asm
hyuwah/fu-praktikum-smd
a06fe109a42aa96e75f9a425a0905d6bfbfdfc7e
[ "MIT" ]
null
null
null
Modul 3/latih15.asm
hyuwah/fu-praktikum-smd
a06fe109a42aa96e75f9a425a0905d6bfbfdfc7e
[ "MIT" ]
null
null
null
Modul 3/latih15.asm
hyuwah/fu-praktikum-smd
a06fe109a42aa96e75f9a425a0905d6bfbfdfc7e
[ "MIT" ]
null
null
null
;-------------------------------------------------------------------- ; Praktikum SMD 2015 ; M.Wahyudin (140310120031) ; ; Name : LATIH15.ASM ; Desc : Menampilkan karakter A ke display matriks 7x5 ; Input : - ; Output: Display matriks 7x5 ;-------------------------------------------------------------------- cseg at ...
32.59322
69
0.5039
f47cfb1b9c920f7d5fdf95046d4b8794322cf644
219
asm
Assembly
libsrc/_DEVELOPMENT/adt/w_array/c/sccz80/w_array_at_callee.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
8
2017-01-18T12:02:17.000Z
2021-06-12T09:40:28.000Z
libsrc/_DEVELOPMENT/adt/w_array/c/sccz80/w_array_at_callee.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
1
2017-03-06T07:41:56.000Z
2017-03-06T07:41:56.000Z
libsrc/_DEVELOPMENT/adt/w_array/c/sccz80/w_array_at_callee.asm
teknoplop/z88dk
bb03fbfd6b2ab0f397a1358559089f9cd3706485
[ "ClArtistic" ]
3
2017-03-07T03:19:40.000Z
2021-09-15T17:59:19.000Z
; void *w_array_at(w_array_t *a, size_t idx) SECTION code_clib SECTION code_adt_w_array PUBLIC w_array_at_callee EXTERN asm_w_array_at w_array_at_callee: pop hl pop bc ex (sp),hl jp asm_w_array_at
12.166667
44
0.748858
e0a959b483aa9ff004eec802e808e7b2c99a42a2
3,938
asm
Assembly
serial_rom/src/main.asm
zer0x64/nsec2022-gband
7f831b1af83c7f766f139dfce14776b654ee8d9a
[ "Apache-2.0", "MIT" ]
null
null
null
serial_rom/src/main.asm
zer0x64/nsec2022-gband
7f831b1af83c7f766f139dfce14776b654ee8d9a
[ "Apache-2.0", "MIT" ]
null
null
null
serial_rom/src/main.asm
zer0x64/nsec2022-gband
7f831b1af83c7f766f139dfce14776b654ee8d9a
[ "Apache-2.0", "MIT" ]
null
null
null
; ------------------------------ ; This simple test rom will send a counter through ; the serial port ; ; One machine will be initiated as P1 and ; the other as P2 using Start and Select ; ; P1 will have an even counter, and P2 ; an odd counter ; ; The 2 players send each other their counter ; increment, and send back ...
14.639405
74
0.583037
faaeffe39f977b0356c6a81618af36759b2d00f0
60
asm
Assembly
gfx/pokemon/wigglytuff/anim_idle.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
28
2019-11-08T07:19:00.000Z
2021-12-20T10:17:54.000Z
gfx/pokemon/wigglytuff/anim_idle.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
13
2020-01-11T17:00:40.000Z
2021-09-14T01:27:38.000Z
gfx/pokemon/wigglytuff/anim_idle.asm
Dev727/ancientplatinum
8b212a1728cc32a95743e1538b9eaa0827d013a7
[ "blessing" ]
22
2020-05-28T17:31:38.000Z
2022-03-07T20:49:35.000Z
setrepeat 3 frame 0, 06 frame 3, 06 dorepeat 1 endanim
10
12
0.7
b4da887dfdcf0e78d06fe075c148281038b8d053
666
asm
Assembly
4/4-6.asm
userElaina/MicrocomputerLab
75ea8b0e6ad098df66db859a84c1cc8b27ef9c92
[ "MIT" ]
null
null
null
4/4-6.asm
userElaina/MicrocomputerLab
75ea8b0e6ad098df66db859a84c1cc8b27ef9c92
[ "MIT" ]
null
null
null
4/4-6.asm
userElaina/MicrocomputerLab
75ea8b0e6ad098df66db859a84c1cc8b27ef9c92
[ "MIT" ]
null
null
null
DATA SEGMENT COURSE1 DB 70H,88H,92H,90H,99H DB 67H,77H,88H,76H,69H DB 74H,87H,77H,74H,70H DB 99H,97H,94H,98H,96H NUM1 DW 5 DUP(0) DATA ENDS CODE SEGMENT ASSUME CS:CODE,DS:DATA START: MOV AX,DATA MOV DS,AX LEA SI,COURSE1 LEA DI, NUM1 ...
20.181818
31
0.459459
a4386d903072c88946950d2de8f33b836c5f27bd
712
asm
Assembly
oeis/007/A007060.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/007/A007060.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/007/A007060.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A007060: Number of ways n couples can sit in a row without any spouses next to each other. ; Submitted by Christian Krause ; 1,0,8,240,13824,1263360,168422400,30865121280,7445355724800,2287168006717440,871804170613555200,403779880746418176000,223346806774106790297600,145427383048755178635264000,1101056980601904647915...
39.555556
450
0.824438
891c7968543d902c1bfbbd2d7ef4cc49ce7494ef
3,550
asm
Assembly
programs/oeis/008/A008513.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/008/A008513.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/008/A008513.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A008513: Number of points on surface of 6-dimensional cube. ; 0,64,728,4032,14896,42560,102024,215488,413792,737856,1240120,1985984,3055248,4543552,6563816,9247680,12746944,17235008,22908312,29987776,38720240,49379904,62269768,77723072,96104736,117812800,143279864,172974528,207402832,247109696,292680360,344741824,403...
73.958333
3,091
0.870423
cf26cb6fb8759f3a0e1ac33b4b41e40c4d39f637
1,938
asm
Assembly
basic/src/constants.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
13
2020-03-31T08:21:22.000Z
2021-07-28T20:03:29.000Z
basic/src/constants.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
37
2020-03-31T06:35:37.000Z
2020-09-17T08:56:48.000Z
basic/src/constants.asm
paulscottrobson/eris
cf102530334ed86360deb20f0e41af1e10f5d584
[ "MIT" ]
5
2020-05-10T10:23:06.000Z
2022-01-14T02:21:02.000Z
; ***************************************************************************** ; ***************************************************************************** ; ; Name: constants.asm ; Purpose: Basic Constants ; Created: 3rd March 2020 ; Reviewed: 16th March 2020 ; Author: Paul Robson (paul@robsons.org.uk) ; ;...
23.634146
82
0.598555
e713219270662910c209168a7e4a5644f908855c
214
asm
Assembly
libsrc/_DEVELOPMENT/input/zx/c/sdcc_iy/in_mouse_amx_wheel_delta.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/input/zx/c/sdcc_iy/in_mouse_amx_wheel_delta.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/input/zx/c/sdcc_iy/in_mouse_amx_wheel_delta.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; int16_t in_mouse_amx_wheel_delta(void) SECTION code_clib SECTION code_input PUBLIC _in_mouse_amx_wheel_delta EXTERN asm_in_mouse_amx_wheel_delta defc _in_mouse_amx_wheel_delta = asm_in_mouse_amx_wheel_delta
17.833333
61
0.88785
046a42877f253a721d34f6fa1bab9f194966a581
1,355
asm
Assembly
programs/oeis/157/A157762.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/157/A157762.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/157/A157762.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A157762: a(n) = 15780962*n^2 - 5618000*n + 500001. ; 10662963,52387849,125674659,230523393,366934051,534906633,734441139,965537569,1228195923,1522416201,1848198403,2205542529,2594448579,3014916553,3466946451,3950538273,4465692019,5012407689,5590685283,6200524801,6841926243,7514889609,8219414899,8955502113,9723151251,...
135.5
1,187
0.881919
ca1fa46091737249c0ebbb085974a541f393ec9b
806
asm
Assembly
oeis/142/A142117.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/142/A142117.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/142/A142117.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A142117: Primes congruent to 8 mod 37. ; Submitted by Jon Maiga ; 193,563,859,1229,1303,1451,1747,2339,2857,3079,3301,3449,3671,3967,4337,5003,5077,5521,5669,5743,6113,6779,7001,7297,7741,7963,8111,8629,8999,9221,9739,9887,10331,10627,11071,11959,12107,12329,13217,13291,13513,13883,14327,14401,14549,14771,15289,15511...
36.636364
500
0.734491
68b71dab81f835047bf9bd920a7d2186dc1833bc
3,022
asm
Assembly
libsrc/graphics/z88/window.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
null
null
null
libsrc/graphics/z88/window.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
null
null
null
libsrc/graphics/z88/window.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
1
2019-12-03T23:57:48.000Z
2019-12-03T23:57:48.000Z
; ; Z88 Graphics Functions - Small C+ stubs ; ; Written around the Interlogic Standard Library ; ; Stubs Written by D Morris - 30/9/98 ; ; ; $Id: window.asm,v 1.3 2016/05/17 21:43:06 dom Exp $ ; ; This function will open a window of any type (graphics/text) ; on the Z88 screen, graphics f...
26.508772
79
0.433157