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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
20ee84a49aab9f8abe477eab5e64dbbc746976f4 | 314 | asm | Assembly | programs/oeis/051/A051032.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/051/A051032.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/051/A051032.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A051032: Summatory Rudin-Shapiro sequence for 2^(n-1).
; 2,3,3,5,5,9,9,17,17,33,33,65,65,129,129,257,257,513,513,1025,1025,2049,2049,4097,4097,8193,8193,16385,16385,32769,32769,65537,65537,131073,131073,262145,262145,524289,524289,1048577,1048577,2097153
mov $1,2
mov $2,$0
add $2,1
div $2,2
pow $1,$2
add $1,1
| 31.4 | 199 | 0.726115 |
350c800acf381c4a1723092ad321a27a4658b0d2 | 800 | asm | Assembly | data/pokemon/base_stats/spheal.asm | AtmaBuster/pokeplat-gen2 | fa83b2e75575949b8f72cb2c48f7a1042e97f70f | [
"blessing"
] | 6 | 2021-06-19T06:41:19.000Z | 2022-02-15T17:12:33.000Z | data/pokemon/base_stats/spheal.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | null | null | null | data/pokemon/base_stats/spheal.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | 2 | 2021-08-11T19:47:07.000Z | 2022-01-01T07:07:56.000Z | db 0 ; species ID placeholder
db 70, 40, 50, 25, 55, 50
; hp atk def spd sat sdf
db ICE, WATER ; type
db 255 ; catch rate
db 75 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/spheal/front.dimensions"
db GROWTH_MEDIUM_SLOW ; ... | 40 | 381 | 0.73875 |
efb5d655e7e1a3542a6df602d011c62c8ab58546 | 487 | asm | Assembly | i386/hello/hello.asm | Ian-Gabaraev/asm | c377d6406e89e7ccf80df6cf50074dea4fd69122 | [
"MIT"
] | null | null | null | i386/hello/hello.asm | Ian-Gabaraev/asm | c377d6406e89e7ccf80df6cf50074dea4fd69122 | [
"MIT"
] | null | null | null | i386/hello/hello.asm | Ian-Gabaraev/asm | c377d6406e89e7ccf80df6cf50074dea4fd69122 | [
"MIT"
] | null | null | null | ; hello world in i386 Assembly
; Author Ian Gabaraev
; Date 26-09-2021
global _start
section .text:
_start:
mov eax, 0x4 ; the __NR_write syscall in unistd_32.h
mov ebx, 1 ; stdout FD
mov ecx, message
mov edx, message_len
int 0x80 ; trigger an interrupt
mov ea... | 17.392857 | 64 | 0.620123 |
8e00c2fd6685588c4ed5799e63d7c24ccf621abf | 295 | asm | Assembly | 16_16BitBCDAddition.asm | furkanisitan/ExampleProgramsFor8085Microprocessor | 11b2a2ab0f0831938057e0b2453e35d433c5e571 | [
"MIT"
] | null | null | null | 16_16BitBCDAddition.asm | furkanisitan/ExampleProgramsFor8085Microprocessor | 11b2a2ab0f0831938057e0b2453e35d433c5e571 | [
"MIT"
] | null | null | null | 16_16BitBCDAddition.asm | furkanisitan/ExampleProgramsFor8085Microprocessor | 11b2a2ab0f0831938057e0b2453e35d433c5e571 | [
"MIT"
] | null | null | null | LXI H, 3629H ; BCD-1
LXI D, 4738H ; BCD-2
MOV A, L ; A = L
ADD E ; A += E
DAA ; A yı BCD ye çevirir.
MOV C, A ; C = A Result lower
MOV A, H ; A = H
ADC D ; A += (D + Elde)
DAA ; A yı BCD ye çevirir.
MOV B, A ; B = A Result high
HLT
; HL ve DE deki BCD sayıları toplar,
; sonucu BC ye yazar. | 21.071429 | 36 | 0.583051 |
4a7b3cefaac1fe6465dcd148106e0b1919a495c9 | 1,247 | asm | Assembly | programs/oeis/093/A093112.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/093/A093112.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/093/A093112.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A093112: a(n) = (2^n-1)^2 - 2.
; -1,7,47,223,959,3967,16127,65023,261119,1046527,4190207,16769023,67092479,268402687,1073676287,4294836223,17179607039,68718952447,274876858367,1099509530623,4398042316799,17592177655807,70368727400447,281474943156223,1125899839733759,4503599493152767,18014398241046527,7205759350105702... | 124.7 | 1,156 | 0.913392 |
5a6ac5c372d22a51204b1f3396fab20c8a2df6d7 | 831 | asm | Assembly | oeis/142/A142761.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/142/A142761.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/142/A142761.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A142761: Primes congruent to 34 mod 59.
; Submitted by Jon Maiga
; 211,683,919,1627,2099,2689,4813,4931,5167,5521,5639,6229,6701,8117,8353,8707,9533,9769,9887,10477,10831,10949,11657,12011,12601,13309,13781,14489,14843,15551,15787,16141,17203,17321,17911,18973,19681,20389,20507,20743,21569,22159,22277,23339,23929,254... | 34.625 | 501 | 0.732852 |
ee553f21765b5db944e6b535e2918bb371cef014 | 804 | asm | Assembly | programs/oeis/167/A167275.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/167/A167275.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/167/A167275.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A167275: Row sums of triangle A167274 (a variant of Gould's sequence A001316).
; 1,4,4,8,4,8,8,16,4,8,8,16,8,16,16,32,4,8,8,16,8,16,16,32
mov $16,$0
mov $18,2
lpb $18
clr $0,16
mov $0,$16
sub $18,1
add $0,$18
sub $0,1
mov $13,$0
mov $15,$0
add $15,1
lpb $15
mov $0,$13
sub $15,1
sub $0,$... | 13.862069 | 80 | 0.462687 |
bc3a6fe7a8b7ca66c96f3d62ebd41e55bf2a15e8 | 12,755 | asm | Assembly | Asm/x86/LzFindOpt.asm | sebres/7-Zip-zstd | 934cb64875c7b4b3b052bc1b44f3bb0d3cfc8ccd | [
"BSD-3-Clause"
] | 2,539 | 2016-07-18T09:23:07.000Z | 2022-03-31T10:26:36.000Z | Asm/x86/LzFindOpt.asm | sebres/7-Zip-zstd | 934cb64875c7b4b3b052bc1b44f3bb0d3cfc8ccd | [
"BSD-3-Clause"
] | 238 | 2016-09-01T08:29:07.000Z | 2022-03-23T05:12:50.000Z | Asm/x86/LzFindOpt.asm | sebres/7-Zip-zstd | 934cb64875c7b4b3b052bc1b44f3bb0d3cfc8ccd | [
"BSD-3-Clause"
] | 209 | 2016-07-20T07:56:30.000Z | 2022-03-31T03:13:58.000Z | ; LzFindOpt.asm -- ASM version of GetMatchesSpecN_2() function
; 2021-07-13: Igor Pavlov : Public domain
;
ifndef x64
; x64=1
; .err <x64_IS_REQUIRED>
endif
include 7zAsm.asm
MY_ASM_START
_TEXT$LZFINDOPT SEGMENT ALIGN(64) 'CODE'
MY_ALIGN macro num:req
align num
endm
MY_ALIGN_32 macro
MY_ALIGN 32
... | 24.815175 | 92 | 0.477852 |
53484ecda872972726ac2dfd654607c20e75009f | 21,594 | asm | Assembly | engine/palettes.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | null | null | null | engine/palettes.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | null | null | null | engine/palettes.asm | adhi-thirumala/EvoYellow | 6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c | [
"Unlicense"
] | null | null | null | _RunPaletteCommand: ;remember to edit this file down below when adding new pokes, so their palettes display.
call GetPredefRegisters
ld a, b
cp $ff
jr nz, .next
ld a, [wDefaultPaletteCommand] ; use default command if command ID is $ff
.next
cp UPDATE_PARTY_MENU_BLK_PACKET
jp z, UpdatePartyMenuBlkPacket
ld l, a
... | 16.778555 | 108 | 0.714921 |
d8815ce4d8f9714177217cd412fb77114b76c4c2 | 740 | asm | Assembly | oeis/019/A019481.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/019/A019481.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/019/A019481.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A019481: a(n) = 3*a(n-1) + a(n-2) - 2*a(n-3) (agrees with A019480 for n <= 19 only).
; Submitted by Jamie Morken(s1)
; 4,12,37,115,358,1115,3473,10818,33697,104963,326950,1018419,3172281,9881362,30779529,95875387,298642966,930245227,2897627873,9025842914,28114666161,87574585651,272786737286,849705465187,2646753961545... | 41.111111 | 489 | 0.783784 |
416c7fb1faf9ddfe3d96308b2df308998f338b9e | 1,382 | asm | Assembly | codigo/capitulo 36/arreglo.asm | codeneomatrix/ENSAMBLADOR-x86-ACEVEDO | 7d5a58179f460ba2a03b0bcf12fc4584b87f93c9 | [
"MIT"
] | 1 | 2021-06-13T08:59:55.000Z | 2021-06-13T08:59:55.000Z | codigo/capitulo 36/arreglo.asm | codeneomatrix/ENSAMBLADOR-x86-ACEVEDO | 7d5a58179f460ba2a03b0bcf12fc4584b87f93c9 | [
"MIT"
] | null | null | null | codigo/capitulo 36/arreglo.asm | codeneomatrix/ENSAMBLADOR-x86-ACEVEDO | 7d5a58179f460ba2a03b0bcf12fc4584b87f93c9 | [
"MIT"
] | null | null | null | segment .data
arre db '45', '23', '11', '09' ; estos datos se almacenan como
; bytes en memoria, de forma consecutiva
len equ ($-arre)/4
temp dq 0
sum dd 0
ln db 10,13
lenln equ $-ln
segment .text
global _start
_start:
mov eax, 4
mov ebx, 0
mov ecx, arre ; aqui estamos i... | 27.64 | 72 | 0.6411 |
b5c9728b610a8c1d884ebafac8e5e81b03c020e4 | 24 | asm | Assembly | expansion/empty.asm | Lrs121/dwrandomizer | 7265d0028462fff7ed4b8678c0eaaed496231b3c | [
"MIT"
] | null | null | null | expansion/empty.asm | Lrs121/dwrandomizer | 7265d0028462fff7ed4b8678c0eaaed496231b3c | [
"MIT"
] | null | null | null | expansion/empty.asm | Lrs121/dwrandomizer | 7265d0028462fff7ed4b8678c0eaaed496231b3c | [
"MIT"
] | null | null | null |
.base $8000
.org $c000
| 6 | 11 | 0.625 |
64c7b85f79dc750f005e7f41bc2e245ddc85cdc7 | 7,282 | asm | Assembly | src/protinit.asm | DosWorld/zrdx | 18acbf115d150a96809c42799f496b94f903545f | [
"CC0-1.0"
] | 12 | 2021-11-04T14:52:39.000Z | 2022-03-17T10:13:23.000Z | src/protinit.asm | DosWorld/zrdx | 18acbf115d150a96809c42799f496b94f903545f | [
"CC0-1.0"
] | 1 | 2021-11-10T00:11:31.000Z | 2021-11-10T00:11:31.000Z | src/protinit.asm | DosWorld/zrdx | 18acbf115d150a96809c42799f496b94f903545f | [
"CC0-1.0"
] | null | null | null | ; This file is part of the ZRDX 0.50 project
; (C) 1998, Sergey Belyakov
;protected init code
Segm Text
;assume cs:dgroup, ds:dgroup, es:nothing, ss:dgroup
assume cs:Text, ds:nothing, es:nothing, ss:nothing
LLabel PMInit
push Data0Selector
pop eax
mov ... | 26.384058 | 87 | 0.480363 |
ab6d53f9ac4282f21ea15b6cede377c72472427a | 1,740 | asm | Assembly | x86-Win-NASM/src/Strings/pattern_print.asm | gramai/school-related | 152d67b4e475c3ba7c9370d6de39b38fc453392d | [
"MIT"
] | null | null | null | x86-Win-NASM/src/Strings/pattern_print.asm | gramai/school-related | 152d67b4e475c3ba7c9370d6de39b38fc453392d | [
"MIT"
] | null | null | null | x86-Win-NASM/src/Strings/pattern_print.asm | gramai/school-related | 152d67b4e475c3ba7c9370d6de39b38fc453392d | [
"MIT"
] | null | null | null | ;English
;Using the LOOP instructions, find patterns and
;print the following string to the screen
;abcccbcccabcccbccc
;French
;En utilisant les instructions LOOP, trouver
;les motifs et afficher la chaîne suivante:
org 100h
include "emu8086.inc"
.data
:
to_print db "++++++++++++++++++",0 ; the st... | 23.513514 | 81 | 0.613793 |
290a78dfff77ac51cba6918482658a082d34cb6e | 749 | asm | Assembly | oeis/316/A316725.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/316/A316725.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/316/A316725.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A316725: Generalized 27-gonal (or icosiheptagonal) numbers: m*(25*m - 23)/2 with m = 0, +1, -1, +2, -2, +3, -3, ...
; 0,1,24,27,73,78,147,154,246,255,370,381,519,532,693,708,892,909,1116,1135,1365,1386,1639,1662,1938,1963,2262,2289,2611,2640,2985,3016,3384,3417,3808,3843,4257,4294,4731,4770,5230,5271,5754,5797,6303,6... | 44.058824 | 501 | 0.712951 |
d45e0221417c7874dd2cef36b8cf3720a1e77e21 | 7,452 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_128.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_128.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_128.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 %r15
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1747d, %rsi
lea addresses_D_ht+0x1b47d, %rdi
nop
inc %r9
mov $115, %rcx
rep movsl
nop
nop
nop
nop
nop
add %r9, %r9
lea addresses_UC_ht+0x1a43d, %r11
nop
nop
nop
nop
nop
cmp $... | 34.341014 | 2,999 | 0.660762 |
d1bbe4629b57dfdaa24e257861ab7f88345b4559 | 4,120 | asm | Assembly | tests/vice-tests/CIA/tod/hzsync3.asm | PhylumChordata/chips-test | 4f80ede2da9952efeb25d3887c768654d2374167 | [
"MIT"
] | 330 | 2017-12-11T21:20:28.000Z | 2022-03-26T08:56:51.000Z | tests/vice-tests/CIA/tod/hzsync3.asm | PhylumChordata/chips-test | 4f80ede2da9952efeb25d3887c768654d2374167 | [
"MIT"
] | 14 | 2019-01-07T23:50:35.000Z | 2022-01-09T13:43:16.000Z | tests/vice-tests/CIA/tod/hzsync3.asm | PhylumChordata/chips-test | 4f80ede2da9952efeb25d3887c768654d2374167 | [
"MIT"
] | 31 | 2018-07-02T06:13:31.000Z | 2022-02-18T16:50:56.000Z | ;Clock-Test #2d: 50Hz counter sync test (PAL only). Source for 64Tass (Cold Sewers)
;simplified version ignoring hrs, min and secs to see if that makes any difference
;find out if the 50/60Hz counter is still running freely when
;also minutes and seconds are written while the clock is running
;slight code improvement... | 31.212121 | 83 | 0.42233 |
f5f5bd5dfca08fb0059e84d112d4fa1d9741e2dd | 413 | asm | Assembly | oeis/013/A013618.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/013/A013618.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/013/A013618.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A013618: Triangle of coefficients in expansion of (1+11x)^n.
; Submitted by Jamie Morken(s1)
; 1,1,11,1,22,121,1,33,363,1331,1,44,726,5324,14641,1,55,1210,13310,73205,161051,1,66,1815,26620,219615,966306,1771561,1,77,2541,46585,512435,3382071,12400927,19487171,1,88,3388,74536,1024870,9018856,49603708,155897368,214358... | 27.533333 | 228 | 0.72155 |
040cae001d8a44f33435554d606ff731478cce26 | 615 | asm | Assembly | code/YeWenting/T25.asm | KongoHuster/assembly-exercise | 1c4a44c60c0e93a1350ed4f887aeaf1414702a51 | [
"0BSD"
] | 1 | 2021-08-20T03:57:29.000Z | 2021-08-20T03:57:29.000Z | code/YeWenting/T25.asm | KongoHuster/assembly-exercise | 1c4a44c60c0e93a1350ed4f887aeaf1414702a51 | [
"0BSD"
] | null | null | null | code/YeWenting/T25.asm | KongoHuster/assembly-exercise | 1c4a44c60c0e93a1350ed4f887aeaf1414702a51 | [
"0BSD"
] | null | null | null | ;; Created by Ywt.
;; Date: 12/3/2016
TITLE T25_YWT
DATA SEGMENT
MEM DB 4 DUP('?')
ENDS
CODE SEGMENT
ASSUME CS:CODE, DS:DATA
START:
MOV AX, DATA
MOV DS, AX
MOV AX, 2A49H
MOV SI, 0
MOV CL, 4
LOOP1: MOV BX, 000FH
... | 15 | 29 | 0.419512 |
bc3c2046db6c4042fe903047c1f446e2038f929d | 6,912 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2561.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2561.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2561.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 %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x565d, %rdi
cmp %r15, %r15
mov (%rdi), %r9d
nop
nop
nop
nop
cmp %r13, %r13
lea addresses_A_ht+0x1b0b9, %r13
dec %r8
mov $0x6162636465666768, %r11
movq %r11, %xmm3
vmo... | 36.188482 | 2,999 | 0.656539 |
825434472e32d0411ca6031e74eff5bfabae71bc | 2,483 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_st_4k_sm_/i7-7700_9_0x48.log_15_1168.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_st_4k_sm_/i7-7700_9_0x48.log_15_1168.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_st_4k_sm_/i7-7700_9_0x48.log_15_1168.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r15
push %r8
push %r9
push %rcx
push %rsi
// Store
mov $0xb59, %r11
nop
nop
nop
sub %r12, %r12
mov $0x5152535455565758, %r9
movq %r9, (%r11)
nop
nop
sub %r9, %r9
// Store
lea addresses_WC+0x7359, %r8
x... | 19.248062 | 124 | 0.630689 |
69debd5740fe9fed9b3fb1d06008de75a7430bea | 854 | asm | Assembly | src/13/2.asm | darK-Zi0n-te4am-cr3vv/cg | ad9b7bd732fc73639ff54b611aa7eaac4560286c | [
"WTFPL"
] | 1 | 2017-08-07T10:44:00.000Z | 2017-08-07T10:44:00.000Z | src/13/2.asm | darK-Zi0n-te4am-cr3vv/cg | ad9b7bd732fc73639ff54b611aa7eaac4560286c | [
"WTFPL"
] | null | null | null | src/13/2.asm | darK-Zi0n-te4am-cr3vv/cg | ad9b7bd732fc73639ff54b611aa7eaac4560286c | [
"WTFPL"
] | null | null | null | .model small
.stack 128
; this is just sample
; has no dependencies on lib
; В видеоадаптере CGA (цветном) в в видеопамяти на фоне всех нулей в байт
; с адресом 2000h+A4h относительно начала видеопамяти записан код 9Ch.
; Определить, что отобразится на экране в этом случае, и обоснование этого
; определения представ... | 15.814815 | 74 | 0.704918 |
e15cfa3b427036740ecabc65240d307217a805b3 | 66 | asm | Assembly | src/main/fragment/mos6502-common/_deref_qvoc1=_deref_qvoc1_minus_vwuc2.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/_deref_qvoc1=_deref_qvoc1_minus_vwuc2.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/_deref_qvoc1=_deref_qvoc1_minus_vwuc2.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | sec
lda {c1}
sbc #<{c2}
sta {c1}
lda {c1}+1
sbc #>{c2}
sta {c1}+1
| 8.25 | 10 | 0.530303 |
8606b87700da63013aee37a4182798309f8386fa | 184 | asm | Assembly | mc-sema/validator/x86_64/tests/ADD8ri.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | 2 | 2021-08-07T16:21:29.000Z | 2021-11-17T10:58:37.000Z | mc-sema/validator/x86_64/tests/ADD8ri.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | mc-sema/validator/x86_64/tests/ADD8ri.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | BITS 64
;TEST_FILE_META_BEGIN
;TEST_TYPE=TEST_F
;TEST_IGNOREFLAGS=
;TEST_FILE_META_END
; ADD8ri
mov ah, 0x20
;TEST_BEGIN_RECORDING
add ah, 0x3
;TEST_END_RECORDING
| 15.333333 | 25 | 0.73913 |
f0d7f6b1b27228e3e43e9a7ac608f126bb5ac5b6 | 2,321 | asm | Assembly | 10-32bit-enter/32bit-main.asm | linxiaoyuan/little-os | f5d3c01864d21cafe4d0c43233cdddbded9b5912 | [
"BSD-3-Clause"
] | 1 | 2020-06-05T10:08:08.000Z | 2020-06-05T10:08:08.000Z | 10-32bit-enter/32bit-main.asm | linxiaoyuan/little-os | f5d3c01864d21cafe4d0c43233cdddbded9b5912 | [
"BSD-3-Clause"
] | null | null | null | 10-32bit-enter/32bit-main.asm | linxiaoyuan/little-os | f5d3c01864d21cafe4d0c43233cdddbded9b5912 | [
"BSD-3-Clause"
] | null | null | null | [org 0x7c00] ; bootloader offset
mov bp, 0x9000 ; set the stack
mov sp, bp
mov bx, MSG_REAL_MODE
call print ; This will be written after the BIOS messages
call switch_to_pm
jmp $ ; this will actually never be executed
%include "../05-bootsector-functions-strings/boot_sect_print.asm"
%include ... | 27.305882 | 80 | 0.680741 |
f69a8c274de8cfb73bf4b7eb797a78a8a065b15d | 917 | asm | Assembly | _build/dispatcher/jmp_ippsSub_BN_b126ef33.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | 1 | 2021-10-04T10:21:54.000Z | 2021-10-04T10:21:54.000Z | _build/dispatcher/jmp_ippsSub_BN_b126ef33.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | null | null | null | _build/dispatcher/jmp_ippsSub_BN_b126ef33.asm | zyktrcn/ippcp | b0bbe9bbb750a7cf4af5914dd8e6776a8d544466 | [
"Apache-2.0"
] | null | null | null | extern m7_ippsSub_BN:function
extern n8_ippsSub_BN:function
extern y8_ippsSub_BN:function
extern e9_ippsSub_BN:function
extern l9_ippsSub_BN:function
extern n0_ippsSub_BN:function
extern k0_ippsSub_BN:function
extern ippcpJumpIndexForMergedLibs
extern ippcpSafeInit:function
segment .data
align 8
dq .Lin_ippsSub_BN
.... | 23.512821 | 68 | 0.760087 |
a6c85f82efb58843ee277ed9770582113560e5b6 | 2,092 | asm | Assembly | programs/oeis/082/A082140.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/082/A082140.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/082/A082140.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A082140: A transform of binomial(n,6).
; 1,7,56,336,1680,7392,29568,109824,384384,1281280,4100096,12673024,38019072,111132672,317521920,889061376,2444918784,6615662592,17641766912,46425702400,120706826240,310388981760,790081044480,1992378286080,4980945715200,12352745373696,30406757842944,74327630282752,18050995925811... | 149.428571 | 1,952 | 0.927342 |
1aef55d22c274d6492d876b3d18e0ffe645ff11d | 351 | asm | Assembly | programs/oeis/047/A047324.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/047/A047324.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/047/A047324.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A047324: Numbers that are congruent to {0, 2, 5, 6} mod 7.
; 0,2,5,6,7,9,12,13,14,16,19,20,21,23,26,27,28,30,33,34,35,37,40,41,42,44,47,48,49,51,54,55,56,58,61,62,63,65,68,69,70,72,75,76,77,79,82,83,84,86,89,90,91,93,96,97,98,100,103,104,105,107,110,111
mul $0,7
add $0,5
mov $1,$0
div $1,2
sub $0,$1
div $0,2
mod $1,... | 25.071429 | 194 | 0.623932 |
6b9ee23626b8c6c1ea98f242a8e94a67ad486c67 | 421 | asm | Assembly | oeis/090/A090971.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/090/A090971.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/090/A090971.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A090971: Sierpiński's triangle, read by rows, starting from 1: T(n,k) = (T(n-1,k) + T(n-1,k-1)) mod 2.
; Submitted by Christian Krause
; 1,0,1,1,1,1,0,0,0,1,1,0,0,1,1,0,1,0,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1... | 30.071429 | 201 | 0.553444 |
66261e5229440740d322579095650ef06ee350e6 | 2,164 | asm | Assembly | EEL7030/Rep CAEE/Mic 8085/INT_EX2.asm | GSimas/MicroC | ac9ef54bbeed027db532885407cc3e783fcb28eb | [
"MIT"
] | null | null | null | EEL7030/Rep CAEE/Mic 8085/INT_EX2.asm | GSimas/MicroC | ac9ef54bbeed027db532885407cc3e783fcb28eb | [
"MIT"
] | null | null | null | EEL7030/Rep CAEE/Mic 8085/INT_EX2.asm | GSimas/MicroC | ac9ef54bbeed027db532885407cc3e783fcb28eb | [
"MIT"
] | null | null | null | ;DISCIPLINA: MICROPROCESSADORES INT_EX2
;PROFESSOR: HARI
; Fazer um programa para rodar em loop e:
; 1) ler um numero decimal de dois digitos no teclado
; e guardar o mesmo em uma posicao de memoria imediatamente
;... | 21.858586 | 86 | 0.523105 |
744f577e3b28a6d1216609105929f628153f3aa3 | 22,658 | asm | Assembly | I2C_SW_Slave_lib/I2C_SW_Slave_release_0/asm/src/i2c_slave_sw.asm | CmdrZin/chip_avr_asm_lib | e4f31d871091e2a1d578a2e44f469763172898ec | [
"MIT"
] | 3 | 2015-04-15T14:58:12.000Z | 2020-08-03T19:24:45.000Z | I2C_SW_Slave_lib/I2C_SW_Slave_release_0/asm/src/i2c_slave_sw.asm | CmdrZin/chip_avr_asm_lib | e4f31d871091e2a1d578a2e44f469763172898ec | [
"MIT"
] | null | null | null | I2C_SW_Slave_lib/I2C_SW_Slave_release_0/asm/src/i2c_slave_sw.asm | CmdrZin/chip_avr_asm_lib | e4f31d871091e2a1d578a2e44f469763172898ec | [
"MIT"
] | null | null | null | /*
* I2C Software Slave Interface
*
* org: 03/25/2015
* rev: 03/29/2015
* auth: Nels "Chip" Pearson
*
* This is a software I2C Slave interface using pin change interrupts.
* NOTE: NO other interrupts can be used due to tight timing requirements.
* Use POLLING of intr flags instead.
*
* This implementation ... | 23.850526 | 106 | 0.729941 |
40cdbd87401ba24ee92106f9d73c6b4196fd1e5e | 640 | asm | Assembly | oeis/085/A085441.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/085/A085441.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/085/A085441.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A085441: a(n) = Sum_{i=1..n} binomial(i+1,2)^6.
; 1,730,47386,1047386,12438011,98204132,580094436,2756876772,11060642397,38741283022,121395233038,346594833742,914464085783,2254559726408,5240543726408,11568062614344,24395756421273,49397866465794,96443747465794,182209868465794,334149783550675,596404391103404,1038437187... | 45.714286 | 490 | 0.826563 |
99d34342a2b6276c7ce82671730a15ecac4ff1b2 | 625 | asm | Assembly | oeis/287/A287454.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/287/A287454.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/287/A287454.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A287454: Positions of 2 in A287451.
; Submitted by Christian Krause
; 3,4,8,11,15,16,19,23,27,28,32,36,39,40,44,47,51,52,56,60,61,64,68,72,75,76,80,83,87,88,91,95,99,102,103,107,111,112,116,119,123,124,127,131,135,136,140,144,147,148,152,155,159,160,163,167,171,174,175,179,182,186,187,191,195,196,199,203,207,210,211,... | 62.5 | 365 | 0.704 |
bdb773b11341d39d93fef74292abbd51ea7a5617 | 681 | asm | Assembly | oeis/087/A087432.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/087/A087432.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/087/A087432.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A087432: Expansion of 1+x*(1-x-4*x^2)/((1+x)*(1-2*x)*(1-3*x)).
; Submitted by Jamie Morken(s1.)
; 1,1,3,7,19,51,143,407,1179,3451,10183,30207,89939,268451,802623,2402407,7196299,21567051,64657463,193885007,581480259,1744091251,5231574703,15693326007,47077181819,141225953051,423666674343,1270977653407,3812888220979,11... | 45.4 | 487 | 0.806167 |
5ca41d64d75f38f0e072c8df657c24ff1b2bbf86 | 7,554 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1193.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_0xca_notsx.log_21829_1193.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_0xca_notsx.log_21829_1193.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 %r14
push %r15
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xd1b7, %rsi
lea addresses_normal_ht+0x18eb7, %rdi
nop
cmp %r10, %r10
mov $107, %rcx
rep movsl
nop
nop
add $12851, %rbp
lea addresses_WT_ht+0x1b3e7, %r9
nop
nop
nop
nop
nop
add ... | 33.874439 | 2,999 | 0.658856 |
f72fa1c140746cabafce0127554f708c20f915e6 | 6,224 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_2269_1777.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_2269_1777.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_2269_1777.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 %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x147ff, %rsi
lea addresses_UC_ht+0x1877f, %rdi
nop
nop
nop
nop
inc %rax
mov $103, %rcx
rep movsl
nop
cmp $50148, %r11
lea addresses_normal_ht+0x13bef, %rbp
xor $5145, %r13
mov... | 38.184049 | 2,999 | 0.661793 |
0a3e0226c0a87643461bc2bc7ad0e43a08700eb8 | 698 | asm | Assembly | oeis/143/A143100.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/143/A143100.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/143/A143100.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A143100: A007318 * A143098.
; Submitted by Christian Krause
; 1,3,4,6,13,30,64,129,256,510,1021,2046,4096,8193,16384,32766,65533,131070,262144,524289,1048576,2097150,4194301,8388606,16777216,33554433,67108864,134217726,268435453,536870910,1073741824,2147483649,4294967296,8589934590,17179869181,34359738366,68719476736... | 63.454545 | 497 | 0.815186 |
f9e4519273eebf70efe28ad9062f78cdb4ef6a38 | 510 | asm | Assembly | programs/oeis/294/A294062.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/294/A294062.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/294/A294062.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A294062: Sum of the differences of the larger and smaller parts in the partitions of 2n into two parts with the smaller part squarefree.
; 0,2,6,12,18,26,36,48,60,72,86,102,118,136,156,178,200,224,248,274,300,328,358,390,422,454,488,522,556,592,630,670,710,752,796,842,888,936,986,1038,1090,1144,1200,1258,1316,1374,14... | 34 | 208 | 0.698039 |
3bd1ba5cdbcdb4bdb2ed95ff95779e9c49496eae | 1,078 | asm | Assembly | programs/oeis/187/A187012.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/187/A187012.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/187/A187012.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A187012: Antidiagonal sums of A103516.
; 1,2,5,4,8,6,11,8,14,10,17,12,20,14,23,16,26,18,29,20,32,22,35,24,38,26,41,28,44,30,47,32,50,34,53,36,56,38,59,40,62,42,65,44,68,46,71,48,74,50,77,52,80,54,83,56,86,58,89,60,92,62,95,64,98,66,101,68,104,70,107,72,110,74,113,76,116,78,119,80,122,82,125,84,128,86,131,88,134,90,13... | 67.375 | 912 | 0.69666 |
edb47a6c5d145c1b30c7913f6a241ec6a33f70e4 | 5,916 | asm | Assembly | src/music.asm | tewtal/lttphack | 1653fbae6de1181de356f36eb013bd6ecf8136a2 | [
"MIT"
] | 28 | 2016-02-19T04:33:56.000Z | 2022-02-25T05:30:58.000Z | src/music.asm | tewtal/lttphack | 1653fbae6de1181de356f36eb013bd6ecf8136a2 | [
"MIT"
] | 4 | 2017-08-01T18:20:49.000Z | 2019-07-28T13:39:01.000Z | src/music.asm | tewtal/lttphack | 1653fbae6de1181de356f36eb013bd6ecf8136a2 | [
"MIT"
] | 6 | 2016-10-05T10:27:31.000Z | 2019-07-19T14:14:29.000Z | pushpc
; Overworld music data
; Overwrites:
; LDA #$F5 : STA $00
; LDA #$9E : STA $01
; LDA #$1A : STA $02
org $008913
LDX #$00 : JSL music_setup_bank
NOP #6
; Underworld music data
; Overwrites:
; LDA #$00 : STA $00
; LDA #$80 : STA $01
; LDA #$1B
org $008925
LDX #$01 : JSL music_setup_bank
NOP #4
; Ending cre... | 18.900958 | 90 | 0.671569 |
fdf88a6687542816c4268f45b0d91533ba5d5f44 | 454 | asm | Assembly | oeis/344/A344461.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/344/A344461.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/344/A344461.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A344461: a(n) = Sum_{d|n} d^gcd(d,n/d).
; Submitted by Simon Strandgaard
; 1,3,4,9,6,12,8,29,37,18,12,60,14,24,24,341,18,273,20,134,32,36,24,236,3151,42,784,240,30,72,32,4645,48,54,48,48789,38,60,56,574,42,96,44,548,3462,72,48,21740,823593,103203,72,750,54,6888,72,1072,80,90,60,1160
add $0,1
mov $2,$0
lpb $0
mov $... | 21.619048 | 210 | 0.605727 |
88ecb729eaac98f77b60508b9f1c06c848b79010 | 6,204 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_14591_1676.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_14591_1676.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_14591_1676.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r15
push %r9
push %rax
push %rcx
push %rdi
lea addresses_WC_ht+0x580f, %r15
nop
sub $62228, %r11
movups (%r15), %xmm6
vpextrq $1, %xmm6, %rdi
nop
add $56252, %r15
lea addresses_normal_ht+0xabdf, %rax
nop
nop
sub $42740, %r9
movb (%rax), %r10b
add $6... | 37.6 | 2,999 | 0.649742 |
333099e5db5e2bd859207787a623260b443c226a | 798 | asm | Assembly | src/hook_deploy_ani_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | 17 | 2018-07-11T20:53:46.000Z | 2022-03-01T18:20:42.000Z | src/hook_deploy_ani_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | 24 | 2018-10-23T07:47:33.000Z | 2021-02-09T09:06:25.000Z | src/hook_deploy_ani_ninja.asm | szapp/Ninja | 7b018a5aa82bdb9f1eadea910ed1ff4711d4485a | [
"MIT"
] | null | null | null | ; Hook reading of animations in zCModelPrototype::ReadAniEnum (g1), zCModelPrototype::ReadAniEnumMSB (g2)
%include "inc/macros.inc"
%if GOTHIC_BASE_VERSION == 1
%include "inc/symbols_g1.inc"
%elif GOTHIC_BASE_VERSION == 2
%include "inc/symbols_g2.inc"
%endif
%ifidn __OUTPUT_FORMAT__, bin
org g1g2(0x5... | 25.741935 | 105 | 0.600251 |
5c34d3d900c1a2c30d107dcea16bad5369ce6776 | 1,908 | asm | Assembly | Kernel/kspace/asm/interrupts.asm | Eduardo-Fittipaldi/ArquiOSITBA | fb6808440451c027b34c183c571b15e7bd5eb371 | [
"BSD-3-Clause"
] | null | null | null | Kernel/kspace/asm/interrupts.asm | Eduardo-Fittipaldi/ArquiOSITBA | fb6808440451c027b34c183c571b15e7bd5eb371 | [
"BSD-3-Clause"
] | null | null | null | Kernel/kspace/asm/interrupts.asm | Eduardo-Fittipaldi/ArquiOSITBA | fb6808440451c027b34c183c571b15e7bd5eb371 | [
"BSD-3-Clause"
] | null | null | null | ;
; interrups.asm
;
; Created on: Apr 18, 2010
; Author: anizzomc
;
GLOBAL _cli
GLOBAL _sti
GLOBAL picMasterMask
GLOBAL picSlaveMask
GLOBAL haltcpu
GLOBAL _irq00Handler
GLOBAL _irq01Handler
GLOBAL _irq02Handler
GLOBAL _irq03Handler
GLOBAL _irq04Handler
GLOBAL _irq05Handler
GLOBAL _int80Handler
EXTERN irqDispat... | 11.777778 | 71 | 0.714885 |
9bb7d3aefb9cd4d9dcda75643235ba0823a08038 | 5,724 | asm | Assembly | year-2/Programming-languages/assignment-2-dictionary/lib.asm | Zubrailx/university | 8920779d6fdb6f5bb1c8abb26e182401728344c9 | [
"MIT"
] | 3 | 2021-10-13T05:01:37.000Z | 2022-01-21T15:25:47.000Z | Year-2/Programming-languages/assignment-2-dictionary/lib.asm | zubrailx/university | 9c746ab6cfa95ecd6ff02eb23e1f49c93337ec61 | [
"MIT"
] | null | null | null | Year-2/Programming-languages/assignment-2-dictionary/lib.asm | zubrailx/university | 9c746ab6cfa95ecd6ff02eb23e1f49c93337ec61 | [
"MIT"
] | null | null | null | global exit
global string_length
global print_string
global print_char
global print_newline
global print_uint
global print_int
global read_char
global read_word
global parse_uint
global parse_int
global string_equals
global string_copy
section .text
; Params:
; -
; Out:
; !exit
exit:
mov rax, 60
mov rdi,... | 18.28754 | 74 | 0.578267 |
b83b202dc99eba5639f2206b426599231269156d | 440 | asm | Assembly | oeis/099/A099623.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/099/A099623.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/099/A099623.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A099623: Sum C(n-k,k+2)2^(n-k-2)(3/2)^k, k=0..floor(n/2).
; Submitted by Jon Maiga
; 0,0,1,6,27,104,369,1242,4039,12828,40077,123758,379011,1153872,3498025,10572354,31884543,96010436,288788613,867967830,2607282235,7828953720,23501774241,70536546986,211674885687,635160738924,1905765565309
lpb $0
sub $0,1
add $4,$... | 23.157895 | 205 | 0.668182 |
2e7181a001b1abe99bb3e9a61396b92e34f21a29 | 588 | asm | Assembly | programs/oeis/186/A186438.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/186/A186438.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/186/A186438.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A186438: Positive numbers whose squares end in two identical digits.
; 10,12,20,30,38,40,50,60,62,70,80,88,90,100,110,112,120,130,138,140,150,160,162,170,180,188,190,200,210,212,220,230,238,240,250,260,262,270,280,288,290,300,310,312,320,330,338,340,350,360,362,370,380,388,390,400,410,412
mov $29,$0
add $29,1
lpb $2... | 22.615385 | 220 | 0.613946 |
6f279c11e5168b8a565ddfc5ff0f01d21983afb4 | 702 | asm | Assembly | programs/oeis/048/A048513.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/048/A048513.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/048/A048513.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A048513: a(n) = T(8,n), array T given by A048505.
; 1,82,263,665,1553,3505,7777,17089,37313,81089,175553,378817,815041,1748929,3743681,7995329,17039297,36241345,76939201,163053505,344981441,728760257,1537212353,3238002625,6811549633,14310965185,30031216577,62948114369,131801808833,275683213249,576062488513,1202590842... | 29.25 | 458 | 0.777778 |
f5e75dc1e0bb948a2ed88b9cee6c6385720f0487 | 368 | asm | Assembly | libsrc/_DEVELOPMENT/target/sms/driver/terminal/sms_01_output_terminal_tty_z88dk/sms_01_output_terminal_tty_z88dk_12_cls.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/target/sms/driver/terminal/sms_01_output_terminal_tty_z88dk/sms_01_output_terminal_tty_z88dk_12_cls.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/target/sms/driver/terminal/sms_01_output_terminal_tty_z88dk/sms_01_output_terminal_tty_z88dk_12_cls.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z |
SECTION code_driver
SECTION code_driver_terminal_output
PUBLIC sms_01_output_terminal_tty_z88dk_12_cls
EXTERN sms_01_output_terminal_oterm_msg_cls
EXTERN sms_01_output_terminal_tty_z88dk_11_home
sms_01_output_terminal_tty_z88dk_12_cls:
; clear screen
call sms_01_output_terminal_oterm_msg_cls
ld (ix+20),0... | 21.647059 | 47 | 0.880435 |
63cbca34c47e068466200c9635f75ae6e3b0e654 | 7,969 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1188.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1188.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1188.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 %r14
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x1c146, %rsi
lea addresses_UC_ht+0xa0b2, %rdi
sub $44667, %r10
mov $27, %rcx
rep movsb
nop
nop
nop
nop
and %r11, %r11
lea addresses_WT_ht+0x57ab, %r14
nop
inc %r10
movups (%r... | 34.951754 | 2,999 | 0.656795 |
f958eea5deeeeca6b2ba3024ae8c745c7eb85135 | 499 | asm | Assembly | oeis/033/A033128.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/033/A033128.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/033/A033128.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A033128: Decimal expansion of a(n) is given by the first n terms of the periodic sequence with initial period 1,0,1.
; 1,10,101,1011,10110,101101,1011011,10110110,101101101,1011011011,10110110110,101101101101,1011011011011,10110110110110,101101101101101,1011011011011011,10110110110110110,101101101101101101,1011011011... | 83.166667 | 231 | 0.817635 |
6f145aff22a228bec30e4595a138f7aef0cc5d8a | 2,211 | asm | Assembly | maps/SproutTower2F.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 28 | 2019-11-08T07:19:00.000Z | 2021-12-20T10:17:54.000Z | maps/SproutTower2F.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 13 | 2020-01-11T17:00:40.000Z | 2021-09-14T01:27:38.000Z | maps/SproutTower2F.asm | Dev727/ancientplatinum | 8b212a1728cc32a95743e1538b9eaa0827d013a7 | [
"blessing"
] | 22 | 2020-05-28T17:31:38.000Z | 2022-03-07T20:49:35.000Z | object_const_def ; object_event constants
const SPROUTTOWER2F_SAGE1
const SPROUTTOWER2F_SAGE2
const SPROUTTOWER2F_POKE_BALL
SproutTower2F_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
TrainerSageNico:
trainer SAGE, NICO, EVENT_BEAT_SAGE_NICO, SageNicoSeenText, SageNicoBeatenText, 0, .Script
.Script:
end... | 21.466019 | 158 | 0.773406 |
e9111f0ed0d57e2b07c7194eec15468ceb860d5f | 182 | asm | Assembly | mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/ploadf.asm | gb-archive/really-old-stuff | ffb39a518cad47e23353b3420b88e2f3521fd3d7 | [
"Apache-2.0"
] | 10 | 2016-10-27T20:46:02.000Z | 2021-11-01T15:49:13.000Z | mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/ploadf.asm | gb-archive/really-old-stuff | ffb39a518cad47e23353b3420b88e2f3521fd3d7 | [
"Apache-2.0"
] | null | null | null | mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/ploadf.asm | gb-archive/really-old-stuff | ffb39a518cad47e23353b3420b88e2f3521fd3d7 | [
"Apache-2.0"
] | 2 | 2015-03-11T14:28:08.000Z | 2017-11-02T10:57:57.000Z | ; Parameter / Local var load
; A => Offset
; IX = Stack Frame
; RESULT: HL => IX + DE
#include once <iloadf.asm>
__PLOADF:
push ix
pop hl
add hl, de
jp __LOADF
| 13 | 28 | 0.587912 |
82846a5863fb1f493080ebb97f901095153e337a | 6,958 | asm | Assembly | kernel/start.asm | fjames86/flisp | 52b4b37bd1257ffe6b9c5c67e2d46d6092528f01 | [
"MIT"
] | 11 | 2017-02-14T12:33:04.000Z | 2022-03-23T19:56:44.000Z | kernel/start.asm | fjames86/flisp | 52b4b37bd1257ffe6b9c5c67e2d46d6092528f01 | [
"MIT"
] | null | null | null | kernel/start.asm | fjames86/flisp | 52b4b37bd1257ffe6b9c5c67e2d46d6092528f01 | [
"MIT"
] | 2 | 2018-01-14T07:53:36.000Z | 2020-10-29T14:34:01.000Z |
;;; kernel entry point
[BITS 32]
global _start
global start
_start:
start:
mov esp, _sys_stack ; This points the stack to our new stack area
jmp stublet
;;; This part MUST be 4byte aligned, so we tell the assembler this
ALIGN 4
mboot:
;; multiboot macros to make a few lines later more readable
MULTIB... | 14.287474 | 83 | 0.691434 |
85d3666f96f30ca869ee7ec70f518db77d348a79 | 24,830 | asm | Assembly | masm/lesson16/Lesson16-MASM/Lesson16.asm | neozhou2009/nehe-opengl | 9f073e5b092ad8dbcb21393871a2855fe86a65c6 | [
"MIT"
] | 177 | 2017-12-31T04:44:27.000Z | 2022-03-23T10:08:03.000Z | masm/lesson16/Lesson16-MASM/Lesson16.asm | neozhou2009/nehe-opengl | 9f073e5b092ad8dbcb21393871a2855fe86a65c6 | [
"MIT"
] | 2 | 2018-06-28T20:28:33.000Z | 2018-09-09T17:34:44.000Z | masm/lesson16/Lesson16-MASM/Lesson16.asm | neozhou2009/nehe-opengl | 9f073e5b092ad8dbcb21393871a2855fe86a65c6 | [
"MIT"
] | 72 | 2018-01-07T16:41:29.000Z | 2022-03-18T17:57:38.000Z | ; Attempt at NeHe's tutorial 16 : Fog.
;
; Author: Greg Helps [x86@ozducati.com]
; Date: July 10 2003
;
; With thanks to NeHe for the OpenGL tutorials <http://nehe.gamedev.net/>
; Inspiration for x86 Assembler from Nico <scalp@bigfoot.com>
; OpenGL x86 includes originally from hardcode <http://bizarrecreations.webjump.... | 31.154329 | 117 | 0.590858 |
136d7d8679a5967cb79615ff4206a09b894133b5 | 490 | asm | Assembly | programs/oeis/142/A142584.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/142/A142584.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/142/A142584.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A142584: a(n) = A014217(n+1) - A115360(n+2).
; 2,4,6,10,18,28,46,76,122,198,322,520,842,1364,2206,3570,5778,9348,15126,24476,39602,64078,103682,167760,271442,439204,710646,1149850,1860498,3010348,4870846,7881196,12752042,20633238,33385282,54018520,87403802,141422324,228826126
add $0,1
mov $3,3
mov $4,1
lpb $0,1
su... | 18.846154 | 231 | 0.667347 |
0f87c5920c25b717b4da18043323254bde0cacb2 | 1,409 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_43_475.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_43_475.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_43_475.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 %rax
push %rbp
push %rdi
lea addresses_WC_ht+0x1c0f2, %rbp
nop
nop
nop
inc %rax
movl $0x61626364, (%rbp)
nop
sub $15778, %r13
pop %rdi
pop %rbp
pop %rax
pop %r13
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r15
push %r9
push %rbp
pus... | 19.040541 | 128 | 0.644429 |
0fe0daf612ed4912296a23b24b0d7e16488a1dc3 | 294 | asm | Assembly | oeis/053/A053399.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/053/A053399.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/053/A053399.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A053399: A053398(3, n).
; 0,2,0,2,0,3,0,3,0,2,0,2,0,4,0,4,0,2,0,2,0,3,0,3,0,2,0,2,0,5,0,5,0,2,0,2,0,3,0,3,0,2,0,2,0,4,0,4,0,2,0,2,0,3,0,3,0,2,0,2,0,6,0,6,0,2,0,2,0,3,0,3,0,2,0,2,0,4,0,4,0,2,0,2,0,3,0,3,0,2,0,2,0,5,0,5,0,2,0,2
mov $2,$0
seq $0,53384 ; a(n) = A053398(4,n).
mod $2,2
mul $0,$2
| 36.75 | 201 | 0.513605 |
c3893ca16a4e9497c0be7b32feacedd0fa65aa53 | 3,976 | asm | Assembly | _maps/obj66.asm | vladjester2020/Sonic1TMR | 22e749a2aab74cc725729e476d6252b071c12e42 | [
"Apache-2.0"
] | null | null | null | _maps/obj66.asm | vladjester2020/Sonic1TMR | 22e749a2aab74cc725729e476d6252b071c12e42 | [
"Apache-2.0"
] | 2 | 2019-06-13T14:26:59.000Z | 2019-10-10T13:15:14.000Z | _maps/obj66.asm | vladjester2020/Sonic1TMR | 22e749a2aab74cc725729e476d6252b071c12e42 | [
"Apache-2.0"
] | null | null | null | ; ---------------------------------------------------------------------------
; Sprite mappings - rotating disc that grabs Sonic (SBZ)
; ---------------------------------------------------------------------------
dc.w byte_152B4-Map_obj66, byte_152D3-Map_obj66
dc.w byte_152F2-Map_obj66, byte_15311-Map_obj66
... | 28.811594 | 78 | 0.442404 |
9ec584305931a9dd41dba091406eacf2be47c54e | 11,244 | asm | Assembly | 45/qb5/uq/uiutil.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/qb5/uq/uiutil.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/qb5/uq/uiutil.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | TITLE uiutil.asm - low level utilities for SHELL
;***
;uiutil.asm
;
; Copyright <C> 1985-1988, Microsoft Corporation
;
;Purpose:
; Support routines needed by user-interface.
;
;
;*******************************************************************************
.xlist
include version.inc
.list
include cw/version.i... | 17.847619 | 80 | 0.649858 |
6bf046a81aebc509f690750078ac25f38f6ba6f0 | 9,851 | asm | Assembly | libsrc/oz/ozgfx/ozputs_direct.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/oz/ozgfx/ozputs_direct.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/oz/ozgfx/ozputs_direct.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ;
; Sharp OZ family functions
;
; ported from the OZ-7xx SDK by by Alexander R. Pruss
; by Stefano Bodrato - Oct. 2003
;
;
; gfx functions
;
; int ozputs(int x, int y, char *string);;
;
; ------
; $Id: ozputs_direct.asm,v 1.3 2016-06-28 14:48:17 dom Exp $
;
SECTION smc_clib
PUBLIC ozputs
PUBLIC _ozputs
PUBLIC ozpu... | 19.981744 | 76 | 0.470917 |
99219e9529208589c20beda01c953046bea59f3c | 45 | asm | Assembly | okk/lab1/lab1_emu.asm | smithros/kpi-stuff | 60da5f960ab6ab3d1c2b0ea451d4d113c333d7ad | [
"MIT"
] | 21 | 2021-01-20T19:49:31.000Z | 2021-12-15T20:26:18.000Z | okk/lab1/lab1_emu.asm | smithros/kpi-stuff | 60da5f960ab6ab3d1c2b0ea451d4d113c333d7ad | [
"MIT"
] | 1 | 2021-03-13T17:24:41.000Z | 2021-05-28T18:33:49.000Z | okk/lab1/lab1_emu.asm | smithros/kpi-stuff | 60da5f960ab6ab3d1c2b0ea451d4d113c333d7ad | [
"MIT"
] | 3 | 2021-02-16T17:41:16.000Z | 2022-03-25T13:18:04.000Z | MOV AL, 5 ; AL = 5
ADD AL, -3 ; AL = 2
RET | 15 | 20 | 0.466667 |
b00ab6dd80f6fbef728eed3828392fcab9b744d1 | 568 | asm | Assembly | oeis/005/A005586.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/005/A005586.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/005/A005586.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A005586: a(n) = n(n+4)(n+5)/6.
; 0,5,14,28,48,75,110,154,208,273,350,440,544,663,798,950,1120,1309,1518,1748,2000,2275,2574,2898,3248,3625,4030,4464,4928,5423,5950,6510,7104,7733,8398,9100,9840,10619,11438,12298,13200,14145,15134,16168,17248,18375,19550,20774,22048,23373,24750,26180,27664,29203,30798,32450,34160,3592... | 71 | 495 | 0.771127 |
fb1b70b7e9679350f9a8dde9e64eaca366e71b7a | 636 | asm | Assembly | Index-Adress-Mode-Example.asm | utkudarilmaz/x86-Examples | 3c10508481a76081fafaed64a0861d1dc2ade659 | [
"MIT"
] | 1 | 2021-04-02T07:50:07.000Z | 2021-04-02T07:50:07.000Z | Index-Adress-Mode-Example.asm | utkudarilmaz/x86-Examples | 3c10508481a76081fafaed64a0861d1dc2ade659 | [
"MIT"
] | null | null | null | Index-Adress-Mode-Example.asm | utkudarilmaz/x86-Examples | 3c10508481a76081fafaed64a0861d1dc2ade659 | [
"MIT"
] | null | null | null | ; Verilen veri setindeki 2. indisteki sayiyi hedef adrese kopyalanmasi
data segment
tablo DB 10,20,30,40,50
veri DB ?
ends
stack segment
dw 128 dup(0)
ends
code segment
start:
; set segment registers:
mov ax, data
mov ds, ax
mov si,2
mov bl,tablo[si] ; tablo... | 21.2 | 75 | 0.581761 |
78ba7a29a9f1a3e630486d1664bb18cdef1df110 | 1,297 | asm | Assembly | external/libprof/src/hooks_x64.asm | JoJo2nd/Heart | 4b50dfa6cbf87d32768f6c01b578bc1b23c18591 | [
"BSD-3-Clause"
] | 1 | 2016-05-14T09:22:26.000Z | 2016-05-14T09:22:26.000Z | external/libprof/src/hooks_x64.asm | JoJo2nd/Heart | 4b50dfa6cbf87d32768f6c01b578bc1b23c18591 | [
"BSD-3-Clause"
] | null | null | null | external/libprof/src/hooks_x64.asm | JoJo2nd/Heart | 4b50dfa6cbf87d32768f6c01b578bc1b23c18591 | [
"BSD-3-Clause"
] | null | null | null | .code
;RCX, RDX, R8, R9 are used for integer and pointer arguments in that order left to right.
;extrn ?track@calls_collector@micro_profiler@@QEAAXAEBUcall_record@2@@Z:near
;extrn ?_instance@calls_collector@micro_profiler@@0V12@A:qword
extrn lpf_penter:near
extrn lpf_pexit:near
PUSHREGS macro ; slides stack pointe... | 20.265625 | 89 | 0.753277 |
4c2ce215861008bc1ec2bdddda162158963c81c3 | 5,073 | asm | Assembly | Lab2/Preliminary_Work/preLIMver2.asm | zeynepCankara/Computer_Organization_Labs | 30f5a72996af89e13c027da0957194a35fca9f4f | [
"MIT"
] | 3 | 2020-02-29T10:15:36.000Z | 2021-12-22T23:43:50.000Z | Lab2/Preliminary_Work/preLIMver2.asm | zeynepCankara/Computer_Organization_Labs | 30f5a72996af89e13c027da0957194a35fca9f4f | [
"MIT"
] | null | null | null | Lab2/Preliminary_Work/preLIMver2.asm | zeynepCankara/Computer_Organization_Labs | 30f5a72996af89e13c027da0957194a35fca9f4f | [
"MIT"
] | 7 | 2020-05-12T07:49:19.000Z | 2022-01-17T14:24:01.000Z | # Zeynep Cankara -- 04/03/2019
# Course: CS223
# Section: 02
# Lab: 02
# preLIMver2.asm -- Performs number conversions
#************************
# *
# text segment *
# *
#************************
.globl __start
.text
__start:
# Print an intro message
li $v0, 4
la $a0, intro
syscall
# Function call... | 23.486111 | 80 | 0.624285 |
407d1ab66573c9dad41c10a864787ce5a53303d3 | 2,037 | asm | Assembly | game1/ui_term.asm | w84death/arm-assembly | 6208bd02fa6843b698b646eaf018f13ccb13934c | [
"MIT"
] | 3 | 2018-01-26T12:06:36.000Z | 2020-12-08T14:41:18.000Z | game1/ui_term.asm | w84death/arm-assembly | 6208bd02fa6843b698b646eaf018f13ccb13934c | [
"MIT"
] | null | null | null | game1/ui_term.asm | w84death/arm-assembly | 6208bd02fa6843b698b646eaf018f13ccb13934c | [
"MIT"
] | null | null | null | @ ---------------------------------------------------
@
@ Raspberry Pi Assembly GAME#1 by KJ/P1X
@
@ http://p1x.in | http://krzysztofjankowski.com
@ https://github.com/w84death/arm-assembly
@
@ ---------------------------------------------------
.arm
.include "globals.asm"
.data
clear_screen:
.ascii "\033c" ... | 16.427419 | 53 | 0.524791 |
a77434c105ea9cefbde8de6e59653d213bd3de8a | 539 | asm | Assembly | programs/oeis/305/A305068.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/305/A305068.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/305/A305068.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A305068: a(n) = 54*n - 18 (n>=1).
; 36,90,144,198,252,306,360,414,468,522,576,630,684,738,792,846,900,954,1008,1062,1116,1170,1224,1278,1332,1386,1440,1494,1548,1602,1656,1710,1764,1818,1872,1926,1980,2034,2088,2142,2196,2250,2304,2358,2412,2466,2520,2574,2628,2682,2736,2790,2844,2898,2952,3006,3060,3114,3168,3222,32... | 89.833333 | 481 | 0.756957 |
2b8a81c2ae37a774b2bff2f0b3851a101be73e3c | 595 | asm | Assembly | programs/oeis/062/A062068.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/062/A062068.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/062/A062068.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A062068: a(n) = d(sigma(n)), where d(k) is the number of divisors function (A000005) and sigma(k) is the sum of divisor function (A000203).
; 1,2,3,2,4,6,4,4,2,6,6,6,4,8,8,2,6,4,6,8,6,9,8,12,2,8,8,8,8,12,6,6,10,8,10,4,4,12,8,12,8,12,6,12,8,12,10,6,4,4,12,6,8,16,12,16,10,12,12,16,4,12,8,2,12,15,6,12,12,15,12,8,4,8,6,1... | 85 | 245 | 0.631933 |
4ef36eb3d41c28c9afc563370b8ef401a991ff3f | 11,384 | asm | Assembly | 45/runtime/rt/cninit.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/runtime/rt/cninit.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/runtime/rt/cninit.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null |
TITLE CNINIT.ASM - Console I/O Initialization/Termination module
;***
;CNINIT.ASM - Console I/O initialization/termination module
;
; Copyright <C> 1986, Microsoft Corporation
;
;Purpose:
; This module contains screen and keyboard initialization and termination
; support for the BASIC 3.0 runtime. This module will o... | 23.472165 | 79 | 0.719694 |
fa67e54d9ff693ee6433e69d9b964a2c0c31f180 | 2,109 | asm | Assembly | kernel/support/debug.asm | paulscottrobson/color-mz-system | 57b2dcb2221c05d9befb4c8fc3343f00f66a33ec | [
"MIT"
] | null | null | null | kernel/support/debug.asm | paulscottrobson/color-mz-system | 57b2dcb2221c05d9befb4c8fc3343f00f66a33ec | [
"MIT"
] | null | null | null | kernel/support/debug.asm | paulscottrobson/color-mz-system | 57b2dcb2221c05d9befb4c8fc3343f00f66a33ec | [
"MIT"
] | null | null | null | ; *********************************************************************************
; *********************************************************************************
;
; File: debug.asm
; Purpose: Debug routines
; Date : 15th November 2018
; Author: paul@robsons.org.uk
;
; ************************************... | 22.43617 | 83 | 0.484116 |
a3bcf87993692aa4c6c83d89c221ce9b24a218f8 | 40,589 | asm | Assembly | Opus/asm/rtfinn.asm | Computer-history-Museum/MS-Word-for-Windows-v1.1 | 549a2a32e930694df7b91e3273b886d735fa9151 | [
"MIT"
] | 2 | 2018-01-22T14:38:52.000Z | 2019-02-25T02:16:30.000Z | Microsoft DOS/Word 1.1a CHM Distribution/Opus/asm/rtfinn.asm | mindcont/Open-Source | 416917cbe3d4469cc036d05e7c858b05b8081ded | [
"CC0-1.0"
] | null | null | null | Microsoft DOS/Word 1.1a CHM Distribution/Opus/asm/rtfinn.asm | mindcont/Open-Source | 416917cbe3d4469cc036d05e7c858b05b8081ded | [
"CC0-1.0"
] | 1 | 2021-06-25T17:34:43.000Z | 2021-06-25T17:34:43.000Z | include w2.inc
include noxport.inc
include consts.inc
include structs.inc
createSeg rtfin_PCODE,rtfinn,byte,public,CODE
; DEBUGGING DECLARATIONS
ifdef DEBUG
midRtfinn equ 28 ; module ID, for native asserts
endif
; EXTERNAL FUNCTIONS
externFP <FStackRtfState>
externFP <N_FcAppendRg... | 20.987073 | 74 | 0.596295 |
1b9bf6050a899b04af5fb2601f421b6669a59951 | 5,408 | asm | Assembly | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_936.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_936.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_936.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 %r14
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x10ade, %rcx
nop
nop
nop
lfence
mov $0x6162636465666768, %rsi
movq %rsi, %xmm1
vmovups %ymm1, (%rcx)
nop
nop
inc %rsi
lea addresses_normal_ht+0xb70e, %rax
nop
nop
nop
nop
nop
... | 41.282443 | 2,999 | 0.661058 |
121412abaf8638c3f107d4fb2798d2df2e2ffa8b | 7,164 | asm | Assembly | Transynther/x86/_processed/NC/_ht_zr_un_/i9-9900K_12_0xa0_notsx.log_21829_2007.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_/i9-9900K_12_0xa0_notsx.log_21829_2007.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_/i9-9900K_12_0xa0_notsx.log_21829_2007.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 %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x16333, %rsi
lea addresses_normal_ht+0x12133, %rdi
nop
nop
sub %rbx, %rbx
mov $6, %rcx
rep movsl
nop
nop
nop
nop
nop
sub %r13, %r13
lea addresses_UC_ht+0x15d33, %rsi
lea addr... | 34.608696 | 2,999 | 0.656058 |
61f2fd728c60abc31c72438aa34c1d8508e854ec | 541 | asm | Assembly | programs/oeis/157/A157435.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/157/A157435.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/157/A157435.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A157435: 64n + 632.
; 696,760,824,888,952,1016,1080,1144,1208,1272,1336,1400,1464,1528,1592,1656,1720,1784,1848,1912,1976,2040,2104,2168,2232,2296,2360,2424,2488,2552,2616,2680,2744,2808,2872,2936,3000,3064,3128,3192,3256,3320,3384,3448,3512,3576,3640,3704,3768,3832,3896,3960,4024,4088,4152,4216,4280,4344,4408,4472,4... | 90.166667 | 496 | 0.778189 |
0b25994e37ba8092bac1e64a2795c4b082a3cdda | 465 | asm | Assembly | programs/oeis/014/A014263.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/014/A014263.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/014/A014263.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A014263: Numbers that contain even digits only.
; 0,2,4,6,8,20,22,24,26,28,40,42,44,46,48,60,62,64,66,68,80,82,84,86,88,200,202,204,206,208,220,222,224,226,228,240,242,244,246,248,260,262,264,266,268,280,282,284,286,288,400,402,404,406,408,420,422,424,426,428,440,442,444,446,448,460,462,464,466,468,480,482,484,486,48... | 77.5 | 371 | 0.722581 |
402840e62f8bbfa5e84812bd4d7c0143db7374eb | 4,197 | asm | Assembly | apps/breakfast/pde_fw/toast/examples/Assembly (CCE)/msp430x24x_uscib0_i2c_04.asm | tp-freeforall/breakfast | 0399619cdb7a81b3c3cc4c5a1b7d69f5c32b8c65 | [
"BSD-3-Clause"
] | 1 | 2020-05-15T18:08:48.000Z | 2020-05-15T18:08:48.000Z | apps/breakfast/toast/msp430-code-examples/Assembly (CCE)/msp430x24x_uscib0_i2c_04.asm | tp-freeforall/breakfast | 0399619cdb7a81b3c3cc4c5a1b7d69f5c32b8c65 | [
"BSD-3-Clause"
] | null | null | null | apps/breakfast/toast/msp430-code-examples/Assembly (CCE)/msp430x24x_uscib0_i2c_04.asm | tp-freeforall/breakfast | 0399619cdb7a81b3c3cc4c5a1b7d69f5c32b8c65 | [
"BSD-3-Clause"
] | null | null | null | ;*******************************************************************************
; MSP430x24x Demo - USCI_B0 I2C Master RX single bytes from MSP430 Slave
;
; Description: This demo connects two MSP430's via the I2C bus. The master
; reads from the slave. This is the MASTER code. The data from the slave
; t... | 53.807692 | 81 | 0.388849 |
c752b972d02fa4c0bf4187f63447159cae96512b | 1,285 | asm | Assembly | tests/listing/sld/sld_disp.asm | fengjixuchui/sjasmplus | df0fabd2411bf89e23637fce46d273f52dafbe16 | [
"BSD-3-Clause"
] | 220 | 2016-10-22T19:44:39.000Z | 2022-03-29T20:57:04.000Z | tests/listing/sld/sld_disp.asm | ped7g/sjasmplus | 487635c8057cd5594c372d9b70bc00a3f3a1ecc4 | [
"BSD-3-Clause"
] | 153 | 2018-05-07T10:31:23.000Z | 2022-03-30T04:35:59.000Z | tests/listing/sld/sld_disp.asm | ped7g/sjasmplus | 487635c8057cd5594c372d9b70bc00a3f3a1ecc4 | [
"BSD-3-Clause"
] | 51 | 2016-05-12T21:27:36.000Z | 2022-03-27T15:16:16.000Z | DEVICE ZXSPECTRUMNEXT
ORG $E000,32
DISP $8000,1 ; fake page "1" for everything here
DispLabel: ; sh*t, labels emit no warning about different mapping.
MMU 4, 1
nop ; no warning, mapping is identical
MMU 4, 4 ; emit warning
DispLabel2:
... | 32.125 | 87 | 0.583658 |
4442ffb999297be5c786176c947e48393beea2ba | 289 | asm | Assembly | oeis/327/A327440.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/327/A327440.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/327/A327440.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A327440: a(n) = floor(3*n/10).
; Submitted by Christian Krause
; 0,0,0,0,1,1,1,2,2,2,3,3,3,3,4,4,4,5,5,5,6,6,6,6,7,7,7,8,8,8,9,9,9,9,10,10,10,11,11,11,12,12,12,12,13,13,13,14,14,14,15,15,15,15,16,16,16,17,17,17,18,18,18,18,19,19,19,20,20,20,21,21,21,21,22,22,22,23
mul $0,36
div $0,120
| 41.285714 | 201 | 0.619377 |
ea51a1186526840037d789123b25c4b8332a6b9e | 349 | asm | Assembly | programs/oeis/122/A122657.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/122/A122657.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/122/A122657.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A122657: a(n) = if n mod 2 = 1 then (n^2-1)*n^3/4 else n^5/4.
; 0,0,8,54,256,750,1944,4116,8192,14580,25000,39930,62208,92274,134456,189000,262144,353736,472392,617310,800000,1018710,1288408,1606044,1990656,2437500,2970344,3582306,4302592,5121690,6075000,7149840,8388608,9774864,11358856
mov $2,$0
pow $2,2
mul $0,$2
... | 34.9 | 225 | 0.724928 |
85ed4463447f5f0a774eab3eba1602d5d3e905cc | 1,941 | asm | Assembly | CpuA32/TestData/memaddr.asm | robertmuth/Cwerg | fdf30b06c93b4620c0a45b448b6d92acb81c35f0 | [
"Apache-2.0"
] | 171 | 2020-01-30T16:58:07.000Z | 2022-03-27T22:12:17.000Z | CpuA32/TestData/memaddr.asm | robertmuth/Cwerg | fdf30b06c93b4620c0a45b448b6d92acb81c35f0 | [
"Apache-2.0"
] | 14 | 2021-05-15T02:12:09.000Z | 2022-03-16T04:16:18.000Z | CpuA32/TestData/memaddr.asm | robertmuth/Cwerg | fdf30b06c93b4620c0a45b448b6d92acb81c35f0 | [
"Apache-2.0"
] | 5 | 2021-03-01T20:52:13.000Z | 2022-03-07T06:35:03.000Z | # size 10
.mem LINE 4 rodata
.data 10 "="
.endmem
# size 10
.mem HASH 4 rodata
.data 10 "="
.endmem
# size 10
.mem SEMI 4 rodata
.data 10 ";"
.endmem
# size 12
.mem string_pointers 8 rodata
.addr.mem 4 LINE 0x0
.addr.mem 4 HASH 0x0
.addr.mem 4 SEMI 0x0
.endmem
# sig: IN: [U32] -> OUT: [] stk_... | 21.566667 | 49 | 0.658939 |
fb1d1b38833ae7c8c52bf26f703c67b6e4c0a1fc | 310 | asm | Assembly | CPU/cpu_test/test_storage/test2_set_sltu.asm | SilenceX12138/MIPS-Microsystems | d389b706b0930151a710b544db436c2883af958b | [
"MIT"
] | 55 | 2021-09-06T12:12:47.000Z | 2022-01-15T04:30:53.000Z | CPU/cpu_test/test_storage/test2_set_sltu.asm | SilenceX12138/MIPS-Microsystems | d389b706b0930151a710b544db436c2883af958b | [
"MIT"
] | null | null | null | CPU/cpu_test/test_storage/test2_set_sltu.asm | SilenceX12138/MIPS-Microsystems | d389b706b0930151a710b544db436c2883af958b | [
"MIT"
] | null | null | null | lui $1,0xffff
ori $1,$1,0xfffe
sltiu $2,$1,3
addi $2,$2,5
ori $3,$0,2
sltiu $4,$3,-1
addu $5,$4,$3
sltiu $5,$3,5
sw $1,0($0)
lw $6,0($0)
sltu $8,$6,$3
sltu $7,$0,$6
slt $2,$7,$8
slt $3,$2,$1
slt $4,$1,$3
ori $4,$0,3
ori $5,$0,4
slti $6,$4,6
slti $7,$5,2
slti $8,$1,0
lui $2,0xffff
ori $2,$2,0xffff
slt $9,$1,$2 | 13.478261 | 16 | 0.53871 |
d43ba373cc4e67efa49a348c608e02640c1f1c6e | 919 | asm | Assembly | oeis/080/A080145.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/080/A080145.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/080/A080145.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A080145: a(n) = Sum_{m=1..n} Sum_{i=1..m} F(i)*F(i+1) where F(n)=Fibonacci numbers A000045.
; 0,1,4,13,37,101,269,710,1865,4890,12810,33546,87834,229963,602062,1576231,4126639,10803695,28284455,74049680,193864595,507544116,1328767764,3478759188,9107509812,23843770261,62423800984,163427632705,427859097145,112014965874... | 91.9 | 500 | 0.811752 |
81a4eccbb9011953bec0ea359471d1813a67def1 | 32,138 | asm | Assembly | asg/asm/crc32c.asm | asgkafka/librdkafka | d0a14ca313ed1efafb3924ff33fb6c4d474efe3c | [
"BSD-2-Clause-NetBSD",
"Zlib",
"BSD-2-Clause",
"MIT",
"BSD-3-Clause"
] | null | null | null | asg/asm/crc32c.asm | asgkafka/librdkafka | d0a14ca313ed1efafb3924ff33fb6c4d474efe3c | [
"BSD-2-Clause-NetBSD",
"Zlib",
"BSD-2-Clause",
"MIT",
"BSD-3-Clause"
] | null | null | null | asg/asm/crc32c.asm | asgkafka/librdkafka | d0a14ca313ed1efafb3924ff33fb6c4d474efe3c | [
"BSD-2-Clause-NetBSD",
"Zlib",
"BSD-2-Clause",
"MIT",
"BSD-3-Clause"
] | 1 | 2021-05-05T11:49:00.000Z | 2021-05-05T11:49:00.000Z | *PROCESS DUPALIAS
*
* Compiled by DCC Version 2.25.07 Mar 6 2021 08:51:07
* on Fri Apr 30 15:35:11 2021
*
WXTRN @@ZARCH#
*
*
*
* Code Section
*
@CODE ALIAS C'@CRC32C'
@CODE CSECT
@CODE AMODE ANY
@CODE RMODE ANY
@DATA ALIAS C'@crc32c'
fprintf ALIAS C'fprintf'
EXTRN fprin... | 32.00996 | 72 | 0.502987 |
adeaa5cb7ebd3528a23576d9b80c706386cda874 | 46 | asm | Assembly | kern/arch/aarch64/mm.asm | bSchnepp/Feral | 8931c89da418076c15205f03e93b664504fb29ff | [
"BSL-1.0"
] | 13 | 2018-04-27T00:04:09.000Z | 2022-01-06T15:00:24.000Z | kern/arch/aarch64/mm.asm | bSchnepp/Feral | 8931c89da418076c15205f03e93b664504fb29ff | [
"BSL-1.0"
] | 44 | 2018-09-01T04:05:21.000Z | 2021-02-21T22:02:57.000Z | kern/arch/aarch64/mm.asm | bSchnepp/feral-next | 8931c89da418076c15205f03e93b664504fb29ff | [
"BSL-1.0"
] | 2 | 2018-04-28T12:54:41.000Z | 2021-03-17T14:18:28.000Z | .globl aarch64_init_mm
aarch64_init_mm:
ret
| 9.2 | 22 | 0.826087 |
43a87d1d50657663be00257d7cbf9312a3558961 | 317 | asm | Assembly | software/obsolete/new-rom/listing.asm | Noah1989/micro-21 | f574c3dd089ee93737c8babc6f5eddf85e66987e | [
"MIT"
] | 1 | 2019-05-17T14:43:17.000Z | 2019-05-17T14:43:17.000Z | software/obsolete/new-rom/listing.asm | Noah1989/loopmicro | 4d9a49b0aeee1d58aa712c7509cbb46d32477e16 | [
"MIT"
] | null | null | null | software/obsolete/new-rom/listing.asm | Noah1989/loopmicro | 4d9a49b0aeee1d58aa712c7509cbb46d32477e16 | [
"MIT"
] | null | null | null | public listing_IX_seek_line_BC
public listing_IX_read_line_eof_Z
extern error
include "listing.inc"
listing_IX_seek_line_BC:
LD L, (IX+listing_seek_line_BC)
LD H, (IX+listing_seek_line_BC+1)
JP (HL)
listing_IX_read_line_eof_Z:
LD L, (IX+listing_read_line_eof_Z)
LD H, (IX+listing_read_line_eof_Z+1)
JP (HL)
| 18.647059 | 37 | 0.801262 |
d4740cb90590f3dc42aaabd44eca564d423c0c54 | 532 | asm | Assembly | oeis/015/A015006.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/015/A015006.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/015/A015006.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A015006: q-factorial numbers for q=7.
; 1,1,8,456,182400,510902400,10017774259200,1375009641495014400,1321109263548409835520000,8885253784030448738183147520000,418310711031156574478261944188764160000,137856159231156714984163673320892478249861120000,318017782034561880050725475706908425296013520338944000000,51354046988... | 44.333333 | 415 | 0.87406 |
60af703c12e78d1d278045c4cd77e166a6f8923a | 2,129 | asm | Assembly | titlescreen/asm/layoutmacros.asm | hrw/my-first-8k | de179bbba2cd13df31869b1826f3f17ee60b9c7d | [
"MIT"
] | 2 | 2019-09-03T11:17:07.000Z | 2019-12-05T06:23:28.000Z | titlescreen/asm/layoutmacros.asm | hrw/my-first-8k | de179bbba2cd13df31869b1826f3f17ee60b9c7d | [
"MIT"
] | null | null | null | titlescreen/asm/layoutmacros.asm | hrw/my-first-8k | de179bbba2cd13df31869b1826f3f17ee60b9c7d | [
"MIT"
] | null | null | null |
; the macro's used in the "titlescreen_layout.asm" file
MAC draw_96x2_1
mk_96x2_1_on = 1
jsr draw_bmp_96x2_1
ENDM
MAC draw_96x2_2
mk_96x2_2_on = 1
jsr draw_bmp_96x2_2
ENDM
MAC draw_96x2_3
mk_96x2_3_on = 1
jsr draw_bmp_96x2_3
ENDM
MAC draw_96x2_4
mk_96x2_4_on = 1
jsr draw_bmp_96x2_4
ENDM
MAC draw_96x... | 12.825301 | 56 | 0.781588 |
ea6f9cfbe3a70a0803450817299e20a176bd82c7 | 5,254 | asm | Assembly | Transynther/x86/_processed/NONE/_st_/i7-7700_9_0xca_notsx.log_84_1734.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_st_/i7-7700_9_0xca_notsx.log_84_1734.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_st_/i7-7700_9_0xca_notsx.log_84_1734.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 %r14
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1828d, %rsi
lea addresses_normal_ht+0x743f, %rdi
clflush (%rdi)
nop
nop
and $46273, %r10
mov $32, %rcx
rep movsw
xor $55155, %rbp
lea addresses_D_ht+0x1cae9, %rcx
nop
nop
nop
nop
nop
... | 21.100402 | 251 | 0.645794 |
4ec336c1ec5e195ee7a22235e1efc3a5932b5372 | 5,726 | asm | Assembly | Transynther/x86/_processed/US/_ht_zr_un_/i3-7100_9_0xca_notsx.log_2473_1129.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/US/_ht_zr_un_/i3-7100_9_0xca_notsx.log_2473_1129.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/US/_ht_zr_un_/i3-7100_9_0xca_notsx.log_2473_1129.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1737e, %r15
xor $56306, %rdx
mov $0x6162636465666768, %rcx
movq %rcx, (%r15)
nop
nop
nop
nop
sub $41263, %r9
lea addresses_A_ht+0xa99e, %rsi
lea addresses_normal_ht+0xd37e, %... | 40.041958 | 2,999 | 0.655781 |
8b3dd31f6a78fe8f75303f585f6a6461bd74ad0d | 2,381 | asm | Assembly | lab13/lab13.asm | Brant-Skywalker/ZJUI-ECE-120-SP21 | b8d444620f4a57766ac3f1346d7ec4608b35adbe | [
"MIT"
] | null | null | null | lab13/lab13.asm | Brant-Skywalker/ZJUI-ECE-120-SP21 | b8d444620f4a57766ac3f1346d7ec4608b35adbe | [
"MIT"
] | null | null | null | lab13/lab13.asm | Brant-Skywalker/ZJUI-ECE-120-SP21 | b8d444620f4a57766ac3f1346d7ec4608b35adbe | [
"MIT"
] | null | null | null | ; This program calculates X! (X factorial). It can calculate
; different numbers (4!, 6!, etc.) by changing the value of the first memory
; location at the bottom of the code. It is currently set up to calculate
; 5!. The program does not account for zero or negative numbers as input.
; This program primarily us... | 51.76087 | 82 | 0.51995 |
e364c237c11410058b726bcb3e8b3f14061b3285 | 466 | asm | Assembly | libsrc/_DEVELOPMENT/stdio/c/sccz80/fileno.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/stdio/c/sccz80/fileno.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/stdio/c/sccz80/fileno.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; int fileno(FILE *stream)
INCLUDE "clib_cfg.asm"
SECTION code_stdio
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $02
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC fileno
EXTERN asm_fileno
fileno:
push hl
pop ix
jp asm_fileno
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ELSE
;;;;;;;;;;;;;;;;;;;;;;;;;;;... | 12.944444 | 31 | 0.437768 |
14fa2ee43593b3ac809cc337bb58857264adc80a | 198 | asm | Assembly | nasm-8086-assembly-course/0x00-template/template.asm | ailtonbsj/buffer-overflow-studies | 326a26f26a52f5ac055b85fc6879123c91124d23 | [
"MIT"
] | null | null | null | nasm-8086-assembly-course/0x00-template/template.asm | ailtonbsj/buffer-overflow-studies | 326a26f26a52f5ac055b85fc6879123c91124d23 | [
"MIT"
] | null | null | null | nasm-8086-assembly-course/0x00-template/template.asm | ailtonbsj/buffer-overflow-studies | 326a26f26a52f5ac055b85fc6879123c91124d23 | [
"MIT"
] | null | null | null | %include 'lib.inc'
section .data
tempConst db 'TEMPLATE!',LF,NULL
section .bss
tempVar resb 1
section .text
global _start
_start:
mov ecx, tempConst
call print
jmp exit | 11.647059 | 36 | 0.661616 |
539803937507d7bcd9e9f6be75911ef92c31c34d | 1,310 | asm | Assembly | Microprocessor/far_call-2.asm | Nmane1612/Nihar-Mane | aa4db52a384f706a431c994e4e12d8e5e0cd8402 | [
"Apache-2.0"
] | 3 | 2019-12-27T06:07:37.000Z | 2020-07-01T08:51:32.000Z | Microprocessor/far_call-2.asm | Nihar16/Personal-Repository | 0d319eeb8dbfa3f7c3eb8501829939ecd6923464 | [
"MIT"
] | null | null | null | Microprocessor/far_call-2.asm | Nihar16/Personal-Repository | 0d319eeb8dbfa3f7c3eb8501829939ecd6923464 | [
"MIT"
] | null | null | null | name "far2"
; the correct use of far call for defined procedures.
org 100h
jmp start
off_print_me dw ?
seg_print_me dw ?
start:
mov off_print_me, printme
mov seg_print_me, seg printme
call far off_print_me
db 'hello', 0
mov ah, 0
int 16h
ret
;*******************************
print... | 24.259259 | 116 | 0.530534 |
88af86f20a09b0fa98e8b3fb2f997a6c6f46bd00 | 487 | asm | Assembly | programs/oeis/278/A278620.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/278/A278620.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/278/A278620.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A278620: Expansion of x/(1 - 99*x + 99*x^2 - x^3).
; 0,1,99,9702,950698,93158703,9128602197,894509856604,87652837344996,8589083549953005,841642535058049495,82472379352138897506,8081451533974553906094,791899777950154143899707,77598096787581131548265193,7603821585405000737586089208,745096917272902491151888477192,730118... | 69.571429 | 365 | 0.845996 |
3c99a9fbb0a117fa7e54b6664d58ee110451da42 | 332 | asm | Assembly | oeis/021/A021982.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/021/A021982.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/021/A021982.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A021982: Decimal expansion of 1/978.
; Submitted by Jamie Morken(s1)
; 0,0,1,0,2,2,4,9,4,8,8,7,5,2,5,5,6,2,3,7,2,1,8,8,1,3,9,0,5,9,3,0,4,7,0,3,4,7,6,4,8,2,6,1,7,5,8,6,9,1,2,0,6,5,4,3,9,6,7,2,8,0,1,6,3,5,9,9,1,8,2,0,0,4,0,8,9,9,7,9,5,5,0,1,0,2,2,4,9,4,8,8,7,5,2,5,5,6,2
add $0,1
mov $1,10
pow $1,$0
div $1,978
mov $0,$... | 30.181818 | 199 | 0.560241 |
7e51c7fba7d18c116b66ee5bb9427527ab2de485 | 446 | asm | Assembly | programs/oeis/070/A070564.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/070/A070564.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/070/A070564.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A070564: Partial sums of A070563.
; 0,1,1,1,2,2,2,3,3,3,3,3,3,4,4,4,5,5,5,6,6,6,6,6,6,7,7,7,8,8,8,9,9,9,9,9,9,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,13,13,13,14,14,14,15,15,15,15,15,15,16,16
mov $2,$0
mov $4,$0
lpb $2,1
mov $0,$4
sub $2,1
sub $0,$2
sub $0,1
cal $0,70563 ; a... | 26.235294 | 189 | 0.58296 |
f58ff65ff73dc617caaabdac5b8e06975b81c6b2 | 2,007 | asm | Assembly | wof/lcs/123p/A0.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | 6 | 2020-10-14T15:29:10.000Z | 2022-02-12T18:58:54.000Z | wof/lcs/123p/A0.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | null | null | null | wof/lcs/123p/A0.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | a4a0c86c200241494b3f1834cd0aef8dc02f7683 | [
"Apache-2.0"
] | 1 | 2020-12-17T08:59:10.000Z | 2020-12-17T08:59:10.000Z | copyright zengfr site:http://github.com/zengfr/romhack
001B16 beq $1b86 [123p+ A0]
001EA8 andi.w #$f, D0 [123p+ A0]
001F8C btst #$2, D0 [123p+ A0]
001FC8 andi.b #$f, D1 [123p+ A0]
007D62 andi.b #$3f, D1 [123p+ A0]
009C3C beq $9c50 [123p+ A0]
01A74C dbra D7, $1a74a
01A75E dbra D4, $1a75c
0... | 33.45 | 54 | 0.593423 |
cdaa9b0096cfad02ba1d44589753d99b78aea29a | 712 | asm | Assembly | oeis/015/A015544.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/015/A015544.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/015/A015544.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A015544: Lucas sequence U(5,-8): a(n+1) = 5*a(n) + 8*a(n-1), a(0)=0, a(1)=1.
; Submitted by Jamie Morken(s4)
; 0,1,5,33,205,1289,8085,50737,318365,1997721,12535525,78659393,493581165,3097180969,19434554165,121950218577,765227526205,4801739379641,30130517107845,189066500576353,1186376639744525,7444415203333449,4671308... | 47.466667 | 500 | 0.80618 |
2cd54bd1f452f213e3cd9fd1f66a7099cebaadf6 | 582 | asm | Assembly | programs/oeis/051/A051607.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/051/A051607.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/051/A051607.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A051607: a(n) = (3*n+7)!!!/7!!!, related to A007559(n+1) ((3*n+1)!!! triple factorials).
; 1,10,130,2080,39520,869440,21736000,608608000,18866848000,641472832000,23734494784000,949379791360000,40823331028480000,1877873227310080000,92015788138193920000,4784820983186083840000,263165154075234611200000,152635789363636074... | 41.571429 | 397 | 0.809278 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.