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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
75aadebd58550619fc2fafa45a41a17ddebe8792 | 686 | asm | Assembly | oeis/081/A081708.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/081/A081708.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/081/A081708.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A081708: a(n) = a(n-1) + 64*a(n-2) starting with a(0) = 2 and a(1) = 1.
; Submitted by Christian Krause
; 2,1,129,193,8449,20801,561537,1892801,37831169,158970433,2580165249,12754272961,177884848897,994158318401,12378788647809,76004921025473,868247394485249,5732562340115521,61300395587171457,428184385354564801,435140... | 45.733333 | 480 | 0.816327 |
e35ec80aeeecb1595b8b903ba6090c7197d867d6 | 316 | asm | Assembly | programs/oeis/077/A077433.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/077/A077433.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/077/A077433.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A077433: Number of separating zeros to represent A077431.
; 0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
div $0,2
lpb $0
div $0,11
add $1,1
lpe
mov $0,$1
| 31.6 | 201 | 0.556962 |
ff3121906d45acaef1bc889d54ee9bc1b1ebee4f | 180 | asm | Assembly | src/lib/copy.asm | zys1310992814/BookOSv0.2 | 7dca0f968663a0e6de18dd9b3e533d1e0412674f | [
"BSD-2-Clause"
] | 3 | 2019-02-24T11:05:46.000Z | 2019-02-26T03:20:50.000Z | src/lib/copy.asm | zys1310992814/BookOSv0.2 | 7dca0f968663a0e6de18dd9b3e533d1e0412674f | [
"BSD-2-Clause"
] | null | null | null | src/lib/copy.asm | zys1310992814/BookOSv0.2 | 7dca0f968663a0e6de18dd9b3e533d1e0412674f | [
"BSD-2-Clause"
] | null | null | null | [bits 32]
[section .text]
INT_VECTOR_SYS_CALL equ 0x80
_NR_COPY EQU 26
global copy
copy:
mov eax, _NR_COPY
mov ebx, [esp + 4]
mov ecx, [esp + 8]
int INT_VECTOR_SYS_CALL
ret | 12.857143 | 28 | 0.716667 |
d92d436e1a8beb566473bf918ce108707e1eacee | 4,207 | asm | Assembly | test/golang/labels.output.asm | moneytech/compiler-explorer | 63a0e5090629c0799724cf82ea817e8c7d328549 | [
"BSD-2-Clause"
] | 2 | 2020-06-16T17:31:52.000Z | 2021-10-05T03:15:41.000Z | test/golang/labels.output.asm | moneytech/compiler-explorer | 63a0e5090629c0799724cf82ea817e8c7d328549 | [
"BSD-2-Clause"
] | 5 | 2021-10-06T22:35:56.000Z | 2022-02-27T11:22:28.000Z | test/golang/labels.output.asm | moneytech/compiler-explorer | 63a0e5090629c0799724cf82ea817e8c7d328549 | [
"BSD-2-Clause"
] | 1 | 2021-03-04T23:56:54.000Z | 2021-03-04T23:56:54.000Z | Closures_pc0:
.file 1 "labels.go"
.loc 1 5 0
text "".Closures(SB), $24-0
movq (TLS), CX
cmpq SP, 16(CX)
jls Closures_pc75
subq $24, SP
movq BP, 16(SP)
leaq 16(SP), BP
funcdata $0, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
funcdata $1, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
funcdata $3, gclocals·9... | 20.826733 | 59 | 0.707392 |
6bd41b1a3a98193356df2d65738dba0821af6ce9 | 348 | asm | Assembly | Main.asm | krawchukd/Square-Root | 5ddfbf1e765beb750f2506f774a85d17d6808246 | [
"Apache-2.0"
] | null | null | null | Main.asm | krawchukd/Square-Root | 5ddfbf1e765beb750f2506f774a85d17d6808246 | [
"Apache-2.0"
] | null | null | null | Main.asm | krawchukd/Square-Root | 5ddfbf1e765beb750f2506f774a85d17d6808246 | [
"Apache-2.0"
] | null | null | null | # Test Main
.data
Test_Value:
.float 32.0
.text
.globl main
main:
#lwc1 $f0, Test_Value # Load input float into float register.
li $v0, 6
syscall
#mtc1 $v0, $f0
jal sqrt # Perform function and return value in $f0.
mov.s $f12, $f1 # Move from register
li $v0, 2 # Load print float instruction.
syscall ... | 14.5 | 62 | 0.66954 |
78dece492b5d0fa0441f3ae5ca2dac826434e05f | 7,548 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1424.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1424.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1424.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x17413, %rsi
lea addresses_UC_ht+0x7193, %rdi
nop
nop
nop
nop
nop
add $21369, %r9
mov $8, %rcx
rep movsw
nop
sub %r12, %r12
lea addresses_A_ht+0xc5f3, %rdx
nop
nop
nop
nop
nop... | 34 | 2,999 | 0.655008 |
71f203f79db4ca23d7879f146a68027771443ac1 | 494 | asm | Assembly | oeis/321/A321234.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/321/A321234.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/321/A321234.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A321234: Denominator of series expansion of the hypergeometric series 3F2([1/2, 1, 1], [3/2, 3/2], x).
; Submitted by Jon Maiga
; 1,9,75,245,2835,7623,39039,96525,1859715,4387955,20369349,46646691,422524375,947754675,4217257575,9316746045,327288272355,714666904875,3105965056425,6720018279975,57930003736605,1244048512... | 41.166667 | 246 | 0.761134 |
f073ffa100bbbcb0a71a34fad24c19c961b692d0 | 6,692 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_591.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_591.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_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 %r11
push %r12
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x13bb0, %rbp
xor %r9, %r9
movw $0x6162, (%rbp)
nop
inc %rax
lea addresses_WT_ht+0x6ab0, %r9
nop
nop
nop
nop
nop
sub %r12, %r12
movw $0x6162, (%r9)
nop
nop
and %r9, %r9
lea add... | 36.172973 | 2,999 | 0.657053 |
d4cb2d9ed1361228555965a54a210e1c264696fc | 1,357 | asm | Assembly | NASM 64-bit/macros.asm | CosasDePuma/Aesthetic-Programming | 12b9d8beb326e3781068e40afd0c858e3e681a53 | [
"MIT"
] | 2 | 2017-08-25T23:56:18.000Z | 2017-08-28T12:46:17.000Z | NASM 64-bit/macros.asm | CosasDePuma/AestheticProgramming | 12b9d8beb326e3781068e40afd0c858e3e681a53 | [
"MIT"
] | null | null | null | NASM 64-bit/macros.asm | CosasDePuma/AestheticProgramming | 12b9d8beb326e3781068e40afd0c858e3e681a53 | [
"MIT"
] | null | null | null | ; _________________
; // \\
; || HOW TO COMPILE IT ||
; \\_________________//
;
; ------ x86_64 ------
; nasm -f elf64 macros.asm
; ld -s -o macros macros.o
;
; _________________
; // \\
; || DESCRIPTION ||
; \\_________________//
;
; The NASM "Hello, World!"
; using ... | 22.245902 | 83 | 0.521739 |
1e4bc4fc90ab4146607dd8639cd8f56501b43a77 | 847 | asm | Assembly | oeis/154/A154628.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/154/A154628.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/154/A154628.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A154628: Primes congruent to 35 mod 73
; Submitted by Jon Maiga
; 181,619,911,1787,1933,2371,2663,3539,4561,4999,5437,7043,7481,7919,8941,9817,11131,11423,12007,13613,13759,14051,14197,14489,15073,15511,15803,17117,18869,19891,20183,21059,22811,23687,23833,24709,25147,25439,27191,27337,29527,29819,30403,30841,32009,3... | 32.576923 | 498 | 0.728453 |
edcee1a7905d81c43bebc2fead9156f8f9f096da | 3,205 | asm | Assembly | ee/wman/scrow.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ee/wman/scrow.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ee/wman/scrow.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | * Scan visible rows of standard menu V1.01 1986 Tony Tebby QJUMP
*
section wman
*
xdef wm_scrow
*
include dev8_keys_wwork
include dev8_keys_wstatus
*
* d1 c pointer position relative to sub-window
* d2 s (word) on-screen row number
* d3 s (word) virtual row number
* d4 s (word) current hit area siz... | 25.64 | 73 | 0.698908 |
ee97eeb99ae376cef242840a48985ed962fdb9f1 | 7,663 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_62.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_62.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_62.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 %r8
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x2c6b, %rsi
lea addresses_D_ht+0x86b, %rdi
clflush (%rsi)
nop
nop
nop
add $22507, %r9
mov $124, %rcx
rep movsq
nop
nop
nop
nop
sub $52688, %r11
lea addresses_UC_ht+0xcd6b, %rsi... | 34.674208 | 2,999 | 0.658228 |
86b60e8369a437351ee26262e7081419368a1f9d | 471 | asm | Assembly | oeis/133/A133541.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/133/A133541.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/133/A133541.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A133541: Sum of fifth powers of five consecutive primes.
; Submitted by Jon Maiga
; 181258,552519,1972133,4445107,10864643,31214741,59472599,127396699,240776801,381348901,590182759,979749101,1625329443,2354069543,3557186207,5132070551,6786946651,9149078751,12243523093,16477457435
mov $3,5
mov $4,$0
lpb $3
mov $0,$... | 23.55 | 198 | 0.707006 |
a1d40c54a37c469d187e584d7bccd867817f277d | 779 | asm | Assembly | oeis/042/A042103.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | null | null | null | oeis/042/A042103.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | null | null | null | oeis/042/A042103.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | null | null | null | ; A042103: Denominators of continued fraction convergents to sqrt(575).
; Submitted by Christian Krause
; 1,1,47,48,2255,2303,108193,110496,5191009,5301505,249060239,254361744,11949700463,12204062207,573336561985,585540624192,27508205274817,28093745899009,1319820516629231,1347914262528240,63323876592928271,646717908554... | 33.869565 | 483 | 0.797176 |
5fa0c4eebb4a852e7f951e71fd399936a7da0745 | 705 | asm | Assembly | cards/bn4/ModCards/134-E016 AllGuard 12 (0C).asm | RockmanEXEZone/MMBN-Mod-Card-Kit | d591ddca5566dbb323dc19c11e69410fa4073d1b | [
"Unlicense"
] | 10 | 2017-12-05T14:25:38.000Z | 2022-02-21T04:28:00.000Z | cards/bn4/ModCards/134-E016 AllGuard 12 (0C).asm | RockmanEXEZone/MMBN-Mod-Card-Kit | d591ddca5566dbb323dc19c11e69410fa4073d1b | [
"Unlicense"
] | null | null | null | cards/bn4/ModCards/134-E016 AllGuard 12 (0C).asm | RockmanEXEZone/MMBN-Mod-Card-Kit | d591ddca5566dbb323dc19c11e69410fa4073d1b | [
"Unlicense"
] | null | null | null | .include "defaults_mod.asm"
table_file_jp equ "exe4-utf8.tbl"
table_file_en equ "bn4-utf8.tbl"
game_code_len equ 3
game_code equ 0x4234574A // B4WJ
game_code_2 equ 0x42345745 // B4WE
game_code_3 equ 0x42345750 // B4WP
card_type equ 1
card_id equ 76
card_no equ "076"
card_sub equ "Mod Card 076"
card_sub_x ... | 26.111111 | 36 | 0.77305 |
6cd74be57f02fd1968ef2f0c5afac07b8bed98fd | 1,420 | asm | Assembly | Satellite Decryption/03-Number-Subroutine/print.asm | JaredsOSToolbox/AssemblerPrograms | a9158c5b135689ec39c71944c121d65a61d8a6b4 | [
"MIT"
] | null | null | null | Satellite Decryption/03-Number-Subroutine/print.asm | JaredsOSToolbox/AssemblerPrograms | a9158c5b135689ec39c71944c121d65a61d8a6b4 | [
"MIT"
] | null | null | null | Satellite Decryption/03-Number-Subroutine/print.asm | JaredsOSToolbox/AssemblerPrograms | a9158c5b135689ec39c71944c121d65a61d8a6b4 | [
"MIT"
] | null | null | null | ; Our Macros
%define SYS_EXIT 60
%define SYS_READ 0
%define SYS_WRITE 1
%define SYS_OPEN 2
%define SYS_CLOSE 3
%define STDOUT 1
%define SYS_CREATE 85
%define BUFFER_SIZE 180
section .text
; input is rsi, len is rdx
; print(content=rsi, strlen=rdx)
print:
push rax
push rdi
mov rax, SYS_WRITE
mov rdi, 1
syscal... | 17.317073 | 47 | 0.55493 |
6d58190e79e70d740c6a051fed043722f7bc4632 | 1,218 | asm | Assembly | src/elf.asm | edwardatki/eDOS | 44c1eb7bc720a5e611454aee385191fcfcb088a9 | [
"MIT"
] | 1 | 2017-02-13T21:28:01.000Z | 2017-02-13T21:28:01.000Z | src/elf.asm | edwardatki/eDOS | 44c1eb7bc720a5e611454aee385191fcfcb088a9 | [
"MIT"
] | 2 | 2017-02-09T21:23:44.000Z | 2017-05-11T19:05:52.000Z | src/elf.asm | edwardatki/eDOS | 44c1eb7bc720a5e611454aee385191fcfcb088a9 | [
"MIT"
] | null | null | null | %define IMAGE_RMODE_BASE 0x00003000
%define IMAGE_PMODE_BASE 0x00100000
[bits 16]
LoadELF:
mov si, FILENAME
mov bx, 0x0000
mov ax, IMAGE_RMODE_BASE/10
call Disk.GetFile
; Check magic ELF double word
mov edx, [MagicELF]
push ds
mov ax, IMAGE_RMODE_BASE/10
mov ds, ax
mov eax, [0x0]
cmp eax... | 18.454545 | 74 | 0.663383 |
2764c2e8fd2502ae4849677bb9da480266fae979 | 604 | asm | Assembly | oeis/088/A088892.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/088/A088892.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/088/A088892.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A088892: Polynexus numbers of order 14.
; 0,1,291,16096,356232,4411517,36621423,227095448,1128128568,4708376529,17078744419,55199550120,161993768080,438011626365,1103841220991,2616890599056,5880356075792,12602902382337,25897027973187,51245013077968,98017089897528,181801058663389,327900796771119,576488632394984,990060... | 100.666667 | 501 | 0.880795 |
8b4368e1aa552aa1755b40fa89da0833f9ab8dac | 14,025 | asm | Assembly | libraries/__temp.asm | paulscottrobson/z80-machine-forth | f149dc7b2e7f077c9b920b1202ba00fd32aeb1df | [
"MIT"
] | null | null | null | libraries/__temp.asm | paulscottrobson/z80-machine-forth | f149dc7b2e7f077c9b920b1202ba00fd32aeb1df | [
"MIT"
] | 1 | 2019-03-03T21:00:30.000Z | 2020-07-02T09:18:04.000Z | libraries/__temp.asm | paulscottrobson/z80-machine-forth | f149dc7b2e7f077c9b920b1202ba00fd32aeb1df | [
"MIT"
] | null | null | null |
org $86ec
sys_displayinformation = $86ca
sys_gfx_setmode = $80a6
sys_gfx_write = $80d0
sys_gfx_writehex = $80e3
sys_macroexpander = $809b
sys_page_restore = $8052
sys_page_switch = $8039
sys_systeminformation = $86b6
; *********************************************************************************************
; *... | 25.972222 | 95 | 0.325704 |
6cfe5b92c183418563ee7297902a132e0f7152b9 | 650 | asm | Assembly | oeis/097/A097844.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/097/A097844.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/097/A097844.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A097844: Chebyshev polynomials S(n,171).
; Submitted by Jamie Morken(s2)
; 1,171,29240,4999869,854948359,146191169520,24997835039561,4274483600595411,730911697866775720,124981625851618052709,21371127108928820237519,3654337754000976642563040,624870384807058077058042321,106849181464252930200282673851,182705851600024440... | 38.235294 | 456 | 0.846154 |
83c0a6ef0ece5610e69c015e4b13abbcd722b3ba | 503 | asm | Assembly | programs/oeis/155/A155091.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/155/A155091.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/155/A155091.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A155091: Triangle read by rows. Signed version of A145362. Main diagonal positive, rest of the nonzero terms negative.
; 1,-1,1,0,-1,1,0,-1,-1,1,0,0,-1,-1,1,0,0,-1,-1,-1,1,0,0,0,-1,-1,-1,1,0,0,0,-1,-1,-1,-1,1,0,0,0,0,-1,-1,-1,-1,1,0,0,0,0,-1,-1,-1,-1,-1,1,0,0,0,0,0,-1,-1,-1,-1,-1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,1,0,0,0... | 33.533333 | 211 | 0.544732 |
f389fdf2c038271f2837eb093625ae19a84a57c0 | 863 | asm | Assembly | oeis/142/A142606.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/142/A142606.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/142/A142606.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A142606: Primes congruent to 7 mod 55.
; Submitted by Jon Maiga
; 7,227,337,557,887,997,1217,1327,1657,1877,1987,2207,2647,3307,3527,3637,3967,4297,4517,4957,5507,6277,6607,6827,7487,7817,7927,8147,8807,9137,9467,9907,10457,10567,11117,11447,11777,11887,12107,12437,12547,13537,13757,14087,14197,14747,15077,15187,1573... | 31.962963 | 501 | 0.718424 |
277a419c19ff16d8b8e2e251892ebbd5cc5a6811 | 2,312 | asm | Assembly | programs/oeis/017/A017516.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/017/A017516.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/017/A017516.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A017516: a(n) = (11*n + 10)^8.
; 100000000,37822859361,1099511627776,11688200277601,72301961339136,318644812890625,1113034787454976,3282116715437121,8507630225817856,19925626416901921,42998169600000000,86730203469006241,165312903998914816,300283484326400961,523300059815673856,879638824462890625,1432529432742502656,22... | 330.285714 | 2,248 | 0.942474 |
7d7e411254043b23a005c74f1a3b13f2cf5a91dc | 1,210 | nasm | Assembly | xor-ror-feedback-decoder.nasm | Re4son/slae-assignment4 | 42eaa675360082a4270cd172f5e5d627627d401a | [
"Unlicense"
] | 3 | 2018-05-01T16:47:41.000Z | 2021-10-17T00:22:07.000Z | xor-ror-feedback-decoder.nasm | Re4son/slae-assignment4 | 42eaa675360082a4270cd172f5e5d627627d401a | [
"Unlicense"
] | null | null | null | xor-ror-feedback-decoder.nasm | Re4son/slae-assignment4 | 42eaa675360082a4270cd172f5e5d627627d401a | [
"Unlicense"
] | 1 | 2021-10-17T00:22:11.000Z | 2021-10-17T00:22:11.000Z | ; Filename: xor-ror-feedback-decoder.nasm
; Author: Re4son re4son [at] whitedome.com.au
; Purpose: XOR-ROR feedback encoder
global _start
section .text
_start:
cld ; zero out edx
mov dl, 0x2c ; initial key is used to find end of encoded shellcode
push edx ; and used as initial xor key
jmp call_decode... | 43.214286 | 143 | 0.717355 |
3c4505b8c6fc0643a1c95516bd66bd8120c2d505 | 3,505 | asm | Assembly | nsf.asm | furrykef/nesadpcm | 2e5e189ef288ed4dbd888f32b6c58fdba1f3ad2a | [
"CC0-1.0"
] | 2 | 2015-03-07T18:25:15.000Z | 2015-11-06T21:37:36.000Z | nsf.asm | furrykef/nesadpcm | 2e5e189ef288ed4dbd888f32b6c58fdba1f3ad2a | [
"CC0-1.0"
] | null | null | null | nsf.asm | furrykef/nesadpcm | 2e5e189ef288ed4dbd888f32b6c58fdba1f3ad2a | [
"CC0-1.0"
] | null | null | null | ; Demo sounds:
; 1: Homer Simpson from The Simpsons
; 2: The Scout from Team Fortress 2
; 3: Donkey Kong from Mario Kart 64
; 4: "Make your selection now" from Action 53, voiced by tepples
; 5: Drum loop from Sgt. Pepper Reprise by The Beatles
.include "adpcm.asm"
.segment "HEADER"
.byte 'N', 'E', 'S', 'M... | 21.90625 | 85 | 0.4699 |
3c8d99b47b01ed802c973e2c82b53f219c4b1fdf | 532 | asm | Assembly | oeis/347/A347870.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/347/A347870.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/347/A347870.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A347870: a(n) = A003415(sigma(n)) mod 2, where A003415 is the arithmetic derivative, and sigma is the sum of divisors of n.
; 0,1,0,1,1,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,... | 76 | 201 | 0.577068 |
822113402def4eb5ec98f9d9d8dec7f83b106777 | 1,361 | asm | Assembly | 08/ProgramFlow/FibonacciSeries/FibonacciSeries.asm | jonosmith/nand2tetris | e42212f40b074530a663fa7c7e44c87dbf7c5d59 | [
"BSD-3-Clause"
] | null | null | null | 08/ProgramFlow/FibonacciSeries/FibonacciSeries.asm | jonosmith/nand2tetris | e42212f40b074530a663fa7c7e44c87dbf7c5d59 | [
"BSD-3-Clause"
] | null | null | null | 08/ProgramFlow/FibonacciSeries/FibonacciSeries.asm | jonosmith/nand2tetris | e42212f40b074530a663fa7c7e44c87dbf7c5d59 | [
"BSD-3-Clause"
] | null | null | null | @ARG
D=M
@1
A=D+A
D=M
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
@SP
A=M
D=M
@SP
M=M+1
@4
M=D
@SP
M=M-1
@0
D=A
@SP
A=M
M=D
@SP
M=M+1
@THAT
D=M
A=D
D=A
@R13
M=D
@SP
M=M-1
@SP
A=M
D=M
@SP
M=M+1
@R13
A=M
M=D
@SP
M=M-1
@1
D=A
@SP
A=M
M=D
@SP
M=M+1
@THAT
D=M
@1
A=D+A
D=A
@R13
M=D
@SP
M=M-1
@SP
A=M
D=M
@SP
M=M+1
@R13
A=M
M=D
@SP
M=M-1
... | 4.676976 | 17 | 0.531962 |
00ffa414a3f442e8e76717881fed03b08692c3c3 | 48 | asm | Assembly | tests/optimizer/E009.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | tests/optimizer/E009.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | tests/optimizer/E009.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; in
mov $1,5
cal $0,$1
; out
mov $1,5
cal $0,5
| 6.857143 | 9 | 0.520833 |
cd9f73ed62adefc9e8402d5e84d67539149be280 | 512 | asm | Assembly | programs/oeis/065/A065334.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/065/A065334.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/065/A065334.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A065334: 2-exponents to represent 3-smooth numbers (A065332).
; 0,1,0,2,0,1,0,3,0,0,0,2,0,0,0,4,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0
add $0,1
mul $0,3
mov $2,2
mov $3,$0
mov $4,$0
lpb $3... | 18.962963 | 201 | 0.503906 |
aee8115709795dbc48e86eba75e51278a8d2a3fc | 1,060 | asm | Assembly | writeups/flag3/src/entry.asm | zer0x64/nsec2022-gband | 7f831b1af83c7f766f139dfce14776b654ee8d9a | [
"Apache-2.0",
"MIT"
] | null | null | null | writeups/flag3/src/entry.asm | zer0x64/nsec2022-gband | 7f831b1af83c7f766f139dfce14776b654ee8d9a | [
"Apache-2.0",
"MIT"
] | null | null | null | writeups/flag3/src/entry.asm | zer0x64/nsec2022-gband | 7f831b1af83c7f766f139dfce14776b654ee8d9a | [
"Apache-2.0",
"MIT"
] | null | null | null | include "constants.inc"
SECTION "Entry point", ROM0
EntryPoint::
ld [isCgb], a; Save A register for CGB value
ld a, c;
ld [isSgb], a; Save C register for SGB value
; Turn off LCD during init;
ld a, 0;
ld [rLCDC], a ; Completely turn LCD off during init
; Setup the stack
ld sp, wStack... | 18.928571 | 61 | 0.60283 |
66682c43e526dbb7f61f3596c06b7103c0181fed | 965 | asm | Assembly | _incObj/29 Points.asm | kodishmediacenter/msu-md-sonic | 3aa7c5e8add9660df2cd0eceaa214e7d59f2415c | [
"CC0-1.0"
] | 9 | 2021-01-15T13:47:53.000Z | 2022-01-17T15:33:55.000Z | _incObj/29 Points.asm | kodishmediacenter/msu-md-sonic | 3aa7c5e8add9660df2cd0eceaa214e7d59f2415c | [
"CC0-1.0"
] | 7 | 2021-01-14T02:18:48.000Z | 2021-03-24T15:44:30.000Z | _incObj/29 Points.asm | kodishmediacenter/msu-md-sonic | 3aa7c5e8add9660df2cd0eceaa214e7d59f2415c | [
"CC0-1.0"
] | 2 | 2021-01-14T13:14:26.000Z | 2021-01-29T17:46:04.000Z | ; ---------------------------------------------------------------------------
; Object 29 - points that appear when you destroy something
; ---------------------------------------------------------------------------
Points:
moveq #0,d0
move.b obRoutine(a0),d0
move.w Poi_Index(pc,d0.w),d1
jsr Poi_Index(pc,d1.w)... | 32.166667 | 77 | 0.472539 |
dd83fbd42fe0f231a8338afec68f78c554f7a75f | 21,781 | asm | Assembly | Library/SSMeta/ssmetaC.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Library/SSMeta/ssmetaC.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Library/SSMeta/ssmetaC.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:
AUTHOR: Cheng, 8/92
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Description
---- ---- ---... | 23.146652 | 81 | 0.574813 |
829f5b54451e5e3d9201c1ee067afd91fe510284 | 800 | asm | Assembly | programs/oeis/166/A166588.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/166/A166588.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/166/A166588.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A166588: Partial sums of A097331; binomial transform of A166587.
; 1,2,2,3,3,5,5,10,10,24,24,66,66,198,198,627,627,2057,2057,6919,6919,23715,23715,82501,82501,290513,290513,1033413,1033413,3707853,3707853,13402698,13402698,48760368,48760368,178405158,178405158,656043858,656043858,2423307048,2423307048,8987427468,8987... | 47.058824 | 551 | 0.78625 |
0b1b70337a946d1f14e4572e99353c59c60dc8b1 | 361 | asm | Assembly | programs/oeis/063/A063238.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/063/A063238.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/063/A063238.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A063238: Dimension of the space of weight 2n cuspidal newforms for Gamma_0( 87 ).
; 5,14,24,32,42,52,60,70,80,88,98,108,116,126,136,144,154,164,172,182,192,200,210,220,228,238,248,256,266,276,284,294,304,312,322,332,340,350,360,368,378,388,396,406,416,424,434,444,452,462
mov $1,$0
mul $1,28
div $1,3
mov $2,$0
cmp $2... | 27.769231 | 189 | 0.686981 |
422a2f62993a993d5186be9ce6773ec0f9fe8207 | 7,022 | asm | Assembly | PRACT0/SO1HPUB/asm/biosdata.asm | so1h/SO1H | 7163aa1907b7f7ab70ab022012036c4fa0482e17 | [
"BSD-2-Clause"
] | null | null | null | PRACT0/SO1HPUB/asm/biosdata.asm | so1h/SO1H | 7163aa1907b7f7ab70ab022012036c4fa0482e17 | [
"BSD-2-Clause"
] | null | null | null | PRACT0/SO1HPUB/asm/biosdata.asm | so1h/SO1H | 7163aa1907b7f7ab70ab022012036c4fa0482e17 | [
"BSD-2-Clause"
] | null | null | null | bits 16
; glb intptr_t : int
; glb uintptr_t : unsigned
; glb intmax_t : int
; glb uintmax_t : unsigned
; glb int8_t : signed char
; glb int_least8_t : signed char
; glb int_fast8_t : signed char
; glb uint8_t : unsigned char
; glb uint_least8_t : unsigned char
; glb uint_fast8_t : unsigned char
; glb int16_t : short
... | 22.012539 | 46 | 0.735545 |
ea70759dca042faf2fd82ca4f8964943dd9db3dc | 13,801 | asm | Assembly | base/hals/halx86/i386/ixslpctx.asm | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | base/hals/halx86/i386/ixslpctx.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | base/hals/halx86/i386/ixslpctx.asm | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z |
title "Sleep Context"
;++
;
; Copyright (c) 1989 Microsoft Corporation
;
; Module Name:
;
; ixslpctx.asm
;
; Abstract:
;
; This module implements the code for saving processor
; context before putting the machine to sleep. It also
; contains the code for building a page that a proc... | 27.657315 | 89 | 0.5538 |
9b165e1ca01b278b0a0afc11348aef65a93aa657 | 619 | asm | Assembly | oeis/070/A070832.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/070/A070832.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/070/A070832.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A070832: a(n) = Sum_{k=0..n} binomial(8*n,8*k).
; Submitted by Jon Maiga
; 1,2,12872,1470944,622116992,125858012672,36758056208384,8793364151263232,2334899414608412672,586347560750962049024,151652224498623981289472,38612725801339748322639872,9913426188311626771400228864,2533955167995403321755368947712,649220009237572... | 88.428571 | 471 | 0.869144 |
ba93ba0700f977f9fac47d25f7d1862b2a26d6bc | 489 | asm | Assembly | oeis/220/A220436.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/220/A220436.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/220/A220436.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A220436: a(n) = A127546(n)^2.
; Submitted by Jon Maiga
; 4,36,196,1444,9604,66564,454276,3118756,21362884,146458404,1003749124,6880038916,47155859716,323212716324,2215328606404,15184099435684,104073336269956,713329336067076,4889231802533764,33511293841053604,229689823620354244,1574317475335503396,10790532493690424836... | 30.5625 | 263 | 0.762781 |
8b67150ecc6fa69d49f39568de734f53530bc5c0 | 108 | asm | Assembly | CPU/cpu_test/test_storage/mult.asm | SilenceX12138/MIPS-Microsystems | d389b706b0930151a710b544db436c2883af958b | [
"MIT"
] | 55 | 2021-09-06T12:12:47.000Z | 2022-01-15T04:30:53.000Z | CPU/cpu_test/test_storage/mult.asm | SilenceX12138/MIPS-Microsystems | d389b706b0930151a710b544db436c2883af958b | [
"MIT"
] | null | null | null | CPU/cpu_test/test_storage/mult.asm | SilenceX12138/MIPS-Microsystems | d389b706b0930151a710b544db436c2883af958b | [
"MIT"
] | null | null | null | .text
li $3,0x7fffffff
li $4,0x7fffffff
mult $3,$4
add $5,$3,$4
mflo $5
.ktext 0x4180
li $3,0
eret
| 9.818182 | 17 | 0.611111 |
420df503f53a837d709ce842c798e8faf4a334b4 | 2,355 | asm | Assembly | lib/target/myvision/classic/myvision_crt0.asm | witchcraft2001/z88dk | 11adca337a4125aff611ddfdf3fc2401e8dda5b2 | [
"ClArtistic"
] | 4 | 2021-11-20T19:35:01.000Z | 2022-01-01T16:08:42.000Z | lib/target/myvision/classic/myvision_crt0.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | null | null | null | lib/target/myvision/classic/myvision_crt0.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 1 | 2021-11-27T15:58:02.000Z | 2021-11-27T15:58:02.000Z | ;
; Startup for Nichibutsu My Vision
;
; 2k of memory
module myvision_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 cod... | 20.478261 | 73 | 0.638217 |
075447dcf32c25df4f5adc980f42d00d3da3286c | 688 | asm | Assembly | oeis/008/A008999.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/008/A008999.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/008/A008999.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A008999: a(n) = 2*a(n-1) + a(n-4).
; Submitted by Jon Maiga
; 1,2,4,8,17,36,76,160,337,710,1496,3152,6641,13992,29480,62112,130865,275722,580924,1223960,2578785,5433292,11447508,24118976,50816737,107066766,225581040,475281056,1001378849,2109824464,4445229968,9365740992,19732860833,41575546130,87596322228,184558385448... | 38.222222 | 488 | 0.774709 |
e1b453ac92b47217ce15977f6d52dad57e3664a0 | 21,141 | asm | Assembly | HospitalAppDemo/asm/DATEVAL.asm | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | HospitalAppDemo/asm/DATEVAL.asm | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | HospitalAppDemo/asm/DATEVAL.asm | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Program for Date Validation. *
* This progam will read a 8 byte date in DDMMYYYY format and will *
* check if it is a valid date. * ... | 80.69084 | 80 | 0.232156 |
2edfa4932a71ceb6ef96b84e57ea5b8ba53f96a4 | 5,410 | asm | Assembly | sources/ippcp/asm_intel64/pcpbnuincm7as.asm | idesai/ipp-crypto | 67220e3042f23d423c7977cdfd8b4f54f3cba2e0 | [
"Apache-2.0"
] | 1 | 2020-11-03T21:30:58.000Z | 2020-11-03T21:30:58.000Z | sources/ippcp/asm_intel64/pcpbnuincm7as.asm | idesai/ipp-crypto | 67220e3042f23d423c7977cdfd8b4f54f3cba2e0 | [
"Apache-2.0"
] | null | null | null | sources/ippcp/asm_intel64/pcpbnuincm7as.asm | idesai/ipp-crypto | 67220e3042f23d423c7977cdfd8b4f54f3cba2e0 | [
"Apache-2.0"
] | null | null | null | ;===============================================================================
; Copyright 2014-2018 Intel Corporation
; All Rights Reserved.
;
; If this software was obtained under the Intel Simplified Software License,
; the following terms apply:
;
; The source code, information and material ("Material") co... | 28.177083 | 80 | 0.575046 |
6e60cadc31d2781248041383ddfaf97e65bf35bd | 22,405 | asm | Assembly | src/x86/cdef.asm | markshuttle/dav1d | 2bc6cbbf0acfb0b84318f80f9573c76a1252e371 | [
"BSD-2-Clause"
] | null | null | null | src/x86/cdef.asm | markshuttle/dav1d | 2bc6cbbf0acfb0b84318f80f9573c76a1252e371 | [
"BSD-2-Clause"
] | null | null | null | src/x86/cdef.asm | markshuttle/dav1d | 2bc6cbbf0acfb0b84318f80f9573c76a1252e371 | [
"BSD-2-Clause"
] | null | null | null | ; Copyright © 2018, VideoLAN and dav1d authors
; Copyright © 2018, Two Orioles, LLC
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copy... | 33.291233 | 88 | 0.495559 |
24bc5f5bcdbca144ab570fc925406eb7d4efc56e | 3,753 | asm | Assembly | Transynther/x86/_processed/NONE/_st_un_/i7-7700_9_0xca.log_21829_1554.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_st_un_/i7-7700_9_0xca.log_21829_1554.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_st_un_/i7-7700_9_0xca.log_21829_1554.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 %r12
push %r8
push %rax
push %rdi
push %rdx
push %rsi
// Faulty Load
lea addresses_WT+0x1a437, %r8
nop
nop
nop
nop
nop
xor $7008, %rdx
movups (%r8), %xmm7
vpextrq $0, %xmm7, %rax
lea oracles, %r8
and $0xff, %rax
shlq $12, %... | 81.586957 | 2,999 | 0.66267 |
eb311d3c985da288266ddb0e7c929ccaae237302 | 341 | asm | Assembly | programs/oeis/047/A047504.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/047/A047504.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/047/A047504.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A047504: Numbers that are congruent to {1, 2, 3, 4, 5, 7} mod 8.
; 1,2,3,4,5,7,9,10,11,12,13,15,17,18,19,20,21,23,25,26,27,28,29,31,33,34,35,36,37,39,41,42,43,44,45,47,49,50,51,52,53,55,57,58,59,60,61,63,65,66,67,68,69,71,73,74,75,76,77,79,81,82,83,84,85,87
seq $0,47420 ; Numbers that are congruent to {0, 1, 2, 3, 4... | 56.833333 | 192 | 0.633431 |
7cfe6d05a619f0564fa45f6a50bc7386b60b561a | 4,945 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_218.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_218.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_218.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 %r15
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x39d2, %r12
clflush (%r12)
xor %rdx, %rdx
mov (%r12), %rdi
nop
nop
nop
nop
nop
dec %r12
lea addresses_A_ht+0x1703a, %r13
nop
nop
nop
nop
inc %r11
vmovups (%r13), %ymm5
vextrac... | 47.548077 | 2,999 | 0.660667 |
2e306859769f34eb3e1ab1951d1fa376dbed3a17 | 512 | asm | Assembly | programs/oeis/065/A065073.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/065/A065073.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/065/A065073.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A065073: n-th prime + sum of digits of n-th prime.
; 4,6,10,14,13,17,25,29,28,40,35,47,46,50,58,61,73,68,80,79,83,95,94,106,113,103,107,115,119,118,137,136,148,152,163,158,170,173,181,184,196,191,202,206,214,218,215,230,238,242,241,253,248,259,271,274,286,281,293,292,296,307,317,316,320,328,338,350,361,365,364,376,38... | 85.333333 | 376 | 0.705078 |
1291ba7f306697a3f1e28a002089179c0fbff09e | 1,261 | asm | Assembly | Library/Kernel/Object/objectInit.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Library/Kernel/Object/objectInit.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Library/Kernel/Object/objectInit.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @-----------------------------------------------------------------------
Copyright (c) GeoWorks 1988 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Object
FILE: geodeInit.asm
ROUTINES:
Name Description
---- -----------
EXT InitObject Initialize the Object module
REVISION HISTORY:
... | 19.4 | 81 | 0.49881 |
b8a02c94d9703fc341f3277e66e17d768aa50f65 | 5,142 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca.log_1761_82.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca.log_1761_82.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca.log_1761_82.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r15
push %rax
push %rbx
push %rdi
push %rsi
lea addresses_normal_ht+0x36ec, %rsi
nop
nop
nop
inc %r10
mov $0x6162636465666768, %r13
movq %r13, (%rsi)
nop
nop
nop
and %rdi, %rdi
lea addresses_A_ht+0x14d6c, %r15
nop
nop
nop
nop
and $47542, %rbx
mov $0... | 42.495868 | 2,999 | 0.658888 |
a1403d225a1120d21d0a1704b9e3f44a6595e5ff | 1,828 | asm | Assembly | programs/oeis/271/A271358.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/271/A271358.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/271/A271358.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A271358: a(n) = k*Fibonacci(2*n+1) + (k+1)*Fibonacci(2*n), where k=4.
; 4,13,35,92,241,631,1652,4325,11323,29644,77609,203183,531940,1392637,3645971,9545276,24989857,65424295,171283028,448424789,1173991339,3073549228,8046656345,21066419807,55152603076,144391389421,378021565187,989673306140,2590998353233,6783321753559... | 152.333333 | 1,680 | 0.915208 |
776d2fdf18db5ee82df5b5ee301f073a86ff790b | 2,411 | asm | Assembly | Assembler/AssemblyCode/CALCULATOR.asm | KPU-RISC/KPU | 9f85c322e1b8489eef31f0696799e0c6c7273c0e | [
"MIT"
] | 8 | 2017-04-16T16:53:03.000Z | 2021-09-14T22:29:28.000Z | Assembler/AssemblyCode/CALCULATOR.asm | KPU-RISC/KPU | 9f85c322e1b8489eef31f0696799e0c6c7273c0e | [
"MIT"
] | null | null | null | Assembler/AssemblyCode/CALCULATOR.asm | KPU-RISC/KPU | 9f85c322e1b8489eef31f0696799e0c6c7273c0e | [
"MIT"
] | null | null | null | #INCLUDE "FUNCTIONS.inc"
; Initialize the stack pointer and the base pointer
MOV XL, 0xFF
MOV XH, 0xFF
MOV SP, X
MOV XL, 0
MOV XH, 0
MOV BP, X
; Initialize the Output Port D to 0
MOV XL, 0
OUT C
OUT D
CALL :_MAIN
HLT
:_MAIN
ENTER 4
; ====================
; BEGIN CALL SCANF...
; ====================
; Read the fir... | 17.727941 | 69 | 0.588138 |
4edd7f9458f2e5517195ef8c74cbcbba6a8beced | 4,696 | asm | Assembly | dma/dma_halt_stop_speedchange/init.asm | AntonioND/gbc-hw-tests | 631e60000c885154a8526df0b148847f9c34ce42 | [
"MIT"
] | 6 | 2018-07-21T12:11:21.000Z | 2021-07-23T16:32:47.000Z | dma/dma_halt_stop_speedchange/init.asm | PMArkive/gbc-hw-tests | 631e60000c885154a8526df0b148847f9c34ce42 | [
"MIT"
] | null | null | null | dma/dma_halt_stop_speedchange/init.asm | PMArkive/gbc-hw-tests | 631e60000c885154a8526df0b148847f9c34ce42 | [
"MIT"
] | 3 | 2016-04-26T07:45:34.000Z | 2018-12-30T05:45:14.000Z |
INCLUDE "hardware.inc"
SECTION "TIMER",HOME[$0050]
ret
SECTION "JOY",HOME[$0060]
ret
SECTION "Home",HOME
;--------------------------------------------------------------------------
;- wait_ly() b = ly to wait for -
;----------------------------------------------------... | 15.972789 | 76 | 0.348807 |
43e3ef8d992ffa48836949c9f351a860794b1afb | 2,052 | asm | Assembly | programs/oeis/272/A272352.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/272/A272352.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/272/A272352.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A272352: a(n) is the number of ways of putting n labeled balls into 2 indistinguishable boxes such that each box contains at least 3 balls.
; 10,35,91,210,456,957,1969,4004,8086,16263,32631,65382,130900,261953,524077,1048344,2096898,4194027,8388307,16776890,33554080,67108485,134217321,268435020,536870446,1073741327,2... | 128.25 | 1,790 | 0.904971 |
4228a1e4d773b395387849ba2832d8adf9a3156a | 470 | asm | Assembly | masm(msdos)/modografico.asm | GioProyects/ensamblador | c5f42eb3661fa359885f8050495ed46f36a6bbf0 | [
"MIT"
] | null | null | null | masm(msdos)/modografico.asm | GioProyects/ensamblador | c5f42eb3661fa359885f8050495ed46f36a6bbf0 | [
"MIT"
] | null | null | null | masm(msdos)/modografico.asm | GioProyects/ensamblador | c5f42eb3661fa359885f8050495ed46f36a6bbf0 | [
"MIT"
] | null | null | null | .model small
.data
.code
begin proc far
;mov ah,00h
;mov al,10h ;modo grafico
;mov al,03h ;modo texto
;int 10h
;paleta de colores
;mov ah,0bh
;mov bh,00
;mov bh,01 ;selecciona la paleta
;mov bl,00
;int 10h
;escribe un pixel punto
mov ah,0ch
mov al,03 ;color del... | 16.206897 | 36 | 0.585106 |
cfa056de4ca5939878710b478169c7776ceccee9 | 389 | asm | Assembly | programs/oeis/204/A204131.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/204/A204131.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/204/A204131.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A204131: Symmetric matrix based on f(i,j)=(2i-1 if i=j and 1 otherwise), by antidiagonals.
; 1,1,1,1,3,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,11,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,13,1,1,1,1,1,1,1,1,1,1,1,1,1
lpb $0
add $1,4
sub $0... | 25.933333 | 199 | 0.55527 |
4512881b6547d206751dcacd2e0269dcfcc6f9ce | 958 | asm | Assembly | oeis/094/A094309.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/094/A094309.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/094/A094309.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A094309: Number of (s(0), s(1), ..., s(n)) such that 0 < s(i) < 6 and |s(i) - s(i-1)| <= 1 for i = 1,2,....,n, s(0) = 2, s(n) = 5.
; Submitted by Jon Maiga
; 1,4,14,44,132,384,1096,3088,8624,23936,66144,182208,500800,1374208,3766400,10313984,28226304,77211648,211138048,577223680,1577772032,4312088576,11783915520,3220... | 29.9375 | 500 | 0.686848 |
d4b13a5cf82e2abff4228815ede8fb8ec101bfef | 264 | asm | Assembly | libsrc/_DEVELOPMENT/arch/zx/ulaplus/c/sccz80/ulap_write_color_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/arch/zx/ulaplus/c/sccz80/ulap_write_color_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/arch/zx/ulaplus/c/sccz80/ulap_write_color_callee.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ; void ulap_write_color(unsigned char pent,unsigned char color)
SECTION code_clib
SECTION code_arch
PUBLIC ulap_write_color_callee
EXTERN asm_ulap_write_color
ulap_write_color_callee:
pop hl
pop de
ex (sp),hl
ld h,e
jp asm_ulap_write_color
| 14.666667 | 63 | 0.776515 |
98f997566b4099dc9559bf74597e68f6bec1f058 | 665 | asm | Assembly | oeis/014/A014483.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/014/A014483.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/014/A014483.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A014483: Expansion of (1+2*x) / (1-2*x)^4.
; Submitted by Jon Maiga
; 1,10,56,240,880,2912,8960,26112,72960,197120,518144,1331200,3354624,8314880,20316160,49020928,116981760,276430848,647495680,1504706560,3471835136,7958691840,18136170496,41104179200,92694118400,208071032832,465064427520,1035355553792,2296465326080,5... | 44.333333 | 498 | 0.822556 |
1211d255e1b09e3a247887ed426d50c07ebfce5c | 6,846 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_628.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_628.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_628.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x661f, %r8
nop
nop
nop
nop
nop
inc %r12
mov (%r8), %ecx
nop
nop
nop
nop
nop
add %r14, %r14
lea addresses_normal_ht+0x1b49f, %rcx
nop
nop
nop
cmp %r11, %r11
movl $0x61626364, (... | 34.928571 | 2,999 | 0.661262 |
e0eb3e655ee2adac6a56059b3916a61cf760ba9c | 642 | asm | Assembly | oeis/056/A056854.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/056/A056854.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/056/A056854.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A056854: a(n) = Lucas(4*n).
; Submitted by Jon Maiga
; 2,7,47,322,2207,15127,103682,710647,4870847,33385282,228826127,1568397607,10749957122,73681302247,505019158607,3461452808002,23725150497407,162614600673847,1114577054219522,7639424778862807,52361396397820127,358890350005878082,2459871053643326447,1686020702549740... | 42.8 | 493 | 0.842679 |
c7740f4d5c96fd0d175826ff38dedfcf48d920c7 | 826 | asm | Assembly | 02-bootsector-print/boot_sect_hello.asm | zurgeg/gbtos_opensource | f3305e0ba0a179651d0822cb2da737998f2e968b | [
"BSD-3-Clause"
] | null | null | null | 02-bootsector-print/boot_sect_hello.asm | zurgeg/gbtos_opensource | f3305e0ba0a179651d0822cb2da737998f2e968b | [
"BSD-3-Clause"
] | 1 | 2019-11-30T17:17:56.000Z | 2019-11-30T17:17:56.000Z | 02-bootsector-print/boot_sect_hello.asm | zurgeg/gbtos_opensource | f3305e0ba0a179651d0822cb2da737998f2e968b | [
"BSD-3-Clause"
] | null | null | null | mov ah, 0x0e ; tty mode
mov al, 'H'
int 0x10
mov al, 'e'
int 0x10
mov al, 'l'
int 0x10
int 0x10 ; 'l' is still on al, remember?
mov al, 'o'
int 0x10
mov al, '\n'
mov al, 'I'
int 0x10
mov al, 'M'
int 0x10
mov al, 'a'
int 0x10
mov al, 'd'
int 0x10
mov al, 'e'
int 0x10
mov al, ' '
int 0x10
mov al, 'a'
int 0x10
mov al, 'n'... | 11.315068 | 47 | 0.617433 |
0655a554fd56812e7c5506994ced860dbd83fdac | 608 | asm | Assembly | z280mon/bcmnd.asm | 4sun5bu/Z280MB | 46cb458d31219fcaaa4a46f12db5e64a1ac84765 | [
"MIT"
] | 5 | 2021-07-24T07:43:44.000Z | 2021-09-19T17:32:29.000Z | z280mon/bcmnd.asm | 4sun5bu/Z280MB | 46cb458d31219fcaaa4a46f12db5e64a1ac84765 | [
"MIT"
] | null | null | null | z280mon/bcmnd.asm | 4sun5bu/Z280MB | 46cb458d31219fcaaa4a46f12db5e64a1ac84765 | [
"MIT"
] | null | null | null | ;------------------------------------------------------------------------------
; bcmnd.asm
; Load master boot record and jump
;
; Copyright (c) 2021 4sun5bu
;------------------------------------------------------------------------------
.z280p
.area CODE
.globl bcmnd
bcmnd:
call dskinit
ld hl, dskbuf
call... | 16.432432 | 79 | 0.388158 |
61722698681f958a4f75e8ee37301e7ffd83d923 | 649,635 | asm | Assembly | source/kernel.asm | hamedmiir/OS-Lab-Scheduling | c3c6877367e9a77e0300aa53f50be66b78b46328 | [
"Xnet",
"X11"
] | null | null | null | source/kernel.asm | hamedmiir/OS-Lab-Scheduling | c3c6877367e9a77e0300aa53f50be66b78b46328 | [
"Xnet",
"X11"
] | null | null | null | source/kernel.asm | hamedmiir/OS-Lab-Scheduling | c3c6877367e9a77e0300aa53f50be66b78b46328 | [
"Xnet",
"X11"
] | null | null | null |
kernel: file format elf32-i386
Disassembly of section .text:
80100000 <multiboot_header>:
80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh
80100006: 00 00 add %al,(%eax)
80100008: fe 4f 52 decb 0x52(%edi)
8010000b: e4 .byte 0xe4
8010000c <entry>:
8010... | 40.839567 | 96 | 0.518882 |
d8ae902fd67c0d85b00de36d39f334c267ebe2fe | 219 | asm | Assembly | libsrc/target/adam/cpm_platform_init.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/target/adam/cpm_platform_init.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/target/adam/cpm_platform_init.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ; ADAM Platform initialisation code
;
SECTION code_clib
PUBLIC cpm_platform_init
cpm_platform_init:
; Initialise the NMI handler - catches the VDP interrupt
ld hl,0x45ed
ld (0x66),hl
ret
| 18.25 | 57 | 0.694064 |
2f95cfb99f2d3c4da7be2069c3d2cbce24bd0b79 | 614 | asm | Assembly | oeis/152/A152418.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/152/A152418.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/152/A152418.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A152418: A sevens sequence: a(n)=(7^n - 1)/(2^(4 - 3*Mod[n, 2])).
; 0,3,3,171,150,8403,7353,411771,360300,20176803,17654703,988663371,865080450,48444505203,42388942053,2373780754971,2077058160600,116315256993603,101775849869403,5699447592686571,4987016643600750,279272932041642003,244363815536436753,136843736700404581... | 68.222222 | 473 | 0.82899 |
30587aff136d42b7a5c0094ca9e741fb526ac1ad | 58 | asm | Assembly | lab06_skel_v2/task4.asm | andreeanec10/Calculatoare-Numerice-2 | 86f0386cdeaafbcc66f22b9c215f1a8c5c10fcfe | [
"MIT"
] | null | null | null | lab06_skel_v2/task4.asm | andreeanec10/Calculatoare-Numerice-2 | 86f0386cdeaafbcc66f22b9c215f1a8c5c10fcfe | [
"MIT"
] | null | null | null | lab06_skel_v2/task4.asm | andreeanec10/Calculatoare-Numerice-2 | 86f0386cdeaafbcc66f22b9c215f1a8c5c10fcfe | [
"MIT"
] | null | null | null | ldi r20, 255
out 0x01, r20
ldi r19, 101
out 0x02, r19
| 11.6 | 14 | 0.655172 |
dadbdb9d5e64947f2d2fa323f68be0addd5eb57e | 1,018 | asm | Assembly | programs/oeis/062/A062114.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/062/A062114.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/062/A062114.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A062114: a(n) = 2*Fibonacci(n) - (1 - (-1)^n)/2.
; 0,1,2,3,6,9,16,25,42,67,110,177,288,465,754,1219,1974,3193,5168,8361,13530,21891,35422,57313,92736,150049,242786,392835,635622,1028457,1664080,2692537,4356618,7049155,11405774,18454929,29860704,48315633,78176338,126491971,204668310,331160281,535828592,866988873,14028... | 50.9 | 724 | 0.777014 |
30c7d7d845262def15671eac8e490c49c70a03c1 | 3,714 | asm | Assembly | bootloader/bootloader.asm | paulscottrobson/flat | 976644db7f52f04dae50dce43504ede9e97f695e | [
"MIT"
] | null | null | null | bootloader/bootloader.asm | paulscottrobson/flat | 976644db7f52f04dae50dce43504ede9e97f695e | [
"MIT"
] | null | null | null | bootloader/bootloader.asm | paulscottrobson/flat | 976644db7f52f04dae50dce43504ede9e97f695e | [
"MIT"
] | null | null | null | ; ***************************************************************************************
; ***************************************************************************************
;
; Name : bootloader.asm
; Author : Paul Robson (paul@robsons.org.uk)
; Date : 12th March 2019
; Purpose : Boot-Loads code by loadi... | 24.596026 | 89 | 0.336295 |
ac1f0600a1fad43678dd4e33d0d3e4431ebbb569 | 21,092 | nasm | Assembly | picoCTF_2018/assembly-4/comp.nasm | GambuzX/Cybersecurity_Practice | 58ecc222816a1bda2742da9b2782cef25365692f | [
"MIT"
] | 1 | 2020-03-08T19:17:15.000Z | 2020-03-08T19:17:15.000Z | picoCTF_2018/assembly-4/comp.nasm | GambuzX/CTF_Practice | 58ecc222816a1bda2742da9b2782cef25365692f | [
"MIT"
] | null | null | null | picoCTF_2018/assembly-4/comp.nasm | GambuzX/CTF_Practice | 58ecc222816a1bda2742da9b2782cef25365692f | [
"MIT"
] | 1 | 2020-12-17T15:51:02.000Z | 2020-12-17T15:51:02.000Z |
global rrf0
global rrf1
global rrf2
global rrf3
global rrf4
global rrf5
global rrf6
global rrf7
global rrf8
global rrf9
global rrfcl
global rrfscl
global rrflt
global rrfeq
global rrfgt
global rrfqm
global rrfat
global rrfA
global rrfB
global rrfC
global rrfD
global rrfE
global rrfF
global rrfG
global rrfH
globa... | 17.889737 | 35 | 0.384222 |
157f6f26497448e6a02f57d07da2114f33111dea | 247 | asm | Assembly | programs/oeis/168/A168399.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/168/A168399.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/168/A168399.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A168399: a(n) = 3^n mod 13.
; 1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9,1,3,9
mod $0,3
mov $1,3
pow $1,$0
| 35.285714 | 187 | 0.502024 |
7afaf74584f1d92157df1e75b103eded27df9ff4 | 607 | asm | Assembly | programs/oeis/022/A022270.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/022/A022270.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/022/A022270.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A022270: a(n) = n*(13*n - 1)/2.
; 0,6,25,57,102,160,231,315,412,522,645,781,930,1092,1267,1455,1656,1870,2097,2337,2590,2856,3135,3427,3732,4050,4381,4725,5082,5452,5835,6231,6640,7062,7497,7945,8406,8880,9367,9867,10380,10906,11445,11997,12562,13140,13731,14335,14952,15582,16225,16881,17550,18232,18927,19635,20356,2... | 86.714286 | 542 | 0.779242 |
3ab2c83c1d9774c925d4bb5d164dd7e32acd948a | 5,167 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1316.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1316.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1316.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1b6e5, %rdi
nop
xor %r8, %r8
movl $0x61626364, (%rdi)
nop
nop
nop
nop
nop
and $26173, %r14
lea addresses_normal_ht+0x19749, %r13
dec %r8
movb (%r13), %r10b
nop
nop
sub $15684... | 44.930435 | 2,999 | 0.661312 |
1ddb1da6ae00d2784d3cca81193790a4057db1a6 | 1,375 | asm | Assembly | example.asm | Retro-Tek/zxspectrum-sprites | de2abd6e60b0cbd687554f4f892c91df4f19dac5 | [
"MIT"
] | null | null | null | example.asm | Retro-Tek/zxspectrum-sprites | de2abd6e60b0cbd687554f4f892c91df4f19dac5 | [
"MIT"
] | null | null | null | example.asm | Retro-Tek/zxspectrum-sprites | de2abd6e60b0cbd687554f4f892c91df4f19dac5 | [
"MIT"
] | null | null | null | DEVICE ZXSPECTRUM128
ORG #8000
INCLUDE "macros.inc"
INCLUDE "screen.inc"
main DI
XOR A
OUT (#FE),A
LD DE,SCREEN_ADDR
LD HL,background
... | 24.553571 | 59 | 0.363636 |
ec846b8a2bc73326876bfb6ba72ec61f3c62f3f3 | 5,838 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_1646.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_0xa0.log_21829_1646.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_0xa0.log_21829_1646.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1949b, %r10
nop
nop
nop
nop
nop
dec %r14
mov (%r10), %ebx
nop
nop
nop
nop
dec %rbx
lea addresses_WT_ht+0x158db, %rsi
lea addresses_normal_ht+0xf8db, %rdi
nop
nop
nop
nop
nop
cmp $3710,... | 38.407895 | 2,999 | 0.658959 |
220ade70d158f03aba251799ee400bf18c9514ae | 482 | asm | Assembly | oeis/347/A347789.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/347/A347789.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/347/A347789.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A347789: a(n) is the number of times that only 2 pegs have disks on them during the optimal solution to a Towers of Hanoi problem with n disks.
; Submitted by Jamie Morken(s2.)
; 0,2,4,8,12,20,28,44,60,92,124,188,252,380,508,764,1020,1532,2044,3068,4092,6140,8188,12284,16380,24572,32764,49148,65532,98300,131068,19660... | 34.428571 | 218 | 0.732365 |
b76bb4ac8c0c9b7a5624be5085ec4239821475e8 | 473 | asm | Assembly | programs/oeis/043/A043639.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/043/A043639.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/043/A043639.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A043639: Numbers n such that base 10 representation has exactly 3 runs.
; 101,102,103,104,105,106,107,108,109,120,121,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,156,157,158,159
mov $1,1
lpb $0,1
mov $2,$0
mov $0,2
add $1,3
mov $3,$1... | 19.708333 | 181 | 0.621564 |
01c4d568b628a6380c2465d2f1e9f9caf4dd498d | 6,747 | asm | Assembly | patches/bank3e.asm/bowwow.asm | spicefather/LADXR | 4262b5e13d9caadfb713ed7a7a9a3af9b9f0a505 | [
"MIT"
] | null | null | null | patches/bank3e.asm/bowwow.asm | spicefather/LADXR | 4262b5e13d9caadfb713ed7a7a9a3af9b9f0a505 | [
"MIT"
] | null | null | null | patches/bank3e.asm/bowwow.asm | spicefather/LADXR | 4262b5e13d9caadfb713ed7a7a9a3af9b9f0a505 | [
"MIT"
] | null | null | null | CheckIfLoadBowWow:
; Check has bowwow flag
ld a, [$DB56]
cp $01
jr nz, .noLoadBowwow
ldh a, [$F6] ; load map number
cp $22
jr z, .loadBowwow
cp $23
jr z, .loadBowwow
cp $24
jr z, .loadBowwow
... | 22.194079 | 105 | 0.520083 |
d594f8c644f975efd90f9e2d7895d5bd525bd9a4 | 1,548 | asm | Assembly | Appl/Startup/CommonStartup/CMain/cmainManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/Startup/CommonStartup/CMain/cmainManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/Startup/CommonStartup/CMain/cmainManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1988 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: CommonStartup/CMain
FILE: cmainManager.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
brianc 10/92 Initial version
DESC... | 27.157895 | 80 | 0.44186 |
3bad253e5b0559de7c650271eacc4a5b119d88fb | 1,952 | asm | Assembly | Appl/Breadbox/ArabicWP/UI/uiManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/Breadbox/ArabicWP/UI/uiManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/Breadbox/ArabicWP/UI/uiManager.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: GeoWrite
FILE: UI/uiManager.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
Tony 2/92 Initial version
DESCRIPTION:
Thi... | 24.098765 | 80 | 0.505635 |
394d03bac982516f6fc56b084a1e18481467b377 | 1,256 | asm | Assembly | programs/oeis/099/A099868.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/099/A099868.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/099/A099868.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A099868: a(n) = 5*a(n-1) - a(n-2), a(0) = 3, a(1) = 25.
; 3,25,122,585,2803,13430,64347,308305,1477178,7077585,33910747,162476150,778470003,3729873865,17870899322,85624622745,410252214403,1965636449270,9417930031947,45124013710465,216202138520378,1035886678891425,4963231255936747,23780269600792310,113938116748024803,... | 59.809524 | 1,019 | 0.852707 |
ec93dfe6ea1ed59a8c2902984bedebc6b674deeb | 578 | asm | Assembly | progs/h06-uppercase.asm | HKhademian/AssemblyDandamudi | b4d4ccbb7e585953a8d2d22b47d815a3f45f9129 | [
"Unlicense"
] | 1 | 2020-05-07T14:20:09.000Z | 2020-05-07T14:20:09.000Z | progs/h06-uppercase.asm | HKhademian/AssemblyDandamudi | b4d4ccbb7e585953a8d2d22b47d815a3f45f9129 | [
"Unlicense"
] | null | null | null | progs/h06-uppercase.asm | HKhademian/AssemblyDandamudi | b4d4ccbb7e585953a8d2d22b47d815a3f45f9129 | [
"Unlicense"
] | null | null | null | %include "lib.asm"
extern ExitProcess ; windows syscall to exit
section .text
section .bss
buffer resb 255
section .data
section .code
global _start
_start:
fgets buffer, 255 ; read text
mov esi, buffer
dec esi
processor:
inc esi
mov AL, [ESI]
cmp AL, 0
je printer ; if '\0' finish process and ... | 13.44186 | 62 | 0.66436 |
a28dceb01c62d8d7bdf3d98b30f3c8d5cb6cc1d0 | 1,917 | asm | Assembly | c2000/C2000Ware_1_00_06_00/libraries/control/DCL/c28/source/DCL_DF23_C1.asm | ramok/Themis_ForHPSDR | d0f323a843ac0a488ef816ccb7c828032855a40a | [
"Unlicense"
] | null | null | null | c2000/C2000Ware_1_00_06_00/libraries/control/DCL/c28/source/DCL_DF23_C1.asm | ramok/Themis_ForHPSDR | d0f323a843ac0a488ef816ccb7c828032855a40a | [
"Unlicense"
] | null | null | null | c2000/C2000Ware_1_00_06_00/libraries/control/DCL/c28/source/DCL_DF23_C1.asm | ramok/Themis_ForHPSDR | d0f323a843ac0a488ef816ccb7c828032855a40a | [
"Unlicense"
] | 1 | 2021-07-21T08:10:37.000Z | 2021-07-21T08:10:37.000Z | ; DCL_DF23_C1.asm - Full Direct Form 2 implementation in third order
;
; Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
; ALL RIGHTS RESERVED
.if __TI_EABI__
.asg DCL_runDF23_C1, _DCL_runDF23_C1
.endif
.global _DCL_runDF23_C1
.sect "dclfuncs"
; C prototype: float DCL_runDF23_C1(DC... | 27.782609 | 72 | 0.568075 |
153e98c4153204942607004f92cba9cd71adc0cf | 133,406 | asm | Assembly | project/ntstub/i386/6_0_6001_sp1_ssdt_sysenter.asm | rmusser01/windows-syscall-table | 6216a2559d714eb04bad278792a6544ab8f21d41 | [
"BSD-3-Clause"
] | 6 | 2018-01-18T02:30:27.000Z | 2020-01-11T03:42:33.000Z | project/ntstub/i386/6_0_6001_sp1_ssdt_sysenter.asm | stonedreamforest/windows-syscall-table | 6216a2559d714eb04bad278792a6544ab8f21d41 | [
"BSD-3-Clause"
] | null | null | null | project/ntstub/i386/6_0_6001_sp1_ssdt_sysenter.asm | stonedreamforest/windows-syscall-table | 6216a2559d714eb04bad278792a6544ab8f21d41 | [
"BSD-3-Clause"
] | 3 | 2017-12-29T07:50:35.000Z | 2020-10-15T09:28:54.000Z | ; DO NOT MODIFY THIS FILE DIRECTLY!
; author: @TinySecEx
; ssdt asm stub for 6.0.6001-sp1-windows-vista i386
.686
.mmx
.xmm
.model flat,stdcall
option casemap:none
option prologue:none
option epilogue:none
.code
; ULONG __stdcall NtAcceptConnectPort( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , UL... | 30.881019 | 344 | 0.80195 |
51ef43cc1139f205f04caaf070f9cee333226bd6 | 528 | asm | Assembly | ASPL/loops.asm | timo-cmd/ASPL | fe9d959f97353c048e28b1d6b5d4d4679e33cc5e | [
"MIT"
] | 1 | 2020-05-22T09:33:31.000Z | 2020-05-22T09:33:31.000Z | ASPL/loops.asm | timo-cmd/ASPL | fe9d959f97353c048e28b1d6b5d4d4679e33cc5e | [
"MIT"
] | 6 | 2020-06-03T17:02:05.000Z | 2020-07-18T06:06:29.000Z | ASPL/loops.asm | timo-cmd/ASPL | fe9d959f97353c048e28b1d6b5d4d4679e33cc5e | [
"MIT"
] | null | null | null | ; carefull execute this carefully !
; Press the A key directly.
; this may overload the stack-buffer and will damage the virtual machine.
.data
.waiting string "Waiting for the [A] key pressed...\n"
.text
.global main:
get_input:
psh A
psh C
mvi A, 1 ; syscall for stdin
ldv C, 0 ; mode for output
sys ... | 14.27027 | 73 | 0.626894 |
c9fe0784446bedef7242bb6db8e8c514c1e6cb69 | 656 | asm | Assembly | cards/bn5/ModCards/136-A020 KillerEye.asm | RockmanEXEZone/MMBN-Mod-Card-Kit | d591ddca5566dbb323dc19c11e69410fa4073d1b | [
"Unlicense"
] | 10 | 2017-12-05T14:25:38.000Z | 2022-02-21T04:28:00.000Z | cards/bn5/ModCards/136-A020 KillerEye.asm | RockmanEXEZone/MMBN-Mod-Card-Kit | d591ddca5566dbb323dc19c11e69410fa4073d1b | [
"Unlicense"
] | null | null | null | cards/bn5/ModCards/136-A020 KillerEye.asm | RockmanEXEZone/MMBN-Mod-Card-Kit | d591ddca5566dbb323dc19c11e69410fa4073d1b | [
"Unlicense"
] | null | null | null | .include "defaults_mod.asm"
table_file_jp equ "exe5-utf8.tbl"
table_file_en equ "bn5-utf8.tbl"
game_code_len equ 3
game_code equ 0x4252424A // BRBJ
game_code_2 equ 0x42524245 // BRBE
game_code_3 equ 0x42524250 // BRBP
card_type equ 1
card_id equ 20
card_no equ "020"
card_sub equ "Mod Card 020"
card_sub_x ... | 24.296296 | 35 | 0.77439 |
48f4ac0d80f5dbb53aadd841733e7f0d72046cb8 | 2,841 | asm | Assembly | tinyload.asm | maikmerten/tinyload | ad5b10e3f989ba365be39cb7d504f5123175075f | [
"MIT"
] | 5 | 2017-09-10T11:51:11.000Z | 2021-06-14T11:11:40.000Z | tinyload.asm | maikmerten/tinyload | ad5b10e3f989ba365be39cb7d504f5123175075f | [
"MIT"
] | null | null | null | tinyload.asm | maikmerten/tinyload | ad5b10e3f989ba365be39cb7d504f5123175075f | [
"MIT"
] | 1 | 2021-06-14T11:12:22.000Z | 2021-06-14T11:12:22.000Z | ;;
;; A minimal loader that tries to load and execute a file
;; from a FAT16-formatted SD card.
;;
;; Basic definitions ################################################
;; positions of basic constants
CONST32_1 = $a0
CONST32_2 = $a4
CONST32_32 = $a8
;; arguments, return values, temporary zp storage
;; those are no... | 17.537037 | 81 | 0.615628 |
214d7ce6783b3db616a765f01858f6430234505c | 1,551 | asm | Assembly | Appl/Art/Decks/GeoDeck/CGAClub4.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Appl/Art/Decks/GeoDeck/CGAClub4.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Appl/Art/Decks/GeoDeck/CGAClub4.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | CGAClub4 label byte
word C_BLACK
Bitmap <67,41,BMC_PACKBITS,BMF_MONO>
db 0xf8, 0x00
db 0xf8, 0x00
db 0x08, 0x03, 0x80, 0x07, 0x00, 0x00, 0x1c, 0x00,
0x08, 0x00
db 0x08, 0x07, 0x80, 0x1f, 0xc0, 0x00, 0x7f, 0x00,
0x1c, 0x00
db 0x08, 0x0d, 0x80, 0x1f, 0xc0, 0x00, 0x7f, 0x00,
0x2a, 0x00
db 0x08,... | 25.42623 | 53 | 0.626692 |
c29f199fe9f5efadb15e8d84990e399dd2cb3bbe | 20,237 | asm | Assembly | z80src/float.asm | qoelet/z80pack | c8845396636e7316d449b4107c5c7ab98fffbc1a | [
"MIT"
] | 85 | 2018-02-26T02:45:55.000Z | 2022-03-27T00:04:54.000Z | z80src/float.asm | lawrencewoodman/z80pack | d57e3b50cd796e3f562c569a8270b4586999b12a | [
"MIT"
] | 76 | 2018-03-02T12:38:11.000Z | 2022-01-28T11:46:02.000Z | z80src/float.asm | lawrencewoodman/z80pack | d57e3b50cd796e3f562c569a8270b4586999b12a | [
"MIT"
] | 25 | 2018-02-24T15:50:23.000Z | 2022-03-07T11:23:10.000Z | ;
; this is a Z80 floating point package from an ancient german computer magazine
; I'm not going to translate this into english
; assemble this source with z80asm and run it under z80sim, if everything
; is working it should print the numbers below
;
; *******************************
; * Fliesskomma-Arithmetik fuer *
... | 24.149165 | 79 | 0.673173 |
9cbb7a068744e11ca183462f1bbc9b07ba5ec0e4 | 810 | asm | Assembly | programs/oeis/328/A328284.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/328/A328284.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/328/A328284.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A328284: An extension of the Jacobsthal numbers: 0, 0, 1, followed by A001045.
; 0,0,1,0,1,1,3,5,11,21,43,85,171,341,683,1365,2731,5461,10923,21845,43691,87381,174763,349525,699051,1398101,2796203,5592405,11184811,22369621,44739243,89478485
mov $6,$0
mov $7,2
lpb $7
mov $0,$6
sub $7,1
add $0,$7
sub $0,1
mo... | 15.576923 | 161 | 0.516049 |
c8fd1b24a13008f0954585d4d07597c14ae09202 | 3,217 | asm | Assembly | libav-12.3/libavcodec/x86/pixblockdsp.asm | aldarons-tech/aci | 0fc09bea7274737a2aa7a3422d65e2630af64b58 | [
"MIT"
] | null | null | null | libav-12.3/libavcodec/x86/pixblockdsp.asm | aldarons-tech/aci | 0fc09bea7274737a2aa7a3422d65e2630af64b58 | [
"MIT"
] | 3 | 2020-07-02T01:33:51.000Z | 2020-08-11T14:40:29.000Z | libav-12.3/libavcodec/x86/pixblockdsp.asm | aldarons-tech/aci | 0fc09bea7274737a2aa7a3422d65e2630af64b58 | [
"MIT"
] | null | null | null | ;*****************************************************************************
;* SIMD-optimized pixel operations
;*****************************************************************************
;* Copyright (c) 2000, 2001 Fabrice Bellard
;* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
;*
;* This file i... | 28.981982 | 79 | 0.52005 |
7a32d4f6803a4d91354615a57818523afe872b07 | 1,144 | asm | Assembly | sk/sfx-optimized/9B.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 9 | 2017-10-09T20:28:45.000Z | 2021-06-29T21:19:20.000Z | sk/sfx-optimized/9B.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 12 | 2018-08-01T13:52:20.000Z | 2022-02-21T02:19:37.000Z | sk/sfx-optimized/9B.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 2 | 2018-02-17T19:50:36.000Z | 2019-10-30T19:28:06.000Z | Sound_9B_Header:
smpsHeaderStartSong 3
smpsHeaderVoice Sound_9B_Voices
smpsHeaderTempoSFX $01
smpsHeaderChanSFX $02
smpsHeaderSFXChannel cFM4, Sound_9B_FM4, $F2, $00
smpsHeaderSFXChannel cFM5, Sound_9B_FM5, $F9, $00
; FM5 Data
Sound_9B_FM5:
dc.b nRst, $02
; FM4 Data
Sound_9B_FM4:
smpsSetvoice ... | 26 | 62 | 0.618007 |
7a57814edfc9c8cd66e8ee0a90b028461a73606c | 332 | asm | Assembly | pwnlib/shellcraft/templates/thumb/linux/getrlimit.asm | IMULMUL/python3-pwntools | 61210a68cd88e9084c72292d3119c38c44f07966 | [
"MIT"
] | 325 | 2016-01-25T08:38:06.000Z | 2022-03-30T14:31:50.000Z | pwnlib/shellcraft/templates/thumb/linux/getrlimit.asm | IMULMUL/python3-pwntools | 61210a68cd88e9084c72292d3119c38c44f07966 | [
"MIT"
] | 8 | 2016-08-23T10:15:27.000Z | 2019-01-16T02:49:34.000Z | pwnlib/shellcraft/templates/thumb/linux/getrlimit.asm | IMULMUL/python3-pwntools | 61210a68cd88e9084c72292d3119c38c44f07966 | [
"MIT"
] | 71 | 2016-07-13T10:03:52.000Z | 2022-01-10T11:57:34.000Z | <%
from pwnlib.shellcraft.thumb.linux import syscall
%>
<%page args="resource, rlimits"/>
<%docstring>
Invokes the syscall getrlimit. See 'man 2 getrlimit' for more information.
Arguments:
resource(rlimit_resource_t): resource
rlimits(rlimit): rlimits
</%docstring>
${syscall('SYS_getrlimit', resource... | 23.714286 | 75 | 0.725904 |
d9e7ff9627912b39b5567d966794fc544646165a | 231 | asm | Assembly | libsrc/_DEVELOPMENT/l/z80/l_ret.asm | teknoplop/z88dk | bb03fbfd6b2ab0f397a1358559089f9cd3706485 | [
"ClArtistic"
] | 8 | 2017-01-18T12:02:17.000Z | 2021-06-12T09:40:28.000Z | libsrc/_DEVELOPMENT/l/z80/l_ret.asm | teknoplop/z88dk | bb03fbfd6b2ab0f397a1358559089f9cd3706485 | [
"ClArtistic"
] | 1 | 2017-03-06T07:41:56.000Z | 2017-03-06T07:41:56.000Z | libsrc/_DEVELOPMENT/l/z80/l_ret.asm | teknoplop/z88dk | bb03fbfd6b2ab0f397a1358559089f9cd3706485 | [
"ClArtistic"
] | 3 | 2017-03-07T03:19:40.000Z | 2021-09-15T17:59:19.000Z |
SECTION code_clib
SECTION code_l
PUBLIC l_ret
; function present in some rom crts
; if number of pops changes, check crts
pop hl
l_ret:
; Do-nothing function used as a stub by some library functions
ret
| 13.588235 | 65 | 0.69697 |
1fde71b5c4a7b6b59b113c8c2ca6fb6eb400d4c3 | 4,037 | asm | Assembly | makednp.asm | gnacu/makednp | 166b4a7de015507b8c4d6d5a8e87563c466beb79 | [
"MIT"
] | null | null | null | makednp.asm | gnacu/makednp | 166b4a7de015507b8c4d6d5a8e87563c466beb79 | [
"MIT"
] | null | null | null | makednp.asm | gnacu/makednp | 166b4a7de015507b8c4d6d5a8e87563c466beb79 | [
"MIT"
] | 1 | 2021-03-24T15:36:16.000Z | 2021-03-24T15:36:16.000Z | ;----[ makednp.a ]----------------------
.include "//os/s/:basic.s"
.include "//os/s/:math.s"
.include "//os/s/ker/:file.s"
.include "//os/s/ker/:io.s"
.include "//os/s/ker/:iec.s"
buffer = $c000
ptr = $fb ;$fc
lda #$12 ;Reverse On
jsr chrout
... | 16.083665 | 40 | 0.422839 |
56b9e7f01ac0d056ca925d612833790d8859e5a7 | 772 | asm | Assembly | oeis/026/A026000.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/026/A026000.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/026/A026000.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A026000: a(n) = T(2n, n), where T is the Delannoy triangle (A008288).
; Submitted by Christian Krause
; 1,5,41,377,3649,36365,369305,3800305,39490049,413442773,4354393801,46082942185,489658242241,5220495115997,55818956905529,598318746037217,6427269150511105,69175175263888037,745778857519239785,8052432236270744665,870... | 32.166667 | 475 | 0.78886 |
5b38024e8169ae961d7037af53515dbcfef7ff9b | 185 | asm | Assembly | CP77HookPath/asm.asm | RakhithJK/CP77HookFileName | e5942e68bfb7af063b6725184fbf8591d6ee5453 | [
"MIT"
] | 11 | 2020-12-16T02:55:59.000Z | 2021-03-01T08:20:12.000Z | CP77HookPath/asm.asm | eprilx/CP77HookFileName | e5942e68bfb7af063b6725184fbf8591d6ee5453 | [
"MIT"
] | null | null | null | CP77HookPath/asm.asm | eprilx/CP77HookFileName | e5942e68bfb7af063b6725184fbf8591d6ee5453 | [
"MIT"
] | 4 | 2020-12-19T07:24:50.000Z | 2021-11-01T06:03:16.000Z |
.code
GetAL proc, Arg3:BYTE
MOV Arg3, AL
ret
GetAL endp
GetRax proc, Arg1:QWORD
mov Arg1, RAX
ret
GetRax endp
SetRax proc, Arg2:QWORD
mov RAX, Arg2
ret
SetRax endp
end | 9.25 | 23 | 0.697297 |
ce7fbe51acb2f08ce4278c8dab54c2f093f2b053 | 637 | asm | Assembly | lib/core/zp/psregs.asm | locodarwin/xc-basic3 | 74d73fb4049980fc0c7b648b4893ce3a53056af3 | [
"MIT"
] | 11 | 2021-08-05T18:13:21.000Z | 2022-03-26T21:44:50.000Z | lib/core/zp/psregs.asm | locodarwin/xc-basic3 | 74d73fb4049980fc0c7b648b4893ce3a53056af3 | [
"MIT"
] | 119 | 2021-08-09T06:28:44.000Z | 2022-03-31T07:12:11.000Z | lib/core/zp/psregs.asm | locodarwin/xc-basic3 | 74d73fb4049980fc0c7b648b4893ce3a53056af3 | [
"MIT"
] | 3 | 2022-01-22T05:25:09.000Z | 2022-03-26T17:11:55.000Z | ; ------------------------------------------
; XC=BASIC
; Pseudo-registers
;
; ZP locations reserved
; ------------------------------------------
; R0-R1-R2-R3 must be consecutive
R0 EQU $02
R1 EQU $03
R2 EQU $04
R3 EQU $05
; R4-R5-R6-R7 must be consecutive
R4 EQU $06
R5 EQU $07
R6 EQU $08
R7 EQU $0A
; R8-R9-RA-RB mus... | 18.735294 | 44 | 0.604396 |
15803e60a0baa8ee8a9c0a969f5c7171f92b992a | 42,340 | asm | Assembly | init.asm | SachinKumar105/Enhanced-xv6 | 21165b922b97e4bd119417e1c35b69510a29d563 | [
"MIT-0"
] | null | null | null | init.asm | SachinKumar105/Enhanced-xv6 | 21165b922b97e4bd119417e1c35b69510a29d563 | [
"MIT-0"
] | null | null | null | init.asm | SachinKumar105/Enhanced-xv6 | 21165b922b97e4bd119417e1c35b69510a29d563 | [
"MIT-0"
] | null | null | null |
_init: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
char *argv[] = { "sh", 0 };
int
main(void)
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55 push %ebp
... | 33.817891 | 60 | 0.411337 |
65a2f83b0ef05eb680d6296a947b9d11428b71b7 | 2,260 | asm | Assembly | lib/string.asm | xiazihao/OSx86 | 1b94912c957866d9a7e1f66aad1cce42ebbf1b08 | [
"Unlicense"
] | null | null | null | lib/string.asm | xiazihao/OSx86 | 1b94912c957866d9a7e1f66aad1cce42ebbf1b08 | [
"Unlicense"
] | null | null | null | lib/string.asm | xiazihao/OSx86 | 1b94912c957866d9a7e1f66aad1cce42ebbf1b08 | [
"Unlicense"
] | null | null | null | ; GLOBAL memcpy
GLOBAL memset
GLOBAL strcpy
; GLOBAL strlen
; memcpy:
; push ebp
; mov ebp, esp
; push esi
; push edi
; push ecx
; mov edi, [ebp + 8] ; Destination
; mov esi, [ebp + 12] ; Source
; mov ecx, [ebp + 16] ; Counter
; .1:
; cmp ecx, 0 ; 判断计数器
; jz .2 ; 计数器为零时跳出
; mov al, [ds:esi] ; ┓
; inc ... | 20 | 76 | 0.367257 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.