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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
13317e648e5916341ddc907590820d4f3b61ee07 | 732 | asm | Assembly | oeis/244/A244472.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/244/A244472.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/244/A244472.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A244472: 2nd-largest term in n-th row of Stern's diatomic triangle A002487.
; Submitted by Jamie Morken(s4)
; 1,2,4,7,12,19,31,50,81,131,212,343,555,898,1453,2351,3804,6155,9959,16114,26073,42187,68260,110447,178707,289154,467861,757015,1224876,1981891,3206767,5188658,8395425,13584083,21979508,35563591,57543099,93106... | 40.666667 | 489 | 0.782787 |
1d2f203288af0a7d4d5c81bb81f094b15e374831 | 1,986 | asm | Assembly | programs/oeis/290/A290917.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/290/A290917.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/290/A290917.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A290917: p-INVERT of the positive integers, where p(S) = (1 - S)^2.
; 2,7,22,67,200,588,1708,4913,14018,39725,111922,313752,875702,2434747,6746350,18636343,51340988,141089508,386857888,1058572325,2891193242,7882921697,21458980582,58330331952,158339542250,429274563823,1162435429318,3144299295403,8496313890608,22935929... | 70.928571 | 1,654 | 0.870594 |
da235897477858d1bbbfdf56613c098be843e7ad | 241 | asm | Assembly | src/test/resources/data/generationtests/asmsx-labels.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | 36 | 2020-06-29T06:52:26.000Z | 2022-02-10T19:41:58.000Z | src/test/resources/data/generationtests/asmsx-labels.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | 39 | 2020-07-02T18:19:34.000Z | 2022-03-27T18:08:54.000Z | src/test/resources/data/generationtests/asmsx-labels.asm | cpcitor/mdlz80optimizer | 75070d984e1f08474e6d397c7e0eb66d8be0c432 | [
"Apache-2.0"
] | 7 | 2020-07-02T06:00:05.000Z | 2021-11-28T17:31:13.000Z | ; Test case to make sure local labels are saved in a way asMSX can parse them afterwards
org #8000
.rom
.start loop
loop:
call f1
jp loop
f1:
ld a,[hl]
ld b,8
.l1:
inc a
djnz .l1
ld b,8
@@l2:
inc a
djnz @@l2
ld [hl],a
ret
| 10.954545 | 88 | 0.630705 |
bf151cfaeb618394c61b8a597bda5a038e009fa0 | 5,166 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1014.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_1014.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_1014.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 %r12
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x174d9, %r9
nop
nop
add $37287, %r11
mov (%r9), %ebx
nop
nop
nop
add %r11, %r11
lea addresses_WC_ht+0x5229, %r10
nop
nop
and %rax, %rax
vmovups (%r10), %ymm0
vextrac... | 44.153846 | 2,999 | 0.660085 |
87a1050c21893e80c11d034b63668f197876bd36 | 147 | asm | Assembly | other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/日本_Ver3/asm/z00_grnd.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/日本_Ver3/asm/z00_grnd.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/日本_Ver3/asm/z00_grnd.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | Name: z00_grnd.asm
Type: file
Size: 110882
Last-Modified: '2016-05-13T04:36:32Z'
SHA-1: EE2DA3BE6F1D328EDD6B3EFD0AE3D4ED6D9B53C4
Description: null
| 21 | 47 | 0.816327 |
f1314122b3772f596b6c48138c99b4bce06d4d02 | 1,913 | asm | Assembly | programs/oeis/256/A256077.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/256/A256077.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/256/A256077.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A256077: Repeat 2^d times the repunit A002275(d); d = 1, 2, 3...
; 1,1,11,11,11,11,111,111,111,111,111,111,111,111,1111,1111,1111,1111,1111,1111,1111,1111,1111,1111,1111,1111,1111,1111,1111,1111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,11111,111... | 147.153846 | 1,761 | 0.834814 |
651de9520ea51f0068db5ec7e9b86a5cd9c1c806 | 1,442 | asm | Assembly | std/macros.asm | SuperFola/project-E | 0542d6aa649f1e4488df1ea036ace80bf3143056 | [
"MIT",
"Unlicense"
] | 16 | 2018-05-12T17:25:48.000Z | 2020-09-12T13:17:10.000Z | std/macros.asm | SuperFola/project-E | 0542d6aa649f1e4488df1ea036ace80bf3143056 | [
"MIT",
"Unlicense"
] | 6 | 2019-07-08T08:52:54.000Z | 2019-07-08T09:00:13.000Z | std/macros.asm | SuperFola/project-E | 0542d6aa649f1e4488df1ea036ace80bf3143056 | [
"MIT",
"Unlicense"
] | null | null | null | %ifndef proj_e_macros_asm
%define proj_e_macros_asm
; --------------------------
; Strings
; --------------------------
%macro print 1
push si
mov si, %1
call proj_e_print
pop si
%endmacro
%macro printhex 1
mov ax, %1
call proj_e_print_hex
%endmacro
%macro mystosb 1
mov [... | 18.487179 | 53 | 0.626214 |
cc6e5511c39a91e1eb137bfecba403a8d819db55 | 3,769 | asm | Assembly | 03 SoliditySamples-master/exeth/simple/contracts/counter.asm | JUANLUNABLANCO/BLOCKCHAIN_COURSES | 1428edad0a37f36464a46c8df44a30ef7da37e9d | [
"MIT"
] | null | null | null | 03 SoliditySamples-master/exeth/simple/contracts/counter.asm | JUANLUNABLANCO/BLOCKCHAIN_COURSES | 1428edad0a37f36464a46c8df44a30ef7da37e9d | [
"MIT"
] | null | null | null | 03 SoliditySamples-master/exeth/simple/contracts/counter.asm | JUANLUNABLANCO/BLOCKCHAIN_COURSES | 1428edad0a37f36464a46c8df44a30ef7da37e9d | [
"MIT"
] | null | null | null |
======= counter.sol:Counter =======
EVM assembly:
/* "counter.sol":63:399 contract Counter {
... */
mstore(0x40, 0x60)
/* "counter.sol":109:165 function Counter() public {
... */
jumpi(tag_1, iszero(callvalue))
0x0
dup1
revert
tag_1:
tag_2:
/* "counter.sol":156:157 1 */
0x1
... | 20.372973 | 102 | 0.49403 |
f7a8e81a768483e3f9acd9e589f20ca5442c2483 | 453 | asm | Assembly | oeis/028/A028131.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/028/A028131.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/028/A028131.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A028131: Expansion of 1/((1-4x)(1-6x)(1-7x)(1-9x)).
; Submitted by Christian Krause
; 1,26,429,5746,68285,751842,7859293,79189682,776807229,7469674498,70755237917,662574315858,6150105857533,56698559685794,519954841569501,4748676612377074,43230125518942397,392566127341918530
mov $1,1
mov $2,$0
mov $3,$0
lpb $2
mov ... | 25.166667 | 190 | 0.697572 |
a595d6253a0f1674d1c1320255b8b53e7304eb68 | 567 | asm | Assembly | oeis/036/A036290.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/036/A036290.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/036/A036290.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A036290: a(n) = n*3^n.
; 0,3,18,81,324,1215,4374,15309,52488,177147,590490,1948617,6377292,20726199,66961566,215233605,688747536,2195382771,6973568802,22082967873,69735688020,219667417263,690383311398,2165293113021,6778308875544,21182215236075,66088511536554,205891132094649,640550188738908,1990280943581607,6176733962... | 70.875 | 501 | 0.865961 |
6a7b1b440f68b73ef3f91e24b7c0ae67537eda28 | 571 | asm | Assembly | libsrc/target/rex/DbInsertText.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/target/rex/DbInsertText.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/target/rex/DbInsertText.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
; Database Call for REX6000
;
; DbInsertText
;
; $Id: DbInsertText.asm,v 1.4 2017-01-03 00:11:31 aralbrec Exp $
PUBLIC DbInsertText
PUBLIC _DbInsertText
.DbInsertText
._DbInsertText
ld ix,2
add ix,sp
ld l,(ix+0)
ld h,(ix+1)
push hl
ld hl,$0002
push hl
ld hl,$0000
push hl
add hl,sp
ld ($c00a)... | 11.895833 | 64 | 0.597198 |
85fae0e426ee9864c10a0dbca937bfacc431e888 | 4,048 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1425.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_0xca_notsx.log_21829_1425.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_0xca_notsx.log_21829_1425.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1ef8f, %rsi
lea addresses_A_ht+0x1438f, %rdi
nop
xor $7138, %r14
mov $4, %rcx
rep movsb
nop
nop
dec %r14
pop %rsi
pop %rdi
pop %rcx
pop %r14
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %... | 69.793103 | 2,999 | 0.663785 |
86473ff8494506181fdac7b31f3a4ca750537de0 | 1,134 | asm | Assembly | gcd.asm | sirdangd/asm | 98a935b3217d7d0af4bf5b883bce71e5a7a2a3bc | [
"MIT"
] | null | null | null | gcd.asm | sirdangd/asm | 98a935b3217d7d0af4bf5b883bce71e5a7a2a3bc | [
"MIT"
] | null | null | null | gcd.asm | sirdangd/asm | 98a935b3217d7d0af4bf5b883bce71e5a7a2a3bc | [
"MIT"
] | null | null | null |
;gcd
;first thing I do is check whether they are the
;same number or not, if they are, then I just result
;whatever is in reg a
;then I check if reg b is greater than reg a, if it
;is, I switch the two to avoid confusion
;once that is all done, I begin my loop which subtracts
;reg a to reg b until it is negative ... | 15.971831 | 57 | 0.694885 |
c738ce06eeb8565f42c12784f6f1c73cd2ea9a5d | 12,204 | asm | Assembly | dv3/qlsd/io.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | dv3/qlsd/io.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | dv3/qlsd/io.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; DV3 IO routines V3.03 1992 Tony Tebby
;
; 2020-03-07 3.01 Modifications for correct medium name (xinf call) (MK+wl)
; 2020-04-26 3.02 Removed support for DOS timestamps to save space (MK)
; 2020-05-07 3.03 Fixed io.minf to fill the name with spaces (MK)
section dv3
xdef dv3_io
xdef dv3_ionb
xde... | 22.516605 | 79 | 0.657653 |
6efe9a95ccfa3bffd477127d2f888b7c11102458 | 1,524 | asm | Assembly | tests/exec/jmp_far16/jmp_far16.asm | ykskb/dax86 | d7c90afb4a306f04bd840da2b32faedec01bef93 | [
"MIT"
] | 12 | 2020-09-17T13:33:24.000Z | 2022-03-13T21:48:52.000Z | tests/exec/jmp_far16/jmp_far16.asm | ykusakabe/dax86 | d7c90afb4a306f04bd840da2b32faedec01bef93 | [
"MIT"
] | 2 | 2020-07-03T03:12:01.000Z | 2021-06-11T00:31:19.000Z | tests/exec/jmp_far16/jmp_far16.asm | ykusakabe/dax86 | d7c90afb4a306f04bd840da2b32faedec01bef93 | [
"MIT"
] | 5 | 2020-07-04T16:59:29.000Z | 2021-11-26T17:14:07.000Z | BITS 16
org 0x7c00
; jmp
; EB: jmp rel8 short, displacement relative to next instruction
; E9: jmp rel8/16 near, displacement relative to next instruction
; FF/4: jmp r/m16/32 near, absolute
; EA: jmp ptr16/32 far, absolute from operand
; FF/5: jmp m16/32 far, absolute indi... | 33.130435 | 84 | 0.637139 |
0ef2281c04014458e1401e639af21863d3b4c04c | 89 | asm | Assembly | src/main/fragment/mos6502-common/_deref_pwuz1=_deref_pwuz1_minus_vwuc1.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/_deref_pwuz1=_deref_pwuz1_minus_vwuc1.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/_deref_pwuz1=_deref_pwuz1_minus_vwuc1.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | ldy #0
lda ({z1}),y
sec
sbc #<{c1}
sta ({z1}),y
iny
lda ({z1}),y
sbc #>{c1}
sta ({z1}),y
| 8.9 | 12 | 0.494382 |
7222524346c681e63a3b1be9fafc03217d70d731 | 204 | asm | Assembly | dos/11.asm | zrsharp/assembly | e9d68311e7a37b7fec042b8f7de3ed9b537996b8 | [
"MIT"
] | null | null | null | dos/11.asm | zrsharp/assembly | e9d68311e7a37b7fec042b8f7de3ed9b537996b8 | [
"MIT"
] | null | null | null | dos/11.asm | zrsharp/assembly | e9d68311e7a37b7fec042b8f7de3ed9b537996b8 | [
"MIT"
] | null | null | null | data segment
array db 1h,2h,3h,4h
data ends
code segment
assume cs:code
assume ds:data
start:
mov al,array
mov cx,03h
mov ax,0
mov bx,0
int 21h
code ends
end start
| 11.333333 | 24 | 0.617647 |
56dac3a568d91006ec343bf6e3cedfa24bb33142 | 2,725 | asm | Assembly | data/maps/special_warps.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | 1 | 2022-02-15T00:19:44.000Z | 2022-02-15T00:19:44.000Z | data/maps/special_warps.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | data/maps/special_warps.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | ; Format: (size 2 bytes)
; 00: target map ID
; 01: which dungeon warp in the source map was used
DungeonWarpList:
db SEAFOAM_ISLANDS_B1F, 1
db SEAFOAM_ISLANDS_B1F, 2
db SEAFOAM_ISLANDS_B2F, 1
db SEAFOAM_ISLANDS_B2F, 2
db SEAFOAM_ISLANDS_B3F, 1
db SEAFOAM_ISLANDS_B3F, 2
db SEAFOAM_ISLANDS_B4F, 1
db SEAFOAM_ISLAN... | 29.619565 | 52 | 0.747156 |
e0a5cee23c7b6332d83f7d4531b27be5bead7d15 | 18,304 | asm | Assembly | v2.0/source/msdos/misc.asm | neozeed/MS-DOS | 1cb8b96cd347b7eb150922eeb4924ec92911dc31 | [
"MIT"
] | 7 | 2018-09-29T16:03:48.000Z | 2021-04-06T20:08:57.000Z | v2.0/source/msdos/misc.asm | neozeed/MS-DOS | 1cb8b96cd347b7eb150922eeb4924ec92911dc31 | [
"MIT"
] | null | null | null | v2.0/source/msdos/misc.asm | neozeed/MS-DOS | 1cb8b96cd347b7eb150922eeb4924ec92911dc31 | [
"MIT"
] | null | null | null | TITLE MISC - Miscellanious routines for MS-DOS
NAME MISC
;
; Miscellaneous system calls most of which are CAVEAT
;
; $SLEAZEFUNC
; $SLEAZEFUNCDL
; $GET_INDOS_FLAG
; $GET_IN_VARS
; $GET_DEFAULT_DPB
; $GET_DPB
; $DISK_RESET
; $SETDPB
; $Dup_PDB
; $CREATE_PROCESS_DATA_BLOCK
; SETMEM
;
.xlist
;
; get th... | 28.246914 | 90 | 0.501202 |
cf53cd0786eea3b0a9680d1f5e72858c58c6910a | 1,097 | asm | Assembly | programs/oeis/138/A138999.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/138/A138999.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/138/A138999.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A138999: First differences of Frobenius numbers for 8 successive numbers A138988.
; 1,1,1,1,1,1,10,2,2,2,2,2,2,18,3,3,3,3,3,3,26,4,4,4,4,4,4,34,5,5,5,5,5,5,42,6,6,6,6,6,6,50,7,7,7,7,7,7,58,8,8,8,8,8,8,66,9,9,9,9,9,9,74,10,10,10,10,10,10,82,11,11,11,11,11,11,90,12,12,12,12,12,12,98,13,13,13,13,13,13,106,14,14,14,14,14... | 34.28125 | 720 | 0.61258 |
91a672c9e4067622706fbbad5d508f91519f9b91 | 212 | asm | Assembly | data/pokemon/dex_entries/ivysaur.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 28 | 2019-11-08T07:19:00.000Z | 2021-12-20T10:17:54.000Z | data/pokemon/dex_entries/ivysaur.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 13 | 2020-01-11T17:00:40.000Z | 2021-09-14T01:27:38.000Z | data/pokemon/dex_entries/ivysaur.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 22 | 2020-05-28T17:31:38.000Z | 2022-03-07T20:49:35.000Z | db "SEED@" ; species name
dw 303, 290 ; height, weight
db "The bulb on its"
next "back grows as it"
next "absorbs nutrients."
page "The bulb gives off"
next "a pleasant aroma"
next "when it blooms.@"
| 19.272727 | 29 | 0.665094 |
573e39e2d102873640acc7f78261f980c92719b3 | 2,105 | asm | Assembly | fox32rom/memory.asm | ry755/fox32 | 5c06c23941e4a1efae0440a6e8cf31d3f0714256 | [
"MIT"
] | 6 | 2022-01-27T06:55:52.000Z | 2022-03-13T22:21:17.000Z | fox32rom/memory.asm | ry755/fox32 | 5c06c23941e4a1efae0440a6e8cf31d3f0714256 | [
"MIT"
] | null | null | null | fox32rom/memory.asm | ry755/fox32 | 5c06c23941e4a1efae0440a6e8cf31d3f0714256 | [
"MIT"
] | null | null | null | ; memory copy/compare routines
; copy specified number of bytes from source pointer to destination pointer
; if the source and destination overlap, the behavior is undefined
; inputs:
; r0: pointer to source
; r1: pointer to destinaton
; r2: number of bytes to copy
; outputs:
; none
copy_memory_bytes:
push r0
... | 19.490741 | 80 | 0.690261 |
f8703ca278d2852c7b92c9dfcc2dc6f48ca7a7e0 | 776 | asm | Assembly | programs/oeis/342/A342761.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/342/A342761.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/342/A342761.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A342761: Fold a square sheet of paper alternately vertically to the left and horizontally downwards; after each fold, draw a line along each inward crease; after n folds, the resulting graph has a(n) edges.
; 4,7,10,15,25,43,79,147,283,547,1075,2115,4195,8323,16579,33027,65923,131587,262915,525315,1050115,2099203,419... | 33.73913 | 208 | 0.673969 |
5ca128fbf35233e1d2585a9be2ca0f25b973b606 | 3,870 | asm | Assembly | libtool/src/gmp-6.1.2/mpn/x86_64/aorrlsh_n.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/aorrlsh_n.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/aorrlsh_n.asm | kroggen/aergo | 05af317eaa1b62b21dc0144ef74a9e7acb14fb87 | [
"MIT"
] | 498 | 2015-01-08T18:58:18.000Z | 2022-03-20T15:37:45.000Z | dnl AMD64 mpn_addlsh_n and mpn_rsblsh_n. R = V2^k +- U.
dnl Copyright 2006, 2010-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 either:
dnl
dnl * the GNU Lesser Gener... | 21.864407 | 79 | 0.65969 |
4919313d3b113624add5ae419b3eb4b80f79992e | 708 | asm | Assembly | oeis/164/A164537.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/164/A164537.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/164/A164537.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A164537: a(n) = 8*a(n-1) - 14*a(n-2) for n > 1; a(0) = 5, a(1) = 28.
; Submitted by Jamie Morken(s1)
; 5,28,154,840,4564,24752,134120,726432,3933776,21300160,115328416,624425088,3380802880,18304471808,99104534144,536573667840,2905125864704,15728975567872,85160042437120,461074681546752,2496356858254336,135158093243801... | 41.647059 | 487 | 0.795198 |
ac8d16e22ce1478ef41a577827ea4a2452b5c34b | 269 | asm | Assembly | examples/a/Assembly.asm | TiagoDanin-Forks/hello-worlds | 217684a506ae980ed4e47f5f8970e62fdbf686eb | [
"Unlicense"
] | 81 | 2017-10-01T14:07:28.000Z | 2021-12-20T15:47:33.000Z | examples/a/Assembly.asm | TiagoDanin-Forks/hello-worlds | 217684a506ae980ed4e47f5f8970e62fdbf686eb | [
"Unlicense"
] | 333 | 2017-10-01T13:37:50.000Z | 2021-05-27T21:48:55.000Z | examples/a/Assembly.asm | TiagoDanin-Forks/hello-worlds | 217684a506ae980ed4e47f5f8970e62fdbf686eb | [
"Unlicense"
] | 739 | 2017-10-01T13:42:46.000Z | 2021-12-24T11:39:49.000Z | segment .text
global _start
section .data
xx db 'Hello world', 0xa
len equ $ - xx
section .text
_start:
mov rax, 0
mov rcx, 0
mov rbx, 0
mov rsi, 0
mov rdx, 0
mov rax, 1
mov edx, len
mov rsi, xx
mov rdi, 1
syscall
mov rax, 60
xor rdi, rdi
syscall
| 8.966667 | 24 | 0.643123 |
5e10bdbde7f8636fb2ed2c4ce6cbd20c6de5d83a | 378 | asm | Assembly | data/mapHeaders/Route18.asm | AmateurPanda92/pokemon-rby-dx | f7ba1cc50b22d93ed176571e074a52d73360da93 | [
"MIT"
] | 9 | 2020-07-12T19:44:21.000Z | 2022-03-03T23:32:40.000Z | data/mapHeaders/Route18.asm | JStar-debug2020/pokemon-rby-dx | c2fdd8145d96683addbd8d9075f946a68d1527a1 | [
"MIT"
] | 7 | 2020-07-16T10:48:52.000Z | 2021-01-28T18:32:02.000Z | data/mapHeaders/Route18.asm | JStar-debug2020/pokemon-rby-dx | c2fdd8145d96683addbd8d9075f946a68d1527a1 | [
"MIT"
] | 2 | 2021-03-28T18:33:43.000Z | 2021-05-06T13:12:09.000Z | Route18_h:
db OVERWORLD ; tileset
db ROUTE_18_HEIGHT, ROUTE_18_WIDTH ; dimensions (y, x)
dw Route18_Blocks ; blocks
dw Route18_TextPointers ; texts
dw Route18_Script ; scripts
db NORTH | EAST ; connections
NORTH_MAP_CONNECTION ROUTE_18, ROUTE_17, 0, 0, Route17_Blocks
EAST_MAP_CONNECTION ROUTE_18, FUCHSIA_CITY, ... | 34.363636 | 73 | 0.791005 |
cefaaab3cad39aca3c2e77ae00d3f344b98aeb6a | 147 | asm | Assembly | other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/ドイツ_PAL/Ger_asm1/zel_msge3.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/ドイツ_PAL/Ger_asm1/zel_msge3.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/ドイツ_PAL/Ger_asm1/zel_msge3.asm | prismotizm/gigaleak | d082854866186a05fec4e2fdf1def0199e7f3098 | [
"MIT"
] | null | null | null | Name: zel_msge3.asm
Type: file
Size: 23717
Last-Modified: '2016-05-13T04:23:03Z'
SHA-1: 18534347DDD1AC2031744C88E751A81042DBF75F
Description: null
| 21 | 47 | 0.816327 |
d64782692dc89b6c0cc91526afa43c4ea0f303b4 | 319 | asm | Assembly | oeis/021/A021942.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/021/A021942.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/021/A021942.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A021942: Decimal expansion of 1/938.
; Submitted by Jon Maiga
; 0,0,1,0,6,6,0,9,8,0,8,1,0,2,3,4,5,4,1,5,7,7,8,2,5,1,5,9,9,1,4,7,1,2,1,5,3,5,1,8,1,2,3,6,6,7,3,7,7,3,9,8,7,2,0,6,8,2,3,0,2,7,7,1,8,5,5,0,1,0,6,6,0,9,8,0,8,1,0,2,3,4,5,4,1,5,7,7,8,2,5,1,5,9,9,1,4,7,1
seq $0,199685 ; a(n) = 5*10^n+1.
div $0,469
mod $0,10
| 39.875 | 199 | 0.554859 |
18dff894c46f0c9fc170bc845f22fe4868eaa512 | 182 | asm | Assembly | data/pokemon/dex_entries/porygon_z.asm | AtmaBuster/pokeplat-gen2 | fa83b2e75575949b8f72cb2c48f7a1042e97f70f | [
"blessing"
] | 6 | 2021-06-19T06:41:19.000Z | 2022-02-15T17:12:33.000Z | data/pokemon/dex_entries/porygon_z.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | null | null | null | data/pokemon/dex_entries/porygon_z.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | 3 | 2021-01-15T18:45:40.000Z | 2021-10-16T03:35:27.000Z | db "VIRTUAL@" ; species name
db "Its programming"
next "was modified to"
next "enable work in"
page "alien dimensions."
next "However, it didn't"
next "work as planned.@"
| 18.2 | 29 | 0.675824 |
44b10fe67ead0e1b9b3688d923886c7c379bf854 | 892 | asm | Assembly | programs/oeis/161/A161942.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/161/A161942.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/161/A161942.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A161942: Odd part of sum of divisors of n.
; 1,3,1,7,3,3,1,15,13,9,3,7,7,3,3,31,9,39,5,21,1,9,3,15,31,21,5,7,15,9,1,63,3,27,3,91,19,15,7,45,21,3,11,21,39,9,3,31,57,93,9,49,27,15,9,15,5,45,15,21,31,3,13,127,21,9,17,63,3,9,9,195,37,57,31,35,3,21,5,93,121,63,21,7,27,33,15,45,45,117,7,21,1,9,15,63,49,171,39,217,51,27,13,... | 99.111111 | 729 | 0.652466 |
555061d3fa42f863de8a68a9f0f07e84e1e00a2e | 957 | asm | Assembly | rsisbios.asm | ronsoros/rsis64 | 750e9b301c88978e860f137a7543586731b84655 | [
"MIT"
] | null | null | null | rsisbios.asm | ronsoros/rsis64 | 750e9b301c88978e860f137a7543586731b84655 | [
"MIT"
] | null | null | null | rsisbios.asm | ronsoros/rsis64 | 750e9b301c88978e860f137a7543586731b84655 | [
"MIT"
] | null | null | null | comment The RSIS BIOS is licensed under the MIT license
comment Please see 'LICENSE.EMU' file.
comment -- Begin BIOS
set $a, @main
jmp $a
:strInfo
ds RSIS-BIOS v1.0 (C) 2016, 2017 Ronsor-OpenStar
db 10
db 10
ds Configured to boot from address starting at 6MiB
db 10
ds Press ESC for BIOS Options
db 10
db 0
:prin... | 13.291667 | 55 | 0.587252 |
470a6caed89dbab4dda89beee31d5a8b4f9ad95b | 20,498 | asm | Assembly | Appl/BigCalc/bigcalcBuildPCF.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/BigCalc/bigcalcBuildPCF.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/BigCalc/bigcalcBuildPCF.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: bigcalcBuildPCF.asm
AUTHOR: Christian Puscasiu, Apr 29, 1992
ROUTINES:
Name Description
---- -----------
INT BigCalcCheckNumber... | 23.91832 | 79 | 0.591619 |
7297f09ed4b3cecb8bc285d2c82699273612f9b6 | 7,331 | asm | Assembly | boot/efi_entry.asm | spevans/hello-swift | 51af71dcd1d3719af33b4e20e333e80e812ed059 | [
"Unlicense"
] | null | null | null | boot/efi_entry.asm | spevans/hello-swift | 51af71dcd1d3719af33b4e20e333e80e812ed059 | [
"Unlicense"
] | null | null | null | boot/efi_entry.asm | spevans/hello-swift | 51af71dcd1d3719af33b4e20e333e80e812ed059 | [
"Unlicense"
] | null | null | null | ;;; boot/efi_entry.asm
;;;
;;; Created by Simon Evans on 06/02/2016.
;;; Copyright © 2016 Simon Evans. All rights reserved.
;;;
;;; Entry point from the UEFI firmware. Calls boot/efi_main.c
;;; to setup the page tables and framebuffer then setups CR3
;;; and enters kernel at its correct virtual address
SECTIO... | 28.305019 | 77 | 0.533761 |
18f3ec864e695cf11c75664cca7ad1802dd3f8f6 | 2,027 | asm | Assembly | Projects/Shark/I386/CmpI386.asm | Sankds03/Shark | 48a26966b91d6538a58b31c4caba656bab471f70 | [
"MIT"
] | 740 | 2018-10-15T10:05:49.000Z | 2022-03-31T10:01:50.000Z | Projects/Shark/I386/CmpI386.asm | wbaby/Shark | 8819b6f349794de0b6ca2e6af1e2067313cffebc | [
"MIT"
] | 40 | 2018-10-16T11:33:29.000Z | 2022-02-05T06:34:02.000Z | Projects/Shark/I386/CmpI386.asm | wbaby/Shark | 8819b6f349794de0b6ca2e6af1e2067313cffebc | [
"MIT"
] | 272 | 2018-10-15T14:02:33.000Z | 2022-03-28T16:22:26.000Z | ;
;
; Copyright (c) 2015 - 2021 by blindtiger. All rights reserved.
;
; The contents of this file are subject to the Mozilla Public 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.mozilla.org/MPL/
;
;... | 18.427273 | 78 | 0.51406 |
f99dd6642401a3cbbabb4920c48d9ee5c50c0937 | 667 | asm | Assembly | programs/oeis/301/A301684.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | null | null | null | programs/oeis/301/A301684.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | null | null | null | programs/oeis/301/A301684.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | null | null | null | ; A301684: Coordination sequence for node of type V2 in "krg" 2-D tiling (or net).
; 1,4,8,12,18,22,28,34,36,42,48,50,56,62,64,70,76,78,84,90,92,98,104,106,112,118,120,126,132,134,140,146,148,154,160,162,168,174,176,182,188,190,196,202,204,210,216,218,224,230,232,238,244,246,252,258,260,266,272,274,280,286,288,294,300,... | 31.761905 | 376 | 0.662669 |
ab2642cf36538762addb947bf5c70e595cab9794 | 339 | asm | Assembly | programs/oeis/013/A013636.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/013/A013636.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/013/A013636.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A013636: n*nextprime(n).
; 0,2,6,15,20,35,42,77,88,99,110,143,156,221,238,255,272,323,342,437,460,483,506,667,696,725,754,783,812,899,930,1147,1184,1221,1258,1295,1332,1517,1558,1599,1640,1763
mov $2,$0
cal $0,151800 ; Least prime > n (version 2 of the "next prime" function).
mov $1,$2
mov $2,$0
mul $2,$1
mul $1,$0
... | 28.25 | 167 | 0.672566 |
669e7c7e17ed74ab7b29dc4ab5d71af844f2ff16 | 1,322 | asm | Assembly | smsq/q68/driver/8.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | smsq/q68/driver/8.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | smsq/q68/driver/8.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; base area SMSQ Q68 Drivers / 8 bit Aurora
section header
xref smsq_end
include 'dev8_keys_con'
include 'dev8_keys_q68'
include 'dev8_smsq_smsq_base_keys'
include 'dev8_smsq_smsq_config_keys'
header_base
dc.l q68_con-header_base ; length of header
dc.l 0 ; module length unknown
dc.l smsq_end-q68_con... | 22.793103 | 64 | 0.663389 |
3df0b1d3ef24dee34362cd00d951651157ebc84c | 409 | asm | Assembly | programs/oeis/054/A054491.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/054/A054491.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/054/A054491.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A054491: a(n) = 4*a(n-1) - a(n-2), a(0)=1, a(1)=6.
; 1,6,23,86,321,1198,4471,16686,62273,232406,867351,3236998,12080641,45085566,168261623,627960926,2343582081,8746367398,32641887511,121821182646,454642843073,1696750189646,6332357915511,23632681472398,88198367974081,329160790423926,1228444793721623,4584618384462566
... | 31.461538 | 265 | 0.733496 |
06fa2dcaf8552baab0517f2d331987f2b7fc7d3f | 1,057 | asm | Assembly | Kernel/Assembly/X64.asm | bitPanG98/SillyOS | 7cda791caaa017d6c5b95ea6215fc76d620a0a78 | [
"MIT"
] | 1 | 2021-02-04T01:19:04.000Z | 2021-02-04T01:19:04.000Z | Kernel/Assembly/X64.asm | bitPanG98/SillyOS | 7cda791caaa017d6c5b95ea6215fc76d620a0a78 | [
"MIT"
] | null | null | null | Kernel/Assembly/X64.asm | bitPanG98/SillyOS | 7cda791caaa017d6c5b95ea6215fc76d620a0a78 | [
"MIT"
] | null | null | null | [bits 64]
global PLATFORM_ENTRY
global FlushGDT
;Global our addresses
global KERNEL_STACK_TOP
global KERNEL_STACK_BOTTOM
extern PlatformMain
BLOCK_SIZE equ 8
KERNEL_HEAP_SIZE equ 2
KERNEL_STACK_SIZE equ 2
section .entry
;Everything start from here.
PLATFORM_ENTRY:
;Disable interrupt
cli
;Setup stack
... | 19.574074 | 89 | 0.719962 |
371fd70cb912bc17fb816828ef9b2d6379a2f700 | 4,312 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_158.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_158.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_158.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 %r9
push %rbx
push %rdx
lea addresses_D_ht+0x109a9, %r10
nop
xor $30972, %r9
vmovups (%r10), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $1, %xmm4, %rdx
nop
add $11937, %rbx
pop %rdx
pop %rbx
pop %r9
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push ... | 58.27027 | 2,999 | 0.660482 |
ec2b5b568357dc59c501f480f7d96cc204e56e6b | 3,462 | asm | Assembly | lib/target/pv2000/classic/pv2000_crt0.asm | bahmanrafatjoo/z88dk | 001b7eab7fa2e94ee7210ff483c789e15e8d6a40 | [
"ClArtistic"
] | null | null | null | lib/target/pv2000/classic/pv2000_crt0.asm | bahmanrafatjoo/z88dk | 001b7eab7fa2e94ee7210ff483c789e15e8d6a40 | [
"ClArtistic"
] | null | null | null | lib/target/pv2000/classic/pv2000_crt0.asm | bahmanrafatjoo/z88dk | 001b7eab7fa2e94ee7210ff483c789e15e8d6a40 | [
"ClArtistic"
] | null | null | null | ; Casio PV-2000 CRT0
;
MODULE pv2000_crt0
;--------
; Include zcc_opt.def to find out some info
;--------
defc crt0 = 1
INCLUDE "zcc_opt.def"
;--------
; Some scope definitions
;--------
EXTERN _main ; main() is always external to crt0 code
... | 19.896552 | 81 | 0.640959 |
9ad957173b7faff7b9373595cf04b92e3fd4e870 | 42,747 | asm | Assembly | c/03-bootstrap/06-flappy-bird/build/main.rgbds.asm | willbr/gameboy-tests | a0d9f68f5a4898067b7993f690d8d4ca6de831c5 | [
"MIT"
] | null | null | null | c/03-bootstrap/06-flappy-bird/build/main.rgbds.asm | willbr/gameboy-tests | a0d9f68f5a4898067b7993f690d8d4ca6de831c5 | [
"MIT"
] | null | null | null | c/03-bootstrap/06-flappy-bird/build/main.rgbds.asm | willbr/gameboy-tests | a0d9f68f5a4898067b7993f690d8d4ca6de831c5 | [
"MIT"
] | null | null | null | ;--------------------------------------------------------
; File Created by SDCC : free open source ANSI-C Compiler
; Version 4.0.0 #11528 (MINGW64)
;--------------------------------------------------------
; MODULE main
.optsdcc -mgbz80
; Generated using the rgbds tokens.
; We have to define these here as sdcc doe... | 14.78112 | 76 | 0.484361 |
713135ef2512d8565d4e70424dc92ebc7a5d1e52 | 709 | asm | Assembly | oeis/225/A225602.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/225/A225602.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/225/A225602.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A225602: a(n) = A002426(n^2), where A002426 is the central trinomial coefficients.
; Submitted by Jamie Morken(w1)
; 1,1,19,3139,5196627,82176836301,12159131877715993,16639279789182494873661,209099036316263774148543463251,24017537903429183163390175566336055657,25134265191388162956642519120384003897467908119,239089990... | 101.285714 | 495 | 0.891396 |
6b588ae37a97164bb117034f793be9e4b4cdc990 | 279 | asm | Assembly | libsrc/_DEVELOPMENT/adt/wa_priority_queue/c/sdcc_iy/wa_priority_queue_top.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/adt/wa_priority_queue/c/sdcc_iy/wa_priority_queue_top.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/adt/wa_priority_queue/c/sdcc_iy/wa_priority_queue_top.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
; void *wa_priority_queue_top(wa_priority_queue_t *q)
SECTION code_clib
SECTION code_adt_wa_priority_queue
PUBLIC _wa_priority_queue_top
EXTERN asm_wa_priority_queue_top
_wa_priority_queue_top:
pop af
pop hl
push hl
push af
jp asm_wa_priority_queue_top
| 13.95 | 53 | 0.802867 |
fd75cae62c7594aac95cf0a72e5094d7ce4fa063 | 676 | asm | Assembly | src/examples/04_arguments/arguments.asm | vladimir-kazan/asm | 1233961934ea95fc9b1a246a2e42f8a24d84528b | [
"Apache-2.0"
] | null | null | null | src/examples/04_arguments/arguments.asm | vladimir-kazan/asm | 1233961934ea95fc9b1a246a2e42f8a24d84528b | [
"Apache-2.0"
] | null | null | null | src/examples/04_arguments/arguments.asm | vladimir-kazan/asm | 1233961934ea95fc9b1a246a2e42f8a24d84528b | [
"Apache-2.0"
] | null | null | null | %include '../../lib/syscall.asm'
%include '../../lib/functions.asm'
SECTION .text
global start
; The last two stack items for a NASM compiled program are always the name of the program and the number of passed arguments.
start:
mov rdi, msg
call sprintLF
pop rcx ; first value on the ... | 22.533333 | 125 | 0.607988 |
a19af537aafc1e522c6c2600d0d166a6c81a9497 | 3,385 | asm | Assembly | Systems Programming/Assignment 2/prog7.asm | neeladripal/bcse-lab | 915d2f535ae95a062438fc85980419646a3951ad | [
"MIT"
] | null | null | null | Systems Programming/Assignment 2/prog7.asm | neeladripal/bcse-lab | 915d2f535ae95a062438fc85980419646a3951ad | [
"MIT"
] | null | null | null | Systems Programming/Assignment 2/prog7.asm | neeladripal/bcse-lab | 915d2f535ae95a062438fc85980419646a3951ad | [
"MIT"
] | 1 | 2021-08-06T14:39:53.000Z | 2021-08-06T14:39:53.000Z | ;Program for substring deletion from a given string
.model medium
.stack 100h
.data
prompt_1 db 10,13,'Enter the string : $'
prompt_2 db 10,13,'Enter the substring to be deleted : $'
prompt_3 db 10,13,'The final string is : $'
newline db 10,13,'$'
;input string
buffersize_1 db 51 ; 50 char + return
inpu... | 28.686441 | 112 | 0.668833 |
ae04f4c201fa9280afcc9f6720956ddb49ab0e13 | 430 | asm | Assembly | oeis/083/A083879.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/083/A083879.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/083/A083879.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A083879: a(0)=1, a(1)=4, a(n) = 8*a(n-1) - 14*a(n-2), n >= 2.
; Submitted by Jon Maiga
; 1,4,18,88,452,2384,12744,68576,370192,2001472,10829088,58612096,317289536,1717746944,9299922048,50350919168,272608444672,1475954689024,7991119286784,43265588647936,234249039168512,1268274072276992
mov $1,3
lpb $0
sub $0,1
su... | 22.631579 | 198 | 0.667442 |
8cc2cb577b9d639501bb341e2ce8e0deae742ecd | 172 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math48/z80/am48_dconst_1_3.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/math48/z80/am48_dconst_1_3.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/math48/z80/am48_dconst_1_3.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
SECTION code_clib
SECTION code_fp_math48
PUBLIC am48_dconst_1_3
EXTERN mm48__ac1_3
; set AC = 1/3
;
; uses : bc, de, hl
defc am48_dconst_1_3 = mm48__ac1_3
| 12.285714 | 34 | 0.709302 |
22289ac9a36402358ae61c221a4f89136a39eab9 | 288 | asm | Assembly | programs/oeis/175/A175824.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/175/A175824.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/175/A175824.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A175824: Maximum unsigned integer that can be stored in n bytes.
; 0,255,65535,16777215,4294967295,1099511627775,281474976710655,72057594037927935,18446744073709551615,4722366482869645213695,1208925819614629174706175,309485009821345068724781055
mov $1,256
pow $1,$0
sub $1,1
mov $0,$1
| 36 | 179 | 0.833333 |
f7b8fa8ea50d020839a77cbd2a71ef64b8d1ad76 | 71 | asm | Assembly | Mips/Studies/somaInteiros.asm | otavreis/-Computer-Architecture-and-Organization | 317c7077b1b08a50985767d8114af5be580cc764 | [
"MIT"
] | 1 | 2020-09-03T00:16:24.000Z | 2020-09-03T00:16:24.000Z | Mips/Studies/somaInteiros.asm | otavreis/-Computer-Architecture-and-Organization | 317c7077b1b08a50985767d8114af5be580cc764 | [
"MIT"
] | null | null | null | Mips/Studies/somaInteiros.asm | otavreis/-Computer-Architecture-and-Organization | 317c7077b1b08a50985767d8114af5be580cc764 | [
"MIT"
] | null | null | null | .text
li $t0, 75
li $t1, 25
add $s0, $t0, $t1
addi $s1, $s0, 36
| 10.142857 | 18 | 0.492958 |
f9c4d6c2ff6397edee9d59a5b7cc16b399969a9a | 537 | asm | Assembly | programs/oeis/172/A172165.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/172/A172165.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/172/A172165.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A172165: A simple sequence a(n) = n + n^(n-1).
; 2,4,12,68,630,7782,117656,2097160,43046730,1000000010,25937424612,743008370700,23298085122494,793714773254158,29192926025390640,1152921504606846992,48661191875666868498,2185911559738696531986,104127350297911241532860,5242880000000000000000020,27821842944695154863719642... | 59.666667 | 438 | 0.86406 |
0b69c6129dd41be3994a36871090ba8c7db7c570 | 653 | asm | Assembly | data/pokemon/base_stats/dodrio.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | 1 | 2022-02-15T00:19:44.000Z | 2022-02-15T00:19:44.000Z | data/pokemon/base_stats/dodrio.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | data/pokemon/base_stats/dodrio.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | db DEX_DODRIO ; pokedex id
db 60, 110, 70, 100, 60
; hp atk def spd spc
db GROUND, FLYING ; type
db 45 ; catch rate
db 158 ; base exp
INCBIN "gfx/pokemon/front/dodrio.pic", 0, 1 ; sprite dimensions
dw DodrioPicFront, DodrioPicBack
db PECK, SAND_ATTACK, FURY_ATTACK, NO_MOVE ; level 1 learnset
db G... | 27.208333 | 77 | 0.624809 |
2eb8dcf66a1872f72167e6c9838aebbe2b30619d | 124 | asm | Assembly | bin/crt0.asm | MrBad/cosiris | 2bb52efd58e705d3d5309c58ea0012a916a60b0e | [
"MIT"
] | 10 | 2017-09-12T00:37:33.000Z | 2021-01-20T07:04:32.000Z | bin/crt0.asm | MrBad/cosiris | 2bb52efd58e705d3d5309c58ea0012a916a60b0e | [
"MIT"
] | null | null | null | bin/crt0.asm | MrBad/cosiris | 2bb52efd58e705d3d5309c58ea0012a916a60b0e | [
"MIT"
] | 1 | 2021-06-25T17:18:13.000Z | 2021-06-25T17:18:13.000Z | extern _ini, main, exit
section .text
global start
start:
call _ini
call main
push eax
call exit
jmp $
| 11.272727 | 23 | 0.637097 |
86aa2f124a0d018bf4db142005661900b8c3fd6d | 1,898 | asm | Assembly | C/BiosLib/fmemcpy.asm | p-k-p/SysToolsLib | 827be2799e541410cb5c11358cd4ce6859e171ad | [
"Apache-2.0"
] | 232 | 2016-04-27T21:56:11.000Z | 2022-03-29T09:02:15.000Z | C/BiosLib/fmemcpy.asm | p-k-p/SysToolsLib | 827be2799e541410cb5c11358cd4ce6859e171ad | [
"Apache-2.0"
] | 31 | 2016-05-09T09:05:36.000Z | 2022-03-29T19:17:45.000Z | C/BiosLib/fmemcpy.asm | p-k-p/SysToolsLib | 827be2799e541410cb5c11358cd4ce6859e171ad | [
"Apache-2.0"
] | 94 | 2016-06-01T18:10:39.000Z | 2022-03-26T10:44:57.000Z | page ,132
TITLE C library emulation, not relying on MS-DOS.
;*****************************************************************************;
; ;
; FILE NAME: fmemcpy.asm ;
; ;
; DESCRIPTION: Copy a far block of memory ;
; ;
; NOTES: ... | 27.507246 | 79 | 0.402002 |
5ff6898b0830a769044e7a036a3c31a684defa04 | 2,461 | asm | Assembly | pb2000/cksum.asm | wowczarek/pbnet | 5451800ef5dbc6cd05786e26e440aca9f2f8d037 | [
"BSD-2-Clause"
] | 1 | 2021-08-18T02:09:23.000Z | 2021-08-18T02:09:23.000Z | pb2000/cksum.asm | wowczarek/pbnet | 5451800ef5dbc6cd05786e26e440aca9f2f8d037 | [
"BSD-2-Clause"
] | null | null | null | pb2000/cksum.asm | wowczarek/pbnet | 5451800ef5dbc6cd05786e26e440aca9f2f8d037 | [
"BSD-2-Clause"
] | null | null | null | ; Copyright (c) 2021, Wojciech Owczarek
; All rights reserved.
; BSD 2-clause licence - see LICENSE in the top directory
; base/org are meaningless in inline code, but keep the compiler happy
BASE: EQU &H7000
START here
ORG BASE
here:
; This is a fairly tiny bit of code, but writing it was so much fun,
; henc... | 41.711864 | 84 | 0.611946 |
5486af33d37e360733e9ca8d04c7e27c6f31a704 | 348 | asm | Assembly | oeis/276/A276877.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/276/A276877.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/276/A276877.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A276877: Sums-complement of the Beatty sequence for Pi.
; Submitted by Jamie Morken(s1)
; 1,2,5,8,11,14,17,20,23,24,27,30,33,36,39,42,45,46,49,52,55,58,61,64,67,68,71,74,77,80,83,86,89,90,93,96,99,102,105,108,111,112,115,118,121,124,127,130,133,134,137,140,143,146,149,152,155,156,159,162
mov $1,$0
mul $1,7
div $1,8
... | 31.636364 | 200 | 0.683908 |
36b795855cc78e189729ccf3d3812cbd3b9eb75f | 813 | asm | Assembly | oeis/067/A067804.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/067/A067804.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/067/A067804.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A067804: Triangle read by rows: T(n,k) is the number of walks (each step +-1) of length 2n which have a cumulative value of 0 last at step 2k.
; Submitted by Simon Strandgaard
; 1,2,2,6,4,6,20,12,12,20,70,40,36,40,70,252,140,120,120,140,252,924,504,420,400,420,504,924,3432,1848,1512,1400,1400,1512,1848,3432,12870,686... | 42.789474 | 497 | 0.741697 |
ea9cb5a19c214d35b920d69a7b859ffb2f2d3d96 | 89 | asm | Assembly | old/nothing.asm | Bigsby/x86_64 | 52070c59b3399cb22a181af550a3079e629fa566 | [
"MIT"
] | null | null | null | old/nothing.asm | Bigsby/x86_64 | 52070c59b3399cb22a181af550a3079e629fa566 | [
"MIT"
] | null | null | null | old/nothing.asm | Bigsby/x86_64 | 52070c59b3399cb22a181af550a3079e629fa566 | [
"MIT"
] | null | null | null | [org 0x7c00]
mov ah, 0x0e
mov al, 'H'
int 0x10
jmp $
times 510-($-$$) db 0
dw 0xaa55
| 7.416667 | 21 | 0.595506 |
e70b824edc6c8afa75ea47522a9224b8f0d17f6d | 80 | asm | Assembly | test/data/input/unnecessary-jumps-2.asm | CDPcode/optimips-prime | 4ce7a5edf170a6811eebbe21e8d632fca7e4ed7b | [
"MIT"
] | null | null | null | test/data/input/unnecessary-jumps-2.asm | CDPcode/optimips-prime | 4ce7a5edf170a6811eebbe21e8d632fca7e4ed7b | [
"MIT"
] | null | null | null | test/data/input/unnecessary-jumps-2.asm | CDPcode/optimips-prime | 4ce7a5edf170a6811eebbe21e8d632fca7e4ed7b | [
"MIT"
] | null | null | null | j L0
add $v0, $a0, $t0
L0:
beqz $v0, L1
add $v0, $a0, $t0
L1:
add $v0, $a0, $t0
| 10 | 17 | 0.525 |
7de2baabe7b80565090e3c86a1957cb257cb766c | 490 | asm | Assembly | oeis/113/A113974.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/113/A113974.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/113/A113974.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A113974: Expansion of (1-phi(x^3)^3/phi(x))/2 where phi() is a Ramanujan theta function.
; Submitted by Christian Krause
; 1,-2,1,-1,0,-2,2,-2,1,0,0,-1,2,-4,0,-1,0,-2,2,0,2,0,0,-2,1,-4,1,-2,0,0,2,-2,0,0,0,-1,2,-4,2,0,0,-4,2,0,0,0,0,-1,3,-2,0,-2,0,-2,0,-4,2,0,0,0,2,-4,2,-1,0,0,2,0,0,0,0,-2,2,-4,1,-2,0,-4,2,0,1,0,0,-2,... | 54.444444 | 232 | 0.553061 |
c3528ebbf160697d6124c03082e6ed9e831b2246 | 926 | asm | Assembly | programs/oeis/134/A134986.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/134/A134986.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/134/A134986.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A134986: a(n) = smallest integer m not equal to n such that n = (floor(n^2/m) + m)/2.
; 2,3,2,3,4,5,5,6,7,8,9,10,10,11,12,13,14,15,16,17,17,18,19,20,21,22,23,24,25,26,26,27,28,29,30,31,32,33,34,35,36,37,37,38,39,40,41,42,43,44,45,46,47,48,49,50,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,65,66,67,68,69,70,71,72,7... | 48.736842 | 682 | 0.657667 |
242927d66d490155057e26e8330b08350be704b2 | 318 | asm | Assembly | programs/oeis/053/A053844.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/053/A053844.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/053/A053844.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A053844: (Sum of digits of n written in base 9) modulo 9.
; 0,1,2,3,4,5,6,7,8,1,2,3,4,5,6,7,8,0,2,3,4,5,6,7,8,0,1,3,4,5,6,7,8,0,1,2,4,5,6,7,8,0,1,2,3,5,6,7,8,0,1,2,3,4,6,7,8,0,1,2,3,4,5,7,8,0,1,2,3,4,5,6,8,0,1,2,3,4,5,6,7,1,2,3,4,5,6,7,8,0,2,3,4,5,6,7,8,0,1,3,4,5,6,7,8
lpb $0
add $1,$0
div $0,9
mod $1,9
lpe
| 35.333333 | 211 | 0.531447 |
7ece56a586c882a632d6b36e6559fdfc2954afc6 | 730 | asm | Assembly | data/pokemon/base_stats/nidorino.asm | genterz/pokecross | 5e62ab6c23e624ea82d599af306f9c52d768a8b4 | [
"blessing"
] | 28 | 2019-11-08T07:19:00.000Z | 2021-12-20T10:17:54.000Z | data/pokemon/base_stats/nidorino.asm | genterz/pokecross | 5e62ab6c23e624ea82d599af306f9c52d768a8b4 | [
"blessing"
] | 13 | 2020-01-11T17:00:40.000Z | 2021-09-14T01:27:38.000Z | data/pokemon/base_stats/nidorino.asm | genterz/pokecross | 5e62ab6c23e624ea82d599af306f9c52d768a8b4 | [
"blessing"
] | 22 | 2020-05-28T17:31:38.000Z | 2022-03-07T20:49:35.000Z | db NIDORINO ; 033
db 61, 72, 57, 65, 55, 55
; hp atk def spd sat sdf
db POISON, POISON ; type
db 120 ; catch rate
db 118 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F0 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/nidorino/front.dimen... | 33.181818 | 273 | 0.717808 |
827ea2209f1fed9e769c3e72ae2ad82ba2b44d3e | 123 | asm | Assembly | u7si/eop2-dispatchTable.asm | JohnGlassmyer/UltimaHacks | f9a114e00c4a1edf1ac7792b465feff2c9b88ced | [
"MIT"
] | 68 | 2018-03-04T22:34:22.000Z | 2022-03-10T15:18:32.000Z | u7si/eop2-dispatchTable.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 19 | 2018-11-20T04:06:49.000Z | 2021-11-08T16:37:10.000Z | u7si/eop2-dispatchTable.asm | ptrie/UltimaHacks | 2c3557a86d94ad8b54b26bc395b9aed1604f8be1 | [
"MIT"
] | 4 | 2020-09-01T17:57:36.000Z | 2022-01-04T20:51:11.000Z | %include "include/u7si-all-includes.asm"
%define eopSegmentName eop2
%include "../u7-common/patch-eop-dispatchTable.asm"
| 20.5 | 51 | 0.772358 |
dda202e406b40a4b0ff4b854000a1e10d569445f | 310 | asm | Assembly | programs/oeis/021/A021719.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/021/A021719.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/021/A021719.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A021719: Decimal expansion of 1/715.
; 0,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1,3,9,8,6,0,1
add $0,1
mov $1,10
pow $1,$0
mul $1,6
div $1,4290
mod $1,10
mov $0,$1
| 28.181818 | 199 | 0.541935 |
02a7b036b5a706235e70cb0a0012e389462d8019 | 598 | asm | Assembly | oeis/152/A152744.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/152/A152744.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/152/A152744.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A152744: 7 times pentagonal numbers: a(n) = 7*n*(3*n-1)/2.
; 0,7,35,84,154,245,357,490,644,819,1015,1232,1470,1729,2009,2310,2632,2975,3339,3724,4130,4557,5005,5474,5964,6475,7007,7560,8134,8729,9345,9982,10640,11319,12019,12740,13482,14245,15029,15834,16660,17507,18375,19264,20174,21105,22057,23030,24024,25039,26075... | 74.75 | 499 | 0.777592 |
f3384ca82566c6bd18e82983c8b7fd16f660a5d8 | 27,882 | asm | Assembly | linux/contrib/libjpeg-turbo-dev/simd/x86_64/jdsample-avx2.asm | darthrake/openpnp-capture | 1b2153d4b8550120c5e58a30eb85e4f3a5529a73 | [
"MIT"
] | 76 | 2017-02-20T09:35:16.000Z | 2022-03-03T23:59:43.000Z | linux/contrib/libjpeg-turbo-dev/simd/x86_64/jdsample-avx2.asm | darthrake/openpnp-capture | 1b2153d4b8550120c5e58a30eb85e4f3a5529a73 | [
"MIT"
] | 39 | 2017-07-17T18:10:33.000Z | 2022-03-26T21:51:33.000Z | linux/contrib/libjpeg-turbo-dev/simd/x86_64/jdsample-avx2.asm | darthrake/openpnp-capture | 1b2153d4b8550120c5e58a30eb85e4f3a5529a73 | [
"MIT"
] | 35 | 2017-07-04T07:31:53.000Z | 2022-03-10T13:50:02.000Z | ;
; jdsample.asm - upsampling (64-bit AVX2)
;
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2009, 2016, D. R. Commander.
; Copyright (C) 2015, Intel Corporation.
;
; Based on the x86 SIMD extension for IJG JPEG library
; Copyright (C) 1999-2006, MIYASAKA Masaru.
; For conditions of dis... | 39.717949 | 116 | 0.535973 |
6d6944015f6d1ae1c44b947e54d9b9b996520631 | 5,414 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1755.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1755.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1755.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 %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1307d, %rsi
nop
nop
nop
xor $25900, %rax
mov $0x6162636465666768, %rdi
movq %rdi, %xmm5
movups %xmm5, (%rsi)
nop
nop
dec %rdi
lea addresses_D_ht+0xc781, %r14
nop
cmp %rs... | 45.495798 | 2,999 | 0.661618 |
eb5b2a0b68b01665a719235f52192d268601eebf | 2,021 | asm | Assembly | release/src/router/gmp/source/mpn/alpha/lshift.asm | zhoutao0712/rtn11pb1 | 09e6b6c7ef4b91be0a9374daeacc3ac9f2fa3a05 | [
"Apache-2.0"
] | 12 | 2020-01-08T01:33:02.000Z | 2022-03-16T00:25:34.000Z | release/src/router/gmp/source/mpn/alpha/lshift.asm | zhoutao0712/rtn11pb1 | 09e6b6c7ef4b91be0a9374daeacc3ac9f2fa3a05 | [
"Apache-2.0"
] | 8 | 2019-12-19T19:34:56.000Z | 2022-03-10T10:11:28.000Z | release/src/router/gmp/source/mpn/alpha/lshift.asm | zhoutao0712/rtn11pb1 | 09e6b6c7ef4b91be0a9374daeacc3ac9f2fa3a05 | [
"Apache-2.0"
] | 2 | 2022-03-30T13:12:22.000Z | 2022-03-30T18:12:10.000Z | dnl Alpha mpn_lshift -- Shift a number left.
dnl Copyright 1994, 1995, 2000, 2002, 2003 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU Lesser General Public License as pu... | 20.622449 | 79 | 0.705096 |
42f937d3ab60fadc396186a644683dece3ffea74 | 344 | asm | Assembly | Assembly/bushes_hooks.asm | CaitSith2/Enemizer | 53be2143063c5ca03216f76821ebbbce67313e34 | [
"WTFPL"
] | 2 | 2020-06-21T14:38:23.000Z | 2021-02-03T00:43:49.000Z | Assembly/bushes_hooks.asm | CaitSith2/Enemizer | 53be2143063c5ca03216f76821ebbbce67313e34 | [
"WTFPL"
] | 5 | 2020-07-16T22:12:30.000Z | 2020-08-31T22:11:54.000Z | Assembly/bushes_hooks.asm | CaitSith2/Enemizer | 53be2143063c5ca03216f76821ebbbce67313e34 | [
"WTFPL"
] | 2 | 2020-07-16T22:34:11.000Z | 2020-11-18T19:39:50.000Z | ;================================================================================
; New bush mob randomization
;--------------------------------------------------------------------------------
org $068279
NOP #$0A
JSL sprite_bush_spawn
NOP ; we keep the branch
;---------------------------------------------------------... | 38.222222 | 81 | 0.218023 |
8c787b4e5995d3d3c0b59080bbf549ab529d9c55 | 554 | asm | Assembly | oeis/017/A017199.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/017/A017199.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/017/A017199.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A017199: a(n) = (9*n + 3)^3.
; 27,1728,9261,27000,59319,110592,185193,287496,421875,592704,804357,1061208,1367631,1728000,2146689,2628072,3176523,3796416,4492125,5268024,6128487,7077888,8120601,9261000,10503459,11852352,13312053,14886936,16581375,18399744,20346417,22425768,24642171,27000000,29503629,32157432,34965783... | 79.142857 | 494 | 0.833935 |
4c1836f5a79e1645a7265850eb91af433f34ea71 | 433 | asm | Assembly | oeis/143/A143333.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/143/A143333.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/143/A143333.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A143333: Pascal's triangle binomial(n,m) read by rows, all even elements replaced by zero.
; Submitted by Jon Maiga
; 1,1,1,1,0,1,1,3,3,1,1,0,0,0,1,1,5,0,0,5,1,1,0,15,0,15,0,1,1,7,21,35,35,21,7,1,1,0,0,0,0,0,0,0,1,1,9,0,0,0,0,0,0,9,1,1,0,45,0,0,0,0,0,45,0,1,1,11,55,165,0,0,0,0,165,55,11,1,1,0,0,0,495,0,0,0,495,0,0,0,... | 30.928571 | 230 | 0.602771 |
5ffdd15dd7bcb5ef32d0b9733789dad41a04821d | 550 | asm | Assembly | programs/oeis/277/A277812.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/277/A277812.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/277/A277812.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A277812: a(n) = the first odious number encountered when starting from k = n and iterating the map k -> A003188(A006068(k)/2).
; 1,2,1,4,2,1,7,8,4,2,11,1,13,14,7,16,8,4,19,2,21,22,11,1,25,26,13,28,14,7,31,32,16,8,35,4,37,38,19,2,41,42,21,44,22,11,47,1,49,50,25,52,26,13,55,56,28,14,59,7,61,62,31,64,32,16,67,8,69,70,35... | 55 | 276 | 0.672727 |
cf6e23d3c45fd1b1e404a711fa98c98339328cd6 | 141,531 | asm | Assembly | Debug/list.asm | polamagdygeo/uWave | 88b5438735be6fc653deda1939ac978fd2aac740 | [
"MIT"
] | null | null | null | Debug/list.asm | polamagdygeo/uWave | 88b5438735be6fc653deda1939ac978fd2aac740 | [
"MIT"
] | null | null | null | Debug/list.asm | polamagdygeo/uWave | 88b5438735be6fc653deda1939ac978fd2aac740 | [
"MIT"
] | null | null | null | ;******************************************************************************
;* TI ARM C/C++ Codegen Unix v18.1.1.LTS *
;* Date/Time created: Fri Jul 3 20:08:22 2020 *
;******************************************************************************
... | 44.944744 | 278 | 0.642227 |
6bb2f84bca1f34f7f7c026c18836e94a6ffbcad3 | 444 | asm | Assembly | programs/oeis/012/A012781.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/012/A012781.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/012/A012781.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A012781: Take every 5th term of Padovan sequence A000931, beginning with the second term.
; 0,1,4,16,65,265,1081,4410,17991,73396,299426,1221537,4983377,20330163,82938844,338356945,1380359512,5631308624,22973462017,93722435101,382349636061,1559831901918,6363483400447,25960439030624,105908093453250,432062194544201,176... | 34.153846 | 258 | 0.774775 |
34462fc535e18bca4a5b8f3a22b6c3fbf1c8426f | 1,786 | asm | Assembly | Driver/Printer/PrintCom/Graphics/graphics2ResHigh.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Driver/Printer/PrintCom/Graphics/graphics2ResHigh.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Driver/Printer/PrintCom/Graphics/graphics2ResHigh.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: print drivers
FILE: graphics2ResHigh.asm
AUTHOR: Dave Durran 1 March 1990
ROUTINES:
Name Description
---- -----------
REV... | 22.897436 | 79 | 0.525756 |
2b079f8d6c4b7e4b573e925a080234fd663cbd39 | 869 | asm | Assembly | oeis/251/A251936.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/251/A251936.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/251/A251936.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A251936: Number of length 2+2 0..n arrays with the sum of the maximum minus the median of adjacent triples multiplied by some arrangement of +-1 equal to zero.
; 10,43,120,265,506,875,1408,2145,3130,4411,6040,8073,10570,13595,17216,21505,26538,32395,39160,46921,55770,65803,77120,89825,104026,119835,137368,156745,1780... | 33.423077 | 495 | 0.754891 |
cd1ddd247295d445b3d2a3f6952b14179afecc1c | 9,663 | nasm | Assembly | Projetos/I-VM/bin/nasm/StaticsTest.nasm | juanjorgegarcia/Z01 | 7d49ef8f476f9c8e9f187a62f96fdca7bcd46314 | [
"Unlicense"
] | null | null | null | Projetos/I-VM/bin/nasm/StaticsTest.nasm | juanjorgegarcia/Z01 | 7d49ef8f476f9c8e9f187a62f96fdca7bcd46314 | [
"Unlicense"
] | 67 | 2018-03-13T21:40:05.000Z | 2018-05-23T19:17:13.000Z | Projetos/I-VM/bin/nasm/StaticsTest.nasm | juanjorgegarcia/Z01 | 7d49ef8f476f9c8e9f187a62f96fdca7bcd46314 | [
"Unlicense"
] | 3 | 2018-03-07T01:27:37.000Z | 2018-03-23T19:35:14.000Z | ; Inicialização para VM
leaw $Main.main, %A
jmp
nop
; 0 - Declarando função Class2.set
Class2.set:
; 1 - PUSH argument 0
leaw $0,%A
movw %A,%D
leaw $ARG,%A
addw (%A),%D,%A
movw (%A),%D
leaw $SP,%A
movw (%A),%A
movw %D,(%A)
leaw $SP,%A
movw (%A),%D
incw %D
movw %D,(%A)
; 2 - POP static 0
leaw $SP,%A
movw (%A),%D
decw %D... | 13.129076 | 35 | 0.544965 |
02d9bd805249a236ce1effd56b7f0ad918833dc4 | 864 | asm | Assembly | kernel/arch/regutil.asm | Twometer/nekosys | cbcdaddaf8087cde1c375dbc19c576475965f5b4 | [
"Apache-2.0"
] | 1 | 2021-08-28T19:50:32.000Z | 2021-08-28T19:50:32.000Z | kernel/arch/regutil.asm | Twometer/nekosys | cbcdaddaf8087cde1c375dbc19c576475965f5b4 | [
"Apache-2.0"
] | null | null | null | kernel/arch/regutil.asm | Twometer/nekosys | cbcdaddaf8087cde1c375dbc19c576475965f5b4 | [
"Apache-2.0"
] | null | null | null | ; Storage for registers during the IRQ
; This must match the RegisterState struct in registers.h
s_eax: dd 0
s_ebx: dd 0
s_ecx: dd 0
s_edx: dd 0
s_esp: dd 0
s_esi: dd 0
s_edi: dd 0
s_ebp: dd 0
s_flags: dd 0
s_ds: dd 0
; Macro for saving register to struct
%macro save_reg 1
mov dword [s_%1], %1
%endmacro
; Macro for... | 15.428571 | 57 | 0.717593 |
6baed7195b6faf64eed851d5bc70b06078c68402 | 318 | asm | Assembly | programs/oeis/016/A016137.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/016/A016137.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/016/A016137.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A016137: Expansion of 1/((1-3x)(1-6x)).
; 1,9,63,405,2511,15309,92583,557685,3352671,20135709,120873303,725416965,4353033231,26119793709,156723545223,940355620245,5642176768191,33853189749309,203119525916343,1218718317759525
mov $1,2
pow $1,$0
lpb $0
sub $0,1
mul $1,3
sub $1,1
lpe
sub $1,1
mul $1,2
add $1,1
| 22.714286 | 184 | 0.738994 |
0dabc784754cbd14144f35a7cfe9a5283a883aa3 | 693 | asm | Assembly | oeis/267/A267921.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/267/A267921.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/267/A267921.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A267921: Decimal representation of the n-th iteration of the "Rule 243" elementary cellular automaton starting with a single ON (black) cell.
; 1,5,29,125,509,2045,8189,32765,131069,524285,2097149,8388605,33554429,134217725,536870909,2147483645,8589934589,34359738365,137438953469,549755813885,2199023255549,8796093022... | 69.3 | 491 | 0.860029 |
61048b7c915dab800cc3e43b01c8afd0df964b2d | 779 | asm | Assembly | libsrc/target/zx81/zx_setcursorpos_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 38 | 2021-06-18T12:56:15.000Z | 2022-03-12T20:38:40.000Z | libsrc/target/zx81/zx_setcursorpos_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 2 | 2021-06-20T16:28:12.000Z | 2021-11-17T21:33:56.000Z | libsrc/target/zx81/zx_setcursorpos_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 6 | 2021-06-18T18:18:36.000Z | 2021-12-22T08:01:32.000Z | ;
; ZX 81 specific routines
; by Stefano Bodrato, Oct 2007
;
; Copy a string to a BASIC variable
;
; int __CALLEE__ zx_setstr_callee(char variable, char *value);
;
;
; $Id: zx_setcursorpos_callee.asm,v 1.8 2016-06-26 20:32:08 dom Exp $
;
SECTION code_clib
PUBLIC zx_setcursorpos_callee
PUBLIC _zx_setcursorpos_callee
PU... | 16.574468 | 71 | 0.744544 |
cd059ef3cae33e03301db32c2ddd0fd0cce3ad72 | 5,000 | asm | Assembly | kernel/asmhead.asm | kkk669/Cloumo | 2328882acca5d1c9bd714c8c5b36264a7b9b51f5 | [
"BSD-3-Clause"
] | 4 | 2017-02-04T15:19:15.000Z | 2021-11-12T23:13:53.000Z | kernel/asmhead.asm | kkk669/Cloumo | 2328882acca5d1c9bd714c8c5b36264a7b9b51f5 | [
"BSD-3-Clause"
] | null | null | null | kernel/asmhead.asm | kkk669/Cloumo | 2328882acca5d1c9bd714c8c5b36264a7b9b51f5 | [
"BSD-3-Clause"
] | 5 | 2020-06-04T17:26:59.000Z | 2021-06-25T17:25:54.000Z | BOTPAK equ 0x00280000 ; bootpackのロード先
DSKCAC equ 0x00100000 ; ディスクキャッシュの場所
DSKCAC0 equ 0x00008000 ; ディスクキャッシュの場所(リアルモード)
; BOOT_INFO関係
CYLS equ 0x0ff0 ; ブートセクタが設定する
LEDS equ 0x0ff1
VMODE equ 0x0ff2 ; 色数に関する情報。何ビットカラーか?
SCRNX equ 0x0ff4 ; 解像度のX
SCRNY equ 0x0ff6 ; 解像度のY
VRAM equ 0x0ff8 ; グラフィックバッファ... | 17.182131 | 59 | 0.6538 |
a8dc477710fec0a9a00fb1debb547939502cc81e | 256 | asm | Assembly | data/maps/objects/LancesRoom.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | 1 | 2022-02-15T00:19:44.000Z | 2022-02-15T00:19:44.000Z | data/maps/objects/LancesRoom.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | data/maps/objects/LancesRoom.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | LancesRoom_Object:
db $3 ; border block
def_warps
warp 24, 16, 2, AGATHAS_ROOM
warp 5, 0, 0, CHAMPIONS_ROOM
warp 6, 0, 0, CHAMPIONS_ROOM
def_signs
def_objects
object SPRITE_LANCE, 6, 1, STAY, DOWN, 1, OPP_LANCE, 1
def_warps_to LANCES_ROOM
| 17.066667 | 55 | 0.722656 |
cbd7fe446eb8ec401ec7b0be70382ea266aa7f0d | 7,849 | asm | Assembly | s3/music-optimized/Continue.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 9 | 2017-10-09T20:28:45.000Z | 2021-06-29T21:19:20.000Z | s3/music-optimized/Continue.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 12 | 2018-08-01T13:52:20.000Z | 2022-02-21T02:19:37.000Z | s3/music-optimized/Continue.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 2 | 2018-02-17T19:50:36.000Z | 2019-10-30T19:28:06.000Z | Snd_Continue_Header:
smpsHeaderStartSong 3
smpsHeaderVoiceUVB
smpsHeaderChan $06, $03
smpsHeaderTempo $01, $43
smpsHeaderDAC Snd_Continue_DAC
smpsHeaderFM Snd_Continue_FM1, $18, $12
smpsHeaderFM Snd_Continue_FM2, $18, $10
smpsHeaderFM Snd_Continue_FM3, $0C, $14
smpsHeaderFM... | 38.665025 | 95 | 0.605937 |
ad89974b45e1857fe6e287f320bf41f2f11dad3e | 190 | asm | Assembly | mc-sema/validator/x86/tests/PUSHi32.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | 2 | 2021-08-07T16:21:29.000Z | 2021-11-17T10:58:37.000Z | mc-sema/validator/x86/tests/PUSHi32.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | mc-sema/validator/x86/tests/PUSHi32.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | BITS 32
;TEST_FILE_META_BEGIN
;TEST_TYPE=TEST_F
;TEST_IGNOREFLAGS=
;TEST_FILE_META_END
; PUSHi32
;TEST_BEGIN_RECORDING
push dword 0x7c100052
;TEST_END_RECORDING
pop eax
| 15.833333 | 25 | 0.763158 |
706ac6d29a8cde55162b18d57499973d1f8d0c0c | 311 | asm | Assembly | programs/oeis/332/A332495.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/332/A332495.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/332/A332495.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A332495: a(n-2) = a(n-6) + 5*(1+2*n) with a(0)=0, a(1)=2, a(2)=7, a(3)=15 for n>=4.
; 0,2,7,15,25,37,52,70,90,112,137,165,195,227,262,300,340,382,427,475,525,577,632,690,750,812,877,945,1015,1087,1162,1240,1320,1402,1487,1575,1665,1757,1852,1950,2050,2152,2257
add $0,1
bin $0,2
mul $0,10
div $0,4
mov $1,$0
| 34.555556 | 176 | 0.633441 |
0d9c88109b2de80278457df7003de53cb4b580d1 | 520 | asm | Assembly | programs/oeis/315/A315707.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/315/A315707.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/315/A315707.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A315707: Coordination sequence Gal.5.295.3 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,6,12,17,23,29,35,41,46,52,58,64,70,75,81,87,93,99,104,110,116,122,128,133,139,145,151,157,162,168,174,180,186,191,197,203,209,215,220,226,... | 24.761905 | 181 | 0.676923 |
129b6b7ba1c30b0be533e6a5fcda50b0350c82ba | 360 | asm | Assembly | programs/oeis/026/A026219.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/026/A026219.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/026/A026219.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A026219: Position of n in A026218.
; 1,2,5,3,9,4,13,6,17,7,21,8,25,10,29,11,33,12,37,14,41,15,45,16,49,18,53,19,57,20,61,22,65,23,69,24,73,26,77,27,81,28,85,30,89,31,93,32,97,34,101,35,105,36,109,38,113,39,117,40,121
mov $4,$0
mod $0,2
mov $3,10
mul $4,2
mov $1,$4
lpb $0
bin $0,$3
add $1,1
div $1,3
lpe
add $2,... | 18.947368 | 181 | 0.608333 |
6b9f6cf951aec795f7ab9f8b061dbd34527c855b | 1,953 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_324_1316.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_324_1316.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_324_1316.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r14
push %r9
push %rax
push %rbx
push %rdx
// Store
lea addresses_A+0x1cb69, %rax
nop
nop
nop
and %r11, %r11
mov $0x5152535455565758, %r9
movq %r9, (%rax)
nop
sub $52975, %rdx
// Faulty Load
lea addres... | 34.875 | 971 | 0.65489 |
632ac28a0270daff19185809c258866525530237 | 1,334 | asm | Assembly | delay.asm | unlink2/nesrpg | be08966cb171d8e54287bf0e59ec6262be7e8463 | [
"MIT"
] | 5 | 2020-01-23T14:58:55.000Z | 2021-06-27T15:00:29.000Z | delay.asm | unlink2/nano_dungeons | be08966cb171d8e54287bf0e59ec6262be7e8463 | [
"MIT"
] | null | null | null | delay.asm | unlink2/nano_dungeons | be08966cb171d8e54287bf0e59ec6262be7e8463 | [
"MIT"
] | null | null | null | ; this sub routine handles delayed updates
; inputs:
; delay_timer -> set how many frames an animation will take
; delay_update -> function pointer
; delay_done -> function pointer
; returns:
; a = 1 if animation just finished AND update should be skipped
; note that this has to be set by the update done ... | 20.523077 | 65 | 0.670915 |
367f60304ebefddd7362eea00eef93bc4c694986 | 517 | asm | Assembly | src/util/strg/cmpst.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | src/util/strg/cmpst.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | src/util/strg/cmpst.asm | olifink/qspread | d6403d210bdad9966af5d2a0358d4eed3f1e1c02 | [
"MIT"
] | null | null | null | ; compare to string (using QDOS ut.cstr)
section string
include win1_keys_err
include win1_keys_qlv
xdef st_cmpst ; append a character
;+++
; compare two strings (see ut.cstr)
;
; Entry Exit
; d0.b comparison type -1,0 or +1 (0=same)
; 0=file
; 1=basic
; 2=equivalence
; a0... | 15.205882 | 48 | 0.630561 |
a85ef465a10274f6af0c17edc83564e93ea0c9d0 | 224 | asm | Assembly | src/tables.asm | munshkr/nes-snake | f46910798e453edc17b274d6bd65f8665addea61 | [
"Apache-2.0"
] | null | null | null | src/tables.asm | munshkr/nes-snake | f46910798e453edc17b274d6bd65f8665addea61 | [
"Apache-2.0"
] | null | null | null | src/tables.asm | munshkr/nes-snake | f46910798e453edc17b274d6bd65f8665addea61 | [
"Apache-2.0"
] | null | null | null | ;;;;;;;;;;;;;;;;;;
;;; TABLES ;;;
;;;;;;;;;;;;;;;;;;
.align $100
palette:
.db $0F,$31,$32,$33,$34,$35,$36,$37,$38,$39,$3A,$3B,$3C,$3D,$3E,$0F
.db $0F,$3B,$15,$0F,$0F,$02,$0F,$0F,$0F,$1C,$15,$14,$31,$02,$38,$3C
| 22.4 | 71 | 0.397321 |
430a811c6dc66cd5769bceaebf87746e92cba437 | 11 | asm | Assembly | src/main/fragment/mos6502-common/vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/vbuaa=vbuaa_bor_pbuc1_derefidx_vbuyy.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | ora {c1},y
| 5.5 | 10 | 0.545455 |
5f2c7613ce5d4eb7d044fb3afcaa7f836b3aee71 | 296 | asm | Assembly | libsrc/sprites/software/sp1/ts2068hr/updater/sp1_Initialize.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/sprites/software/sp1/ts2068hr/updater/sp1_Initialize.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | libsrc/sprites/software/sp1/ts2068hr/updater/sp1_Initialize.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | ; CALLER linkage for function pointers
XLIB sp1_Initialize
LIB sp1_Initialize_callee
XREF ASMDISP_SP1_INITIALIZE_CALLEE
.sp1_Initialize
ld hl,2
add hl,sp
ld e,(hl)
inc hl
ld d,(hl)
inc hl
ld a,(hl)
ex de,hl
jp sp1_Initialize_callee + ASMDISP_SP1_INITIALIZE_CALLEE
| 14.8 | 59 | 0.72973 |
c889646cb33592220001294dffa28bc827059a0f | 323 | asm | Assembly | oeis/021/A021236.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | oeis/021/A021236.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | oeis/021/A021236.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A021236: Decimal expansion of 1/232.
; 0,0,4,3,1,0,3,4,4,8,2,7,5,8,6,2,0,6,8,9,6,5,5,1,7,2,4,1,3,7,9,3,1,0,3,4,4,8,2,7,5,8,6,2,0,6,8,9,6,5,5,1,7,2,4,1,3,7,9,3,1,0,3,4,4,8,2,7,5,8,6,2,0,6,8,9,6,5,5,1,7,2,4,1,3,7,9,3,1,0,3,4,4,8,2,7,5,8,6
add $0,1
mov $2,1
lpb $0
sub $0,1
mul $2,10
lpe
div $2,232
mov $0,$2
mod $0,... | 24.846154 | 199 | 0.5387 |
a87daa4efb93fc2a41bdc5225f585a515dacd72b | 163 | asm | Assembly | 11-Injection-Sites-1.size.asm | blueset/7bh-solutions | 988afddf87411bec06ec9e90179b55fb55345a5d | [
"MIT"
] | null | null | null | 11-Injection-Sites-1.size.asm | blueset/7bh-solutions | 988afddf87411bec06ec9e90179b55fb55345a5d | [
"MIT"
] | null | null | null | 11-Injection-Sites-1.size.asm | blueset/7bh-solutions | 988afddf87411bec06ec9e90179b55fb55345a5d | [
"MIT"
] | null | null | null | -- 7 Billion Humans --
-- 11: Injection Sites 1 --
-- Size: 5/5 --
-- Speed: 10/7 --
pickup s
a:
if w != datacube or
c == datacube:
step s
jump a
endif
drop
| 10.1875 | 27 | 0.576687 |
d1d4b37ee4ca814122be6ceef7f5f9e90eee163f | 16,258 | asm | Assembly | home/text.asm | AtmaBuster/pokeplat-gen2 | fa83b2e75575949b8f72cb2c48f7a1042e97f70f | [
"blessing"
] | 6 | 2021-06-19T06:41:19.000Z | 2022-02-15T17:12:33.000Z | home/text.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | null | null | null | home/text.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | 2 | 2021-08-11T19:47:07.000Z | 2022-01-01T07:07:56.000Z | ClearBox::
; Fill a c*b box at hl with blank tiles.
ld a, " "
; fallthrough
FillBoxWithByte::
.row
push bc
push hl
.col
ld [hli], a
dec c
jr nz, .col
pop hl
ld bc, SCREEN_WIDTH
add hl, bc
pop bc
dec b
jr nz, .row
ret
ClearTileMap::
; Fill wTileMap with blank tiles.
hlcoord 0, 0
ld a, " "
ld bc, wTile... | 14.806922 | 70 | 0.678066 |
f5fa910dbab49c62a3a1c6b230dc888931a35247 | 228 | asm | Assembly | programs/oeis/010/A010705.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/010/A010705.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/010/A010705.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A010705: Period 2: repeat (3,7).
; 3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3,7,3
gcd $0,2
mov $1,7
div $1,$0
| 32.571429 | 163 | 0.517544 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.