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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
769901b89ebdfd210193e4294b886aa7ea51bbac | 1,906 | asm | Assembly | CS/Computer-Organization-and-Design/MIPS实验/bubble_sort.asm | RabbitWhite1/USTC-CS-Resources | 8dae043524f236e894c3e81f51f7701f0de23968 | [
"MIT"
] | 7 | 2020-09-10T05:18:26.000Z | 2021-01-03T02:07:40.000Z | CS/Computer-Organization-and-Design/MIPS实验/bubble_sort.asm | Pengxiang-Hua/USTC-CS-Resources | 8dae043524f236e894c3e81f51f7701f0de23968 | [
"MIT"
] | null | null | null | CS/Computer-Organization-and-Design/MIPS实验/bubble_sort.asm | Pengxiang-Hua/USTC-CS-Resources | 8dae043524f236e894c3e81f51f7701f0de23968 | [
"MIT"
] | 2 | 2021-01-03T07:10:37.000Z | 2021-01-06T11:20:56.000Z |
.text
.globl main
main:
# Generate the random numbers
la $a0, array
lw $a1, N
jal array_generate
# Start time
li $v0, 30
syscall
move $s4, $a0
move $s5, $a1
# Sort
la $a0, array
lw $a1, N
jal bubble_sort
# End time
li $v0, 30
syscall
move $s6, $a0
move $s7, $a1
sub $s6, $s6, $s4
sub $s7, $s7, $s5... | 18.686275 | 75 | 0.595488 |
08e9c4f8ad894b75cc9d951ed138d15ffb227d6f | 302 | asm | Assembly | programs/oeis/011/A011746.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/011/A011746.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/011/A011746.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A011746: Expansion of (1 + x^2)/(1 + x^2 + x^5) mod 2.
; 1,0,0,0,0,1,0,1,0,1,1,1,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,1,0,0,0,1
mul $0,3
seq $0,11751 ; Expansion of (1 + x^4)/(1 + x + x^3 + x^4 + x^5) mod 2.
| 50.333333 | 163 | 0.5 |
cf629d6345940d6a6a3509d1cf99c69172a962e5 | 1,371 | asm | Assembly | src/interrupts.asm | Gegel85/BTTGB | 4efeb1470759f0c391a0543649f3bd9a96a17eef | [
"MIT"
] | 1 | 2020-03-28T22:38:50.000Z | 2020-03-28T22:38:50.000Z | src/interrupts.asm | Gegel85/BTTGB | 4efeb1470759f0c391a0543649f3bd9a96a17eef | [
"MIT"
] | null | null | null | src/interrupts.asm | Gegel85/BTTGB | 4efeb1470759f0c391a0543649f3bd9a96a17eef | [
"MIT"
] | null | null | null | ; VBLANK interrupt handler
; Params:
; None
; Return:
; None
; Registers:
; af -> Preserved
; bc -> Preserved
; de -> Preserved
; hl -> Preserved
vblank_interrupt::
push af
push hl
xor a
ld hl, FRAME_COUNTER
or [hl]
jr z, .skip
dec [hl]
.skip:
ld a, OAM_SRC_START >> 8
call DMA
pop hl
pop af... | 13.31068 | 26 | 0.60248 |
c567e018a2b786e089c361f4279a3011f1f6d5ff | 2,608 | asm | Assembly | libsrc/_DEVELOPMENT/string/z80/asm_strlcat.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/string/z80/asm_strlcat.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/string/z80/asm_strlcat.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; ===============================================================
; Dec 2013
; ===============================================================
;
; size_t strlcat(char * restrict s1, const char * restrict s2, size_t n)
;
; Append chars from s2 to s1 such that the total length of the resulting s1
; is maximum n chars i... | 22.290598 | 88 | 0.472393 |
5b078682aef94b70d331b778a6f50739effd3f2f | 5,787 | asm | Assembly | raid/xor_gen_avx512.asm | hzhuang1/isa-l | ad8dce15c6d3f0c7f3d1b486d9c649ed39223b45 | [
"BSD-3-Clause"
] | 344 | 2019-05-02T21:27:54.000Z | 2022-03-29T05:38:16.000Z | raid/xor_gen_avx512.asm | hzhuang1/isa-l | ad8dce15c6d3f0c7f3d1b486d9c649ed39223b45 | [
"BSD-3-Clause"
] | 136 | 2019-05-07T03:14:29.000Z | 2022-03-31T17:24:09.000Z | raid/xor_gen_avx512.asm | hzhuang1/isa-l | ad8dce15c6d3f0c7f3d1b486d9c649ed39223b45 | [
"BSD-3-Clause"
] | 131 | 2019-05-01T17:54:36.000Z | 2022-03-18T12:16:10.000Z | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2017 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... | 26.545872 | 77 | 0.708657 |
579121dd5d71a3323fe9b2c3244d796726652980 | 9,514 | asm | Assembly | vendor/github.com/spdk/spdk/intel-ipsec-mb/sse/mb_mgr_hmac_sha_512_submit_sse.asm | intel/oim | de83caab34dd9df2565ac2dcf7e1c164e79a3f2b | [
"Apache-2.0"
] | 17 | 2019-01-30T23:44:08.000Z | 2021-08-13T09:39:21.000Z | vendor/github.com/spdk/spdk/intel-ipsec-mb/sse/mb_mgr_hmac_sha_512_submit_sse.asm | intel/oim | de83caab34dd9df2565ac2dcf7e1c164e79a3f2b | [
"Apache-2.0"
] | 1 | 2019-02-19T12:09:33.000Z | 2019-02-19T12:09:33.000Z | vendor/github.com/spdk/spdk/intel-ipsec-mb/sse/mb_mgr_hmac_sha_512_submit_sse.asm | intel/oim | de83caab34dd9df2565ac2dcf7e1c164e79a3f2b | [
"Apache-2.0"
] | 9 | 2019-02-04T09:12:33.000Z | 2021-11-14T23:06:47.000Z | ;;
;; Copyright (c) 2012-2018, Intel Corporation
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the above copyright notice,
;; this list of conditions and... | 29.184049 | 149 | 0.741329 |
4a3ff168674a66f8851da083f79e96bd5469eaa5 | 109 | asm | Assembly | attic/fb_rawshader/stencil_test_ps.asm | ilbers/etna_viv | d4c87f61bdcd15f98d4bdbea8c34788bb71fbad9 | [
"MIT"
] | 121 | 2015-01-16T11:36:13.000Z | 2021-11-18T07:56:03.000Z | attic/fb_rawshader/stencil_test_ps.asm | ilbers/etna_viv | d4c87f61bdcd15f98d4bdbea8c34788bb71fbad9 | [
"MIT"
] | 15 | 2016-11-29T17:08:23.000Z | 2022-01-01T07:34:28.000Z | attic/fb_rawshader/stencil_test_ps.asm | ilbers/etna_viv | d4c87f61bdcd15f98d4bdbea8c34788bb71fbad9 | [
"MIT"
] | 45 | 2015-01-25T01:52:05.000Z | 2021-06-26T22:14:50.000Z | ; very simple flat-shaded pixel shader
; t1 = u0
; 2 temporary registers used (t0,t1)
MOV t1, void, void, u0
| 21.8 | 38 | 0.706422 |
c168b6efa9409e05d7c4278e6ed7dd58fe98a6ef | 6,858 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_402.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_402.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_402.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x9e27, %rdi
nop
nop
nop
cmp $51579, %rsi
mov $0x6162636465666768, %rdx
movq %rdx, %xmm4
vmovups %ymm4, (%rdi)
nop
nop
nop
nop
sub $4372, %rsi
lea addresses_WC_ht+0x9ba7, %rdi
nop
nop
a... | 34.636364 | 2,999 | 0.657772 |
e8b3d7228b39596595829d5f19a89359a0479540 | 806 | asm | Assembly | oeis/339/A339850.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/339/A339850.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/339/A339850.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A339850: Number of Hamiltonian circuits within parallelograms of size 3 X n on the triangular lattice.
; Submitted by Christian Krause
; 1,4,13,44,148,498,1676,5640,18980,63872,214944,723336,2434192,8191616,27566672,92768192,312186304,1050578720,3535439040,11897565568,40038044736,134737229824,453421769728,15258685482... | 36.636364 | 498 | 0.805211 |
754644116e2ba9e86841f42b87252a391c786a1c | 2,004 | asm | Assembly | PROGS/tecla1.asm | carlos-santiago-2017/HC12-MicrocontrollerNotes | 76e98b5761eae8c157fc8fd34324bc6c543ca9a3 | [
"MIT"
] | null | null | null | PROGS/tecla1.asm | carlos-santiago-2017/HC12-MicrocontrollerNotes | 76e98b5761eae8c157fc8fd34324bc6c543ca9a3 | [
"MIT"
] | null | null | null | PROGS/tecla1.asm | carlos-santiago-2017/HC12-MicrocontrollerNotes | 76e98b5761eae8c157fc8fd34324bc6c543ca9a3 | [
"MIT"
] | null | null | null | ORG $00EB
JMP FLASHB
ORG $100
PORTA EQU $1000
PORTB EQU $1004
MASKA EQU $03
TMSK2 EQU $1024
TFLG2 EQU $1025
PACTL EQU $1026
INICIO CLR PORTB
CLR BANFLASH
LDAA #$40
STAA TMSK2
LDAA #$03
STAA PACTL
... | 18.555556 | 25 | 0.460579 |
c8fc84163b271b3eb4b7cf5179c69ad37fc67aa9 | 550 | asm | Assembly | unittests/32Bit_ASM/Primary/Primary_60_2.asm | cobalt2727/FEX | 13087f8425aeaad28dc81bed46a83e1d72ff0db8 | [
"MIT"
] | 628 | 2020-03-06T14:01:32.000Z | 2022-03-31T06:35:14.000Z | unittests/32Bit_ASM/Primary/Primary_60_2.asm | cobalt2727/FEX | 13087f8425aeaad28dc81bed46a83e1d72ff0db8 | [
"MIT"
] | 576 | 2020-03-06T08:25:12.000Z | 2022-03-30T04:05:29.000Z | unittests/32Bit_ASM/Primary/Primary_60_2.asm | cobalt2727/FEX | 13087f8425aeaad28dc81bed46a83e1d72ff0db8 | [
"MIT"
] | 38 | 2020-03-07T06:10:00.000Z | 2022-03-29T09:27:36.000Z | %ifdef CONFIG
{
"RegData": {
"RAX": "0x6",
"RCX": "0x5",
"RDX": "0x4",
"RSP": "0xE0000020",
"RBX": "0x3",
"RBP": "0x2",
"RSI": "0x1",
"RDI": "0x0"
},
"Mode": "32BIT"
}
%endif
mov esp, 0xe0000020
mov eax, 0
mov ecx, 1
mov edx, 2
mov ebx, 3
mov ebp, 4
mov esi, 5
mov edi, 6
o16 pus... | 12.790698 | 24 | 0.496364 |
eccde078ca0d6dbb2ee24e7d64b7d679becac8d7 | 245 | asm | Assembly | libsrc/input/spectrum/in_JoyFuller.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/input/spectrum/in_JoyFuller.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/input/spectrum/in_JoyFuller.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ; uint in_JoyFuller(void)
; 2002 aralbrec
SECTION code_clib
PUBLIC in_JoyFuller
PUBLIC _in_JoyFuller
; exit : A = HL= F000RLDU active high
; uses : AF,HL
.in_JoyFuller
._in_JoyFuller
in a,($7f)
cpl
and $8f
ld l,a
ld h,0
ret
| 12.894737 | 37 | 0.681633 |
a2480dc5844c5999d3bb4c3424fd901a2460caca | 2,553 | asm | Assembly | tutorials/part8/src/utilities.asm | Threetwosevensixseven/ZalaXa | 190cfbc481ff7d3be5500c29c2c027b249a15cca | [
"MIT"
] | 5 | 2018-01-06T21:05:36.000Z | 2019-10-25T09:18:23.000Z | tutorials/part8/src/utilities.asm | Threetwosevensixseven/ZalaXa | 190cfbc481ff7d3be5500c29c2c027b249a15cca | [
"MIT"
] | null | null | null | tutorials/part8/src/utilities.asm | Threetwosevensixseven/ZalaXa | 190cfbc481ff7d3be5500c29c2c027b249a15cca | [
"MIT"
] | 2 | 2019-04-30T06:11:48.000Z | 2020-05-15T07:37:04.000Z | ; utilities.asm
ClsAttr proc ; Do an attribute CLS using LDIR block copy
xor a ; Set a to 0 (blank ink, black paper)
ld hl, AttributeAddress ; Address to start copying from (start of attribute... | 43.271186 | 109 | 0.354485 |
51fbd0b1ba56f2f59a382820efd150ead998fc7d | 227 | asm | Assembly | programs/oeis/010/A010697.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/010/A010697.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/010/A010697.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A010697: Period 2: repeat (2,7).
; 2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2,7,2
mod $0,2
mul $0,5
add $0,2
| 32.428571 | 163 | 0.519824 |
1c29128dd1377ecb2c1dbf97669a0ecc3ad12f1b | 994 | asm | Assembly | payloads/x64/src/kernel/calc_thread_delta.asm | kurobeats/MS17-010 | 0d825a929df917b370995bbbb4a04a41700797e0 | [
"Apache-2.0"
] | null | null | null | payloads/x64/src/kernel/calc_thread_delta.asm | kurobeats/MS17-010 | 0d825a929df917b370995bbbb4a04a41700797e0 | [
"Apache-2.0"
] | null | null | null | payloads/x64/src/kernel/calc_thread_delta.asm | kurobeats/MS17-010 | 0d825a929df917b370995bbbb4a04a41700797e0 | [
"Apache-2.0"
] | 2 | 2017-12-07T09:04:05.000Z | 2020-05-01T19:18:04.000Z | ;
; Windows x64 Kernel Get User Thread Delta
;
; Author: Sean Dillon <sean.dillon@risksense.com> (@zerosum0x0)
; Copyright: (c) 2017 RiskSense, Inc.
; License: Apache 2.0
;
; Arguments: r15 = base of nt
; Clobbers: RAX, RSI
; Return:
;
THREADLISTHEAD_OFFSET equ 0x308
find_thread:
mov rax, r15
mov r11d, PSG... | 21.148936 | 85 | 0.67002 |
670a6fccb1ce0f3dca7f977c7fa48a69cbd7858c | 13,031 | asm | Assembly | test/avx512cd.asm | majacQ/nasm | db358a2993be0e0aa3864ed3290105dd4a544c35 | [
"BSD-2-Clause"
] | null | null | null | test/avx512cd.asm | majacQ/nasm | db358a2993be0e0aa3864ed3290105dd4a544c35 | [
"BSD-2-Clause"
] | null | null | null | test/avx512cd.asm | majacQ/nasm | db358a2993be0e0aa3864ed3290105dd4a544c35 | [
"BSD-2-Clause"
] | null | null | null | ; AVX-512CD testcases from gas
;------------------------
;
; This file is taken from there
; https://gnu.googlesource.com/binutils/+/master/gas/testsuite/gas/i386/x86-64-avx512cd-intel.d
; So the original author is "H.J. Lu" <hongjiu dot lu at intel dot com>
;
; Jin Kyu Song converted it for the nasm testing suite ... | 122.933962 | 149 | 0.455376 |
080a9fc2e9c69d7ae513e6103116bc8f8567d850 | 942 | asm | Assembly | scripts/fuchsiahouse3.asm | etdv-thevoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | 1 | 2022-01-09T05:28:52.000Z | 2022-01-09T05:28:52.000Z | scripts/fuchsiahouse3.asm | ETDV-TheVoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | null | null | null | scripts/fuchsiahouse3.asm | ETDV-TheVoid/pokemon-rgb-enhanced | 5b244c1cf46aab98b9c820d1b7888814eb7fa53f | [
"MIT"
] | null | null | null | FuchsiaHouse3Script:
jp EnableAutoTextBoxDrawing
FuchsiaHouse3TextPointers:
dw FuchsiaHouse3Text1
FuchsiaHouse3Text1:
TX_ASM
ld a, [wd728]
bit 5, a
jr nz, .after
ld hl, FuchsiaHouse3Text_561bd
call PrintText
call YesNoChoice
ld a, [wCurrentMenuItem]
and a
jr nz, .refused
lb bc, SUPER_ROD, 1
call Give... | 14.272727 | 32 | 0.781316 |
0c08b68a79f598adf1ca0706f9051abd1a89df08 | 312 | asm | Assembly | programs/oeis/022/A022110.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/022/A022110.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/022/A022110.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A022110: Fibonacci sequence beginning 1, 20.
; 1,20,21,41,62,103,165,268,433,701,1134,1835,2969,4804,7773,12577,20350,32927,53277,86204,139481,225685,365166,590851,956017,1546868,2502885,4049753,6552638,10602391
mov $1,2
mov $2,22
lpb $0
sub $0,1
sub $2,1
mov $3,$2
add $2,$1
mov $1,$3
lpe
sub $1,1
| 22.285714 | 166 | 0.701923 |
8a4d019bc4b7f61e127b1ef9e5a9b71424c0453f | 1,303 | asm | Assembly | sw/552tests/rand_simple/t_1_ld.asm | JPShen-UWM/ThreadKraken | 849c510531f28e36d3469535737b2120bd774935 | [
"MIT"
] | 1 | 2022-02-15T16:03:25.000Z | 2022-02-15T16:03:25.000Z | sw/552tests/rand_simple/t_1_ld.asm | JPShen-UWM/ThreadKraken | 849c510531f28e36d3469535737b2120bd774935 | [
"MIT"
] | null | null | null | sw/552tests/rand_simple/t_1_ld.asm | JPShen-UWM/ThreadKraken | 849c510531f28e36d3469535737b2120bd774935 | [
"MIT"
] | null | null | null | // seed 1
lbi r0, 64 // icount 0
slbi r0, 246 // icount 1
lbi r1, 201 // icount 2
slbi r1, 168 // icount 3
lbi r2, 39 // icount 4
slbi r2, 75 // icount 5
lbi r3, 50 // icount 6
slbi r3, 158 // icount 7
lbi r4, 65 // icount 8
slbi r4, 36 // icount 9
lbi r5, 114 // icount 10
slbi r5, 44 // icount 11
lbi r6, 230 // icount... | 25.54902 | 28 | 0.610898 |
da0f11deea655c10c94c864a4a779a06b3baec38 | 670 | asm | Assembly | oeis/020/A020923.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/020/A020923.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/020/A020923.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A020923: Expansion of (1-4*x)^(11/2).
; Submitted by Jamie Morken(s4)
; 1,-22,198,-924,2310,-2772,924,264,198,220,308,504,924,1848,3960,8976,21318,52668,134596,354200,956340,2641320,7443720,21360240,62300700,184410072,553230216,1680180656,5160554872,16015515120,50181947376,158639704608,505664058438,1624254248316,5254... | 41.875 | 489 | 0.802985 |
871f5c76253728512c1bcf968679dd94f009db20 | 691 | asm | Assembly | programs/oeis/277/A277450.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/277/A277450.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/277/A277450.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A277450: a(1) = 1, a(n) = floor(n*Sum_{k=1..n-1} a(k)/2^k - Sum_{k=1..n-1} a(k)) for n > 1.
; 1,0,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1
mov $7,2
mov $9,$0
lpb $7
mov $0,$9
sub $7,1
... | 16.853659 | 175 | 0.457308 |
e28de26a2ae5999a20fb6c8167b4b6f5e4c01318 | 4,287 | asm | Assembly | Ports/ARM/Generic/IAR/os_cpu_fpu_a.asm | Qetu107/uC-OS2 | 22a9ded73d7352110be0996708f1ed0e9c4621f0 | [
"Apache-2.0"
] | 169 | 2021-01-28T09:10:52.000Z | 2022-03-26T03:33:19.000Z | Ports/ARM/Generic/IAR/os_cpu_fpu_a.asm | Qetu107/uC-OS2 | 22a9ded73d7352110be0996708f1ed0e9c4621f0 | [
"Apache-2.0"
] | 10 | 2021-02-03T22:48:49.000Z | 2021-10-14T17:27:03.000Z | Ports/ARM/Generic/IAR/os_cpu_fpu_a.asm | Qetu107/uC-OS2 | 22a9ded73d7352110be0996708f1ed0e9c4621f0 | [
"Apache-2.0"
] | 63 | 2020-03-03T08:10:49.000Z | 2020-12-06T12:40:44.000Z | ;********************************************************************************************************
; uC/OS-II
; The Real-Time Kernel
;
; Copyright 1992-2021 Silicon Laboratories Inc. www.silabs.com
;
; ... | 52.280488 | 106 | 0.374621 |
688fb3a676eb92051d64ff0c454901af549359c2 | 1,264 | asm | Assembly | src/test/ref/pointer-void-2.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/test/ref/pointer-void-2.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/test/ref/pointer-void-2.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | // Test simple void pointer - void pointer function
// Commodore 64 PRG executable file
.file [name="pointer-void-2.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment Basic... | 18.865672 | 65 | 0.543513 |
84e711258362724eb165963ba6023847c85bd0a5 | 833 | asm | Assembly | oeis/154/A154409.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/154/A154409.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/154/A154409.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A154409: Primes of the form 10n^2+6n+1.
; Submitted by Jamie Morken(w1)
; 17,53,109,281,397,1061,1277,2341,2657,4973,6917,8009,9181,10433,13177,13913,14669,18749,20521,25301,26317,28409,32833,42641,45293,46649,56701,58217,59753,67733,69389,76213,77969,83357,85193,87049,90821,92737,110881,112997,115133,121661,135257,1... | 36.217391 | 496 | 0.734694 |
2817175286bb4a4a86aeb42c08bc852a9fd5fd3f | 2,032 | asm | Assembly | src/shaders/post_processing/gen5_6/Common/IMC3_Load_8x4.asm | tizenorg/platform.upstream.libva-intel-driver | 9ffc32731bacbfec2cef3d9fb5eb4c0c43952b90 | [
"MIT"
] | null | null | null | src/shaders/post_processing/gen5_6/Common/IMC3_Load_8x4.asm | tizenorg/platform.upstream.libva-intel-driver | 9ffc32731bacbfec2cef3d9fb5eb4c0c43952b90 | [
"MIT"
] | null | null | null | src/shaders/post_processing/gen5_6/Common/IMC3_Load_8x4.asm | tizenorg/platform.upstream.libva-intel-driver | 9ffc32731bacbfec2cef3d9fb5eb4c0c43952b90 | [
"MIT"
] | null | null | null | /*
* All Video Processing kernels
* Copyright © <2010>, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Eclipse Public License (EPL), version 1.0. The full text of the EPL is at
* http://www.opensource.org/licenses/eclipse-1.0.php.
*
*/
// Module name: IMC3_Load_8x4.as... | 42.333333 | 128 | 0.552165 |
dae511505e33b48406516ecf84748c02292e97cb | 407 | asm | Assembly | oeis/068/A068981.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/068/A068981.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/068/A068981.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A068981: Arithmetic derivative of n*prime(n).
; Submitted by Christian Krause
; 1,5,8,32,16,71,24,236,147,213,42,604,54,401,391,1712,76,1299,86,1724,751,1049,106,3940,995,1541,2808,3452,138,3533,158,10512,1951,2675,1823,9096,194,3461,2711,11804,220,7463,234
seq $0,33286 ; a(n) = n * prime(n).
seq $0,3415 ; a(n) = n'... | 58.142857 | 179 | 0.663391 |
7a8380c133e988dc7bd881f57a6af857e6d75978 | 253 | asm | Assembly | programs/oeis/096/A096489.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/096/A096489.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/096/A096489.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A096489: Noncomposite numbers n such that number of decimal digits of n = number of divisors of n.
; 1,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97
add $0,3
lpb $0
bin $0,3
lpe
seq $0,6005 ; The odd prime numbers together with 1.
| 28.111111 | 100 | 0.699605 |
79f19bd7144d3925e0c82cc4554d35aaa26710f2 | 1,509 | asm | Assembly | programs/oeis/050/A050914.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/050/A050914.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/050/A050914.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A050914: a(n) = n*3^n + 1.
; 1,4,19,82,325,1216,4375,15310,52489,177148,590491,1948618,6377293,20726200,66961567,215233606,688747537,2195382772,6973568803,22082967874,69735688021,219667417264,690383311399,2165293113022,6778308875545,21182215236076,66088511536555,205891132094650,640550188738909,1990280943581608,617673... | 167.666667 | 1,430 | 0.924453 |
94de8e50e02661b67a68c0b087adaed0c46a186e | 528 | asm | Assembly | oeis/053/A053738.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/053/A053738.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/053/A053738.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A053738: If k is in sequence then 2*k and 2*k+1 are not (and 1 is in the sequence); numbers with an odd number of digits in binary.
; 1,4,5,6,7,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,10... | 52.8 | 339 | 0.685606 |
d3e2466e72ec1abe3e22395c8b20fcabe8f25c61 | 1,556 | asm | Assembly | chapter_04/mmap.asm | GeertArien/low-level-programming | 4e20bf60973c72a55efa5b340eee734431cd28e2 | [
"MIT"
] | null | null | null | chapter_04/mmap.asm | GeertArien/low-level-programming | 4e20bf60973c72a55efa5b340eee734431cd28e2 | [
"MIT"
] | null | null | null | chapter_04/mmap.asm | GeertArien/low-level-programming | 4e20bf60973c72a55efa5b340eee734431cd28e2 | [
"MIT"
] | null | null | null | ; These macrodefinitions are copied from linux sources
; Linux is written in C, so the definitions looked a bit
; different there.
; We could have just looked up their values and use
; them directly inright places
; However it would have made the code much less legible
%define O_RDONLY 0
%define PROT_READ 0x1
%define ... | 24.3125 | 70 | 0.674165 |
fbabd0eb8a65854272c576b765598ff165074595 | 654 | asm | Assembly | oeis/226/A226500.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/226/A226500.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/226/A226500.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A226500: Triangular numbers representable as 3 * x^2.
; Submitted by Jon Maiga
; 0,3,300,29403,2881200,282328203,27665282700,2710915376403,265642041604800,26030209161894003,2550694855824007500,249942065661590841003,24491771739980078410800,2399943688452386093417403,235169989696593857076494700,2304425904657774560740306... | 40.875 | 465 | 0.848624 |
4134d906ac3e323dda7442e3a9ed2b0090f924bd | 793 | asm | Assembly | programs/oeis/153/A153977.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/153/A153977.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/153/A153977.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A153977: One-fourth of partial sums of A153976.
; 2,9,27,65,135,252,434,702,1080,1595,2277,3159,4277,5670,7380,9452,11934,14877,18335,22365,27027,32384,38502,45450,53300,62127,72009,83027,95265,108810,123752,140184,158202,177905,199395,222777,248159,275652,305370,337430,371952,409059,448877,491535,537165,585902,63788... | 88.111111 | 696 | 0.82976 |
72711d418ad7abca56b84836a65902469c350e97 | 216 | asm | Assembly | libsrc/strings/index.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/strings/index.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | libsrc/strings/index.asm | dex4er/deb-z88dk | 9ee4f23444fa6f6043462332a1bff7ae20a8504b | [
"ClArtistic"
] | null | null | null | ; CALLER linkage for function pointers
XLIB index
LIB strchr_callee
XREF ASMDISP_STRCHR_CALLEE
.index
pop af
pop bc
pop hl
push hl
push bc
push af
jp strchr_callee + ASMDISP_STRCHR_CALLEE
| 12.705882 | 43 | 0.722222 |
97f95d9e1f2e9b38371c09e9f69b549fd49589a9 | 1,632 | nasm | Assembly | Projetos/I-VM/bin/nasm/StaticTest.nasm | mariaeduardabicalho/Z01 | a08eb895cb064aad16e512d20b09c3f02704f98d | [
"Unlicense"
] | 2 | 2018-03-21T01:20:58.000Z | 2018-04-16T14:35:51.000Z | Projetos/I-VM/bin/nasm/StaticTest.nasm | LiuSeeker/Z01-Coldzera | 097f0af689c0511598163bcf4c89afe987292f24 | [
"Unlicense"
] | 76 | 2018-03-09T12:22:41.000Z | 2018-05-18T11:47:17.000Z | Projetos/I-VM/bin/nasm/StaticTest.nasm | mariaeduardabicalho/Z01 | a08eb895cb064aad16e512d20b09c3f02704f98d | [
"Unlicense"
] | null | null | null | ; 0 - PUSH constant 111
leaw $111,%A
movw %A,%D
leaw $SP,%A
movw (%A),%A
movw %D,(%A)
leaw $SP,%A
movw (%A),%D
incw %D
movw %D,(%A)
; 1 - PUSH constant 333
leaw $333,%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 - PUSH constant 888
leaw $888,%A
movw %A,%D
leaw $SP... | 14.702703 | 47 | 0.560662 |
87544ae28805e2ff3e9268b2b9e416207147b614 | 8,527 | asm | Assembly | jni/sdk/v2_0_1/ARDroneLib/FFMPEG/ffmpeg/libavcodec/x86/h264_weight.asm | hatpick/DroneMyoGlass | d1a7a0d9ebd71a62f54f4356a47a0eb6b98474ee | [
"Apache-2.0"
] | 23 | 2015-11-13T08:30:55.000Z | 2022-02-24T05:45:43.000Z | AR.Drone_2.0_Eclipse_Project/jni/ffmpeg-0.8/libavcodec/x86/h264_weight.asm | NSWRyan/AR.Drone_2.0 | 752b49ac5c252090c1b8e19b4da63d90841f30f2 | [
"MIT"
] | 2 | 2016-09-12T03:17:46.000Z | 2017-03-20T06:33:36.000Z | AR.Drone_2.0_Eclipse_Project/jni/ffmpeg-0.8/libavcodec/x86/h264_weight.asm | NSWRyan/AR.Drone_2.0 | 752b49ac5c252090c1b8e19b4da63d90841f30f2 | [
"MIT"
] | 18 | 2015-11-14T00:54:38.000Z | 2021-08-23T11:44:52.000Z | ;*****************************************************************************
;* SSE2-optimized weighted prediction code
;*****************************************************************************
;* Copyright (c) 2004-2005 Michael Niedermayer, Loren Merritt
;* Copyright (C) 2010 Eli Friedman <eli.friedman@gmail.co... | 22.678191 | 79 | 0.564208 |
41695c2227b851747dc3667f36bb48ba3e9be1a2 | 1,451 | asm | Assembly | fox32rom/draw_rectangle.asm | ry755/fox32 | 5c06c23941e4a1efae0440a6e8cf31d3f0714256 | [
"MIT"
] | 6 | 2022-01-27T06:55:52.000Z | 2022-03-13T22:21:17.000Z | fox32rom/draw_rectangle.asm | ry755/fox32 | 5c06c23941e4a1efae0440a6e8cf31d3f0714256 | [
"MIT"
] | null | null | null | fox32rom/draw_rectangle.asm | ry755/fox32 | 5c06c23941e4a1efae0440a6e8cf31d3f0714256 | [
"MIT"
] | null | null | null | ; generic rectangle drawing routines
; draw a filled rectangle to a framebuffer
; inputs:
; r0: X coordinate of top-left
; r1: Y coordinate of top-left
; r2: X size
; r3: Y size
; r4: color
; r5: pointer to framebuffer
; r6: framebuffer width (pixels)
; outputs:
; none
draw_filled_rectangle_generic:
push r0
pu... | 25.017241 | 97 | 0.591316 |
c9de94a98cb1139d424050041b2d1ece48e1bef8 | 323 | asm | Assembly | pwnlib/shellcraft/templates/mips/linux/ioctl.asm | IMULMUL/python3-pwntools | 61210a68cd88e9084c72292d3119c38c44f07966 | [
"MIT"
] | 325 | 2016-01-25T08:38:06.000Z | 2022-03-30T14:31:50.000Z | pwnlib/shellcraft/templates/mips/linux/ioctl.asm | IMULMUL/python3-pwntools | 61210a68cd88e9084c72292d3119c38c44f07966 | [
"MIT"
] | 8 | 2016-08-23T10:15:27.000Z | 2019-01-16T02:49:34.000Z | pwnlib/shellcraft/templates/mips/linux/ioctl.asm | IMULMUL/python3-pwntools | 61210a68cd88e9084c72292d3119c38c44f07966 | [
"MIT"
] | 71 | 2016-07-13T10:03:52.000Z | 2022-01-10T11:57:34.000Z | <%
from pwnlib.shellcraft.mips.linux import syscall
%>
<%page args="fd, request, vararg"/>
<%docstring>
Invokes the syscall ioctl. See 'man 2 ioctl' for more information.
Arguments:
fd(int): fd
request(unsigned): request
vararg(int): vararg
</%docstring>
${syscall('SYS_ioctl', fd, request, vararg... | 21.533333 | 67 | 0.678019 |
5bc91670e95d45cda80559a6a92d9c6fdc6e0039 | 2,343 | asm | Assembly | beelzebub/arc/amd64/src/execution/thread_switching.asm | vercas/Beelzebub | 9d0e4790060b313c6681ca7e478d08d3910332b0 | [
"NCSA"
] | 32 | 2015-09-02T22:56:22.000Z | 2021-02-24T17:15:50.000Z | beelzebub/arc/amd64/src/execution/thread_switching.asm | vercas/Beelzebub | 9d0e4790060b313c6681ca7e478d08d3910332b0 | [
"NCSA"
] | 30 | 2015-04-26T18:35:07.000Z | 2021-06-06T09:57:02.000Z | beelzebub/arc/amd64/src/execution/thread_switching.asm | vercas/Beelzebub | 9d0e4790060b313c6681ca7e478d08d3910332b0 | [
"NCSA"
] | 11 | 2015-09-03T20:47:41.000Z | 2021-06-25T17:00:01.000Z | ; Copyright (c) 2015 Alexandru-Mihai Maftei. All rights reserved.
;
;
; Developed by: Alexandru-Mihai Maftei
; aka Vercas
; http://vercas.com | https://github.com/vercas/Beelzebub
;
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associated documentation files (the ... | 34.970149 | 79 | 0.720017 |
8aa788abad04115534411b06f48858f1915954d7 | 4,620 | asm | Assembly | npcitems.asm | mmxbass/z3randomizer | 04906b5f872e0afb46bf7c98161da50f82235a08 | [
"MIT"
] | 20 | 2017-05-17T23:00:36.000Z | 2018-11-29T20:07:06.000Z | npcitems.asm | mmxbass/z3randomizer | 04906b5f872e0afb46bf7c98161da50f82235a08 | [
"MIT"
] | 13 | 2017-07-19T19:16:53.000Z | 2018-04-23T19:52:15.000Z | npcitems.asm | mmxbass/z3randomizer | 04906b5f872e0afb46bf7c98161da50f82235a08 | [
"MIT"
] | 17 | 2017-05-22T19:58:01.000Z | 2018-11-22T03:35:57.000Z | ;================================================================================
; Randomize NPC Items
;--------------------------------------------------------------------------------
; Old Man - Zora King - Sick Kid - Tree Kid - Sahasrala - Catfish - Rupee NPC
;=SET 1
;OLD_MAN = "#$01"
;ZORA_KING = "#$02"
;SICK_KID ... | 23.814433 | 119 | 0.599134 |
975e456ce5e038e3a5b63eb9b2e10de70a7d20bd | 10,630 | asm | Assembly | source/tokeniser/vectors.asm | mega65dev/rom-assembler | 1670a56a8246dcdcc18e83b345d577eba686cf32 | [
"MIT"
] | null | null | null | source/tokeniser/vectors.asm | mega65dev/rom-assembler | 1670a56a8246dcdcc18e83b345d577eba686cf32 | [
"MIT"
] | null | null | null | source/tokeniser/vectors.asm | mega65dev/rom-assembler | 1670a56a8246dcdcc18e83b345d577eba686cf32 | [
"MIT"
] | null | null | null | ; ********************************************************************************************
; ********************************************************************************************
;
; Name : vectors.asm
; Purpose : ..
; Created : 15th Nov 1991
; Updated : 4th Jan 2021
; Authors : Fred Bowen
;
; *... | 41.850394 | 102 | 0.309784 |
5a9861b32ede880ae12072e2d776355a3e75d7a9 | 2,160 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_4_2000.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_4_2000.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_4_2000.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 %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x1b7b2, %rsi
lea addresses_A_ht+0x1c382, %rdi
nop
nop
nop
nop
and $22030, %r9
mov $51, %rcx
rep movsb
sub $62154, %r9
lea addresses_A_ht+0x101e2, %r9
xor $39932, %rdx
movb (%r9), %r13b
nop
nop
nop... | 18.151261 | 147 | 0.646296 |
09bc0173620d75c8f17ddc8193a72738827b6696 | 1,027 | asm | Assembly | programs/oeis/049/A049685.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/049/A049685.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/049/A049685.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A049685: a(n) = L(4*n+2)/3, where L=A000032 (the Lucas sequence).
; 1,6,41,281,1926,13201,90481,620166,4250681,29134601,199691526,1368706081,9381251041,64300051206,440719107401,3020733700601,20704416796806,141910183877041,972666870342481,6666757908520326,45694638489299801,313195711516578281,2146675342126748166,147135... | 68.466667 | 856 | 0.882181 |
f89ae1a808229ccd74783085e5eadeb33deae54c | 4,448 | asm | Assembly | tutorials/part12/src/stars.asm | Threetwosevensixseven/ZalaXa | 190cfbc481ff7d3be5500c29c2c027b249a15cca | [
"MIT"
] | 5 | 2018-01-06T21:05:36.000Z | 2019-10-25T09:18:23.000Z | tutorials/part12/src/stars.asm | Threetwosevensixseven/ZalaXa | 190cfbc481ff7d3be5500c29c2c027b249a15cca | [
"MIT"
] | null | null | null | tutorials/part12/src/stars.asm | Threetwosevensixseven/ZalaXa | 190cfbc481ff7d3be5500c29c2c027b249a15cca | [
"MIT"
] | 2 | 2019-04-30T06:11:48.000Z | 2020-05-15T07:37:04.000Z | ; stars.asm
SetupStars proc
ld a, DimWhiteBlackP ; Custom colour for ClsAttr.
call ClsAttr.WithCustomColour ; Alternate entry point without setting colour.
RandomLoop:
call ClsPixels ; Clear all the pix... | 70.603175 | 132 | 0.409397 |
fe55ca9f0371e969a2945fb9a9482925ac0a0524 | 407 | asm | Assembly | 4th SEM/MICROPROCESSOR AND MICROCONTROLLER LABORATORY - XXCSL48/LAB4.asm | AbhishekMali21/VTU-CSE-ISE-LAB-SOLUTIONS | 599916c270d285b3c9b1c8969cfb6cbcae8bd619 | [
"MIT"
] | 80 | 2019-02-12T19:30:15.000Z | 2022-03-28T14:38:55.000Z | 4th SEM/MICROPROCESSOR AND MICROCONTROLLER LABORATORY - XXCSL48/LAB4.asm | AbhishekMali21/VTU-CSE-ISE-LAB-SOLUTIONS | 599916c270d285b3c9b1c8969cfb6cbcae8bd619 | [
"MIT"
] | 1 | 2020-03-29T09:17:14.000Z | 2020-03-29T09:17:15.000Z | 4th SEM/MICROPROCESSOR AND MICROCONTROLLER LABORATORY - XXCSL48/LAB4.asm | AbhishekMali21/VTU-CSE-ISE-LAB-SOLUTIONS | 599916c270d285b3c9b1c8969cfb6cbcae8bd619 | [
"MIT"
] | 115 | 2019-02-20T13:32:44.000Z | 2022-03-28T17:19:29.000Z | .model small
.stack 10
.data
n dw 4
r dw 2
org 10h
ncr dw ?
res dw ?
.code
mov ax,@data
mov ds,ax
mov ax,r
call fact
mov bx,res
mov ax,n
sub ax,r
call fact
mov ax,res
mul bx
mov bx,ax
mov ax,n
call fact
mov ax,res
div bx
mov ncr,ax
int 3
fact proc
cmp ax,0h
je exit
push ax
dec ax
... | 8.659574 | 16 | 0.624079 |
795d88a84c41dfa63987387f78c010af4a7c8ba8 | 650 | asm | Assembly | libsrc/target/zx/psg/set_psg_callee.asm | ahjelm/z88dk | c4de367f39a76b41f6390ceeab77737e148178fa | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/target/zx/psg/set_psg_callee.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/target/zx/psg/set_psg_callee.asm | C-Chads/z88dk | a4141a8e51205c6414b4ae3263b633c4265778e6 | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
; ZX Spectrum specific routines
; by Stefano Bodrato, Fall 2013
;
; int set_psg(int reg, int val);
;
; Play a sound by PSG
;
;
; $Id: set_psg_callee.asm,v 1.5 2017-01-02 23:57:08 aralbrec Exp $
;
SECTION code_clib
PUBLIC set_psg_callee
PUBLIC _set_psg_callee
EXTERN __psg_select_and_read_port
EXTERN __psg_write... | 13.541667 | 66 | 0.683077 |
b15045c2621d6f9261b36abc99785bba183e6428 | 658 | asm | Assembly | programs/oeis/165/A165842.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/165/A165842.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/165/A165842.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A165842: Totally multiplicative sequence with a(p) = 21.
; 1,21,21,441,21,441,21,9261,441,441,21,9261,21,441,441,194481,21,9261,21,9261,441,441,21,194481,441,441,9261,9261,21,9261,21,4084101,441,441,441,194481,21,441,441,194481,21,9261,21,9261,9261,441,21,4084101,441,9261,441,9261,21,194481,441,194481,441,441,21,1944... | 82.25 | 458 | 0.758359 |
b37e1cfc9516441d91324fe9c331b7bf65da39ed | 702 | asm | Assembly | LAB 5/Lab5Task1.asm | smellycattt/Microprocessor-Programming | 9046490ba7f8e97963995a32589de4ea1bdb0ef5 | [
"MIT"
] | 1 | 2019-02-15T21:21:24.000Z | 2019-02-15T21:21:24.000Z | LAB 5/Lab5Task1.asm | jyotishmaan/Microprocessor-Programming | 7139e9ba0c9fd6f452003ecf07f76b02cb6c1773 | [
"MIT"
] | null | null | null | LAB 5/Lab5Task1.asm | jyotishmaan/Microprocessor-Programming | 7139e9ba0c9fd6f452003ecf07f76b02cb6c1773 | [
"MIT"
] | null | null | null | .MODEL TINY
.DATA
STRING DB "DOLL"
COUNT DB 04H
.CODE
.STARTUP
;SETTING THE DISPLAY MODE
MOV AL, 3
MOV AH, 0
INT 10H
LEA SI, STRING
MOV DL, 40 ; INITIAL SETTING OF THE COLUMN
X1: MOV AH, 2 ;SETTING THE CURSOR POSITION
MOV BH, 0
MOV DH, 12 ;SETTING THE ROW
INT 10H
MOV AL, [SI] ... | 17.121951 | 79 | 0.653846 |
56892d80d2afb0426b91c754819462f5fe89442f | 2,883 | asm | Assembly | runtime/sourcompare.asm | paulscottrobson/xcpl | 38dd1a667e6287190de91e3730ce03d2f8d2c5a7 | [
"MIT"
] | 1 | 2020-07-20T08:53:41.000Z | 2020-07-20T08:53:41.000Z | runtime/sourcompare.asm | paulscottrobson/xcpl | 38dd1a667e6287190de91e3730ce03d2f8d2c5a7 | [
"MIT"
] | null | null | null | runtime/sourcompare.asm | paulscottrobson/xcpl | 38dd1a667e6287190de91e3730ce03d2f8d2c5a7 | [
"MIT"
] | 3 | 2020-07-17T18:52:05.000Z | 2021-05-14T09:30:17.000Z | ; *****************************************************************************
; *****************************************************************************
;
; Name: sourcompare.asm
; Purpose: Support routines (comparison)
; Date: 8th June 2020
; Author: Paul Robson (paul@robsons.org.uk)
;
; ***************... | 23.826446 | 79 | 0.408602 |
08a7d93a89c9fd74c5eb2355a3a39998d72bd6d5 | 699 | asm | Assembly | oeis/001/A001847.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/001/A001847.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/001/A001847.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A001847: Crystal ball sequence for 5-dimensional cubic lattice.
; 1,11,61,231,681,1683,3653,7183,13073,22363,36365,56695,85305,124515,177045,246047,335137,448427,590557,766727,982729,1244979,1560549,1937199,2383409,2908411,3522221,4235671,5060441,6009091,7095093,8332863,9737793,11326283,13115773,15124775,17372905,198... | 58.25 | 495 | 0.816881 |
5b7175cc41507a9bf1d5969987df26d558653286 | 409 | asm | Assembly | programs/oeis/004/A004235.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/004/A004235.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/004/A004235.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A004235: 10*log(n) rounded to nearest integer.
; 0,7,11,14,16,18,19,21,22,23,24,25,26,26,27,28,28,29,29,30,30,31,31,32,32,33,33,33,34,34,34,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,39,40,40,40,40
mul $0,2
add $0,2
pow $0,7
mov $2,8
lpb $0,1
add $3,15
sub $0,$3
div $0,2
trn $0,1
mov $1,9
m... | 17.782609 | 164 | 0.589242 |
a43782e65ade7c188d84a5360d69ddeb4f3a77bd | 351 | asm | Assembly | programs/oeis/134/A134341.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/134/A134341.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/134/A134341.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A134341: Numbers whose fifth powers have a partition as a sum of fifth powers of four positive integers.
; 144,288,432,576,720,864,1008,1152,1296,1440,1584,1728,1872,2016,2160,2304,2448,2592,2736,2880,3024,3168,3312,3456,3600,3744,3888,4032,4176,4320,4464,4608,4752,4896,5040,5184,5328,5472,5616,5760,5904,6048,6192
m... | 50.142857 | 210 | 0.769231 |
627ec4f788b72eea2c965385464085fd5bf38367 | 284 | asm | Assembly | mc-sema/validator/x86/tests/FIADDm16.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/FIADDm16.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | mc-sema/validator/x86/tests/FIADDm16.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | BITS 32
;TEST_FILE_META_BEGIN
;TEST_TYPE=TEST_F
;TEST_IGNOREFLAGS=FLAG_FPU_PE|FLAG_FPU_C1
;TEST_FILE_META_END
; set up st0 to be PI
FLDPI
;TEST_BEGIN_RECORDING
lea edi, [esp-08]
mov word [edi], 0x0001
FIADD word [edi]
mov edi, 0x0
;TEST_END_RECORDING
| 18.933333 | 41 | 0.711268 |
15fa3848f9f0ff871e42c97716175b3b0dbe8ac3 | 1,769 | asm | Assembly | non_regression/switch_x86_linux_3.o.asm | LRGH/plasmasm | 4cd50546c3dc895763d72dd60b7c46179c1916bc | [
"Apache-2.0"
] | 1 | 2021-02-28T21:31:18.000Z | 2021-02-28T21:31:18.000Z | non_regression/switch_x86_linux_3.o.asm | LRGH/plasmasm | 4cd50546c3dc895763d72dd60b7c46179c1916bc | [
"Apache-2.0"
] | null | null | null | non_regression/switch_x86_linux_3.o.asm | LRGH/plasmasm | 4cd50546c3dc895763d72dd60b7c46179c1916bc | [
"Apache-2.0"
] | null | null | null | .file "switch_gcc411.c"
.text
main:
pushl %ebp
movl %esp, %ebp
pushl %edi
pushl %esi
pushl %ebx
subl $1452, %esp
call __i686.get_pc_thunk.bx
.L00000011:
addl $_GLOBAL_OFFSET_TABLE_, %ebx
movl $0, -176(%ebp)
cmpl $4, 12(%ebp)
ja .L0000006E
.L00000027:
mo... | 26.014706 | 90 | 0.596382 |
b59459b1619399c888389f8470fa1c51c501e309 | 13,139 | asm | Assembly | kernel32.asm | satadriver/LiunuxOS | 693174ac2b3e503d72782fc7a14f18c8a4f2756c | [
"Apache-2.0"
] | null | null | null | kernel32.asm | satadriver/LiunuxOS | 693174ac2b3e503d72782fc7a14f18c8a4f2756c | [
"Apache-2.0"
] | null | null | null | kernel32.asm | satadriver/LiunuxOS | 693174ac2b3e503d72782fc7a14f18c8a4f2756c | [
"Apache-2.0"
] | null | null | null | .686p
include kutils.asm
include kdevice32.asm
include kintr.asm
include kpower.asm
include kvideo.asm
include kmemory.asm
include kdloader.asm
Kernel Segment public para use32
assume cs:Kernel
__kernel32Entry proc
mov ax,rwData32Seg
mov ds,ax
mov es,ax
mov fs,ax
mov gs,ax
mov ss,ax
mov eax,0... | 24.02011 | 117 | 0.774336 |
9adf68d028db49ff303f4e1cc5b4f2eb81576149 | 351 | asm | Assembly | programs/oeis/345/A345888.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/345/A345888.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/345/A345888.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A345888: a(n) = n + (n - 1) * pi(n).
; 1,3,7,10,17,21,31,36,41,46,61,67,85,92,99,106,129,137,163,172,181,190,221,231,241,251,261,271,309,320,361,373,385,397,409,421,469,482,495,508,561,575,631,646,661,676,737,753,769,785,801,817,885,902,919,936,953,970
mov $1,$0
seq $1,36234 ; Number of primes <= n, if 1 is counted ... | 43.875 | 215 | 0.655271 |
1a852ee19ece465b9b4d7792323df00e0ea5b026 | 649 | asm | Assembly | oeis/024/A024899.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/024/A024899.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/024/A024899.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A024899: Numbers k such that 6*k + 1 is prime.
; Submitted by Jon Maiga
; 1,2,3,5,6,7,10,11,12,13,16,17,18,21,23,25,26,27,30,32,33,35,37,38,40,45,46,47,51,52,55,56,58,61,62,63,66,68,70,72,73,76,77,81,83,87,90,91,95,96,100,101,102,103,105,107,110,112,115,118,121,122,123,125,126,128,131,135,137,138,142,143,146,147,151,... | 30.904762 | 345 | 0.651772 |
20337da9e23911f34172d888d12b890869a313e5 | 378 | asm | Assembly | oeis/309/A309954.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/309/A309954.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/309/A309954.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A309954: Product of digits of (n written in base 4).
; Submitted by Jon Maiga
; 0,1,2,3,0,1,2,3,0,2,4,6,0,3,6,9,0,0,0,0,0,1,2,3,0,2,4,6,0,3,6,9,0,0,0,0,0,2,4,6,0,4,8,12,0,6,12,18,0,0,0,0,0,3,6,9,0,6,12,18,0,9,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,2,4,6,0,3,6,9,0,0,0,0
mov $3,1
lpb $0
mov $2,$0
... | 27 | 208 | 0.547619 |
205b9db240d3af36e00de1adaca5db10bfba1d7a | 565 | asm | Assembly | programs/oeis/120/A120151.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/120/A120151.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/120/A120151.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A120151: a(1)=5; a(n)=floor((15+sum(a(1) to a(n-1)))/3).
; 5,6,8,11,15,20,26,35,47,62,83,111,148,197,263,350,467,623,830,1107,1476,1968,2624,3499,4665,6220,8293,11058,14744,19658,26211,34948,46597,62130,82840,110453,147271,196361,261815,349086
mov $6,2
mov $7,$0
lpb $6
mov $0,$7
sub $6,1
add $0,$6
mov $3,0
... | 16.617647 | 186 | 0.553982 |
ab6948e247dbcf32c38d0ba557052c5dc602b326 | 340 | asm | Assembly | x86.asm | nixdog/helloworld | 506bd5f4ea20f46f6c4d41ffd1a7e2efb4735412 | [
"Apache-2.0"
] | 1 | 2015-06-13T17:51:08.000Z | 2015-06-13T17:51:08.000Z | x86.asm | nixdog/helloworld | 506bd5f4ea20f46f6c4d41ffd1a7e2efb4735412 | [
"Apache-2.0"
] | null | null | null | x86.asm | nixdog/helloworld | 506bd5f4ea20f46f6c4d41ffd1a7e2efb4735412 | [
"Apache-2.0"
] | null | null | null | ; 32 bit nasm style x86 assembly
; build command:
; nasm -f elf -F stabs x86.asm
; ld -o x86 x86.o
section .data
str: db 'Hello World', 0Ah
str_len equ $ - str
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, str
mov edx, str_len
int 80h
mov eax, 1
mov ... | 14.782609 | 32 | 0.588235 |
2d719030f515fcf61569fdec1eb1b6797560102e | 183 | asm | Assembly | libsrc/target/vector06c/psg/get_psg.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/target/vector06c/psg/get_psg.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/target/vector06c/psg/get_psg.asm | Frodevan/z88dk | f27af9fe840ff995c63c80a73673ba7ee33fffac | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
;
; int get_psg(int reg);
;
; Get a PSG register.
;
;
SECTION code_clib
PUBLIC get_psg
PUBLIC _get_psg
get_psg:
_get_psg:
ld a,l
out ($15),a
in a,($14)
ld l,a
ret
| 9.15 | 25 | 0.606557 |
94720e00dd390a3e3bf4156bf9ab2eb850e1fb49 | 7,359 | asm | Assembly | test_programs/32bit-mul.asm | mfkiwl/QNICE-FPGA-hyperRAM | aabc8291ac1e0c4666c51f84acddf599d7521e53 | [
"BSD-3-Clause"
] | 53 | 2016-04-12T07:22:49.000Z | 2022-03-25T09:24:48.000Z | test_programs/32bit-mul.asm | mfkiwl/QNICE-FPGA-hyperRAM | aabc8291ac1e0c4666c51f84acddf599d7521e53 | [
"BSD-3-Clause"
] | 196 | 2020-06-05T04:59:50.000Z | 2021-03-13T21:27:11.000Z | test_programs/32bit-mul.asm | mfkiwl/QNICE-FPGA-hyperRAM | aabc8291ac1e0c4666c51f84acddf599d7521e53 | [
"BSD-3-Clause"
] | 15 | 2017-07-31T11:26:56.000Z | 2022-02-22T14:22:46.000Z | ; 32bit unsigned multiplication development testbed
; multiplies two 32bit numbers using the 16bit multiplication of the monitor
;
; contains a reusable function
; originally developed for the FAT32 implementation
;
; done by sy2002 in June 2016
#include "../dist_kit/sysdef.asm"
#include "../dist_kit/monitor.def"
... | 35.042857 | 78 | 0.393124 |
b32c9f24e9a34f2b309c5a7fd39d4436f573d985 | 1,146 | asm | Assembly | src/wram.asm | Q-Bert-Reynolds/gun-hockey-gb | 360eae9adfffc9f619f891facf0c83e846f372b5 | [
"MIT"
] | null | null | null | src/wram.asm | Q-Bert-Reynolds/gun-hockey-gb | 360eae9adfffc9f619f891facf0c83e846f372b5 | [
"MIT"
] | null | null | null | src/wram.asm | Q-Bert-Reynolds/gun-hockey-gb | 360eae9adfffc9f619f891facf0c83e846f372b5 | [
"MIT"
] | null | null | null | SECTION "Gloval Vars", WRAM0
;debug
_breakpoint:: DB
;system info
sys_info:: DB
;game state
game_state:: DB
;gun hockey
moving_objects::
puck::
.vy::DB
.Y:: DB
.y:: DB
.vx::DB
.X:: DB
.x:: DB
bullets:: DS MAX_BULLETS*6;vy,Y,y,vx,X,x
left_gun_angle:: DW
right_gun_angle:: DW
;UI
list_selection:: DB
;main save data
u... | 13.022727 | 40 | 0.71815 |
e283eee2e43107bd4cb487c3962abbc355aae96f | 694 | asm | Assembly | data/pokemon/base_stats/lumineon.asm | TastySnax12/pokecrystal16-493-plus | 9de36c8803c9bdf4b8564ed547f988b0b66f0c41 | [
"blessing"
] | 2 | 2021-07-31T07:05:06.000Z | 2021-10-16T03:32:26.000Z | data/pokemon/base_stats/lumineon.asm | TastySnax12/pokecrystal16-493-plus | 9de36c8803c9bdf4b8564ed547f988b0b66f0c41 | [
"blessing"
] | null | null | null | data/pokemon/base_stats/lumineon.asm | TastySnax12/pokecrystal16-493-plus | 9de36c8803c9bdf4b8564ed547f988b0b66f0c41 | [
"blessing"
] | 3 | 2021-01-15T18:45:40.000Z | 2021-10-16T03:35:27.000Z | db 0 ; species ID placeholder
db 69, 69, 76, 91, 69, 86
; hp atk def spd sat sdf
db WATER, WATER ; type
db 75 ; catch rate
db 161 ; base exp
db NO_ITEM, BERRY ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 25 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/lumineon/fro... | 31.545455 | 232 | 0.708934 |
f7ab8a0588941c74822694c26aa6b660ba1249bd | 452 | asm | Assembly | oeis/109/A109263.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/109/A109263.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/109/A109263.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A109263: A Catalan transform of F(n-1)-0^n.
; Submitted by Christian Krause
; 0,0,1,3,10,34,118,416,1485,5355,19473,71313,262735,973027,3619955,13521307,50684778,190597594,718788034,2717755820,10300186824,39121645886,148884623768,567643844338,2167882951110,8292331115104
seq $0,165201 ; Expansion of 1/(1-x*c(x)^3), c... | 37.666667 | 194 | 0.723451 |
384453758f5c26907c9183aa3bd86ef3bca50978 | 489 | asm | Assembly | programs/oeis/106/A106002.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/106/A106002.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/106/A106002.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A106002: a(n)=1 if there is a number of the form 6k+3 such that prime(n) < 6k+3 < prime(n+1), otherwise 0.
; 0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,0,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1
seq $0,1... | 61.125 | 201 | 0.603272 |
f84bcab75a4feb5d03cb26f6e05edf9c8afb3215 | 447 | asm | Assembly | 3rdParties/src/nasm/nasm-2.15.02/test/binoverflow.asm | blue3k/StormForge | 1557e699a673ae9adcc8f987868139f601ec0887 | [
"Apache-2.0"
] | 1 | 2020-06-20T07:35:25.000Z | 2020-06-20T07:35:25.000Z | 3rdParties/src/nasm/nasm-2.15.02/test/binoverflow.asm | blue3k/StormForge | 1557e699a673ae9adcc8f987868139f601ec0887 | [
"Apache-2.0"
] | null | null | null | 3rdParties/src/nasm/nasm-2.15.02/test/binoverflow.asm | blue3k/StormForge | 1557e699a673ae9adcc8f987868139f601ec0887 | [
"Apache-2.0"
] | null | null | null | ;; BR 3392655: relocation overflow during bin format link
[map all binoverflow.map]
org 7C00h
%macro br3392655 1
bits %1
section .text.%1
start%1:
mov al, var%1
%if %1 == 64
mov sil, var%1
%endif
mov al, foo%1
%if %1 == 64
mov sil, foo%1
%endif
mov al, start%1
%if %1 == 64
mov sil, s... | 11.763158 | 59 | 0.610738 |
09e25c272f62d9cb273722cbd5959f00ae3332c8 | 1,311 | asm | Assembly | chap18/ex13/transpose_scalar.asm | JamesType/optimization-manual | 61cdcebb16e0768a6ab7e85ed535e64e9d8cc31a | [
"0BSD"
] | 374 | 2021-06-08T10:42:01.000Z | 2022-03-29T14:21:45.000Z | chap18/ex13/transpose_scalar.asm | JamesType/optimization-manual | 61cdcebb16e0768a6ab7e85ed535e64e9d8cc31a | [
"0BSD"
] | 1 | 2021-06-11T20:24:02.000Z | 2021-06-11T20:24:02.000Z | chap18/ex13/transpose_scalar.asm | JamesType/optimization-manual | 61cdcebb16e0768a6ab7e85ed535e64e9d8cc31a | [
"0BSD"
] | 39 | 2021-06-08T11:25:29.000Z | 2022-03-05T05:14:17.000Z | ;
; Copyright (C) 2021 by Intel Corporation
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHA... | 21.85 | 79 | 0.722349 |
ec300f557c44fdec692aa0cdc1aa3d22e06dc566 | 2,059 | asm | Assembly | Borland/CBuilder5/Source/RTL/source/math/round.asm | TrevorDArcyEvans/DivingMagpieSoftware | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | 1 | 2021-05-27T10:27:25.000Z | 2021-05-27T10:27:25.000Z | Borland/CBuilder5/Source/RTL/source/math/round.asm | TrevorDArcyEvans/Diving-Magpie-Software | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | null | null | null | Borland/CBuilder5/Source/RTL/source/math/round.asm | TrevorDArcyEvans/Diving-Magpie-Software | 7ffcfef653b110e514d5db735d11be0aae9953ec | [
"MIT"
] | null | null | null | ;[]-----------------------------------------------------------------[]
;| ROUND.ASM -- rounding function |
;[]-----------------------------------------------------------------[]
;
; C/C++ Run Time Library - Version 10.0
;
; Copyright (c) 1991, 2000 by Inprise Corporation
; Al... | 27.092105 | 76 | 0.456047 |
69578c44c3e98fea332829c4d6bcbfc2842b158f | 698 | asm | Assembly | oeis/115/A115415.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/115/A115415.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/115/A115415.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A115415: Real part of (n + i)^n, with i=sqrt(-1).
; Submitted by Christian Krause
; 1,1,3,18,161,1900,27755,482552,9722113,222612624,5707904499,161981127968,5039646554593,170561613679808,6237995487261915,245159013138710400,10303367499652761601,461102348510408544512,21891769059478538933603,1098983344602124698522112,58... | 43.625 | 501 | 0.830946 |
1a9b9214c223e4309036e61f5461a69070b924ae | 523 | asm | Assembly | programs/oeis/105/A105349.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/105/A105349.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/105/A105349.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A105349: Characteristic sequence for the Pell numbers.
; 1,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
mov $2,2
mov $7,$0
lpb $2,1
mov $0,$7
sub $2,1
add $0,$2
sub $0,1
pow ... | 16.870968 | 181 | 0.506692 |
64cab59ab23f869b15cb430ae7819f5b8ab5e9c8 | 1,539 | asm | Assembly | nand2tetris/projects/04/fill/Fill.asm | YDongY/Nand2Tetris | 75df4a859dc41f66fd0aba3bab9f4e365e01070a | [
"MIT"
] | null | null | null | nand2tetris/projects/04/fill/Fill.asm | YDongY/Nand2Tetris | 75df4a859dc41f66fd0aba3bab9f4e365e01070a | [
"MIT"
] | null | null | null | nand2tetris/projects/04/fill/Fill.asm | YDongY/Nand2Tetris | 75df4a859dc41f66fd0aba3bab9f4e365e01070a | [
"MIT"
] | null | null | null | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/04/Fill.asm
// Runs an infinite loop that listens to the keyboard input.
// When a key is pressed (any key), the program blackens the screen,
// i.e. writes... | 18.321429 | 72 | 0.522417 |
8e09600f1e5254ec611134474d916b6b7dd2d6f7 | 472 | asm | Assembly | parse/mvfn.asm | DigitalMars/optlink | 493de158282046641ef2a3a60a88e25e26d88ec4 | [
"BSL-1.0"
] | 28 | 2015-02-03T01:38:24.000Z | 2022-03-23T05:48:24.000Z | parse/mvfn.asm | DigitalMars/optlink | 493de158282046641ef2a3a60a88e25e26d88ec4 | [
"BSL-1.0"
] | 20 | 2015-01-02T14:51:20.000Z | 2021-01-09T21:37:19.000Z | parse/mvfn.asm | DigitalMars/optlink | 493de158282046641ef2a3a60a88e25e26d88ec4 | [
"BSL-1.0"
] | 9 | 2015-02-11T17:43:56.000Z | 2019-09-05T11:07:02.000Z | TITLE MVFN - Copyright (c) SLR Systems 1994
INCLUDE MACROS
INCLUDE IO_STRUC
PUBLIC MOVE_NFN
.CODE PHASE1_TEXT
externdef _move_nfn:proc
MOVE_NFN PROC
;
;EAX IS TARGET NFN_STRUCT, ECX IS SOURCE
;
push ECX
push EAX
call _move_nfn
add ESP,8
ret
PUSH ESI
MOV ESI,ECX
MOV ECX,[ECX].NF... | 11.8 | 45 | 0.694915 |
e532317333e336ddd7fed767037ec77e1a3648ca | 20 | asm | Assembly | experiments/litmus/intel/9/thread.1.asm | phlo/concubine | 2a3bc9474878951aef54e8c7b6c47c5b4ac02fb1 | [
"MIT"
] | null | null | null | experiments/litmus/intel/9/thread.1.asm | phlo/concubine | 2a3bc9474878951aef54e8c7b6c47c5b4ac02fb1 | [
"MIT"
] | null | null | null | experiments/litmus/intel/9/thread.1.asm | phlo/concubine | 2a3bc9474878951aef54e8c7b6c47c5b4ac02fb1 | [
"MIT"
] | null | null | null | ADDI 1
CAS 1
LOAD 0
| 5 | 6 | 0.7 |
ac44e8a76bb91a4fc3b1d156998be962c455750a | 279 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math48/lm/z80/asm_dconst_inf.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/math48/lm/z80/asm_dconst_inf.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/math48/lm/z80/asm_dconst_inf.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 asm_dconst_inf, asm_dconst_pinf, asm_dconst_minf
EXTERN am48_dconst_inf, am48_dconst_pinf, am48_dconst_minf
defc asm_dconst_inf = am48_dconst_inf
defc asm_dconst_pinf = am48_dconst_pinf
defc asm_dconst_minf = am48_dconst_minf
| 23.25 | 58 | 0.870968 |
689fa84d8ee42aa40c697bd960c333f4caf50dc8 | 616 | asm | Assembly | programs/oeis/034/A034828.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/034/A034828.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/034/A034828.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A034828: a(n) = floor(n^2/4)*(n/2).
; 0,0,1,3,8,15,27,42,64,90,125,165,216,273,343,420,512,612,729,855,1000,1155,1331,1518,1728,1950,2197,2457,2744,3045,3375,3720,4096,4488,4913,5355,5832,6327,6859,7410,8000,8610,9261,9933,10648,11385,12167,12972,13824,14700,15625,16575,17576,18603,19683,20790,21952,23142,24389,25665... | 68.444444 | 529 | 0.766234 |
d7e914dbdbd9ff99c9e899d6ab3f5d75241be9eb | 226 | asm | Assembly | libsrc/_DEVELOPMENT/adt/w_vector/c/sdcc_iy/w_vector_max_size_fastcall.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/adt/w_vector/c/sdcc_iy/w_vector_max_size_fastcall.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/adt/w_vector/c/sdcc_iy/w_vector_max_size_fastcall.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; void *w_vector_max_size_fastcall(w_vector_t *v)
SECTION code_adt_w_vector
PUBLIC _w_vector_max_size_fastcall
defc _w_vector_max_size_fastcall = asm_w_vector_max_size
INCLUDE "adt/w_vector/z80/asm_w_vector_max_size.asm"
| 20.545455 | 56 | 0.862832 |
2fa981e065c2046f01d6a5de4669e0b1d1b22a30 | 430 | asm | Assembly | oeis/320/A320468.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/320/A320468.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/320/A320468.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A320468: a(n) = a(n-1) + 20*a(n-2), n >= 2; a(0)=1, a(1)=41.
; Submitted by Christian Krause
; 1,41,61,881,2101,19721,61741,456161,1690981,10814201,44633821,260917841,1153594261,6371951081,29443836301,156882857921,745759583941,3883416742361,18798608421181,96466943268401,472439111692021,2401777977060041,11850560210900... | 35.833333 | 265 | 0.75814 |
8f50e6aeef4ce97442379231325f01330123c68b | 3,343 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_494_1685.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_494_1685.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_494_1685.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xb62d, %rsi
lea addresses_normal_ht+0xae41, %rdi
nop
and $11883, %r15
mov $126, %rcx
rep movsw
nop
nop
nop
nop
nop
inc %rbp
lea addresses_UC_ht+0x4241, %r15
nop
nop
nop
nop
nop
add %r13... | 30.390909 | 1,481 | 0.658391 |
b20b2bbf6e95feb44159a2c26f9dd8ebd0415ffa | 63 | asm | Assembly | src/main/fragment/mos6502-common/vdum1=vdum1_rol_3.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/vdum1=vdum1_rol_3.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/vdum1=vdum1_rol_3.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | ldy #3
!:
asl {m1}
rol {m1}+1
rol {m1}+2
rol {m1}+3
dey
bne !-
| 7 | 10 | 0.52381 |
1a6ed67ea5f47eed9c1504a74e37e166c7ca2250 | 6,749 | asm | Assembly | Transynther/x86/_processed/NC/_ht_zr_un_/i7-7700_9_0xca.log_21829_1162.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_ht_zr_un_/i7-7700_9_0xca.log_21829_1162.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_ht_zr_un_/i7-7700_9_0xca.log_21829_1162.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 %r15
push %r8
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x4397, %rsi
lea addresses_UC_ht+0x64c3, %rdi
nop
nop
nop
nop
nop
inc %r8
mov $104, %rcx
rep movsq
nop
nop
nop
nop
xor %rcx, %rcx
lea addresses_WC_ht+0x331, %rsi
lea addres... | 36.284946 | 2,999 | 0.657431 |
4ab3460f8fea581fb9f2afbe477b235675fe5d4f | 643 | asm | Assembly | oeis/213/A213763.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/213/A213763.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/213/A213763.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A213763: Principal diagonal of the convolution array A213762.
; 1,11,43,127,331,807,1891,4319,9691,21463,47059,102351,221131,475079,1015747,2162623,4587451,9699255,20447155,42991535,90177451,188743591,394264483,822083487,1711275931,3556769687,7381974931,15300820879,31675383691,65498251143,135291469699,279172874111,57... | 45.928571 | 485 | 0.833593 |
b610ce467e412a387429977fc716233a5e1d687f | 180 | asm | Assembly | tests/mul.asm | mantal/AVM | 0eb0eb177c01bd670d3b2a1a55f5633427560f23 | [
"Apache-2.0"
] | null | null | null | tests/mul.asm | mantal/AVM | 0eb0eb177c01bd670d3b2a1a55f5633427560f23 | [
"Apache-2.0"
] | null | null | null | tests/mul.asm | mantal/AVM | 0eb0eb177c01bd670d3b2a1a55f5633427560f23 | [
"Apache-2.0"
] | null | null | null | push int32(6)
push int32(7)
mul
assert int32(42)
pop
push int8(2)
push int32(100000)
mul
assert int32(200000)
pop
push int16(3)
push float(1.50)
mul
assert double(4.5)
pop
exit
| 9 | 20 | 0.733333 |
5c349703458ede1c834532113784cd0593dc318c | 453 | asm | Assembly | oeis/003/A003075.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/003/A003075.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/003/A003075.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A003075: Minimal number of comparisons needed for n-element sorting network.
; Submitted by Jon Maiga
; 0,1,3,5,9,12,16,19,25,29,35,39
mov $5,$0
mov $7,$0
lpb $5
mov $0,$7
sub $5,1
sub $0,$5
mov $2,2
mov $8,0
lpb $0
mov $3,$0
lpb $3
mov $4,$0
mod $4,$2
sub $2,1
cmp $4,0
... | 14.15625 | 78 | 0.496689 |
f4f481e20fb4967df00d1ab391ad36079f66834f | 266 | asm | Assembly | programs/oeis/004/A004311.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/004/A004311.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/004/A004311.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A004311: Binomial coefficient C(2n,n-5).
; 1,12,91,560,3060,15504,74613,346104,1562275,6906900,30045015,129024480,548354040,2310789600,9669554100,40225345056,166509721602,686353797976,2818953098830,11541847896480
mov $1,10
add $1,$0
add $1,$0
bin $1,$0
mov $0,$1
| 29.555556 | 171 | 0.778195 |
28b7126f0fc966ee55fb8447a044adaa34d3f201 | 511 | asm | Assembly | programs/oeis/332/A332993.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/332/A332993.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/332/A332993.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A332993: a(1) = 1, for n > 1, a(n) = n + a(A032742(n)).
; 1,3,4,7,6,10,8,15,13,16,12,22,14,22,21,31,18,31,20,36,29,34,24,46,31,40,40,50,30,51,32,63,45,52,43,67,38,58,53,76,42,71,44,78,66,70,48,94,57,81,69,92,54,94,67,106,77,88,60,111,62,94,92,127,79,111,68,120,93,113,72,139,74,112,106,134,89,131,80,156,121,124,84,155... | 46.454545 | 324 | 0.624266 |
9c7a3e3947a2e08e4f3d9922399aa04e6027c321 | 534 | asm | Assembly | programs/oeis/004/A004727.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/004/A004727.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/004/A004727.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A004727: Delete all 8's from the sequence of nonnegative integers.
; 0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,1,19,20,21,22,23,24,25,26,27,2,29,30,31,32,33,34,35,36,37,3,39,40,41,42,43,44,45,46,47,4,49,50,51,52,53,54,55,56,57,5,59,60,61,62,63,64,65,66,67,6,69,70,71
mov $1,1
mov $2,$0
mov $3,$0
trn $3,7
min $3,1
add... | 28.105263 | 199 | 0.634831 |
15fdf8ca25b3719c153c6e85baee7f8d19770413 | 748 | asm | Assembly | oeis/345/A345983.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/345/A345983.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/345/A345983.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A345983: Partial sums of A344005.
; Submitted by Jon Maiga
; 1,2,4,7,11,13,19,26,34,38,48,51,63,69,74,89,105,113,131,135,141,151,173,181,205,217,243,250,278,283,313,344,355,371,385,393,429,447,459,474,514,520,562,573,582,604,650,665,713,737,754,766,818,844,854,861,879,907,965,980,1040,1070,1097,1160,1185,1196,1262,12... | 25.793103 | 421 | 0.637701 |
da4b0fb3c0973d88aab39684f491d688df819b2b | 7,727 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1687.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_1687.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_1687.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x3c23, %rsi
lea addresses_normal_ht+0x5335, %rdi
nop
nop
and $9802, %r9
mov $82, %rcx
rep movsl
nop
nop
nop
nop
nop
cmp $50223, %r10
lea addresses_D_ht+0x58c3, %rsi
lea address... | 32.880851 | 2,999 | 0.661188 |
874f46fff9392cc9833761787396f6bae7fede99 | 60,627 | asm | Assembly | examples/pxScene2d/external/libnode-v10.15.3/deps/openssl/config/archs/VC-WIN32/asm/crypto/aes/aesni-x86.asm | madanagopaltcomcast/pxCore | c4a3a40a190521c8b6383d126c87612eca5b3c42 | [
"Apache-2.0"
] | 1,666 | 2017-01-12T03:58:44.000Z | 2017-08-20T23:39:20.000Z | examples/pxScene2d/external/libnode-v10.15.3/deps/openssl/config/archs/VC-WIN32/asm/crypto/aes/aesni-x86.asm | madanagopaltcomcast/pxCore | c4a3a40a190521c8b6383d126c87612eca5b3c42 | [
"Apache-2.0"
] | 1,432 | 2017-06-21T04:08:48.000Z | 2020-08-25T16:21:15.000Z | examples/pxScene2d/external/libnode-v10.15.3/deps/openssl/config/archs/VC-WIN32/asm/crypto/aes/aesni-x86.asm | madanagopaltcomcast/pxCore | c4a3a40a190521c8b6383d126c87612eca5b3c42 | [
"Apache-2.0"
] | 317 | 2017-06-20T19:57:17.000Z | 2020-09-16T10:28:30.000Z | %ifidn __OUTPUT_FORMAT__,obj
section code use32 class=code align=64
%elifidn __OUTPUT_FORMAT__,win32
$@feat.00 equ 1
section .text code align=64
%else
section .text code
%endif
;extern _OPENSSL_ia32cap_P
global _aesni_encrypt
align 16
_aesni_encrypt:
L$_aesni_encrypt_begin:
mov eax,DWORD [4+esp]
mov edx,DWORD [12+esp... | 18.928192 | 60 | 0.723094 |
715b81974a1c59ddbfec91d94f4c431457c814f9 | 3,042 | asm | Assembly | src/meiji.asm | vzwGrey/meiji-os | d1e0d9df4effde8948394bdf1ed4bc92c6e89b21 | [
"MIT"
] | 2 | 2021-06-30T02:24:41.000Z | 2021-12-28T12:08:39.000Z | src/meiji.asm | vzwGrey/meiji-os | d1e0d9df4effde8948394bdf1ed4bc92c6e89b21 | [
"MIT"
] | null | null | null | src/meiji.asm | vzwGrey/meiji-os | d1e0d9df4effde8948394bdf1ed4bc92c6e89b21 | [
"MIT"
] | 1 | 2021-07-31T16:25:21.000Z | 2021-07-31T16:25:21.000Z | ; ---
;
; This is the entry file of the operating system, which contains the
; first and second stage of the bootloader and will be execute on system start.
;
; ---
[bits 16]
[org 0x7C00]
%define INPUT_BUFFER_LEN 128
start:
; Make sure SI and DI are incremented by STOSB and LODSB
cld
; Set DS and ES to 0
xo... | 22.043478 | 105 | 0.718277 |
932b4811ae07bdd465cd33513571854e7ea0c926 | 625 | asm | Assembly | oeis/135/A135971.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/135/A135971.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/135/A135971.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A135971: Ceiling(4*Pi*n^2).
; Submitted by Christian Krause
; 13,51,114,202,315,453,616,805,1018,1257,1521,1810,2124,2464,2828,3217,3632,4072,4537,5027,5542,6083,6648,7239,7854,8495,9161,9853,10569,11310,12077,12868,13685,14527,15394,16287,17204,18146,19114,20107,21125,22168,23236,24329,25447,26591,27760,28953,30172,... | 69.444444 | 497 | 0.7792 |
a46fb4e9c74447d0370d70659a92a2a18a5a7487 | 837 | asm | Assembly | oeis/142/A142330.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/142/A142330.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/142/A142330.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A142330: Primes congruent to 34 mod 45.
; Submitted by Christian Krause
; 79,349,439,619,709,1069,1249,1429,1609,1699,1789,1879,2239,2689,3049,3229,3319,3499,3769,4129,4219,4759,5119,5209,5479,5569,5659,5749,5839,6199,6379,6469,6829,7369,7459,7549,7639,8089,8179,8269,8539,8629,8719,9349,9439,9619,10069,10159,10429,10... | 34.875 | 501 | 0.728793 |
215049b055996a880148d10a678db92a2cb8e867 | 174 | asm | Assembly | libsrc/_DEVELOPMENT/inttypes/c/sccz80/strtoimax_callee.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/inttypes/c/sccz80/strtoimax_callee.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/inttypes/c/sccz80/strtoimax_callee.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; intmax_t strtoimax(const char *nptr, char **endptr, int base)
SECTION code_inttypes
PUBLIC strtoimax_callee
EXTERN strtol_callee
defc strtoimax_callee = strtol_callee
| 15.818182 | 63 | 0.810345 |
0644808831cd3b0757efd83923e246f42f97c3f2 | 800 | asm | Assembly | programs/oeis/184/A184525.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/184/A184525.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/184/A184525.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A184525: Upper s-Wythoff sequence, where s=5n-1. Complement of A184524.
; 5,11,17,23,30,36,42,48,54,61,67,73,79,85,92,98,104,110,116,123,129,135,141,147,153,160,166,172,178,184,191,197,203,209,215,222,228,234,240,246,253,259,265,271,277,284,290,296,302,308,314,321,327,333,339,345,352,358,364,370,376,383,389,395,401,... | 22.857143 | 392 | 0.63125 |
e35a7d8bbfb66358325045036c81566e33098690 | 18,567 | asm | Assembly | simd/i386/jcphuff-sse2.asm | Octavi-Broken-Lab/android_external_libjpeg-turbo | 370bdaf3bf287daea9ae2213cdd11f99bf541a71 | [
"Zlib"
] | 91 | 2018-07-04T05:09:50.000Z | 2022-03-31T13:55:19.000Z | simd/i386/jcphuff-sse2.asm | Octavi-Broken-Lab/android_external_libjpeg-turbo | 370bdaf3bf287daea9ae2213cdd11f99bf541a71 | [
"Zlib"
] | 13 | 2019-04-03T12:53:19.000Z | 2020-11-05T22:49:31.000Z | simd/i386/jcphuff-sse2.asm | Octavi-Broken-Lab/android_external_libjpeg-turbo | 370bdaf3bf287daea9ae2213cdd11f99bf541a71 | [
"Zlib"
] | 9 | 2018-10-25T20:51:22.000Z | 2021-05-20T23:22:00.000Z | ;
; jcphuff-sse2.asm - prepare data for progressive Huffman encoding (SSE2)
;
; Copyright (C) 2016, 2018, Matthieu Darbois
;
; Based on the x86 SIMD extension for IJG JPEG library
; Copyright (C) 1999-2006, MIYASAKA Masaru.
; For conditions of distribution and use, see copyright notice in jsimdext.inc
;
; This file sho... | 28.004525 | 90 | 0.473744 |
f6e349b3da92c5ca88d9e5bdc33479a1eccce109 | 592 | asm | Assembly | programs/oeis/231/A231505.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/231/A231505.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/231/A231505.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A231505: a(n) = Sum_{i=0..n} digsum_3(i)^4, where digsum_3(i) = A053735(i).
; 0,1,17,18,34,115,131,212,468,469,485,566,582,663,919,1000,1256,1881,1897,1978,2234,2315,2571,3196,3452,4077,5373,5374,5390,5471,5487,5568,5824,5905,6161,6786,6802,6883,7139,7220,7476,8101,8357,8982,10278,10359,10615,11240,11496,12121,13417,... | 37 | 313 | 0.695946 |
78f9370f4b5f733774817b2569cd89cb32e190c7 | 317 | asm | Assembly | libsrc/_DEVELOPMENT/math/float/math48/c/sccz80/cm48_sccz80p_minusfa.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/math/float/math48/c/sccz80/cm48_sccz80p_minusfa.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/math/float/math48/c/sccz80/cm48_sccz80p_minusfa.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 cm48_sccz80p_minusfa
EXTERN am48_dneg
; sccz80 float primitive
; Negate float in AC'
;
; enter : AC'(BCDEHL') = double x (math48 format)
;
; exit : AC'(BCDEHL') = -x (math48 format)
;
; uses : AF, B'
defc cm48_sccz80p_minusfa = am48_dneg
| 16.684211 | 52 | 0.662461 |
006942aea8dbba1c2d47b47948228c832f893406 | 471 | asm | Assembly | oeis/186/A186295.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/186/A186295.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/186/A186295.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A186295: A007519(n)-2.
; Submitted by Jon Maiga
; 15,39,71,87,95,111,135,191,231,239,255,279,311,335,351,399,407,431,447,455,519,567,575,591,599,615,639,671,759,767,807,855,879,927,935,951,975,1007,1031,1047,1095,1127,1151,1191,1199,1215
mov $2,36
mul $2,$0
mov $4,16
lpb $2
mov $3,$4
seq $3,10051 ; Characteristi... | 22.428571 | 189 | 0.649682 |
4ce34bfa5890398769af8012b8d3334a11126d18 | 369 | asm | Assembly | programs/oeis/212/A212701.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/212/A212701.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/212/A212701.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A212701: Main transitions in systems of n particles with spin 3.
; 6,84,882,8232,72030,605052,4941258,39530064,311299254,2421216420,18643366434,142367525496,1079620401678,8138676874188,61040076556410,455765904954528,3389758918099302
add $0,1
mov $2,$0
lpb $2,1
mov $1,3
add $1,3
lpb $1,1
add $3,$0
sub $... | 21.705882 | 167 | 0.710027 |
e84960187b0de9bcb582e11074ce48e9cfbd5d10 | 4,554 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_925_1513.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_925_1513.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_925_1513.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r8
push %rdi
lea addresses_A_ht+0x1d46f, %rdi
nop
nop
nop
nop
nop
add $61596, %r8
mov $0x6162636465666768, %r10
movq %r10, %xmm6
movups %xmm6, (%rdi)
nop
cmp %rdi, %rdi
pop %rdi
pop %r8
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r1... | 43.371429 | 2,774 | 0.655907 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.