max_stars_repo_path
stringlengths
3
255
max_stars_repo_name
stringlengths
5
116
max_stars_count
int64
0
107k
id
stringlengths
1
7
content
stringlengths
63
1.05M
libsrc/_DEVELOPMENT/arch/zxn/esxdos/c/sdcc_ix/esx_dos_catalog_fastcall.asm
jpoikela/z88dk
640
128198
<filename>libsrc/_DEVELOPMENT/arch/zxn/esxdos/c/sdcc_ix/esx_dos_catalog_fastcall.asm ; unsigned char esx_dos_catalog(struct esx_cat *cat) SECTION code_esxdos PUBLIC _esx_dos_catalog_fastcall EXTERN asm_esx_dos_catalog _esx_dos_catalog_fastcall: push ix push iy call asm_esx_dos_catalog pop iy ...
programs/oeis/192/A192418.asm
jmorken/loda
1
128199
<reponame>jmorken/loda ; A192418: Molecular topological indices of the complete bipartite graphs K_{n,n}. ; 4,48,180,448,900,1584,2548,3840,5508,7600,10164,13248,16900,21168,26100,31744,38148,45360,53428,62400,72324,83248,95220,108288,122500,137904,154548,172480,191748,212400 mov $1,1 add $1,$0 add $0,$1 mul $0,$1 mul...
scripts/CeruleanBadgeHouse.asm
opiter09/ASM-Machina
1
128200
CeruleanBadgeHouse_Script: ld a, TRUE ld [wAutoTextBoxDrawingControl], a dec a ld [wDoNotWaitForButtonPressAfterDisplayingText], a ret CeruleanBadgeHouse_TextPointers: dw CeruleanHouse2Text1 CeruleanHouse2Text1: text_asm ld hl, CeruleanHouse2Text_74e77 call PrintText xor a ld [wCurrentMenuItem], a ld [wLi...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_43.asm
ljhsiun2/medusa
9
128201
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r13 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0x11708, %r12 nop nop nop nop nop sub %r10, %r10 mov $0x6162636465666768, %r13 movq %r13, %xmm7 vmovups %ymm7, (%r12) nop nop nop nop nop xor %rbx, %rbx lea add...
_inc/Demo pointers for intro.asm
vladjester2020/Sonic1TMR
0
128202
<reponame>vladjester2020/Sonic1TMR<gh_stars>0 ; --------------------------------------------------------------------------- ; Demo sequence pointers ; --------------------------------------------------------------------------- dc.l Demo_GHZ dc.l Demo_GHZ dc.l Demo_MZ dc.l Demo_MZ dc.l Demo_SYZ dc.l Demo_S...
data/pokemon/base_stats/spearow.asm
opiter09/ASM-Machina
1
128203
db DEX_SPEAROW ; pokedex id db 40, 60, 30, 70, 31 ; hp atk def spd spc db FLYING, FLYING ; type db 255 ; catch rate db 58 ; base exp INCBIN "gfx/pokemon/front/spearow.pic", 0, 1 ; sprite dimensions dw SpearowPicFront, SpearowPicBack db PECK, GROWL, NO_MOVE, NO_MOVE ; level 1 learnset db GROWTH_...
src/idt_handle.asm
llGuy/lGkn
1
128204
<reponame>llGuy/lGkn<gh_stars>1-10 bits 32 extern isr_handler %macro ISR_NOERRORCODE 1 [GLOBAL isr%1] isr%1: cli push byte 0 push byte %1 jmp isr_common %endmacro %macro ISR_ERRORCODE 1 [GLOBAL isr%1] isr%1: cli push byte %1 jmp isr_common %endmacro section .text global idt_flush idt_fl...
programs/oeis/225/A225008.asm
neoneye/loda
22
128205
<reponame>neoneye/loda<gh_stars>10-100 ; A225008: Number of n X 6 0..1 arrays with rows unimodal and columns nondecreasing. ; 22,148,610,1897,4900,11088,22716,43065,76714,129844,210574,329329,499240,736576,1061208,1497105,2072862,2822260,3784858,5006617,6540556,8447440,10796500,13666185,17144946,21332052,26338438,32287...
oeis/045/A045455.asm
neoneye/loda-programs
11
128206
<reponame>neoneye/loda-programs ; A045455: Primes congruent to {5, 6} mod 7. ; Submitted by <NAME>(w1) ; 5,13,19,41,47,61,83,89,97,103,131,139,167,173,181,223,229,251,257,271,293,307,313,349,383,397,419,433,439,461,467,503,509,523,587,593,601,607,643,677,691,719,727,733,761,769,797,811,839,853,859,881,887,929,937,971,1...
testdata/hmc-6502/load_store_test.asm
tehmaze/mos65xx
3
128208
<filename>testdata/hmc-6502/load_store_test.asm ; Tests instructions LDA/LDX/LDY and STA/STX/STY with all addressing modes ; ; Expected Results: ; ; $022A = 0x55 (decimal 85) ; A = 0x55, X = 0x2A, Y = 0x73 LDA #85 LDX #42 LDY #115 STA $81 LDA #$01 STA $61 LDA #$7E LDA $81 STA $0910 LDA #$7E LDA $0910 STA $56,X LDA #$...
MySource/mid 4-a.asm
mdabdullahibnaharun/Assembly-Language
0
128210
<reponame>mdabdullahibnaharun/Assembly-Language org 100h include "emu8086.inc" .model small .stack 100h .data .code main proc mov ax,@data mov ds,ax print "Enter a Number: " call scan_num mov bx,cx printn cmp bx,03d jl notr...
hello_world.asm
emmettgb/Assembly-Intro
2
128211
<filename>hello_world.asm ; Sections: section .data hello: db "Hello " ending: db "!", 10 section .bss input resb 16 section .text global _start _start: mov rax, 0 mov rdi, 0 mov rsi, input mov rdx, 16 syscall mov rax, 1 mov rdi, 1 mov rsi, hello mov rdx, 6 syscall mov rax, 1 mov rdi...
projects/project08/src/ProgramFlow/FibonacciSeries/FibonacciSeries.asm
lemmingapex/ElementsOfComputingSystems
15
128212
<filename>projects/project08/src/ProgramFlow/FibonacciSeries/FibonacciSeries.asm // from FibonacciSeries.vm // push ARG[1] onto the stack @ARG D=M @1 A=D+A D=M @SP A=M M=D @SP M=M+1 // pop off the stack onto 3 + 1 @3 D=A @1 D=D+A @R13 M=D @SP AM=M-1 D=M @R13 A=M M=D // push 0 onto the stack @0 D=A @SP A=M M=D @SP M=M+1...
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xca_notsx.log_21829_233.asm
ljhsiun2/medusa
9
128213
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x436d, %rsi lea addresses_WC_ht+0x1bf6d, %rdi nop nop nop sub %rdx, %rdx mov $104, %rcx rep movsq nop nop nop nop add $57004, %rcx lea addresses_A_h...
8085/UGR/0x0F - Reloj.asm
CosasDePuma/Aesthetic-Programming
2
128214
; Bits correspondientes ; al display 7 segmentos ; ; b ; ----- ; | | ; a | | c ; |-----| ; | d | g ; e | | ; ----- o h ; f ; ; Locate code in this address .org E000h ; Program CALL CLEAR BUCLE: CALL DELAY CALL SHOW JMP BUCLE ; Locate subruti...
pwnlib/shellcraft/templates/i386/mov.asm
kristoff3r/pwntools
0
128215
<gh_stars>0 <% from pwnlib.util import lists, packing, fiddling, misc %> <% import logging log = logging.getLogger('pwnlib.shellcraft') %> <%page args="dest, src, stack_allowed = True"/> <%docstring> Move src into dest without newlines and null bytes. Args: dest (str): The destination register. src (str): Either ...
examples/maps/guess.asm
LBPHacker/tptasm
9
128216
_Model "MAPS" ; * Specify target model. %include "common" ; * Inputs. %define p_keyboard 0x10 ; * Outputs. %define p_display 0x10 %define p_info_out 0x18 %define p_cheater 0x19 ; * Memory. %define m_guess 0x00 %define m_offset 0x01 %define m_score 0x02 %define m_highscore 0x03 %define m...
engine/events/magikarp.asm
genterz/pokecross
28
128217
<reponame>genterz/pokecross CheckMagikarpLength: ; Returns 3 if you select a Magikarp that beats the previous record. ; Returns 2 if you select a Magikarp, but the current record is longer. ; Returns 1 if you press B in the Pokemon selection menu. ; Returns 0 if the Pokemon you select is not a Magikarp. ; Let's s...
PutSys/PutSys.asm
Laci1953/RC2014-CPM
2
128218
; PUTSYS for RC2014 systems ; ; Adapted from: ;================================================================================== ; <NAME>'s code, modified for use with Small Computer Workshop IDE. ; Also embedded CP/M hex files into this utility to make it easier to use. ; Compile options for LiNC80 and RC2014 s...
Transynther/x86/_processed/AVXALIGN/_zr_un_/i7-7700_9_0x48.log_13_206.asm
ljhsiun2/medusa
9
128219
<filename>Transynther/x86/_processed/AVXALIGN/_zr_un_/i7-7700_9_0x48.log_13_206.asm .global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r8 push %rbp push %rbx push %rcx lea addresses_normal_ht+0xb895, %r12 nop inc %rbp movups (%r12), %xmm3 vpextrq $0, %xmm3, %r14 nop nop nop nop nop sub $64753, %r14 ...
oeis/184/A184004.asm
neoneye/loda-programs
11
128220
<gh_stars>10-100 ; A184004: a(n) = n + floor(sqrt(4n/3)); complement of A184005. ; Submitted by <NAME>(s4) ; 2,3,5,6,7,8,10,11,12,13,14,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,8...
oeis/147/A147757.asm
neoneye/loda-programs
11
128221
; A147757: Palindromes formed from the reflected decimal expansion of the concatenation of 1, 0 and infinite digits 1. ; Submitted by <NAME> ; 1,11,101,1001,10101,101101,1011101,10111101,101111101,1011111101,10111111101,101111111101,1011111111101,10111111111101,101111111111101,1011111111111101,10111111111111101,1011111...
oeis/048/A048776.asm
neoneye/loda-programs
11
128222
; A048776: First partial sums of A048739; second partial sums of A000129. ; Submitted by <NAME> ; 1,4,12,32,81,200,488,1184,2865,6924,16724,40384,97505,235408,568336,1372096,3312545,7997204,19306972,46611168,112529329,271669848,655869048,1583407968,3822685009,9228778012,22280241060,53789260160,129858761409,313506783008...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_110_1785.asm
ljhsiun2/medusa
9
128223
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0xf14a, %rbx nop nop nop and %r9, %r9 movl $0x61626364, (%rbx) nop nop nop sub $29521, %rdi lea addresses_normal_ht+0x7c06, %rbx sub $3396, %r14 mov (%rbx), %edi ...
libsrc/graphics/spectrum/cpm/clg.asm
grancier/z180
0
128224
<gh_stars>0 ; ; CLS for the Spectrum +3 CP/M ; Stefano - 2016 ; ; ; $Id: clg.asm,v 1.2 2016/10/31 07:06:49 stefano Exp $ ; SECTION code_clib PUBLIC clg PUBLIC _clg EXTERN p3_poke EXTERN zx_colour EXTERN zx_border .clg ._clg ld hl,16384 ld de,6144 loop: xor a call p3_poke ...
sw/552tests/rand_simple/t_4_subi.asm
JPShen-UWM/ThreadKraken
1
128225
// seed 4 lbi r0, 82 // icount 0 slbi r0, 2 // icount 1 lbi r1, 214 // icount 2 slbi r1, 35 // icount 3 lbi r2, 230 // icount 4 slbi r2, 90 // icount 5 lbi r3, 55 // icount 6 slbi r3, 216 // icount 7 lbi r4, 58 // icount 8 slbi r4, 119 // icount 9 lbi r5, 118 // icount 10 slbi r5, 45 // icount 11 lbi r6, 97 // icount 1...
project/ntstub/amd64/6_1_7600_sp0_ssdt_sysenter.asm
rmusser01/windows-syscall-table
6
128227
<reponame>rmusser01/windows-syscall-table ; DO NOT MODIFY THIS FILE DIRECTLY! ; author: @TinySecEx ; ssdt asm stub for 6.1.7600-sp0-windows-7 amd64 option casemap:none option prologue:none option epilogue:none .code ; ULONG64 __stdcall NtMapUserPhysicalPagesScatter( ULONG64 arg_01 , ULONG64 arg_02 , ULONG64 arg_0...
PRG/levels/Sky/W5Tower2.asm
narfman0/smb3_pp1
0
128228
<reponame>narfman0/smb3_pp1 ; Original address was $B637 ; World 5 tower just before top .word W5T3L ; Alternate level layout .word W5T3O ; Alternate object layout .byte LEVEL1_SIZE_03 | LEVEL1_YSTART_170 .byte LEVEL2_BGPAL_00 | LEVEL2_OBJPAL_08 | LEVEL2_XSTART_18 .byte LEVEL3_TILESET_02 | LEVEL3_VSCROLL_LOCKED | ...
app/resources/data/cheat-tables/kf2_ONE_HIT_KILL.asm
my-repositories/GameTrainer
3
128229
[ENABLE] define(INJECT, KFGame.exe+57BEE) registersymbol(INJECT) alloc(newmem,2048) label(returnhere) label(originalcode) label(kill) newmem: cmp word ptr [rdi-384+170],1 je kill sub [rdi],eax jmp originalcode kill: mov [rdi],0 originalcode: mov eax,[rdi] mov [rsi],eax add rsp...
programs/oeis/176/A176126.asm
karttu/loda
1
128230
<gh_stars>1-10 ; A176126: Numerator of -A127276(n)/A001788(n). ; -1,-1,1,2,4,13,19,13,17,43,53,32,38,89,103,59,67,151,169,94,104,229,251,137,149,323,349,188,202,433,463,247,263,559,593,314,332,701,739,389,409,859,901,472,494,1033,1079,563,587,1223,1273,662,688,1429,1483,769,797,1651,1709,884,914,1889,1951,1007,1039,214...
cmd/cps/rebuild/uf_jmsg.asm
minblock/msdos
0
128231
; Copyright 1990 Central Point Software, Inc. ; All rights reserved. ;----------------------------------------------------------------------------- ; Modified April 19, 1988. Removed dumb 'stand_alone' stuff. GWD. ; Modified main warning msg to recommend DISKFIX. 6.0 BETA 02-14-90 GWD. ; Tiny changes for easier tra...
Miei-sorgenti/new/Simulazione/BranchY/main.asm
DigiOhhh/LabArchitettura2-2017-2018
1
128232
<gh_stars>1-10 .data T1: .space 20 T2: .space 20 .text .globl main main: li $a0, 1 la $a2, T1 la $a3, T2 jal branchy move $a0, $v0 li $v0, 1 syscall li $v0, 10 syscall
Transynther/x86/_processed/NONE/_ht_/i7-7700_9_0x48.log_1_404.asm
ljhsiun2/medusa
9
128235
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0xf530, %r10 cmp %rbx, %rbx mov $0x6162636465666768, %rsi movq %rsi, (%r10) add %rdi, %rdi lea addresses_D_ht+0x12dba, %rcx cmp %r8, %r8 mov $0x6162636465666768, %r11 movq %r11, %xmm2 and...
programs/oeis/072/A072819.asm
karttu/loda
1
128236
; A072819: Variance of time for a random walk starting at 0 to reach one of the boundaries at +n or -n for the first time. ; 0,0,8,48,160,400,840,1568,2688,4320,6600,9680,13728,18928,25480,33600,43520,55488,69768,86640,106400,129360,155848,186208,220800,260000,304200,353808,409248,470960,539400,615040,698368,789888,890...
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_21829_1150.asm
ljhsiun2/medusa
9
128237
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0x6ba6, %rsi lea addresses_WT_ht+0x15d4e, %rdi clflush (%rdi) nop sub $57399, %rax mov $77, %rcx rep movsb nop nop nop nop cmp %r12, %r12 lea addresses_WT_ht+0x1a0e, %r12 nop cmp %r14, ...
src/core/joystick.asm
endstation/golf
1
128238
; Top-hole Golf ; Copyright 2020-2021 <NAME> ; ******************* ; **** CONSTANTS **** ; ******************* joy_c_UP = $01 joy_c_DOWN = $02 joy_c_LEFT = $04 joy_c_RIGHT = $08 joy_c_FIRE = $10 ; NOTE: these are offsets that we use to index CIAPRA (= $dc00). joy_c_PORT1 = 1 joy_c_PORT2 = 0 ; ...
Lista2/Lista2/Parte2/Programa19.asm
GustavoLR548/ACII-GLR
1
128239
.data x: .word 1600000 y: .word 80000 z: .word 400000 .text ori $t0,$zero,0x1001 # t0 = 1001 sll $t0,$t0,16 # t0 *= 2^16 | t0 = 10010000 add $t1,$zero,10 add $s3,$zero,1 lw $s0,0($t0) # Carregar o conteudo em 0(t0) | s0 = Valor da memoria de x lw $s1,4($t0) # Carregar o conteudo em 4(t0) | s1 = Valor da memoria ...
test_data/ligador_carregador/moodle2_A.asm
Perruci/sb20172
0
128240
mod_a: begin section text r: extern mod_b: extern public a public b public l1 input a input b jmp mod_b l1: output r + 1 stop section data a: space 1 b: space 1 end
programs/oeis/210/A210677.asm
jmorken/loda
1
128241
<filename>programs/oeis/210/A210677.asm ; A210677: a(n)=a(n-1)+a(n-2)+n+1, a(0)=a(1)=1. ; 1,1,5,10,20,36,63,107,179,296,486,794,1293,2101,3409,5526,8952,14496,23467,37983,61471,99476,160970,260470,421465,681961,1103453,1785442,2888924,4674396,7563351,12237779,19801163,32038976,51840174,83879186,135719397,219598621,3553...
data/mapObjects/route6gate.asm
adhi-thirumala/EvoYellow
16
128242
<reponame>adhi-thirumala/EvoYellow Route6GateObject: db $a ; border block db $4 ; warps db $5, $3, $2, $ff db $5, $4, $2, $ff db $0, $3, $1, $ff db $0, $4, $1, $ff db $0 ; signs db $1 ; objects object SPRITE_GUARD, $6, $2, STAY, LEFT, $1 ; person ; warp-to EVENT_DISP ROUTE_6_GATE_WIDTH, $5, $3 EVENT_DIS...
mc-sema/validator/x86_64/tests/FSAVE.asm
randolphwong/mcsema
2
128243
<reponame>randolphwong/mcsema<filename>mc-sema/validator/x86_64/tests/FSAVE.asm<gh_stars>1-10 BITS 64 ;TEST_FILE_META_BEGIN ;TEST_TYPE=TEST_F ;TEST_IGNOREFLAGS= ;TEST_FILE_META_END ;TEST_BEGIN_RECORDING lea rdi, [rsp-0x800] ; save state FSAVE [rdi] mov edi, 0 ;TEST_END_RECORDING
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_28_365.asm
ljhsiun2/medusa
9
128245
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r10 push %r14 push %rax push %rbx push %rcx push %rdi push %rsi // REPMOV lea addresses_PSE+0x6529, %rsi lea addresses_PSE+0x6529, %rdi clflush (%rsi) nop nop inc %rbx mov $86, %rcx rep movsq nop sub %rsi, %rsi // Store l...
oeis/092/A092769.asm
neoneye/loda-programs
11
128247
; A092769: Squares of A006450: a(n) = prime(prime(n))^2. ; 9,25,121,289,961,1681,3481,4489,6889,11881,16129,24649,32041,36481,44521,58081,76729,80089,109561,124609,134689,160801,185761,212521,259081,299209,316969,344569,358801,380689,502681,546121,597529,635209,737881,769129,844561,935089,982081,1062961,1129969,1181569...
lab3/es2.asm
neskov7/AssemblyProgramsCE
0
128248
dim equ 10 .model small .stack .data tavola db dim*dim dup (0) .code .startup mov bx,0 mov cx,dim ciclo1: mov di,0 mov dx, dim sub dx, cx push cx mov cx,dx ciclo2: mov ax, cx mul di mov tavola[bx][di],al inc di cmp di,dim jnz ciclo2 ...
programs/oeis/216/A216257.asm
karttu/loda
1
128249
; A216257: a(n) = 840*n^2-23100*n+86861. ; 86861,64601,44021,25121,7901,-7639,-21499,-33679,-44179,-52999,-60139,-65599,-69379,-71479,-71899,-70639,-67699,-63079,-56779,-48799,-39139,-27799,-14779,-79,16301,34361,54101,75521,98621,123401,149861,178001,207821,239321,272501,307361,343901,382121,422021,463601,506861,55180...
oeis/200/A200979.asm
neoneye/loda-programs
11
128254
<filename>oeis/200/A200979.asm ; A200979: Number of ways to arrange n books on 4 consecutive bookshelves, leaving no shelf empty. ; Submitted by <NAME> ; 24,480,7200,100800,1411200,20321280,304819200,4790016000,79035264000,1369944576000,24932991283200,475993469952000,9519869399040000,199184959733760000,4353614119895040...
Engine Hacks/ItemEffectRevamp/IERevamp_Core/ItemEffect_ListCheck.asm
sme23/Christmas2
3
128255
<filename>Engine Hacks/ItemEffectRevamp/IERevamp_Core/ItemEffect_ListCheck.asm .thumb @r0 holds item @r1 holds pointer to list push {r4,r14} mov r4, r1 ldr r3, EIDGetter @get effect id of item in r0 bl Jump LoopStart: ldrb r2, [r4] cmp r2, #0x0 beq LoopEnd cmp r2, r0 beq LoopEnd add r4, #0x1 b LoopStart LoopE...
P6/data_P6_2/MDTest3.asm
alxzzhou/BUAA_CO_2020
1
128256
<filename>P6/data_P6_2/MDTest3.asm ori $ra,$ra,0xf srav $5,$6,$3 mult $2,$5 divu $1,$ra mfhi $5 sb $2,5($0) addiu $5,$5,-28443 mflo $4 mflo $1 multu $1,$1 divu $1,$ra addiu $5,$2,-27097 sll $0,$0,25 multu $4,$4 addiu $4,$0,-5854 multu $4,$2 ori $5,$4,20694 div $3,$ra div $4,$ra addu $4,$2,$3 mtlo $6 sb $4,14($0) multu ...
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_350.asm
ljhsiun2/medusa
9
128258
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r15 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x17fb4, %r15 nop nop nop nop add %r11, %r11 movb (%r15), %r8b nop nop inc %rbp lea addresses_WT_ht+0x16b34, %rax nop and $49364, %r12 movups...
programs/oeis/143/A143084.asm
karttu/loda
0
128259
<reponame>karttu/loda ; A143084: Triangle read by rows: T(n,m) = (n + m)!. ; 1,1,2,2,6,24,6,24,120,720,24,120,720,5040,40320,120,720,5040,40320,362880,3628800,720,5040,40320,362880,3628800,39916800,479001600,5040,40320,362880,3628800,39916800,479001600,6227020800,87178291200,40320,362880,3628800,39916800,479001600,6227...
helloworld_easy.asm
agusalex/AssemblyC
1
128260
<reponame>agusalex/AssemblyC section .data msg db '<NAME>!',0xa ;our dear string len equ $ - msg ;length of our dear string section .text global asmPrint ;must be declared for linker (ld) asmPrint: ;tell linker entry point mov edx,len ;message length mov ecx,msg ;message to write mov ebx,1 ;file descr...
programs/oeis/305/A305065.asm
neoneye/loda
22
128261
; A305065: a(n) = 48*2^n - 24. ; 24,72,168,360,744,1512,3048,6120,12264,24552,49128,98280,196584,393192,786408,1572840,3145704,6291432,12582888,25165800,50331624,100663272,201326568,402653160,805306344,1610612712,3221225448,6442450920,12884901864,25769803752,51539607528,103079215080,206158430184,412316860392,8246337208...
src/testInterrupt.asm
JoshKing56/BB8-Breadboard-Computer
0
128263
CLR PCU 0 PCL 34 NOP NOP NOP NOP NOP RIR1 B ; A10000 AND C B 1 JNZ C 18 RSH B B AND C B 1 JNZ C 23 RSH B B AND C B 1 JNZ C 28 LDI NOP LD D &0 ADD D D 1 LD &0 D PCL 10 NOP LD D &1 ADD D D 1 LD &1 D PCL 13 NOP LD D &2 ADD D D 1 LD &2 D PCL 16 NOP NOP LD A &15 ADD A A 1 LD &15 A NOP NOP NOP NOP PCU 0 NOP NOP NOP NOP PCL ...
SimpleRaster/bak/irq.asm
diydsp/simple_raster
0
128264
*=$ce00 ; --------------------------- ; IRQ test irq_test sei ;disable maskable IRQs lda #$7f sta $dc0d ;disable timer interrupts which can be generated by the two CIA chips sta $dd0d ;the kernal uses such an interrupt to flash the cursor and scan the keyboard, so we ...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_405.asm
ljhsiun2/medusa
9
128265
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r14 push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x395e, %rsi lea addresses_UC_ht+0x1025e, %rdi nop nop nop add %r13, %r13 mov $12, %rcx rep movsl nop nop nop sub %r10, %r10 lea addresses_normal_ht+0xe25e, %rsi lea ...
oeis/026/A026015.asm
neoneye/loda-programs
11
128266
; A026015: a(n) = number of (s(0), s(1), ..., s(2n)) such that s(i) is a nonnegative integer and |s(i) - s(i-1)| = 1 for i = 1,2,...,n, s(0) = 2, s(2n) = 8. Also a(n) = T(2n,n-3), where T is the array defined in A026009. ; Submitted by <NAME> ; 1,8,45,219,987,4248,17748,72675,293436,1172908,4653935,18366075,72186075,28...
non_regression/other_sparc_1.o.asm
LRGH/plasmasm
1
128267
.file "a02ter.c" .data .globl t .type t, #object t: .long toto .long tata .size t, 8 # ---------------------- .text .globl toto .type toto, #function toto: save %sp, -96, %sp st %i0, [%fp+68] ld [%fp+68], %g1 ld [%g0+%g1]0, %g1 add %g1, 1, %g2 ld [%fp+68], %g1 st %g2, [%g0+%g1]0 restore retl ...
Irvine/Examples/ch04/32 bit/Operator.asm
alieonsido/ASM_TESTING
0
128268
; Operators (Operator.asm) ; Demonstrates the TYPE, LENGTHOF, and SIZEOF operators .386 .model flat,stdcall .stack 4096 ExitProcess PROTO, dwExitCode:dword .data byte1 BYTE 10,20,30 array1 WORD 30 DUP(?),0,0 array2 WORD 5 DUP(3 DUP(?)) array3 DWORD 1,2,3,4 digitStr BYTE '12345678',0 myArray BYTE 10,20...
programs/oeis/011/A011975.asm
karttu/loda
1
128269
; A011975: Covering numbers C(n,3,2). ; 1,3,4,6,7,11,12,17,19,24,26,33,35,43,46,54,57,67,70,81,85,96,100,113,117,131,136,150,155,171,176,193,199,216,222,241,247,267,274,294,301,323,330,353,361,384,392,417,425,451,460,486,495,523,532,561,571,600,610,641,651,683,694,726,737,771,782,817,829,864,876,913,925,963,976,1014,10...
src/third_party/nasm/travis/test/mpx.asm
Mr-Sheep/naiveproxy
2,219
128273
;Testname=mpx; Arguments=-felf -ompx.o -O0; Files=stdout stderr mpx.o BITS 32 bndmk bnd1, [eax] bndmk bnd1, [0x399] bndmk bnd1, [ecx+0x3] bndmk bnd1, [eax+ecx] bndmk bnd1, [ecx*1] bndmk bnd1, [edx+1*eax+0x3] ; bndmov bndmov bnd1, [eax] bndmov bnd1, [0x399] bndmov bnd1, [ecx+0x3] bndmov bnd1, [eax+ecx] bnd...
win32/DDDraw/ddrawkurs/bmp24bitread.asm
QAston/fasm-2006
0
128274
CZytaj BMP FileName WidthAndHeight DestAdres virtual at buffer BMPHEADER: bfType dw ? bfSize dd ? bfReserved dd ? bfOffBits dd ? biSize dd ? biWidth dd ? biHeight dd ? biPlanes dw ? biBitCount dw ? biCompression dd ? biSizeImage dd ? biXPelsPerMeter dd ?...
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i7-7700_9_0xca_notsx.log_1524_516.asm
ljhsiun2/medusa
9
128275
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0xa97e, %r13 nop nop nop nop and $20665, %r8 movups (%r13), %xmm5 vpextrq $1, %xmm5, %rbp nop nop sub %rbp, %rbp lea addresses_WT_ht+0x93e, %r10 nop nop nop nop nop cmp %r13, %...
oeis/197/A197193.asm
neoneye/loda-programs
11
128276
; A197193: Binomial(n+10, 10)*7^n ; 1,77,3234,98098,2403401,50471421,942133192,16016264264,252256162158,3727785507446,52188997104244,697434779483988,8950413003377846,110847422580294862,1330169070963538344,15518639161241280680,176524520459119567735,1962537315692564605995,21369850770874592376390,228319984551975908021430,...
programs/oeis/283/A283310.asm
neoneye/loda
22
128277
<gh_stars>10-100 ; A283310: Nim value of complete graph K_n ; 0,1,2,0,1,2,0,2,0,1,2 mov $1,$0 mul $1,2 sub $1,$0 lpb $1 add $0,$1 mul $0,2 sub $0,2 sub $1,7 lpe mod $0,3
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_391.asm
ljhsiun2/medusa
9
128279
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r15 push %r8 push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x1bf53, %r8 nop nop nop inc %r15 mov (%r8), %dx nop cmp $3302, %r12 lea addresses_A_ht+0x109c4, %r9 nop nop nop xor %rbx, %rbx mov (%r9), %r12d nop nop nop nop cmp $61...
Transynther/x86/_processed/US/_st_4k_sm_/i7-7700_9_0x48.log_21829_1594.asm
ljhsiun2/medusa
9
128280
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r15 push %r8 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x15f52, %r11 nop nop nop and %rax, %rax mov $0x6162636465666768, %r15 movq %r15, %xmm7 movups %xmm7, (%r11) and %rdx, %rdx lea addresses_WT_ht+0x15f88,...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2817.asm
ljhsiun2/medusa
9
128281
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x1ab46, %rdx nop nop nop nop xor $59222, %rbp mov $0x6162636465666768, %rdi movq %rdi, %xmm4 vmovups %ymm4, (%rdx) nop xor %r12, %r12 l...
Chapter06/macro_win.asm
PacktPublishing/Mastering-Assembly-Programming
34
128282
; File: src\template_win.asm ; First of all, we tell the compiler which type of executable ; we want it to be. In our case it is a 32-bit PE executable. format PE GUI ; Tell the compiler where we want our program to start - define ; the entry point. We want it to be at the place labeled with '_start'. entry _...
programs/oeis/168/A168420.asm
neoneye/loda
22
128283
<gh_stars>10-100 ; A168420: a(n) = 4 + 10*floor(n/2). ; 4,14,14,24,24,34,34,44,44,54,54,64,64,74,74,84,84,94,94,104,104,114,114,124,124,134,134,144,144,154,154,164,164,174,174,184,184,194,194,204,204,214,214,224,224,234,234,244,244,254,254,264,264,274,274,284,284,294,294,304,304,314,314,324,324,334,334,344,344,354,354,...
programs/config.asm
mikebdp2/MichalOS
14
128285
<filename>programs/config.asm ; ------------------------------------------------------------------ ; MichalOS Configuration ; ------------------------------------------------------------------ ; SYSTEM.CFG map: ; 0 = Desktop background color (BYTE) ; 1 = Window background color (BYTE) ; 2 = Password enabled (BYTE) ; 3...
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xca_notsx.log_21829_485.asm
ljhsiun2/medusa
9
128286
<filename>Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xca_notsx.log_21829_485.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x1c4e1, %rsi lea addresses_WT_ht+0x10105, %rdi add $31422, %r14 mov $4...
code/Forec/t15.asm
KongoHuster/assembly-exercise
1
128287
<filename>code/Forec/t15.asm ;; last edit date: 2016/10/24 ;; author: Forec ;; LICENSE ;; Copyright (c) 2015-2017, Forec <<EMAIL>> ;; Permission to use, copy, modify, and/or distribute this code for any ;; purpose with or without fee is hereby granted, provided that the above ;; copyright notice and this permission no...
source/utility/tokeniser.asm
paulscottrobson/Basic65816
0
128288
; ******************************************************************************************* ; ******************************************************************************************* ; ; Name : tokeniser.asm ; Purpose : ASCII -> Tokens converter. ; Date : 15th June 2019 ; Author : <EMAIL> ; ; ************...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1766.asm
ljhsiun2/medusa
9
128289
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r14 push %r15 push %rax push %rcx push %rdi push %rsi lea addresses_WC_ht+0xf3a0, %r12 nop nop and %r10, %r10 mov (%r12), %edi nop nop nop and %r14, %r14 lea addresses_normal_ht+0x1904c, %r11 sub $38703, %r15 movw $0x6162, (%r11) nop nop n...
c2000/C2000Ware_1_00_06_00/libraries/dsp/VCU/c28/source/vcu2/crc/vcu2_crc_32.asm
ramok/Themis_ForHPSDR
0
128290
<filename>c2000/C2000Ware_1_00_06_00/libraries/dsp/VCU/c28/source/vcu2/crc/vcu2_crc_32.asm ;;***************************************************************************** ;;! \file source/vcu2/vcu2_crc_32.asm ;;! ;;! \brief 32-bit CRC ;; ;; \date Oct 8, 2012 ;;! ;; ;; Group: C2000 ;; Target Family: ...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1342.asm
ljhsiun2/medusa
9
128291
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r15 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_D_ht+0x16861, %rsi lea addresses_WC_ht+0x1d8f7, %rdi nop nop nop sub %r13, %r13 mov $123, %rcx rep movsq nop dec %r8 lea addresses_A_ht+0x19f91, %r9 nop nop nop nop xor $32358, %r10 m...
masm/3_bx.asm
oceanwavechina/assembly
0
128292
<reponame>oceanwavechina/assembly<filename>masm/3_bx.asm ; 这段代码是演示loop循环和bx的联合使用 ; bx寄存器是偏移地址寄存器,为啥英文名字叫base ; 用 debug中的d 命令查看内存数据 [d ffff:000]是不是被读取 ; dos内存中一般 0:200 - 0:300 这段内存是安全的,也就是不会被系统使用 assume cs:loopmem loopmem segment start: mov ax, 0ffffh ; 汇编中的数据不能以字母开头,前面要添0 mov ds, ax ; 指定要读取的,内存中,数据的基...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1777.asm
ljhsiun2/medusa
9
128294
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %rax push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x189ec, %rsi lea addresses_UC_ht+0x1088c, %rdi nop nop nop xor %rbp, %rbp mov $76, %rcx rep movsb nop sub %r10, %r10 lea addresses_WC_ht+0x120d, %rax nop nop nop add %r12, %r...
src/6509/scr_vdpio.asm
vossi1/cbm2-pc-emulator-v9958
0
128296
<filename>src/6509/scr_vdpio.asm ; ipc_v9958.asm ; version 0.73d modified by Vossi (c) 03/2019 for the v9958-card ; video buffer copy routine ; assemble with xa65: ; xa src/6509/scr_vdpio.asm -O PETSCII -o dist/prg/screen_vdpio.prg CPU_ACCESS_BANK = $1 PROC_ADDR = $0100 ;----------------------------------------------...
Src/Payloads/Aes/64/sbox.asm
The-Cracker-Technology/hyperion
0
128297
;loads the sbox into memory. idea behind this implementation: ;add garbage code, split up array into sub-arrays, reverse order, etc. ;to hide rcon where its neccessary proc createSBox uses rdi rsi, sbox_ptr:QWORD mov [sbox_ptr],rcx mov rdi,[sbox_ptr] mov rsi,sbox_array mov rcx,SBOX_SIZE repz m...
libsrc/_DEVELOPMENT/l/z80/long/l_long_sbcu_exx.asm
jpoikela/z88dk
640
128298
<filename>libsrc/_DEVELOPMENT/l/z80/long/l_long_sbcu_exx.asm<gh_stars>100-1000 SECTION code_clib SECTION code_l PUBLIC l_long_sbcu_exx EXTERN error_lzc l_long_sbcu_exx: ; compute unsigned a -= (unsigned b + carry) ; unsigned a saturates at 0 ; ; enter : dehl = unsigned long b ; dehl'= unsign...
Microsoft Word for Windows Version 1.1a/Word 1.1a CHM Distribution/Opus/asm/rtfinn.asm
lborgav/Historical-Source-Codes
7
128299
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> extern...
oeis/152/A152929.asm
neoneye/loda-programs
11
128300
<filename>oeis/152/A152929.asm ; A152929: Number of sets (in the Hausdorff metric geometry) at each location between two sets defining a polygonal configuration consisting of two 4-gonal polygonal components chained with string components of length l as l varies. ; Submitted by <NAME> ; 113,176,289,465,754,1219,1973,31...
src/start.asm
ViGrey/calendar_dot_exe
2
128301
<gh_stars>1-10 ; Copyright (C) 2020-2021, <NAME> ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions ; are met: ; ; 1. Redistributions of source code must retain the above copyright ; notice, this list of c...
oeis/095/A095852.asm
neoneye/loda-programs
11
128305
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A095852: Triangle read by rows: T(n,k) = (n-k+1)^(k^2), n>=1, 1<=k<=n. ; Submitted by <NAME>(w2) ; 1,2,1,3,16,1,4,81,512,1,5,256,19683,65536,1,6,625,262144,43046721,33554432,1,7,1296,1953125,4294967296,847288609443,68719476736,1,8,2401,10077696,152587890625,112589990684...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_731.asm
ljhsiun2/medusa
9
128306
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x9bb7, %rcx nop nop nop nop nop cmp $36067, %r10 movb $0x61, (%rcx) sub $35019, %rbp lea addresses_WC_ht+0x1e0ef, %rsi lea addresses_UC_ht+0x9417, %rdi nop nop nop nop nop...
src/preset_data_ad2020.asm
Lui37/lttphack
0
128308
<filename>src/preset_data_ad2020.asm ; Preset locations preset_ad2020_east_bed: db $02 ; Dungeon dw $0104 ; Room Index dw $2110 ; BG1 Vertical Scroll dw $2110 ; BG2 Vertical Scroll dw $0900 ; BG1 Horizontal Scroll dw $0900 ; BG2 Horizontal Scroll dw $0940 ; Link X dw $215A ; Link Y dw $017F ; Camera X dw $017F ; Camer...
src/clvsbtce.asm
thecatkitty/raster-fonts
1
128309
; Generated by RasFntCv (build Tue May 1 23:18:59 2018) Codepage: dw 852 Glyph00: ; Null db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b db 00000000b d...
oeis/193/A193388.asm
neoneye/loda-programs
11
128310
<reponame>neoneye/loda-programs ; A193388: Sum of even divisors of phi(n). ; Submitted by <NAME> ; 0,0,2,2,6,2,8,6,8,6,12,6,24,8,14,14,30,8,26,14,24,12,24,14,36,24,26,24,48,14,48,30,36,30,56,24,78,26,56,30,84,24,64,36,56,24,48,30,64,36,62,56,84,26,84,56,78,48,60,30,144,48,78,62,120,36,96,62,72,56,96,56,182,78,84,78,144...
test/cgt-csl-csr-csu.asm
kspalaiologos/asmbf
67
128311
mov r1, 2 ; r1 = 2 cgt r1, 1 ; true csl r1 ; 2 * 2 csl r1 ; 2 * 2 * 2 csr r1 ; 2 * 2 csu r1, 1 ; 2 * 2 - 1 cad r1, 48; 2 * 2 + 47 out r1 ; 4 + 47 = '3'
programs/oeis/309/A309954.asm
neoneye/loda
22
128312
; A309954: Product of digits of (n written in base 4). ; 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 lpb $$4 add $1,$0 mov $2,4 lpb $0 mod $0,4 ...
libsrc/target/gl6000/input/in_Inkey.asm
ahjelm/z88dk
640
128313
<gh_stars>100-1000 MODULE in_Inkey PUBLIC in_Inkey PUBLIC _in_Inkey EXTERN in_keytranstbl ; write line to port 0x40 ; read first 8 rows form 0x41 ; read second 8 rows form 0x42 ; ; We have 128 characters per set... in_Inkey: _in_Inkey: ld hl,ignore_keys ld c,@11111110 ld ...
asg/asm/rdkafka_coord.asm
asgkafka/librdkafka
0
128314
*PROCESS DUPALIAS * * Compiled by DCC Version 2.25.07 Mar 6 2021 08:51:07 * on Fri Apr 30 15:35:30 2021 * WXTRN @@ZARCH# * * * * Code Section * @CODE ALIAS X'7CD9C4D2C1C6D2C16DC3D6D6D9C4' @CODE CSECT @CODE AMODE ANY @CODE RMODE ANY @DATA ALIAS X'7C998492818692816D8396969984' writ...
libsrc/_DEVELOPMENT/target/cpm/driver/terminal/cpm_00_input_cons.asm
jpoikela/z88dk
640
128316
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; cpm_00_input_cons ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; The input console is read through bdos function 10. ; Does not return until a line is read. ; ; ;;;;;;;;;;;;;;;;;;;; ; DRIV...
programs/oeis/053/A053767.asm
neoneye/loda
22
128317
; A053767: Sum of first n composite numbers. ; 0,4,10,18,27,37,49,63,78,94,112,132,153,175,199,224,250,277,305,335,367,400,434,469,505,543,582,622,664,708,753,799,847,896,946,997,1049,1103,1158,1214,1271,1329,1389,1451,1514,1578,1643,1709,1777,1846,1916,1988,2062,2137,2213,2290,2368,2448,2529,2611,2695,2780,2866,2953,3...
Assembly/fib.asm
p-rivero/CESC16
2
128321
#include "OS/OS.inc" #bank program Title: str("Fibonacci sequence:\n") #align 32 MAIN_PROGRAM: ; Print title in cyan mov a0, COLOR.CYAN syscall OUTPUT.SetColor mov a0, Title syscall PRINT.string ; Print rest of lines in white mov a0, COLOR.WHITE syscall OUTPUT.SetColor ; ...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1234.asm
ljhsiun2/medusa
9
128322
.global s_prepare_buffers s_prepare_buffers: push %r13 push %rbx push %rdx push %rsi lea addresses_D_ht+0x1e674, %r13 nop nop nop add %rdx, %rdx mov (%r13), %si nop add $33428, %rbx pop %rsi pop %rdx pop %rbx pop %r13 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %r13 push %r14 push %r8 push %r...
programs/oeis/227/A227108.asm
karttu/loda
0
128323
<reponame>karttu/loda ; A227108: Denominators of harmonic mean H(n,5), n >= 0. ; 1,3,7,4,9,1,11,6,13,7,3,8,17,9,19,2,21,11,23,12,1,13,27,14,29,3,31,16,33,17,7,18,37,19,39,4,41,21,43,22,9,23,47,24,49,1,51,26,53,27,11,28,57,29,59,6,61,31,63,32,13,33,67,34,69,7,71,36,73,37,3,38,77 add $0,2 mov $2,4 sub $2,$0 add $0,3 add...
oeis/202/A202051.asm
neoneye/loda-programs
11
128326
<filename>oeis/202/A202051.asm ; A202051: Number of (n+2) X 9 binary arrays avoiding patterns 001 and 110 in rows and columns. ; 1926,7848,25650,71964,180054,411696,874998,1750140,3325410,6046344,10581246,17906868,29418570,47069856,73546794,112483476,168725358,248648040,360539802,515057004,725762286,1009756368,13884151...
programs/oeis/103/A103469.asm
karttu/loda
1
128327
<reponame>karttu/loda<filename>programs/oeis/103/A103469.asm ; A103469: Number of polyominoes without holes consisting of 3 regular unit n-gons. ; 1,2,2,3,2,3,3,4,4,5,4,5,5,6,6,7,6,7,7,8,8,9,8,9,9,10,10,11,10,11,11,12,12,13,12,13,13,14,14,15,14,15,15,16,16,17,16,17,17,18,18,19,18,19,19,20,20,21,20,21,21,22,22,23,22,23,...