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
83075f549c7403eb618cdbe2b0afb08020cb0085
842
asm
Assembly
main.asm
Dimedime-d/kptranslation
62ba88ac2e279ac8bf0539e61a8d5764bdc60c5a
[ "CC-BY-4.0" ]
3
2020-10-25T07:13:17.000Z
2021-11-02T15:47:14.000Z
main.asm
Dimedime-d/kptranslation
62ba88ac2e279ac8bf0539e61a8d5764bdc60c5a
[ "CC-BY-4.0" ]
5
2021-03-01T02:45:02.000Z
2021-12-15T03:33:28.000Z
main.asm
Dimedime-d/kptranslation
62ba88ac2e279ac8bf0539e61a8d5764bdc60c5a
[ "CC-BY-4.0" ]
null
null
null
.gba ; Set the architecture to GBA .open "kp_patched.gba",0x08000000 ; Open input.gba for output. ; 0x08000000 will be used as the ; header size ;include all assembly files in here ;file paths are relative to armips.exe .definelabel __DEBUG__, 1 .ifdef __DEBUG__ .warning "Debug flag is ON" ....
30.071429
62
0.763658
a30967a7e5533f43a4f825d1f1fbe5377b03e21e
404
asm
Assembly
programs/oeis/332/A332134.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/332/A332134.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/332/A332134.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A332134: a(n) = (10^(2n+1)-1)/3 + 10^n. ; 4,343,33433,3334333,333343333,33333433333,3333334333333,333333343333333,33333333433333333,3333333334333333333,333333333343333333333,33333333333433333333333,3333333333334333333333333,333333333333343333333333333,33333333333333433333333333333,3333333333333334333333333333333 mov...
31.076923
273
0.80198
40453f3aec28fe1cfb93a6190e47dcd363e99533
408
asm
Assembly
src/gdts.asm
MrVillagerGamer/DevLinux
cfde410d0edd137ae7e58cf1c12166cce73dc01d
[ "BSD-3-Clause" ]
null
null
null
src/gdts.asm
MrVillagerGamer/DevLinux
cfde410d0edd137ae7e58cf1c12166cce73dc01d
[ "BSD-3-Clause" ]
null
null
null
src/gdts.asm
MrVillagerGamer/DevLinux
cfde410d0edd137ae7e58cf1c12166cce73dc01d
[ "BSD-3-Clause" ]
null
null
null
global gdt_flush global gdt_load gdt_init_user: cli push ax mov ax, 0x23 mov ds, ax mov es, ax mov fs, ax mov gs, ax mov ebp, esp push dword 0x23 push eax pushfd push dword 0x1b push dword .cont iret .cont: sti ret gdt_flush: mov edx, [esp+4] lgdt [edx] jmp 0x08:.cont .con...
12
18
0.615196
82bb5b9eed8b4bd5781a2f49b90e742d657f7938
335
asm
Assembly
mitchGuthrie_assignment2.asm
mitchGuthrieDev/Assembly-code
521a539cc4bb59b94c751eba65036035d4df8c15
[ "MIT" ]
null
null
null
mitchGuthrie_assignment2.asm
mitchGuthrieDev/Assembly-code
521a539cc4bb59b94c751eba65036035d4df8c15
[ "MIT" ]
null
null
null
mitchGuthrie_assignment2.asm
mitchGuthrieDev/Assembly-code
521a539cc4bb59b94c751eba65036035d4df8c15
[ "MIT" ]
null
null
null
#Mitch Guthrie, ID: 001215440 #Assignment HW 2 #C Code: for(i=0; i < 10; i++) printf ("I like pizza!\n") .data myMessage: .asciiz "Hello World\n" .text li $t0,0 #load value of 0 into $t0 (i) For_loop: slti $t1, $t0, 10 beq $t1, $zero, Exit li $v0,4 la $a0, myMessage syscall addi $t0,$t0,1 j For_loop E...
14.565217
57
0.620896
ce548e20769b3d7ee3c0e8c81dc04c3a8d9e6ca5
1,065
asm
Assembly
programs/oeis/049/A049626.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/049/A049626.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/049/A049626.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A049626: a(n) = T(n,4), array T as in A049615. ; 3,3,6,8,11,12,16,17,20,22,25,26,30,31,34,36,39,40,44,45,48,50,53,54,58,59,62,64,67,68,72,73,76,78,81,82,86,87,90,92,95,96,100,101,104,106,109,110,114,115,118,120,123,124,128,129,132,134,137,138,142 mov $13,$0 mov $15,$0 add $15,1 lpb $15 mov $0,$13 sub $15,1 sub...
16.384615
199
0.450704
d65bcd9c30e98b74bc1857143e0dc1a8c41e31c8
1,636
asm
Assembly
programs/oeis/177/A177189.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/177/A177189.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/177/A177189.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A177189: Partial sums of round(n^2/16). ; 0,0,0,1,2,4,6,9,13,18,24,32,41,52,64,78,94,112,132,155,180,208,238,271,307,346,388,434,483,536,592,652,716,784,856,933,1014,1100,1190,1285,1385,1490,1600,1716,1837,1964,2096,2234,2378,2528,2684,2847,3016,3192,3374,3563,3759,3962,4172,4390,4615,4848,5088,5336,5592,5856,6128,64...
90.888889
1,443
0.787897
727f4a658c5aaa9b048eed99d562e423131ce2cf
196
asm
Assembly
libsrc/sos/sos_wrd.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/sos/sos_wrd.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/sos/sos_wrd.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
; S-OS specific routines ; by Stefano Bodrato, 2013 ; ; $Id: sos_wrd.asm,v 1.2 2015/01/19 01:33:07 pauloscustodio Exp $ ; PUBLIC sos_wrd sos_wrd: call $1fac ld hl,0 ret c inc hl ret
12.25
71
0.663265
daf209428fbac8dd03729b3b1a16de6d3697cce8
203
asm
Assembly
src/data/sample_scripts/benchmark_substract.asm
ambertide/SASVM
ee699ec9b585ad0fccb0b70e11dde1b225ac56c1
[ "MIT" ]
null
null
null
src/data/sample_scripts/benchmark_substract.asm
ambertide/SASVM
ee699ec9b585ad0fccb0b70e11dde1b225ac56c1
[ "MIT" ]
7
2019-12-27T20:59:12.000Z
2020-01-08T22:53:42.000Z
src/data/sample_scripts/benchmark_substract.asm
ambertide/SASVM
ee699ec9b585ad0fccb0b70e11dde1b225ac56c1
[ "MIT" ]
null
null
null
load R5, 01010001b load R4, 1 substract: load R6, 11111111b xor R7, R5, R6 and R8, R7, R4 xor R5, R5, R4 move R4, R8 addi R4, R4, R4 jmpEQ R4 = R0, end jmp substract end: move RF, R5 halt
10.15
19
0.640394
f8402428ad1e5565200dffe8e28c3ccd94e055c6
973
asm
Assembly
programs/oeis/314/A314057.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/314/A314057.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/314/A314057.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A314057: Coordination sequence Gal.6.635.2 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; 1,5,11,15,21,27,31,37,43,47,53,58,63,69,73,79,85,89,95,101,105,111,116,121,127,131,137,143,147,153,159,163,169,174,179,185,189,195,201,205,2...
23.731707
186
0.602261
ebb7ac57704f94b0ae5cfcf372c54e3b91b6359b
172
asm
Assembly
Tests/Core/equ/equ.asm
Thar0/armips
4616b009959a8675eb2c9af66470b30c4083dffb
[ "MIT" ]
283
2015-01-02T01:02:28.000Z
2022-03-28T11:16:10.000Z
Tests/Core/equ/equ.asm
Thar0/armips
4616b009959a8675eb2c9af66470b30c4083dffb
[ "MIT" ]
117
2015-01-04T10:24:50.000Z
2022-03-12T19:51:13.000Z
Tests/Core/equ/equ.asm
Thar0/armips
4616b009959a8675eb2c9af66470b30c4083dffb
[ "MIT" ]
82
2015-02-07T15:03:47.000Z
2022-01-09T12:18:38.000Z
.gba .create "output.bin",0 EQUTEST equ "test" ; check if only whole words are replaced @@OTHEREQUTEST equ ".test" .ascii 0x20,EQUTEST,0x21 .ascii @@OTHEREQUTEST .close
14.333333
40
0.732558
ad1c46baac89fcedcdcf63fb7bc882d095e1c93a
459
asm
Assembly
programs/oeis/133/A133337.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/133/A133337.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/133/A133337.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A133337: a(3n) = 0, a(3n+1) = a(3n+2) = 5^n. ; 0,1,1,0,5,5,0,25,25,0,125,125,0,625,625,0,3125,3125,0,15625,15625,0,78125,78125,0,390625,390625,0,1953125,1953125,0,9765625,9765625,0,48828125,48828125,0,244140625,244140625,0,1220703125,1220703125,0 mov $3,1 mov $5,1 lpb $0,1 sub $0,1 trn $0,1 mov $4,2 add $4,$...
18.36
201
0.614379
b302decf935b90bc4d8c48ed33813e254778bb40
10,619
asm
Assembly
P6/data_P6_2/MDTest53.asm
alxzzhou/BUAA_CO_2020
b54bf367081a5a11701ebc3fc78a23494aecca9e
[ "Apache-2.0" ]
1
2022-01-23T09:24:47.000Z
2022-01-23T09:24:47.000Z
P6/data_P6_2/MDTest53.asm
alxzzhou/BUAA_CO_2020
b54bf367081a5a11701ebc3fc78a23494aecca9e
[ "Apache-2.0" ]
null
null
null
P6/data_P6_2/MDTest53.asm
alxzzhou/BUAA_CO_2020
b54bf367081a5a11701ebc3fc78a23494aecca9e
[ "Apache-2.0" ]
null
null
null
ori $ra,$ra,0xf mfhi $5 mtlo $4 lui $1,58556 lb $4,1($0) mult $4,$4 addu $4,$4,$1 sll $4,$1,4 lb $4,0($0) mtlo $4 mtlo $2 multu $1,$2 sb $4,2($0) mfhi $1 divu $6,$ra lb $2,6($0) addu $0,$2,$1 mfhi $6 sll $4,$2,7 lb $5,14($0) mfhi $1 addu $4,$5,$4 mflo $4 addu $2,$2,$4 addu $4,$5,$4 div $0,$ra lb $2,1($0) addiu $5,$3,-2...
11.931461
18
0.561729
a951f0ab6feb8e6e0f7741e3960731d1d028c049
384
asm
Assembly
programs/oeis/062/A062809.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/062/A062809.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/062/A062809.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A062809: a(n) = Sum_{i = 1..n} (n - i)^(1 + i). ; 0,1,5,18,60,203,725,2772,11368,49853,232757,1151902,6018772,33087191,190780197,1150653904,7241710912,47454745785,323154696165,2282779990474,16700904488684,126356632390275,987303454928949,7957133905608812 sub $2,$0 add $0,1 cal $0,3101 ; a(n) = Sum_{k = 1..n} (n - k +...
29.538462
205
0.679688
812cc8bf571f0895781871cc511516535e8fd205
3,565
asm
Assembly
src/procedure.asm
hirohito-protagonist/hla-learn-adventure
c702d6b0c710ddf4af1a65d72487e93750495329
[ "Unlicense" ]
null
null
null
src/procedure.asm
hirohito-protagonist/hla-learn-adventure
c702d6b0c710ddf4af1a65d72487e93750495329
[ "Unlicense" ]
null
null
null
src/procedure.asm
hirohito-protagonist/hla-learn-adventure
c702d6b0c710ddf4af1a65d72487e93750495329
[ "Unlicense" ]
null
null
null
; Assembly code emitted by HLA compiler ; Version 2.16 build 4413 (prototype) ; HLA compiler written by Randall Hyde ; NASM compatible output bits 32 %define ExceptionPtr__hla_ [dword fs:0] global QuitMain__hla_ global DfltExHndlr__hla_ global _HLAMain global HWexcep...
19.480874
68
0.473773
545d421525081208af21493de5c65309382f6cd7
856
asm
Assembly
Driver/Printer/PrintCom/printcomCanonBJCCursor.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Driver/Printer/PrintCom/printcomCanonBJCCursor.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Driver/Printer/PrintCom/printcomCanonBJCCursor.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GlobalPC 1999 -- All Rights Reserved PROJECT: PC GEOS MODULE: Printer Drivers FILE: printcomCanonBJCCursor.asm AUTHOR: Joon Song ROUTINES: Name Description ---- ----------- REVISION HISTORY: Na...
24.457143
79
0.599299
f71869d484dac7c3eb817ad88735122b0ccda8ea
2,513
asm
Assembly
programs/oeis/190/A190176.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/190/A190176.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/190/A190176.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A190176: a(n) = n^4 + 2^4 + (n+2)^4. ; 32,98,288,722,1568,3042,5408,8978,14112,21218,30752,43218,59168,79202,103968,134162,170528,213858,264992,324818,394272,474338,566048,670482,788768,922082,1071648,1238738,1424672,1630818,1858592,2109458,2384928,2686562,3015968,3374802,3764768,4187618,4645152,5139218,5671712,62445...
251.3
2,417
0.880223
1e9d469b4cca98db898add37c87aa7b478eaa1ab
386
asm
Assembly
programs/oeis/162/A162177.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/162/A162177.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/162/A162177.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A162177: a(n) is the number of composite numbers that are smaller than A008578(n). ; 0,0,0,1,2,5,6,9,10,13,18,19,24,27,28,31,36,41,42,47,50,51,56,59,64,71,74,75,78,79,82,95,98,103,104,113,114,119,124,127,132,137,138,147,148,151,152,163,174,177,178,181,186,187,196,201,206,211,212,217,220,221 mov $2,$0 trn $0,1 seq $0...
42.888889
208
0.694301
56046044c4c6e3fd4cd3220c2cf1e30cd1cd7f15
1,988
asm
Assembly
install/NoLFB/nolfb.asm
DrItanium/MechVM-original
b7f1f018e27748b8e60937a9abbece9c5964b501
[ "Info-ZIP" ]
4
2020-10-25T11:46:39.000Z
2022-02-10T09:43:30.000Z
install/NoLFB/nolfb.asm
DrItanium/MechVM-original
b7f1f018e27748b8e60937a9abbece9c5964b501
[ "Info-ZIP" ]
1
2022-02-10T09:57:23.000Z
2022-02-10T09:57:23.000Z
install/NoLFB/nolfb.asm
DrItanium/MechVM-original
b7f1f018e27748b8e60937a9abbece9c5964b501
[ "Info-ZIP" ]
1
2019-07-04T05:23:56.000Z
2019-07-04T05:23:56.000Z
;NOLFB.ASM by Ken Silverman (http://www.advsys.net/ken) 09/21/2002 ; ;NOLFB is a TSR that disables the linear framebuffer (LFB) in VESA 2.0 ;(and above) BIOS. Doing this will make some DOS games (including BUILD ;engine games and other demos on my website) run under Windows NT/2K/XP. ;Programs will run slower with...
24.85
79
0.707746
a60c03ef070d2e2eb897e140adbf775118ee186a
1,667
asm
Assembly
src/i2c.asm
grantperry/elec342-alarm-clock
6518f1f9d31579e0b00b566ed07742bf4140d7c1
[ "Unlicense" ]
null
null
null
src/i2c.asm
grantperry/elec342-alarm-clock
6518f1f9d31579e0b00b566ed07742bf4140d7c1
[ "Unlicense" ]
null
null
null
src/i2c.asm
grantperry/elec342-alarm-clock
6518f1f9d31579e0b00b566ed07742bf4140d7c1
[ "Unlicense" ]
null
null
null
i2c_init: cli cbi DDRC, 4 cbi DDRC, 5 sbi PORTC, 4 sbi PORTC, 5 lds r16, PRR andi r16, 0b01101111 sts PRR, r16 call delay1msec ; set TWSR(Two Wire Status Register) to 0 to put it in an idle state and 1* divisor ldi r16, 0x0 sts TWSR, r16 ; set TWBR(Two Wire Bit Rate) reg to 0 as this sets the clock t...
18.119565
84
0.680864
358a72a62ec06dc2efc3645238d431f893e39bd7
1,487
asm
Assembly
programs/oeis/212/A212325.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/212/A212325.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/212/A212325.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A212325: Prime-generating polynomial: n^2 + 3*n - 167. ; -167,-163,-157,-149,-139,-127,-113,-97,-79,-59,-37,-13,13,41,71,103,137,173,211,251,293,337,383,431,481,533,587,643,701,761,823,887,953,1021,1091,1163,1237,1313,1391,1471,1553,1637,1723,1811,1901,1993,2087,2183,2281,2381,2483,2587,2693,2801,2911,3023,3137,3253,...
148.7
1,372
0.792872
e66bdbffb5731edd07b0fed556ec4449b96fd234
178
asm
Assembly
libsrc/_DEVELOPMENT/compress/zx1/z80/asm_dzx1_smart_rcs_back.asm
ahjelm/z88dk
c4de367f39a76b41f6390ceeab77737e148178fa
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/compress/zx1/z80/asm_dzx1_smart_rcs_back.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/compress/zx1/z80/asm_dzx1_smart_rcs_back.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
IF !__CPU_INTEL__ && !__CPU_GBZ80__ SECTION code_lib SECTION code_compress_zx1 PUBLIC asm_dzx1_smart_rcs_back asm_dzx1_smart_rcs_back: INCLUDE "dzx1_smartRCS_back.asm" ENDIF
14.833333
35
0.853933
bd877d05fc68287344c01ff6266550f2f2e05e9c
98
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sdcc_ix/round.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sdcc_ix/round.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sdcc_ix/round.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
SECTION code_fp_math48 PUBLIC _round EXTERN cm48_sdccix_round defc _round = cm48_sdccix_round
10.888889
31
0.846939
65d4cefb8b272930d5f0617329a77bb85da3dc54
608
asm
Assembly
programs/oeis/314/A314672.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/314/A314672.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/314/A314672.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A314672: Coordination sequence Gal.4.38.4 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; 1,5,9,13,17,21,25,29,34,39,43,47,51,55,59,63,68,73,77,81,85,89,93,97,102,107,111,115,119,123,127,131,136,141,145,149,153,157,161,165,170,175,...
22.518519
176
0.605263
11e59c50522ba6a4109e54282b28e514e7d07c03
1,358
asm
Assembly
timers/div_reset_timing/main.asm
AntonioND/gbc-hw-tests
631e60000c885154a8526df0b148847f9c34ce42
[ "MIT" ]
6
2018-07-21T12:11:21.000Z
2021-07-23T16:32:47.000Z
timers/div_reset_timing/main.asm
PMArkive/gbc-hw-tests
631e60000c885154a8526df0b148847f9c34ce42
[ "MIT" ]
null
null
null
timers/div_reset_timing/main.asm
PMArkive/gbc-hw-tests
631e60000c885154a8526df0b148847f9c34ce42
[ "MIT" ]
3
2016-04-26T07:45:34.000Z
2018-12-30T05:45:14.000Z
INCLUDE "hardware.inc" INCLUDE "header.inc" SECTION "var",BSS ram_ptr: DS 2 repeat_loop: DS 1 SECTION "Main",HOME ;-------------------------------------------------------------------------- ;- Main() - ;-----------------------------------------...
15.258427
75
0.393225
e7398b11f3ade05e0e2ef75b00acafbfee8cc8b4
5,737
asm
Assembly
Transynther/x86/_processed/NONE/_ht_zr_un_xt_sm_/i9-9900K_12_0xa0.log_21829_85.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_ht_zr_un_xt_sm_/i9-9900K_12_0xa0.log_21829_85.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_ht_zr_un_xt_sm_/i9-9900K_12_0xa0.log_21829_85.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 %rax push %rdi push %rdx lea addresses_WT_ht+0x1ba7e, %r12 nop nop nop nop xor $3427, %rdx mov (%r12), %r13w nop nop nop and $17973, %rdi lea addresses_UC_ht+0x1467e, %rdx nop nop nop nop sub $13944, %rax mov $0x6162636465666768, %rdi movq ...
49.456897
2,999
0.631515
41179907a167c1a8ac63d18de1835a4f016f5403
86,826
asm
Assembly
src/sprite_mummy.asm
fjpena/sword-of-ianna-msx2
f104f46a677e4b21f42fbed478307a0bb1d372f3
[ "Apache-2.0" ]
43
2017-10-21T23:01:25.000Z
2022-02-21T17:45:11.000Z
src/sprite_mummy.asm
fjpena/sword-of-ianna-msx2
f104f46a677e4b21f42fbed478307a0bb1d372f3
[ "Apache-2.0" ]
null
null
null
src/sprite_mummy.asm
fjpena/sword-of-ianna-msx2
f104f46a677e4b21f42fbed478307a0bb1d372f3
[ "Apache-2.0" ]
6
2017-10-23T05:48:50.000Z
2022-01-06T03:11:49.000Z
idle: DB 0, 0, 0, 0, 0, 16, 17, 1, 0, 0, 0, 0 DB 0, 0, 0, 0, 0, 183, 182, 27, 0, 0, 0, 0 DB 0, 0, 0, 0, 16, 27, 29, 189, 1, 0, 0, 0 DB 0, 0, 0, 0, 16, 103, 182, 123, 1, 0, 0, 0 DB 0, 0, 0, 0, 97, 102, 22, 177, 1...
63.422936
65
0.331364
890d352d81e67705f0e25bcf10294e148d1400ea
2,796
asm
Assembly
Aurora/Aurora/x64/Debug/udp.asm
manaskamal/aurora-xeneva
fe277f7ac155a40465c70f1db3c27046e4d0f7b5
[ "BSD-2-Clause" ]
8
2021-07-19T04:46:35.000Z
2022-03-12T17:56:00.000Z
Aurora/Aurora/x64/Debug/udp.asm
manaskamal/aurora-xeneva
fe277f7ac155a40465c70f1db3c27046e4d0f7b5
[ "BSD-2-Clause" ]
null
null
null
Aurora/Aurora/x64/Debug/udp.asm
manaskamal/aurora-xeneva
fe277f7ac155a40465c70f1db3c27046e4d0f7b5
[ "BSD-2-Clause" ]
null
null
null
; Listing generated by Microsoft (R) Optimizing Compiler Version 17.00.50727.1 include listing.inc INCLUDELIB LIBCMT INCLUDELIB OLDNAMES CONST SEGMENT $SG2998 DB 'UDP Packet sent', 0aH, 00H CONST ENDS PUBLIC ?udp_send_packet@@YAXPEAEGGPEAXH@Z ; udp_send_packet EXTRN ?memset@@YAXPEAXEI@Z:PROC ; memset EXTRN memcp...
23.897436
108
0.688126
7277b8229a2edf7440a6083e501ac4915faa2d94
733
asm
Assembly
libsrc/video/msm6255/asm_set_lcd_mode.asm
ahjelm/z88dk
c4de367f39a76b41f6390ceeab77737e148178fa
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/video/msm6255/asm_set_lcd_mode.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/video/msm6255/asm_set_lcd_mode.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_clib PUBLIC asm_set_lcd_mode INCLUDE "msm6255.inc" ; Set the mode of LCD controller ; 0000000x -> GRAPHICS (1), TEXT (0) ; 00000xx0 -> 4bit parallel (01) / serial (00) / serial EVEN-ODD (10) -> Bondwell 2 is EVEN-ODD ; 0000x000 -> Display ON/OFF ; 000x0000 -> TEXT Cursor blinking (e.g. 3D)...
15.270833
95
0.671214
2d0a437dcc65cfef3b81562dbd68f37af0fcbf02
204
asm
Assembly
src/parser/include.asm
jhm-ciberman/calculator-asm
f5305f345d7efdd616b34a485f7460f6789f4d9c
[ "MIT" ]
2
2019-08-03T17:09:30.000Z
2021-04-01T22:17:09.000Z
src/parser/include.asm
jhm-ciberman/calculator-asm
f5305f345d7efdd616b34a485f7460f6789f4d9c
[ "MIT" ]
null
null
null
src/parser/include.asm
jhm-ciberman/calculator-asm
f5305f345d7efdd616b34a485f7460f6789f4d9c
[ "MIT" ]
1
2019-08-04T21:26:32.000Z
2019-08-04T21:26:32.000Z
include 'ParserCommandAddChar.asm' include 'ParserCommandFinish.asm' include 'ParserCommandProcess.asm' include 'ParserInit.asm' include 'ParserParseString.asm' include 'ParserShowUnexpectedChar.asm'
34
38
0.833333
f79acc74dd14872e59904f16283911de98fe313c
1,021
asm
Assembly
src/test/ref/function-pointer-noarg-call-5.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
2
2022-03-01T02:21:14.000Z
2022-03-01T04:33:35.000Z
src/test/ref/function-pointer-noarg-call-5.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
src/test/ref/function-pointer-noarg-call-5.asm
jbrandwood/kickc
d4b68806f84f8650d51b0e3ef254e40f38b0ffad
[ "MIT" ]
null
null
null
// Tests calling into arrays of pointers to non-args no-return functions // Commodore 64 PRG executable file .file [name="function-pointer-noarg-call-5.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code [start=$80d] .segmentdef Dat...
19.634615
80
0.582762
60b124d8ea15f66c8ce56bc3756c028d226b9c48
40
asm
Assembly
test/assembler/main_not_zero/data/program.asm
jfitz/virtual-processor
b6aa15e7ed210ab862c9c80bbc7c46859ab50501
[ "MIT" ]
null
null
null
test/assembler/main_not_zero/data/program.asm
jfitz/virtual-processor
b6aa15e7ed210ab862c9c80bbc7c46859ab50501
[ "MIT" ]
null
null
null
test/assembler/main_not_zero/data/program.asm
jfitz/virtual-processor
b6aa15e7ed210ab862c9c80bbc7c46859ab50501
[ "MIT" ]
null
null
null
NOP NOP MAIN: PUSH BYTE 64 OUT EXIT
6.666667
18
0.675
557b7d8884746d43efe3199021f6866080c68ddf
696
asm
Assembly
oeis/046/A046194.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/046/A046194.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/046/A046194.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A046194: Heptagonal triangular numbers. ; Submitted by Jamie Morken(s1) ; 1,55,121771,5720653,12625478965,593128762435,1309034909945503,61496776341083161,135723357520344181225,6376108764003055554511,14072069153115290487843091,661087708807868029661744485,1459020273797576190840203197981,68542895818241264287385936157403...
63.272727
501
0.890805
ae6fba33ced663c585cd9c8022d5fc7958a5e38e
17,499
asm
Assembly
calc.asm
spencer-melnick/mips-calculator
da6ea24e2948c694a465130a6fe1102cb6285af3
[ "MIT" ]
null
null
null
calc.asm
spencer-melnick/mips-calculator
da6ea24e2948c694a465130a6fe1102cb6285af3
[ "MIT" ]
null
null
null
calc.asm
spencer-melnick/mips-calculator
da6ea24e2948c694a465130a6fe1102cb6285af3
[ "MIT" ]
null
null
null
.data str_buffer1: .space 64 expr_buffer1: .space 128 expr_buffer2: .space 128 stack: .space 128 prompt_msg: .asciiz ">>>> " invalid_msg: .asciiz "Invalid expression\n" result_msg: .asciiz "\n" invalid_char_msg_p1: .asciiz "Invalid character \"" invalid_char_msg_p2: .asciiz "\" at index [" invalid_char_msg_...
20.230058
65
0.679639
27cff51d9ab74bfb52c1fb487388606611792c4d
130
asm
Assembly
libsrc/_DEVELOPMENT/font/fzx/fonts/dkud3/Deutch/_ff_dkud3_TrnsDeutch.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/font/fzx/fonts/dkud3/Deutch/_ff_dkud3_TrnsDeutch.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/font/fzx/fonts/dkud3/Deutch/_ff_dkud3_TrnsDeutch.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
SECTION rodata_font_fzx PUBLIC _ff_dkud3_TrnsDeutch _ff_dkud3_TrnsDeutch: BINARY "font/fzx/fonts/dkud3/Deutch/trnsdeutch.fzx"
14.444444
51
0.846154
7e3eb94e4ca31cdfd1aaa98f0307cfffd4a0f153
799
asm
Assembly
libsrc/spectrum/opus/zx_opus.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
1
2018-09-04T23:07:24.000Z
2018-09-04T23:07:24.000Z
libsrc/spectrum/opus/zx_opus.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
null
null
null
libsrc/spectrum/opus/zx_opus.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
null
null
null
; ; ZX Spectrum specific routines ; Stefano Bodrato - 5/2/2008 ; ; int opus_installed(); ; ; The result is: ; - 0 (false) if the Opus Discovery Interface is missing ; - 1 (true) if the Opus Discovery Interface is connected ; ; Tries to issue a POINT #0,1 command, to see if the syntax is accepted. ; If so, tr...
23.5
75
0.664581
d09d01a36001f11b6853e0772acb8d427bb4b3e9
608
asm
Assembly
Profiling/x32/example.asm
zummenix/asm-projects
2989d1b28cc7298647240870afab10d92c5281cb
[ "MIT" ]
1
2019-05-26T15:19:23.000Z
2019-05-26T15:19:23.000Z
Profiling/x32/example.asm
zummenix/asm-projects
2989d1b28cc7298647240870afab10d92c5281cb
[ "MIT" ]
null
null
null
Profiling/x32/example.asm
zummenix/asm-projects
2989d1b28cc7298647240870afab10d92c5281cb
[ "MIT" ]
null
null
null
format PE GUI include 'win32w.inc' section '.text' code readable executable start: stdcall Profiling.getTime mov [ValueTime],eax invoke Sleep,999 stdcall Profiling.showResult,[ValueTime] invoke ExitProcess,0 include 'Profiling.inc' section '....
19.612903
49
0.629934
60cf945a4653a136cec12e77e48c13203f9bb56f
14,488
asm
Assembly
libtool/src/gmp-6.1.2/mpn/x86_64/k8/sqr_basecase.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/x86_64/k8/sqr_basecase.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/x86_64/k8/sqr_basecase.asm
kroggen/aergo
05af317eaa1b62b21dc0144ef74a9e7acb14fb87
[ "MIT" ]
498
2015-01-08T18:58:18.000Z
2022-03-20T15:37:45.000Z
dnl AMD64 mpn_sqr_basecase. dnl Contributed to the GNU project by Torbjorn Granlund. dnl Copyright 2008, 2009, 2011, 2012 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 eith...
17.930693
79
0.594423
4f5a15200206464c46937ea73660172787c77c37
4,650
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_ht_/i3-7100_9_0x84_notsx.log_16615_2425.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_ht_/i3-7100_9_0x84_notsx.log_16615_2425.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_ht_/i3-7100_9_0x84_notsx.log_16615_2425.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 %r15 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0xfe95, %rsi lea addresses_WC_ht+0xed95, %rdi nop cmp %r15, %r15 mov $13, %rcx rep movsw nop nop nop nop add $18482, %rax lea addresses_UC_ht+0x7f5f, %r11 nop nop sub %rsi, %rsi mov (%r1...
52.247191
2,999
0.662581
b4c2fb73d644239349849c0004cecde2c078005a
1,645
asm
Assembly
programs/oeis/240/A240001.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/240/A240001.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/240/A240001.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A240001: Number of 2 X n 0..3 arrays with no element equal to one plus the sum of elements to its left or two plus the sum of the elements above it or one plus the sum of the elements diagonally to its northwest, modulo 4. ; 5,13,25,42,65,95,133,180,237,305,385,478,585,707,845,1000,1173,1365,1577,1810,2065,2343,2645,...
164.5
1,361
0.821884
009b69641d6436126440500507adafb2c88cfabf
360
asm
Assembly
oeis/345/A345013.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/345/A345013.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/345/A345013.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A345013: Triangle read by rows, related to clusters of type D. ; Submitted by Christian Krause ; 1,4,3,15,20,6,56,105,60,10,210,504,420,140,15,792,2310,2520,1260,280,21,3003,10296,13860,9240,3150,504,28,11440,45045,72072,60060,27720,6930,840,36 lpb $0 add $1,1 sub $0,$1 lpe mov $2,$1 mul $2,2 sub $2,$0 add $2,2 ...
21.176471
149
0.677778
940305f8e3b9c3cf4313c39739252e4d50160fe8
1,702
asm
Assembly
core/genBlock.asm
cristoferfb/columns
45737d5e53ea10fee1d770ca9b5c455f12df5999
[ "MIT" ]
null
null
null
core/genBlock.asm
cristoferfb/columns
45737d5e53ea10fee1d770ca9b5c455f12df5999
[ "MIT" ]
null
null
null
core/genBlock.asm
cristoferfb/columns
45737d5e53ea10fee1d770ca9b5c455f12df5999
[ "MIT" ]
null
null
null
generate_block: call procedure_delay ; Generamos un numero aleatorio mov bl,0x6 ; entre [0,5] este sera el color call procedure_generate_random_number ; de una de las secciones de una ; pieza inc al ...
17.729167
75
0.585194
b5fd8eb3fcb5543b21eb10415c34698937fb7162
947
asm
Assembly
oeis/097/A097183.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/097/A097183.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/097/A097183.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A097183: Main diagonal of triangle A097181, in which the n-th row polynomial R_n(y) is formed from the initial (n+1) terms of g.f. A097182(y)^(n+1), where R_n(1/2) = 8^n for all n>=0. ; Submitted by Christian Krause ; 1,14,210,3220,49910,778596,12198004,191682920,3019005990,47633205620,752604648796,11904837171864,188...
35.074074
495
0.768743
347b71a5933c3fbf9c0bbc7857e77ac55be3606b
424
asm
Assembly
oeis/309/A309914.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/309/A309914.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/309/A309914.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A309914: Distance from n to closest triangular number that is different from n. ; Submitted by Simon Strandgaard ; 1,1,1,2,1,1,3,1,2,1,4,1,2,2,1,5,1,2,3,2,1,6,1,2,3,3,2,1,7,1,2,3,4,3,2,1,8,1,2,3,4,4,3,2,1,9,1,2,3,4,5,4,3,2,1,10,1,2,3,4,5,5,4,3,2,1,11,1,2,3,4,5,6,5,4,3,2,1,12,1,2,3,4,5,6,6,5,4,3,2,1,13,1,2,3,4,5,6,7,6...
26.5
205
0.584906
ed9ad1a8dee01912ac9318b109b1b73e50b3ff4b
343
asm
Assembly
programs/oeis/267/A267414.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/267/A267414.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/267/A267414.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A267414: Integers n such that n! = x^3 + y^3 + z^3 where x, y and z are nonnegative integers, is soluble. ; 0,1,2,4,9,10,11,12,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 mov $3,$0 trn $0,2 mov $1,$0 mov $2,1 lpb $0,1 add $0,$2 div $0,2 div $1,2 add $1,3 ...
21.4375
116
0.600583
24311d6402eb3a95e5d20148c29c7ba77f22c0b5
1,741
asm
Assembly
programs/oeis/158/A158493.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/158/A158493.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/158/A158493.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A158493: a(n) = 20*n^2 + 1. ; 1,21,81,181,321,501,721,981,1281,1621,2001,2421,2881,3381,3921,4501,5121,5781,6481,7221,8001,8821,9681,10581,11521,12501,13521,14581,15681,16821,18001,19221,20481,21781,23121,24501,25921,27381,28881,30421,32001,33621,35281,36981,38721,40501,42321,44181,46081,48021,50001,52021,54081,56181...
217.625
1,671
0.835727
f3cb3a09c8347c21790deeea8519adf763cdc3bd
1,249
asm
Assembly
src/boot/boot.asm
zys1310992814/BookOSv0.2
7dca0f968663a0e6de18dd9b3e533d1e0412674f
[ "BSD-2-Clause" ]
3
2019-02-24T11:05:46.000Z
2019-02-26T03:20:50.000Z
src/boot/boot.asm
zys1310992814/BookOSv0.2
7dca0f968663a0e6de18dd9b3e533d1e0412674f
[ "BSD-2-Clause" ]
null
null
null
src/boot/boot.asm
zys1310992814/BookOSv0.2
7dca0f968663a0e6de18dd9b3e533d1e0412674f
[ "BSD-2-Clause" ]
null
null
null
;boot/boot.asm ;description: loade loader ;auther: Hu Zicheng ;time: 2018/1/2 ;copyright: (C) 2018-2019 by BookOS developers. All rights reserved. ;E-mail: 2323168280@qq.com %include "const.inc" org 0x7c00 bits 16 align 16 BootStart: mov ax, cs mov ds, ax mov ss, ax mov sp, 0 mov ax, 0xb800 mov es, ax ;clean ...
14.033708
68
0.660528
8113fff4b7b391280306132ed732ec97f5e9ea40
333
asm
Assembly
Code_14.asm
vishnuajith/PIC-18-Example-Codes
81d373fbb1d116a41673876240e2698c1ce09306
[ "MIT" ]
null
null
null
Code_14.asm
vishnuajith/PIC-18-Example-Codes
81d373fbb1d116a41673876240e2698c1ce09306
[ "MIT" ]
null
null
null
Code_14.asm
vishnuajith/PIC-18-Example-Codes
81d373fbb1d116a41673876240e2698c1ce09306
[ "MIT" ]
null
null
null
;******************************************************************** ;* Description : Implementing 2s Complement ;* ;******************************************************************** #include<p18f452.inc> CONFIG WDT=OFF ORG 0 ; twos complement NUM EQU 2H MOVLW NUM MOVWF 50H COMF 50H,W ADDLW 1H MOVW...
17.526316
69
0.396396
4c4fa646984a3acb9db90bcfa92adc6ab49f8998
1,331
asm
Assembly
libsrc/zx81/mirrortxt.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
1
2018-09-04T23:07:24.000Z
2018-09-04T23:07:24.000Z
libsrc/zx81/mirrortxt.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
null
null
null
libsrc/zx81/mirrortxt.asm
dex4er/deb-z88dk
9ee4f23444fa6f6043462332a1bff7ae20a8504b
[ "ClArtistic" ]
null
null
null
; ; ZX81 libraries ; ;-------------------------------------------------------------- ; This code comes from the FidoNET Sinclair newsgroup ;-------------------------------------------------------------- ; ; $Id: mirrortxt.asm,v 1.1 2007/10/12 14:49:16 stefano Exp $ ; ;------------------------------...
29.577778
67
0.450038
630573d5643fd6f14f7e3954af6079b271790c7b
3,024
asm
Assembly
Transynther/x86/_processed/US/_ht_/i9-9900K_12_0xca_notsx.log_13_1026.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_ht_/i9-9900K_12_0xca_notsx.log_13_1026.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_ht_/i9-9900K_12_0xca_notsx.log_13_1026.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 %r15 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0x5b79, %rsi lea addresses_A_ht+0xe6b9, %rdi nop xor $40491, %r15 mov $24, %rcx rep movsq nop xor $33572, %r10 lea addresses_normal_ht+0x173b9, %r10 nop cmp %r11, %r11 movb (%...
20.16
148
0.654762
82863507d054629ad7537f794bbf002b7a93ee05
1,609
asm
Assembly
src/Data/Tilemaps/Main/Main.tilemap.asm
stoneface86/GameboyBoilerplateProj
7d2dedb2c3f6fe49819f8ca32c4f6308022d18c7
[ "MIT" ]
25
2018-06-08T19:19:53.000Z
2021-10-03T05:07:38.000Z
src/Data/Tilemaps/Main/Main.tilemap.asm
stoneface86/GameboyBoilerplateProj
7d2dedb2c3f6fe49819f8ca32c4f6308022d18c7
[ "MIT" ]
1
2020-07-14T20:15:47.000Z
2020-07-15T20:15:26.000Z
src/Data/Tilemaps/Main/Main.tilemap.asm
stoneface86/GameboyBoilerplateProj
7d2dedb2c3f6fe49819f8ca32c4f6308022d18c7
[ "MIT" ]
6
2019-05-23T05:32:11.000Z
2020-04-26T21:26:00.000Z
include "./src/Includes.inc" include "./src/General/Charmap.inc" section "ScreenMain", romx,bank[1] ScreenMain:: db 126,126,126,126,125,125,125,125,125,125,125,125,125,124,124,124,124,124,124,124,GSTOP db 126, 94,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113, 94,124,GSTOP db 126,116,120,120,...
61.884615
89
0.71473
70a9b3dd2c15e49107b72f40889c81a37000bf7e
4,117
asm
Assembly
_anim/Sonic.asm
vladjester2020/Sonic1TMR
22e749a2aab74cc725729e476d6252b071c12e42
[ "Apache-2.0" ]
null
null
null
_anim/Sonic.asm
vladjester2020/Sonic1TMR
22e749a2aab74cc725729e476d6252b071c12e42
[ "Apache-2.0" ]
2
2019-06-13T14:26:59.000Z
2019-10-10T13:15:14.000Z
_anim/Sonic.asm
vladjester2020/Sonic1TMR
22e749a2aab74cc725729e476d6252b071c12e42
[ "Apache-2.0" ]
null
null
null
; --------------------------------------------------------------------------- ; Sonic Animation Script ; --------------------------------------------------------------------------- dc.w SonAni_Walk-SonicAniData ;00 dc.w SonAni_Run-SonicAniData ;01 dc.w SonAni_Roll-SonicAniData ;02 dc.w SonAni_Roll2-SonicA...
52.782051
487
0.572261
8bbd2bc96d1a465707706717d55bbe0f09d947b1
374
asm
Assembly
tests/bonus.asm
meryacine/MIPS-VHDL
8a89a53d92b264c2beedc2ca1dbba05f15af4630
[ "MIT" ]
4
2022-01-12T07:27:54.000Z
2022-03-28T09:44:26.000Z
tests/bonus.asm
Ziyadhassan/MIPS-VHDL
052058a9c9acb469020b3fa552c55d7fe9366dc1
[ "MIT" ]
null
null
null
tests/bonus.asm
Ziyadhassan/MIPS-VHDL
052058a9c9acb469020b3fa552c55d7fe9366dc1
[ "MIT" ]
2
2022-01-12T07:27:54.000Z
2022-03-24T19:29:10.000Z
int1: 0x2000 inv rti # POP PC and flags restored main: 0x10 ldm R1, 0x30 # R1=30 ldm R2, 0x50 # R2=50 ldm R3, 0x100 # R3=100 ldm R4, 0x300 # R4=300 Push R4 # sp=FFFFFFFE, M[FFFFFFFF]=300 INT 0 # SP=FFFFFFFC, M[FFFFFFFD]=half next PC,M[FFFFFFFE]=other half next PC hlt func6: 0x3000 out...
17.809524
80
0.644385
8542a4477e43937d629d1417caa0827827135127
6,706
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_416.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_416.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_416.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 %r15 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x1aa87, %r9 nop inc %rdi movups (%r9), %xmm4 vpextrq $1, %xmm4, %r12 nop sub %r11, %r11 lea addresses_UC_ht+0xe133, %rsi lea addresses_A_ht+0x6533, %rdi nop nop nop inc %rbp m...
36.248649
2,999
0.657471
e19111efbf7be75bf45d6f857ddec1ad7d7aee8a
366
asm
Assembly
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sccz80/sp1_InsertCharStruct_callee.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sccz80/sp1_InsertCharStruct_callee.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sccz80/sp1_InsertCharStruct_callee.asm
jpoikela/z88dk
7108b2d7e3a98a77de99b30c9a7c9199da9c75cb
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
; void __CALLEE__ sp1_InsertCharStruct_callee(struct sp1_update *u, struct sp1_cs *cs) ; 05.2007 aralbrec, Sprite Pack v3.0 ; sinclair zx version SECTION code_clib SECTION code_temp_sp1 PUBLIC sp1_InsertCharStruct_callee EXTERN asm_sp1_InsertCharStruct sp1_InsertCharStruct_callee: pop hl pop de ex (sp),h...
17.428571
86
0.79235
c7aaca52222f9f8898fd53928c2401392e6e4822
665
asm
Assembly
oeis/049/A049001.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/049/A049001.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/049/A049001.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A049001: a(n) = prime(n)^2 - 2. ; Submitted by Jamie Morken(s3) ; 2,7,23,47,119,167,287,359,527,839,959,1367,1679,1847,2207,2807,3479,3719,4487,5039,5327,6239,6887,7919,9407,10199,10607,11447,11879,12767,16127,17159,18767,19319,22199,22799,24647,26567,27887,29927,32039,32759,36479,37247,38807,39599,44519,49727,51527,...
66.5
496
0.778947
5f58ef9db325fbb5d3c181716c6bd8a3535c0127
490
asm
Assembly
oeis/303/A303817.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/303/A303817.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/303/A303817.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A303817: Decimal expansion of 360/17. ; Submitted by Jon Maiga ; 2,1,1,7,6,4,7,0,5,8,8,2,3,5,2,9,4,1,1,7,6,4,7,0,5,8,8,2,3,5,2,9,4,1,1,7,6,4,7,0,5,8,8,2,3,5,2,9,4,1,1,7,6,4,7,0,5,8,8,2,3,5,2,9,4,1,1,7,6,4,7,0,5,8,8,2,3,5,2,9,4,1,1,7,6,4,7,0,5,8,8,2,3,5,2,9,4,1,1,7 mov $1,1 mov $2,1 mov $3,$0 mul $3,5 lpb $3 cmp $1...
18.148148
201
0.530612
53f83f71e33342a23a524303fd6039d87ac686e6
147
asm
Assembly
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/ドイツ_PAL/Ger_asm/zel_msge6.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/ドイツ_PAL/Ger_asm/zel_msge6.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/ドイツ_PAL/Ger_asm/zel_msge6.asm
prismotizm/gigaleak
d082854866186a05fec4e2fdf1def0199e7f3098
[ "MIT" ]
null
null
null
Name: zel_msge6.asm Type: file Size: 56864 Last-Modified: '2016-05-13T04:23:03Z' SHA-1: 57D0BBD6829289AD9076627D5FA3FEE3B60D8F96 Description: null
21
47
0.816327
50a6eaa4af3436b291c8444be76ab4fa0104de8f
842
asm
Assembly
oeis/295/A295723.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/295/A295723.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/295/A295723.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A295723: a(n) = a(n-1) + 3*a(n-2) -2*a(n-3) - 2*a(n-4), where a(0) = 0, a(1) = 1, a(2) = 2, a(3) = 3. ; Submitted by Christian Krause ; 0,1,2,3,7,10,21,31,60,91,167,258,457,715,1236,1951,3315,5266,8837,14103,23452,37555,62031,99586,163665,263251,431012,694263,1133467,1827730,2977581,4805311,7815660,12620971,20502167,...
35.083333
499
0.706651
0fd92a270a2f0ec499e67f51c0101749bea332af
1,566
asm
Assembly
src/anim.asm
Mario-Kart-Felix/9os
e0000689a2c150d4758b87110bee731b1f950518
[ "Unlicense" ]
13
2016-06-04T19:10:37.000Z
2020-11-30T00:01:48.000Z
src/anim.asm
Mario-Kart-Felix/9os
e0000689a2c150d4758b87110bee731b1f950518
[ "Unlicense" ]
null
null
null
src/anim.asm
Mario-Kart-Felix/9os
e0000689a2c150d4758b87110bee731b1f950518
[ "Unlicense" ]
1
2021-03-09T05:00:09.000Z
2021-03-09T05:00:09.000Z
;----------------------------------------------------------------------------------------------------- ; ; Animation related operations reside here ; ;----------------------------------------------------------------------------------------------------- ; background: 7Fh ; keks: 42h ; streusel: 6Dh ; gla...
19.333333
102
0.42401
c7c1c8e1a4751e4920ad3360c3874d12931aab0b
1,236
asm
Assembly
programs/oeis/226/A226741.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/226/A226741.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/226/A226741.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A226741: Column 4 of array in A226513. ; 75,308,807,1704,3155,5340,8463,12752,18459,25860,35255,46968,61347,78764,99615,124320,153323,187092,226119,270920,322035,380028,445487,519024,601275,692900,794583,907032,1030979,1167180,1316415,1479488,1657227,1850484,2060135,2287080,2532243,2796572,3081039,3386640,3714395,406...
25.75
797
0.752427
0fa738a570c544d2e305160de7ba69bb441173b1
493
asm
Assembly
programs/oeis/082/A082850.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/082/A082850.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/082/A082850.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A082850: Let S(0) = {}, S(n) = {S(n-1), S(n-1), n}; sequence gives S(infinity). ; 1,1,2,1,1,2,3,1,1,2,1,1,2,3,4,1,1,2,1,1,2,3,1,1,2,1,1,2,3,4,5,1,1,2,1,1,2,3,1,1,2,1,1,2,3,4,1,1,2,1,1,2,3,1,1,2,1,1,2,3,4,5,6,1,1,2,1,1,2,3,1,1,2,1,1,2,3,4,1,1,2,1,1,2,3,1,1,2,1,1,2,3,4,5,1,1,2,1,1,2,3,1,1,2,1 mov $1,12 lpb $0 mov $2...
32.866667
211
0.551724
dfc499765c8a0e92cc3bed4bfb87ccd7249bb76d
1,767
asm
Assembly
libsrc/graphics/zx81/hr/copytxt.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
null
null
null
libsrc/graphics/zx81/hr/copytxt.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
null
null
null
libsrc/graphics/zx81/hr/copytxt.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
1
2019-12-03T23:57:48.000Z
2019-12-03T23:57:48.000Z
; ; ZX81 libraries ; ;-------------------------------------------------------------- ; This code comes from the 'HRG_Tool' ; by Matthias Swatosch ; Original function name: "HRG_Tool_TXTcopy" ;-------------------------------------------------------------- ; ; $Id: copytxt.asm,v 1.4 2017/01/02 22:58:00 aralbrec Exp $ ; ...
13.697674
65
0.577816
7ea1cac2d3ec4985315882576f92eb92b629efa9
271
asm
Assembly
programs/oeis/027/A027779.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/027/A027779.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/027/A027779.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A027779: a(n) = 3*(n+1)*C(n+2,6). ; 15,126,588,2016,5670,13860,30492,61776,117117,210210,360360,594048,946764,1465128,2209320,3255840,4700619,6662502,9287124,12751200,17267250,23088780,30515940,39901680,51658425 add $0,6 mov $1,$0 bin $0,6 sub $1,1 mul $1,$0 mul $1,3
27.1
177
0.726937
61bbc4846620f0c110ea1b1d20141ebe7dd136f4
676
asm
Assembly
programs/oeis/010/A010156.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/010/A010156.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/010/A010156.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A010156: Continued fraction for sqrt(78). ; 8,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,4,1,16,1,...
61.454545
563
0.56213
f0e74c995953624569fa6fa476a964d77375ac6f
318
asm
Assembly
programs/oeis/117/A117856.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/117/A117856.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/117/A117856.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A117856: Number of palindromes of length n (in base 4). ; 3,3,12,12,48,48,192,192,768,768,3072,3072,12288,12288,49152,49152,196608,196608,786432,786432,3145728,3145728,12582912,12582912,50331648,50331648,201326592,201326592,805306368,805306368,3221225472,3221225472,12884901888 div $0,2 mov $1,4 pow $1,$0 mul $1,3
39.75
221
0.783019
8b309d198b654a1fc0cf7e342624fb940a238a21
527
asm
Assembly
oeis/171/A171545.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/171/A171545.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/171/A171545.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A171545: Decimal expansion of sqrt(2/7). ; Submitted by Christian Krause ; 5,3,4,5,2,2,4,8,3,8,2,4,8,4,8,7,6,9,3,6,9,1,0,6,9,6,1,7,5,9,5,0,7,0,4,3,1,0,8,0,0,2,8,2,9,6,8,2,6,7,5,2,7,8,0,4,3,3,9,2,2,0,9,6,1,7,1,4,7,8,7,9,4,7,2,4,1,9,8,6,1,1,3,9,5,4,4,2,7,0,7,4,2,0,5,4,2,2,4,5 add $0,1 mov $1,1 mov $3,$0 mul $3,4 lpb $...
18.172414
201
0.523719
2cf876a86e80dac5ce4663fa44663666b709ff63
326
asm
Assembly
programs/oeis/026/A026599.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/026/A026599.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/026/A026599.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A026599: a(n) = Sum_{0<=j<=2*i, 0<=i<=n} A026584(i,j). ; 1,3,9,23,61,155,401,1023,2629,6723,17241,44135,113101,289643,742049,1900623,4868821,12471315,31946601,81831863,209618269,536945723,1375418801,3523201695,9024876901,23117683683,59217191289,151687926023 add $0,2 seq $0,26597 ; Expansion of (1+x)/(1-x-4*x^2). div...
46.571429
202
0.733129
423d91601d025e81b3617d5f0b5e687d2934c46a
8,254
asm
Assembly
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_21829_1243.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_21829_1243.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_21829_1243.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 %r15 push %r8 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0xa4d6, %rbx nop nop and %r12, %r12 movl $0x61626364, (%rbx) nop nop nop nop nop sub %rdx, %rdx lea addresses_UC_ht+0x182a6, %rsi lea addresses_WC_ht+0xf5ae, %rdi add %r8, ...
33.417004
2,999
0.656288
2e39316bb930f024bc1131efbe066f63b7900f7b
24,344
asm
Assembly
Library/Spool/UI/uiPrintControlUtils.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Library/Spool/UI/uiPrintControlUtils.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Library/Spool/UI/uiPrintControlUtils.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: Lib/Spool/UI FILE: uiPrintControlUtils.asm AUTHOR: Don Reeves, March 30, 1990 ROUTINES: Name Description ---- ----------- REVISION HI...
24.174777
79
0.564492
4c759059d2007f83018b7ce36f70984f755f7a73
661
asm
Assembly
oeis/117/A117972.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/117/A117972.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/117/A117972.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A117972: Numerator of zeta'(-2n), n >= 0. ; Submitted by Christian Krause ; 1,-1,3,-45,315,-14175,467775,-42567525,638512875,-97692469875,9280784638125,-2143861251406875,147926426347074375,-48076088562799171875,9086380738369043484375,-3952575621190533915703125,122529844256906551386796875,-6873924262812457532799304687...
44.066667
487
0.83056
ebde76a97d57c8adeff5372e4d07efa318aa68a6
4,831
asm
Assembly
Library/Text/TextSearchSp/tssC.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Library/Text/TextSearchSp/tssC.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Library/Text/TextSearchSp/tssC.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Berkeley Softworks 1991 -- All Rights Reserved PROJECT: Text FILE: tssC.asm AUTHOR: Andrew Wilson, Oct 9, 1991 ROUTINES: Name Description ---- ----------- TEXTSEARCHINSTRING C Stub for TextSearchInStr...
25.973118
79
0.568826
cafd6ef0dfa21daed1c7ac2fee2b8724e2b952d2
466
asm
Assembly
tests/devices/longptr/org.asm
fengjixuchui/sjasmplus
df0fabd2411bf89e23637fce46d273f52dafbe16
[ "BSD-3-Clause" ]
220
2016-10-22T19:44:39.000Z
2022-03-29T20:57:04.000Z
tests/devices/longptr/org.asm
ped7g/sjasmplus
487635c8057cd5594c372d9b70bc00a3f3a1ecc4
[ "BSD-3-Clause" ]
153
2018-05-07T10:31:23.000Z
2022-03-30T04:35:59.000Z
tests/devices/longptr/org.asm
ped7g/sjasmplus
487635c8057cd5594c372d9b70bc00a3f3a1ecc4
[ "BSD-3-Clause" ]
51
2016-05-12T21:27:36.000Z
2022-03-27T15:16:16.000Z
OUTPUT "org.bin" DEVICE NONE ; no errors/warnings expected because of the --longptr option ORG $FFFF longptr1: DB 'A' longptr2: DB 'B' longptr3: DB 'C' DEVICE ZXSPECTRUM48 ; the --longptr should NOT affect actual devices => errors will be reported ORG $FFFF devbyte1: ...
29.125
79
0.620172
003eef7a4cf42fd5ea88d7970da99a18c6e22817
8,283
asm
Assembly
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_591.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_591.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_591.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 %r14 push %r8 push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1e0b5, %rsi lea addresses_WT_ht+0x98b5, %rdi nop nop nop nop nop inc %r13 mov $28, %rcx rep movsl xor $803, %r11 lea addresses_WT_ht+0x15c7b, %r10 nop nop nop cmp %r8, %r8 mo...
32.610236
2,999
0.657733
7f786ef7675e034233e6ceaa2e5ff337e3c0296a
8,529
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_12.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_notsx.log_21829_12.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_notsx.log_21829_12.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 %r15 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x118ee, %rsi nop nop nop and %rdi, %rdi movw $0x6162, (%rsi) nop nop nop nop nop and $31326, %rdx lea addresses_normal_ht+0x26ea, %r14 clflush (%r14) nop nop nop nop xor $627...
31.014545
2,999
0.653652
a18f6c298ddc42dd28eb85a8f0286f503bec5d8e
71
asm
Assembly
test/xle-bad.asm
kspalaiologos/asmbf
c98a51d61724a46855de291a27d68a49a034810b
[ "MIT" ]
67
2020-08-03T06:26:35.000Z
2022-03-24T19:50:51.000Z
test/xle-bad.asm
pyautogui/asmbf
37c54a8a62df2fc4bab28bdeb43237b4905cbecd
[ "MIT" ]
55
2019-10-02T19:37:08.000Z
2020-06-12T19:40:53.000Z
test/xle-bad.asm
pyautogui/asmbf
37c54a8a62df2fc4bab28bdeb43237b4905cbecd
[ "MIT" ]
9
2019-05-18T11:59:41.000Z
2020-06-21T20:40:25.000Z
mov r1, $(signed(5)) mov r2, $(signed(3)) xle r1, r2 add r1, .0 out r1
11.833333
20
0.591549
f67e5a8ea3283832cf7af41326e603a65c02f5e3
4,616
asm
Assembly
Driver/Printer/HP/Dj500c/dj500cDriverInfo.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
504
2018-11-18T03:35:53.000Z
2022-03-29T01:02:51.000Z
Driver/Printer/HP/Dj500c/dj500cDriverInfo.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
96
2018-11-19T21:06:50.000Z
2022-03-06T10:26:48.000Z
Driver/Printer/HP/Dj500c/dj500cDriverInfo.asm
steakknife/pcgeos
95edd7fad36df400aba9bab1d56e154fc126044a
[ "Apache-2.0" ]
73
2018-11-19T20:46:53.000Z
2022-03-29T00:59:26.000Z
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved PROJECT: PC GEOS MODULE: Deskjet CMY printer driver FILE: dj500cDriverInfo.asm AUTHOR: Dave Durran, 27 Feb 1990 REVISION HISTORY: Name Date Description --...
38.466667
79
0.592721
4cdaa0c19c04a8f3184a2cf46963bd7a0b4ed14d
10,428
asm
Assembly
tests/test13.asm
dasien/mfc6502
01e0da3589388f66bf6c5a5a07f0bc1a5ff95682
[ "MIT" ]
null
null
null
tests/test13.asm
dasien/mfc6502
01e0da3589388f66bf6c5a5a07f0bc1a5ff95682
[ "MIT" ]
null
null
null
tests/test13.asm
dasien/mfc6502
01e0da3589388f66bf6c5a5a07f0bc1a5ff95682
[ "MIT" ]
null
null
null
; ;* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ;* * ;* COMPUTE THE DAY OF WEEK * ;* ...
32.689655
81
0.374185
e3875dd05bb48a0bc8ad9ccafee3dcbc65da0533
104,291
asm
Assembly
main.asm
gcoulby/JP
9c058be14f6eda6af3eef6493734d230104812eb
[ "MIT" ]
null
null
null
main.asm
gcoulby/JP
9c058be14f6eda6af3eef6493734d230104812eb
[ "MIT" ]
null
null
null
main.asm
gcoulby/JP
9c058be14f6eda6af3eef6493734d230104812eb
[ "MIT" ]
null
null
null
;-------------------------------------------------------- ; File Created by SDCC : free open source ANSI-C Compiler ; Version 4.1.0 #12072 (MINGW32) ;-------------------------------------------------------- .module main .optsdcc -mgbz80 ;-------------------------------------------------------- ; Public variables in...
21.026411
175
0.594596
838a1abaa1e1337843487d304c0053d6e59aafd4
373
asm
Assembly
programs/oeis/001/A001264.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/001/A001264.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/001/A001264.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A001264: Final 2 digits of 4^n. ; 1,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,36,44,76,4,16,64,56,24,96,84,3...
62.166667
290
0.648794
802c47407dfe45715ba0cebc455f4327a51aaaeb
371
asm
Assembly
programs/oeis/114/A114220.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/114/A114220.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/114/A114220.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A114220: a(n) = Sum_{k=0..floor(n/2)} k-(k-1)*0^(n-2k). ; 1,0,1,1,2,3,4,6,7,10,11,15,16,21,22,28,29,36,37,45,46,55,56,66,67,78,79,91,92,105,106,120,121,136,137,153,154,171,172,190,191,210,211,231,232,253,254,276,277,300,301,325,326,351,352,378,379,406,407,435,436 mov $2,4 add $2,$0 lpb $0 trn $0,2 add $2,$3 su...
24.733333
207
0.609164
6e4fcf638afccefc3075f16f363a1c36be017db4
6,335
asm
Assembly
lib/igzip-042/igzip/huffman.asm
guillaume-gricourt/HmnTrimmer
b9c452913420f56b5be076a7c93cd9f8d1f56817
[ "BSD-3-Clause" ]
1
2020-09-24T08:32:16.000Z
2020-09-24T08:32:16.000Z
lib/igzip-042/igzip/huffman.asm
guillaume-gricourt/HmnTrimmer
b9c452913420f56b5be076a7c93cd9f8d1f56817
[ "BSD-3-Clause" ]
1
2020-09-10T12:32:37.000Z
2020-09-10T12:36:36.000Z
lib/igzip-042/igzip/huffman.asm
guillaume-gricourt/HmnTrimmer
b9c452913420f56b5be076a7c93cd9f8d1f56817
[ "BSD-3-Clause" ]
1
2020-09-24T08:32:19.000Z
2020-09-24T08:32:19.000Z
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; The MIT License ; ; Copyright (c) 2014 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 Softwa...
27.424242
73
0.620363
8df3d4716ead9f0ebf5018a442a236a741db3840
396
asm
Assembly
src/intel/tools/tests/gen6/xor.asm
SoftReaper/Mesa-Renoir-deb
8d1de1f66058d62b41fe55d36522efea2bdf996d
[ "MIT" ]
null
null
null
src/intel/tools/tests/gen6/xor.asm
SoftReaper/Mesa-Renoir-deb
8d1de1f66058d62b41fe55d36522efea2bdf996d
[ "MIT" ]
null
null
null
src/intel/tools/tests/gen6/xor.asm
SoftReaper/Mesa-Renoir-deb
8d1de1f66058d62b41fe55d36522efea2bdf996d
[ "MIT" ]
null
null
null
xor(8) g17<1>D g17<4>D g2<0>D { align16 1Q }; xor(8) g7<1>D g7<8,8,1>D g2.5<0,1,0>D { align1 1Q }; xor(16) g8<1>D g8<8,8,1>D g2.5<0,1,0>D { align1 1H }; xor(8) g9<1>UD g5<8,8,1>UD 0x000003ffUD { align1 1Q }; xor...
66
79
0.401515
61ea2b4b9acffbe2e036c7d21eb7a247fd8efdd5
204
asm
Assembly
lab1/lab1.asm
mochisvelas/Microprogramming
565d49e1c0c84b5e45b121e484324e770b65ed72
[ "MIT" ]
null
null
null
lab1/lab1.asm
mochisvelas/Microprogramming
565d49e1c0c84b5e45b121e484324e770b65ed72
[ "MIT" ]
null
null
null
lab1/lab1.asm
mochisvelas/Microprogramming
565d49e1c0c84b5e45b121e484324e770b65ed72
[ "MIT" ]
null
null
null
.model small .data Name DB 'Brenner Hernandez $' Carne DB '1023718 $' .stack .code program: MOV AX, @DATA MOV DS, AX MOV DX, offset Name MOV AH, 09h INT 21h MOV AH, 4Ch INT 21h END program
10.736842
30
0.661765
0b0861ff2214ed80846fa925f38e395997092b25
5,138
asm
Assembly
test/reference/test_mc68hc05.asm
tgtakaoka/libasm
41ae8dcca3924c20eb482dc9e034120d8ee966a7
[ "Apache-2.0" ]
15
2020-01-24T14:15:08.000Z
2022-03-29T15:13:16.000Z
test/reference/test_mc68hc05.asm
tgtakaoka/libasm
41ae8dcca3924c20eb482dc9e034120d8ee966a7
[ "Apache-2.0" ]
23
2020-05-31T14:13:53.000Z
2021-09-22T17:06:29.000Z
test/reference/test_mc68hc05.asm
tgtakaoka/libasm
41ae8dcca3924c20eb482dc9e034120d8ee966a7
[ "Apache-2.0" ]
null
null
null
;;; Copyright 2021 Tadashi G. Takaoka ;;; ;;; Licensed under the Apache License, Version 2.0 (the "License"); ;;; you may not use this file except in compliance with the License. ;;; You may obtain a copy of the License at ;;; ;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; ;;; Unless required by applicable law ...
20.552
76
0.332814
8c1c7258432cf5c7520cd30538d1121787c255e1
137
asm
Assembly
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc_acos.asm
ahjelm/z88dk
c4de367f39a76b41f6390ceeab77737e148178fa
[ "ClArtistic" ]
640
2017-01-14T23:33:45.000Z
2022-03-30T11:28:42.000Z
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc_acos.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
1,600
2017-01-15T16:12:02.000Z
2022-03-31T12:11:12.000Z
libsrc/_DEVELOPMENT/math/float/math16/c/sdcc/cm16_sdcc_acos.asm
C-Chads/z88dk
a4141a8e51205c6414b4ae3263b633c4265778e6
[ "ClArtistic" ]
215
2017-01-17T10:43:03.000Z
2022-03-23T17:25:02.000Z
SECTION code_fp_math16 PUBLIC cm16_sdcc_acos EXTERN cm16_sdcc_read1, acosf16 cm16_sdcc_acos: call cm16_sdcc_read1 jp acosf16
12.454545
31
0.810219
ee1edeb60082bff23f8ed804bfd0fec7abad7a46
1,179
asm
Assembly
programs/oeis/115/A115716.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/115/A115716.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/115/A115716.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A115716: A divide-and-conquer sequence. ; 1,1,3,1,3,1,11,1,3,1,11,1,3,1,43,1,3,1,11,1,3,1,43,1,3,1,11,1,3,1,171,1,3,1,11,1,3,1,43,1,3,1,11,1,3,1,171,1,3,1,11,1,3,1,43,1,3,1,11,1,3,1,683,1,3,1,11,1,3,1,43,1,3,1,11,1,3,1,171,1,3,1,11,1,3,1,43,1,3,1,11,1,3,1,683,1,3,1,11,1,3,1,43,1,3,1,11,1,3,1,171,1,3,1,11,1,3,1,43,1,3...
23.58
578
0.498728
e7b3dbdbc7389d9efdfa3665584db59e5f472eae
6,881
asm
Assembly
inc/base.asm
gb-archive/mealybug-tearoom-tests
70e88fb90b59d19dfbb9c3ac36c64105202bb1f4
[ "MIT" ]
37
2018-04-26T17:45:01.000Z
2022-03-19T16:11:08.000Z
inc/base.asm
gb-archive/mealybug-tearoom-tests
70e88fb90b59d19dfbb9c3ac36c64105202bb1f4
[ "MIT" ]
1
2020-09-26T23:49:49.000Z
2020-09-26T23:49:49.000Z
inc/base.asm
gb-archive/mealybug-tearoom-tests
70e88fb90b59d19dfbb9c3ac36c64105202bb1f4
[ "MIT" ]
6
2019-04-18T20:13:56.000Z
2022-02-15T04:22:09.000Z
; Copyright (C) 2020 Matt Currie <me@mattcurrie.com> ; ; 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, mer...
17.826425
79
0.641477
86e9fabbf15e0032e05020a4c3d8e18ea876bf0d
1,175
asm
Assembly
programs/oeis/127/A127884.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
22
2018-02-06T19:19:31.000Z
2022-01-17T21:53:31.000Z
programs/oeis/127/A127884.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
41
2021-02-22T19:00:34.000Z
2021-08-28T10:47:47.000Z
programs/oeis/127/A127884.asm
neoneye/loda
afe9559fb53ee12e3040da54bd6aa47283e0d9ec
[ "Apache-2.0" ]
5
2021-02-24T21:14:16.000Z
2021-08-09T19:48:05.000Z
; A127884: a(n) = floor(Fibonacci(n)/n). ; 1,0,0,0,1,1,1,2,3,5,8,12,17,26,40,61,93,143,220,338,521,805,1245,1932,3001,4668,7274,11350,17732,27734,43428,68072,106805,167731,263641,414732,652913,1028636,1621691,2558353,4038540,6378911,10081265,15941107,25220070,39919823,63217341,100156812,158749837,251725380,399313942,63...
146.875
1,021
0.853617
dd0fa936c81188c492a06f6683c4ada97dc3ce44
2,441
asm
Assembly
danagy/fsin.asm
DW0RKiN/Floating-point-Library-for-Z80
494add6bc20922f4a634fbbacb32d8bd4dd185a7
[ "MIT" ]
12
2020-02-17T09:07:02.000Z
2022-02-09T22:15:34.000Z
danagy/fsin.asm
DW0RKiN/Floating-point-Library-for-Z80
494add6bc20922f4a634fbbacb32d8bd4dd185a7
[ "MIT" ]
null
null
null
danagy/fsin.asm
DW0RKiN/Floating-point-Library-for-Z80
494add6bc20922f4a634fbbacb32d8bd4dd185a7
[ "MIT" ]
1
2021-06-21T23:30:28.000Z
2021-06-21T23:30:28.000Z
if not defined @FSIN ; Trigonometric function sine ; Input: HL -π/2..π/2 ; Output: HL = sin(HL) ; Pollutes: AF, DE @FSIN: if not defined FSIN ; ***************************************** FSIN ; * ; ***************************************** endif LD A, H ; ...
34.871429
63
0.24662
8ceb6d2fb3c4368cb66c2c83c4fc270608321fae
225
asm
Assembly
MOON.asm
Mohamed-94/Group-of-Assembly-Programs-Samples--8086-85-Processors-family-
060422e19882bb32c35bf5b8d42aae29eee0d820
[ "MIT" ]
16
2018-07-20T03:11:03.000Z
2021-12-14T11:18:36.000Z
MOON.asm
Mohamed-94/Group-of-Assembly-Programs-Samples--8086-85-Processors-family-
060422e19882bb32c35bf5b8d42aae29eee0d820
[ "MIT" ]
null
null
null
MOON.asm
Mohamed-94/Group-of-Assembly-Programs-Samples--8086-85-Processors-family-
060422e19882bb32c35bf5b8d42aae29eee0d820
[ "MIT" ]
3
2018-07-20T03:11:08.000Z
2020-09-18T18:57:53.000Z
;TITEL MOON .MODEL SMALL .STACK 100H .DATA .CODE MAIN PROC XOR BX,BX MOV AH,1 INT 21h While_: CMP AL, 0Dh JE END_While AND AL , 0fh SHL BX, 1 OR BL, AL INT 21h  JMP While_ END_While: ;MAIN ENDP ;END MAIN
11.25
14
0.653333
6d7b530f945648bb4d98eda76d32679c398f44e4
978
asm
Assembly
CO2008/W3/ex4.asm
Smithienious/hcmut-201
be16b77831aae83ff42e656a181881686c74e674
[ "MIT" ]
null
null
null
CO2008/W3/ex4.asm
Smithienious/hcmut-201
be16b77831aae83ff42e656a181881686c74e674
[ "MIT" ]
2
2020-10-12T09:57:12.000Z
2020-11-09T11:05:01.000Z
CO2008/W3/ex4.asm
Smithienious/hcmut-201
be16b77831aae83ff42e656a181881686c74e674
[ "MIT" ]
4
2020-10-12T10:30:56.000Z
2020-12-15T14:46:04.000Z
.data: X: .word 0, 11, 22, 33, 44, 55, 66, 77, 88, 99 msg1: .asciiz "Enter an integer between 0 and 10: " msg2: .asciiz "Data at index is " # Start program code .text: .globl main main: la $s7, X # Address of X add $s0, $zero, $zero # Counter addi $t6...
19.959184
55
0.45092
2dc36e536c30426e779f1754cd028fbca1e03425
62
asm
Assembly
VirtualMachine/Win32/UnitTests/Conditionals/test3_not_2_Boolean.asm
ObjectPascalInterpreter/BookPart_3
95150d4d02f7e13e5b1ebb58c249073a384f2a0a
[ "Apache-2.0" ]
8
2021-11-07T22:45:25.000Z
2022-03-12T21:38:53.000Z
VirtualMachine/Win32/UnitTests/Conditionals/test3_not_2_Boolean.asm
Irwin1985/BookPart_2
4e8c2e47cd09b77c6e5bd3455ddfe7492adf26bf
[ "Apache-2.0" ]
4
2021-09-23T02:13:55.000Z
2021-12-07T06:08:17.000Z
VirtualMachine/Win32/UnitTests/Conditionals/test3_not_2_Boolean.asm
Irwin1985/BookPart_2
4e8c2e47cd09b77c6e5bd3455ddfe7492adf26bf
[ "Apache-2.0" ]
4
2021-11-24T17:24:56.000Z
2021-12-21T04:56:58.000Z
# Test 3, test not operation pushb true not halt
10.333333
28
0.596774
6cf91862dbfb8b3d58bc0299f84d5351062555b2
8,240
asm
Assembly
target/cos_117/disasm/iop_overlay1/NEWDIS.asm
jrrk2/cray-sim
52c9639808d6890517092637b188282c00cce4f7
[ "BSL-1.0" ]
49
2020-10-09T12:29:16.000Z
2022-03-12T02:33:35.000Z
target/cos_117/disasm/iop_overlay1/NEWDIS.asm
jrrk2/cray-sim
52c9639808d6890517092637b188282c00cce4f7
[ "BSL-1.0" ]
1
2021-12-29T15:59:25.000Z
2021-12-29T15:59:25.000Z
target/cos_117/disasm/iop_overlay1/NEWDIS.asm
jrrk2/cray-sim
52c9639808d6890517092637b188282c00cce4f7
[ "BSL-1.0" ]
6
2021-04-12T06:10:32.000Z
2022-02-08T23:11:19.000Z
0x0000 (0x000000) 0x2118- f:00020 d: 280 | A = OR[280] 0x0001 (0x000002) 0x1E00-0x0007 f:00017 d: 0 | A = A - 7 (0x0007) 0x0003 (0x000006) 0x9414- f:00112 d: 20 | R = P + 20 (0x0017), A = 0 0x0004 (0x000008) 0x2118- f:00020 d: 280 | A = OR[280] ...
79.230769
79
0.459951
c74ef6a93a5cd4e2346a96ed9ed6fc95788b2a86
10,191
asm
Assembly
bin/gcc/config/sparc/lb1spc.asm
aaliomer/exos
6a37c41cad910c373322441a9f23cfabdbfae275
[ "BSD-3-Clause" ]
1
2018-01-23T23:07:19.000Z
2018-01-23T23:07:19.000Z
bin/gcc/config/sparc/lb1spc.asm
aaliomer/exos
6a37c41cad910c373322441a9f23cfabdbfae275
[ "BSD-3-Clause" ]
null
null
null
bin/gcc/config/sparc/lb1spc.asm
aaliomer/exos
6a37c41cad910c373322441a9f23cfabdbfae275
[ "BSD-3-Clause" ]
null
null
null
/* This is an assembly language implementation of libgcc1.c for the sparc processor. These routines are derived from the Sparc Architecture Manual, version 8, slightly edited to match the desired calling convention, and also to optimize them for our purposes. */ #ifdef L_mulsi3 .text .align 4 .global ....
20.926078
76
0.633795
fdb7fda883528ea3d4732a72ad355e25b0f64daa
2,861
asm
Assembly
programs/oeis/001/A001547.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/001/A001547.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/001/A001547.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A001547: a(n) = (7*n+1)*(7*n+2)*(7*n+4). ; 8,792,4320,12650,27840,51948,87032,135150,198360,278720,378288,499122,643280,812820,1009800,1236278,1494312,1785960,2113280,2478330,2883168,3329852,3820440,4356990,4941560,5576208,6262992,7003970,7801200,8656740,9572648,10550982,11593800,12703160,13881120,15129738,16451072,1...
75.289474
2,483
0.843761
2462952022c8e259290610b204ac655463611145
445
asm
Assembly
programs/oeis/111/A111074.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/111/A111074.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/111/A111074.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A111074: Let t(n) denote the triangular numbers (A000217). Sequence mixes t(n+2) and t(n). ; 3,0,6,1,10,3,15,6,21,10,28,15,36,21,45,28,55,36,66,45,78,55,91,66,105,78,120,91,136,105,153,120,171,136,190,153,210,171,231,190,253,210,276,231,300,253,325,276,351,300,378,325,406,351,435,378,465,406,496,435 mov $3,$0 gcd $0...
23.421053
209
0.644944
27ef248b0e5c39c48a75b0a552c1066e470cedb9
386
asm
Assembly
libsrc/_DEVELOPMENT/z80/c/sccz80/im2_create_generic_isr_8080_callee.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/z80/c/sccz80/im2_create_generic_isr_8080_callee.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
libsrc/_DEVELOPMENT/z80/c/sccz80/im2_create_generic_isr_8080_callee.asm
meesokim/z88dk
5763c7778f19a71d936b3200374059d267066bb2
[ "ClArtistic" ]
null
null
null
; void *im2_create_generic_isr_8080_callee(uint8_t num_callback, void *address) SECTION code_z80 PUBLIC im2_create_generic_isr_8080_callee, l0_im2_create_generic_isr_8080_callee EXTERN asm_im2_create_generic_isr_8080 im2_create_generic_isr_8080_callee: pop hl pop de ex (sp),hl l0_im2_create_generic_isr_...
18.380952
80
0.831606
55b0090a5443bea0a3296ddbf589db3578d46f42
7,572
asm
Assembly
sound.asm
picosonic/bbm
f3d8e3f7bedd36f6156bf8bc87068cc17800b41d
[ "MIT" ]
4
2020-09-16T12:05:50.000Z
2021-06-22T23:37:29.000Z
sound.asm
picosonic/bbm
f3d8e3f7bedd36f6156bf8bc87068cc17800b41d
[ "MIT" ]
null
null
null
sound.asm
picosonic/bbm
f3d8e3f7bedd36f6156bf8bc87068cc17800b41d
[ "MIT" ]
null
null
null
.sound_explosion { PHA:TXA:PHA:TYA:PHA ; Set pointer to sound params in XY LDX #effectparams MOD 256 LDY #effectparams DIV 256 ; Action OS sound function LDA #&07:JSR OSWORD PLA:TAY:PLA:TAX:PLA RTS ; Sound parameter block .effectparams EQUB &10 ; Channel LSB (noise channel 0, with flush) EQUB...
16.789357
74
0.680534
134d719026febc0430eece37ceafbe5e7cb5cd84
282
asm
Assembly
p0702.asm
zhangyuesai/8086-asm-learning-code
a934fb3a98a53a6167b647535b3251680294a786
[ "MIT" ]
1
2018-07-23T10:30:22.000Z
2018-07-23T10:30:22.000Z
p0702.asm
zhangyuesai/8086-asm-learning-code
a934fb3a98a53a6167b647535b3251680294a786
[ "MIT" ]
null
null
null
p0702.asm
zhangyuesai/8086-asm-learning-code
a934fb3a98a53a6167b647535b3251680294a786
[ "MIT" ]
null
null
null
assume cs:codesg,ds:datasg datasg segment db 'welcome to masm!' db '................' datasg ends codesg segment start: mov ax,datasg mov ds,ax mov si,0 mov di,16 mov cx,16 s: mov al,[si] mov [di],al inc si inc di loop s mov ax,4c00h int 21h codesg ends end start
10.444444
26
0.64539
861a02064a7335adede3212c0e79b9728b5222f5
490
asm
Assembly
programs/oeis/104/A104522.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
1
2021-03-15T11:38:20.000Z
2021-03-15T11:38:20.000Z
programs/oeis/104/A104522.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
programs/oeis/104/A104522.asm
jmorken/loda
99c09d2641e858b074f6344a352d13bc55601571
[ "Apache-2.0" ]
null
null
null
; A104522: Expansion of (-1+x+3*x^2-x^3)/((x+1)(3*x-1)(x-1)^2). ; 1,3,7,19,53,155,459,1371,4105,12307,36911,110723,332157,996459,2989363,8968075,26904209,80712611,242137815,726413427,2179240261,6537720763,19613162267,58839486779,176518460313,529555380915,1588666142719,4765998428131 mov $2,$0 mov $3,$0 add $3,1 lpb $3 ...
20.416667
218
0.644898