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 |
|---|---|---|---|---|
tests/rule_arg_glued.asm | clubby789/customasm | 1 | 196166 | ; ::: include
#ruledef test
{
ld r{x} => 0x55 @ x`8
}
; :::
ld r0 ; = 0x5500
; :::
ld r 0 ; = 0x5500
; :::
ld r12 ; = 0x550c
; :::
ld r257 ; = 0x5501
; :::
ld r 0xff ; = 0x55ff
; :::
ld r0xff ; error: no match
; :::
ld r0x123 ; error: no match
; :::
ld 0 ; error: no match
; :::
x = 0
ld rx ; error: no match
; =... |
projects/04/mult/mult.asm | azaslavsky/nand2tetris | 0 | 196167 | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by <NAME> Schocken, MIT Press.
// File name: projects/04/Mult.asm
// Multiplies R0 and R1 and stores the result in R2.
// (R0, R1, R2 refer to RAM[0], RAM[1], and RAM[2], respectively.)
// Set R2 to 0.
@R2
AM=... |
Modules/Module4/Multiplication/multiplication.asm | hackettccp/CSCI213 | 0 | 196168 | <filename>Modules/Module4/Multiplication/multiplication.asm
#Demonstrates multiplication with the mult mnemonic
#Run and look at the hi and lo registers
#(Data will only be in lo because the product is a small number
.text
li $t0, 5 #Multiplier
li $t1, 8 #Multiplicand
mult $t0, $t1 #Multiplies $t0 and $t1 ... |
dehrust_ix_231b.asm | uniabis/z80depacker | 25 | 196169 | <filename>dehrust_ix_231b.asm
; Z80 HRUST depacker.
;
; in: HL - from
; DE - to
; kills: AF, BC,DE,HL, BC',DE',HL', IX
; does not move anything before depacking, unlike dehrust_*_hdr.asm
;
; Uses IX to get packed stream, so somewhat slower than *_stk_* versions, but
; it could be freely interrupted.
;
; you must U... |
Source/CURSE (2).asm | AAKMakes/ASM-projects | 0 | 196170 | ;
; Comment
;
; === STACK SEGMENT ===
MyStack segment stack
DB 64 dup('12345678')
MyStack endS
; === DATA SEGMENT ===
MyData segment
; --- Declare your variables here ---
CURSE DB "F",7,"*",7,"*",7,"*",7,7,7,7,"$"
MyData endS
MyCode segment
Assume CS:Mycode,DS:MyData
;Includes go here
INCLUDE C... |
MemoryFix/OsxAptioFixDrv/X64/AsmFuncsX64.asm | crazyinsanejames/CloverBootloader | 3,861 | 196172 | ;------------------------------------------------------------------------------
;
; Some assembler helper functions plus boot.efi kernel jump callback
;
; by dmazar
;
;------------------------------------------------------------------------------
XDTR STRUCT
Limit DW ?
Base DQ ?
XDTR ENDS
; C callb... |
exampl07/shuflarr/unique_riched/getfn.asm | AlexRogalskiy/Masm | 0 | 196173 | <filename>exampl07/shuflarr/unique_riched/getfn.asm
; ########################################################################
GetFileName proc hParent:DWORD,lpTitle:DWORD,lpFilter:DWORD
mov ofn.lStructSize, sizeof OPENFILENAME
m2m ofn.hWndOwner, hParent
m2m ofn.hInstance, hInstan... |
programs/oeis/162/A162994.asm | neoneye/loda | 22 | 196174 | <filename>programs/oeis/162/A162994.asm
; A162994: The third left hand column of triangle A162990
; 64,1600,57600,2822400,180633600,14631321600,1463132160000,177038991360000,25493614755840000,4308420893736960000,844450495172444160000,190001361413799936000000
add $0,4
seq $0,142 ; Factorial numbers: n! = 1*2*3*4*...*n ... |
EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/CpuFlushCache.asm | CEOALT1/RefindPlusUDK | 2,757 | 196175 | ;/*++
;
;Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
;This program and the accompanying materials
;are licensed and made available under the terms and conditions of the BSD License
;which accompanies this distribution. The full text of the license may be foun... |
common/config.asm | laoo/TimePilot | 24 | 196176 | <gh_stars>10-100
; ENGINE SETTINGS | co-op with ENGINE OL OFFSETS
engineMaxEnemies equ 8 ; max amount of enemies | max: engineMaxCommon - engimeMaxEnemyBombs
engimeMaxPlayerShots equ 8 ; max amount of player shots | max: 8
engimeMaxEnemyShots equ 2 ; max amount of enemy shots | max: 2 (limited by... |
hello.asm | Devlious/asmx86-excercises | 0 | 196177 | section .data
text1 db "Whats your name: "
len1 equ $ - text1
text2 db "Hello, "
len2 equ $ - text2
section .bss
name resb 16
section .text
global _start
_start:
call _printText1
call _getName
call _printText2
call _printName
mov rax, 60
mov rdi, 0
syscall
_getName:
mov rax, 0
mov rdi... |
oeis/163/A163383.asm | neoneye/loda-programs | 11 | 196178 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A163383: a(n) = (n-1)*2^n - 1.
; -1,3,15,47,127,319,767,1791,4095,9215,20479,45055,98303,212991,458751,983039,2097151,4456447,9437183,19922943,41943039,88080383,184549375,385875967,805306367,1677721599,3489660927,7247757311,15032385535,31138512895,64424509439,1331439861... |
roms/tests/ppu/sprite_hit_tests_2005.10.05/source/04.flip.asm | MrKOSMOS/ANESE | 1,461 | 196179 | <reponame>MrKOSMOS/ANESE
; Tests sprite 0 hit for single pixel sprite and background.
.include "prefix_sprite_hit.a"
test_name:
.db "SPRITE HIT FLIPPING",0
.code
test_flip:
jsr set_sprite_xy
rts
.code
reset:
jsr begin_sprite_hit_tests
; Single solid tile ... |
unordnung_auch_assembler/asm/attiny13/versuche/beeps1.asm | no-go/Blink_atmega328p | 0 | 196180 | ; atTINY 13 - Board without 7seg display
.equ PORTB, 0x18
.equ DDRB, 0x17
; set Port-direction
Start:
ldi r16, 0b010000 ; Pin 4 is output
out DDRB, r16
Main:
ldi r24, 0xFF ; for the tonefreq
ldi r25, 0x50 ; tone lengh
rcall Tone ; make a tone
rcall Waiter ; wait r24 times
rjmp Main ; rerun
; Sub... |
src/Modules/execute_buffer.asm | SavagePencil/TriloTrackerSMSReplayerApp | 0 | 196181 | .IFNDEF __EXECUTE_BUFFER_ASM__
.DEFINE __EXECUTE_BUFFER_ASM__
.SECTION "Execute Buffer - Init" FREE
.STRUCT sExecuteEntry
CallbackFunction DW ; The callback function. Entries requiring additional parameters can derive from this.
.ENDST
.STRUCT sExecuteBufferDescriptor
TotalCapacity D... |
Tools/swat/Stub/bpt.asm | steakknife/pcgeos | 504 | 196182 | <reponame>steakknife/pcgeos<gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: bpt.asm
AUTHOR: <NAME>, Apr 14, 1992
ROUTINES:
Name Description
---- -----------
REVISION HISTO... |
Transynther/x86/_processed/US/_zr_/i3-7100_9_0xca_notsx.log_21829_188.asm | ljhsiun2/medusa | 9 | 196183 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x14fdc, %rsi
lea addresses_UC_ht+0xefec, %rdi
nop
nop
cmp %r11, %r11
mov $3, %rcx
rep movsb
nop
and $18954, %rax
lea addresses_D_ht+0x67ec, %rbx
nop
nop
add %rdx, %rdx
movb $... |
CSC-308/MASM/Hello World.asm | FrancesCoronel/cs-hu | 2 | 196184 | <reponame>FrancesCoronel/cs-hu<filename>CSC-308/MASM/Hello World.asm
;
; Hello World!
;
.386
.model flat,stdcall
.STACK
include kernel32.inc
include masm32.inc
includelib kernel32.lib
includelib masm32.lib
.DATA
ExitMsg byte "Press any key to continue . . . ", 00dh, 00ah, 0
HelloMsg byte "Hello Worl... |
Transynther/x86/_processed/NONE/_st_/i7-8650U_0xd2.log_159_373.asm | ljhsiun2/medusa | 9 | 196185 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_st_/i7-8650U_0xd2.log_159_373.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xf229, %rsi
lea addresses_normal_ht+0x1d089, %rdi
nop
n... |
programs/oeis/008/A008233.asm | neoneye/loda | 22 | 196186 | <filename>programs/oeis/008/A008233.asm
; A008233: a(n) = floor(n/4)*floor((n+1)/4)*floor((n+2)/4)*floor((n+3)/4).
; 0,0,0,0,1,2,4,8,16,24,36,54,81,108,144,192,256,320,400,500,625,750,900,1080,1296,1512,1764,2058,2401,2744,3136,3584,4096,4608,5184,5832,6561,7290,8100,9000,10000,11000,12100,13310,14641,15972,17424,19008... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1119.asm | ljhsiun2/medusa | 9 | 196187 | .global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xedcc, %rsi
lea addresses_A_ht+0x119b8, %rdi
nop
sub %rax, %rax
mov $77, %rcx
rep movsq
nop
add %r15, %r15
lea addresses_WC_ht+0x1017c, %rsi
lea addresses_UC_ht+0x16cfc, %rdi
n... |
oeis/127/A127233.asm | neoneye/loda-programs | 11 | 196188 | <filename>oeis/127/A127233.asm<gh_stars>10-100
; A127233: a(n) = n!*(n*(n+1)/2)!.
; Submitted by <NAME>
; 1,1,12,4320,87091200,156920924160000,36785478363630796800000,1536637256843037856927580160000000,14998770936168817088309737749441675264000000000,43408511507665453002645192043544271642563569306828800000000000
mov $2... |
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xca.log_21829_299.asm | ljhsiun2/medusa | 9 | 196189 | .global s_prepare_buffers
s_prepare_buffers:
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x71fe, %rsi
lea addresses_WC_ht+0x1eb68, %rdi
sub $11712, %rbp
mov $107, %rcx
rep movsw
nop
nop
nop
nop
xor %rdi, %rdi
pop %rsi
pop %rdi
pop %rcx
pop %rbp
ret
.global s_faulty_load
s_faulty_load:
push %r10
pus... |
sha1_mb/sha1_job.asm | intelkevinputnam/isa-l_crypto | 178 | 196190 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2016 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... |
src/main/states/load_map.asm | ISSOtm/gb-open-world | 8 | 196191 |
register_state LoadMap
LoadMapStateInit:
ld a, [wNextMap]
call LoadMap
jp RedrawScreen
LoadMapStateUpdate:
; Do this here instead of the init func because you shouldn't switch states in the init
ld a, STATE_FADE
ld [wCurState], a
ld a, STATE_NORMAL
ld [wAfterFadeState], a
; Since we'll be fading out, w... |
scripts/CeladonPokecenter.asm | AmateurPanda92/pokemon-rby-dx | 9 | 196192 | CeladonPokecenter_Script:
call Serial_TryEstablishingExternallyClockedConnection
jp EnableAutoTextBoxDrawing
CeladonPokecenter_TextPointers:
dw CeladonHealNurseText
dw CeladonPokecenterText2
dw CeladonPokecenterText3
dw CeladonTradeNurseText
CeladonTradeNurseText:
TX_CABLE_CLUB_RECEPTIONIST
CeladonHealNurseTe... |
xv6-public/wc.asm | mapleCows/xv6repo2 | 0 | 196194 | <filename>xv6-public/wc.asm
_wc: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
printf(1, "%d %d %d %s\n", l, w, c, name);
}
int
main(int argc, char *argv[])
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 57 push %edi
... |
data/pokemon/menu_icons.asm | Trap-Master/spacworld97-thingy | 0 | 196196 | ; party menu icons
MonMenuIcons:
db ICON_BULBASAUR ; BULBASAUR
db ICON_BULBASAUR ; IVYSAUR
db ICON_BULBASAUR ; VENUSAUR
db ICON_CHARMANDER ; CHARMANDER
db ICON_CHARMANDER ; CHARMELEON
db ICON_BIGMON ; CHARIZARD
db ICON_SQUIRTLE ; SQUIRTLE
db ICON_SQUIRTLE ; WARTORTLE
db ICON_SQUIRTLE ; B... |
myFirstHello/sandbox.asm | ryanlockman333/UCDenver_School_Projects | 0 | 196197 | section .data
section .text
global main
main:
nop
; Sandbox your instructions...
mov eax, 100
mov ebx, 10
div ebx
; Sandbox your instructions...
nop
section .bss
|
Source/HBIOS/hbios.asm | davidknoll/RomWBW | 194 | 196198 | <reponame>davidknoll/RomWBW
;
;==================================================================================================
; HBIOS
;==================================================================================================
;
; THIS FILE CONTAINS THE HBIOS IMAGE THAT IS INTENDED TO RUN IN A DEDICAT... |
Benchmarks/Data Related Test.asm | Sara-HY/MIPS-CPU | 0 | 196200 | <gh_stars>0
#������������Բ��ԣ�����������ɵȲ�������Ͳ������㣬38��ָ��
.text
addi $s1, $0, 4
sw $s1, 0($s1)
lw $s2, 0($s1)
addi $s2,$s2,-4 #s2 address #load-use���
addi $s0,$0,0 #���г�ֵ
addi $s1,$s0,1 #������һ�������Ȳ�ֵΪ1 ������ָ�����
add $s0,$s0,$s1 #���ۼӺ� ��������ָ�����
add $s2,$s2,4 ... |
lab_03/lab_03_01.asm | ak-karimzai/asm | 0 | 196201 | EXTRN output_X: near
STK SEGMENT PARA STACK 'STACK'
db 100 dup(0)
STK ENDS
DSEG SEGMENT PARA PUBLIC 'DATA'
X db 'R'
db '<NAME>$'
DSEG ENDS
CSEG SEGMENT PARA PUBLIC 'CODE'
assume CS:CSEG, DS:DSEG, SS:STK
main:
mov ax, DSEG
mov ds, ax
call output_X
mov ax, 09
int 21h
mov ax, 4c00h
int 21h
CSEG... |
base/common/strmove.asm | zbyti/Mad-Pascal | 1 | 196203 |
; @move -> memmove.asm
/*
@moveSTRING
@moveSTRING_1
*/
.proc @moveSTRING (.word @move.dst .word @move.cnt) .var
.nowarn @move
dec @move.cnt
ldy #$00
lda @move.cnt
cmp (@move.src),y
scs
sta (@move.dst),y
rts
.endp
.proc @moveSTRING_1 (.word ya) .reg
sta @move.dst
sty @move... |
Driver/Printer/PrintCom/Text/Font/fontNECInfo.asm | steakknife/pcgeos | 504 | 196204 |
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: NEC 24-pin drivers
FILE: fontNECInfo.asm
AUTHOR: <NAME>, 1 Aug 1992
REVISION HISTORY:
Name Date Description
---- ---- -----------... |
variapatches/vanilla_bugfixes.asm | strotlog/SMBasepatch | 0 | 196205 | ;;; Some vanilla bugfixes included in all VARIA seeds
;;; compile with asar
arch snes.cpu
lorom
;;; skips suits acquisition animation
org $848717
rep 4 : nop
;;; fix to speed echoes bug when hell running
org $91b629
db $01
;;; disable GT code
org $aac91c
bra $3f
;;; Pause menu fixes :
;;; d... |
programs/oeis/078/A078903.asm | karttu/loda | 0 | 196206 | ; A078903: a(n) = n^2 - Sum_{u=1..n} Sum_{v=1..u} valuation(2*v, 2).
; 0,0,1,1,2,3,5,5,6,7,9,10,12,14,17,17,18,19,21,22,24,26,29,30,32,34,37,39,42,45,49,49,50,51,53,54,56,58,61,62,64,66,69,71,74,77,81,82,84,86,89,91,94,97,101,103,106,109,113,116,120,124,129,129,130,131,133,134,136,138,141,142,144,146,149,151,154,157,16... |
Ejemplos/mikroBasic/display 7 segmentos/display7segmentos.asm | DAFRELECTRONICS/ThunderBolt-Nova | 0 | 196207 |
_display:
;display7segmentos.mbas,4 :: sub procedure display(dim num as char)
;display7segmentos.mbas,6 :: case "0"
MOVF FARG_display_num+0, 0
XORLW 48
BTFSS STATUS+0, 2
GOTO L__display4
;display7segmentos.mbas,7 :: latc = %00111111
MOVLW 63
MOVWF LATC+0
GOTO ... |
libsrc/fcntl/spectrum/zxbasdrv/zx_load_block.asm | meesokim/z88dk | 0 | 196208 | <filename>libsrc/fcntl/spectrum/zxbasdrv/zx_load_block.asm
;
; Load a whole file by the BASIC driver
;
; Stefano - 28/06/2007
;
; int zx_load_block(char *name, void *addr, size_t len)
;
; $Id: zx_load_block.asm,v 1.2 2015/01/19 01:32:43 pauloscustodio Exp $
PUBLIC zx_load_block
EXTERN zx_setint
EXTERN zx_goto
EX... |
programs/oeis/254/A254379.asm | jmorken/loda | 1 | 196210 | ; A254379: Characteristic function of the even odious numbers (A128309).
; 0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1... |
Windows/FastContains32.asm | clayne/FastExtrema | 6 | 196211 | <reponame>clayne/FastExtrema
; /*******************************************************************
; *
; * Author: <NAME>
; * <EMAIL>
; * https://github.com/komrad36
; *
; * Last updated Mar 12, 2021
; *******************************************************************/
_TEXT$FastContains32 SEGMENT ALIGN(... |
programs/oeis/031/A031138.asm | karttu/loda | 1 | 196212 | <filename>programs/oeis/031/A031138.asm<gh_stars>1-10
; A031138: Numbers k such that 1^5 + 2^5 + ... + k^5 is a square.
; 1,13,133,1321,13081,129493,1281853,12689041,125608561,1243396573,12308357173,121840175161,1206093394441,11939093769253,118184844298093,1169909349211681,11580908647818721
lpb $0,1
add $2,4
add $... |
libsrc/_DEVELOPMENT/arch/ts2068/misc/c/sccz80/tshc_cls_wc_pix.asm | jpoikela/z88dk | 38 | 196214 | <filename>libsrc/_DEVELOPMENT/arch/ts2068/misc/c/sccz80/tshc_cls_wc_pix.asm<gh_stars>10-100
; void tshc_cls_wc_pix(struct r_Rect8 *r, uchar pix)
SECTION code_clib
SECTION code_arch
PUBLIC tshc_cls_wc_pix
EXTERN asm_tshc_cls_wc_pix
tshc_cls_wc_pix:
pop af
pop hl
pop ix
push hl
push hl
push af
... |
practica8/practica8.asm | ramseslopez/Arqui | 0 | 196216 | .data
x12: .float 12.
operacion: .space 101
nombre: .space 101
nombreN: .space 101
buffer: .space 16
res: .space 16
pregunta: .asciiz "\n Calculadora \nElige una opcion: Escribir operacion (1), Leer de archivo (2), Salir (0) \n"
solicitud: .asciiz "Inserte operacion en no... |
oeis/130/A130103.asm | neoneye/loda-programs | 11 | 196217 | ; A130103: Expansion of e.g.f. e^(2x)-(1+x)*e^x+x.
; 0,1,1,4,11,26,57,120,247,502,1013,2036,4083,8178,16369,32752,65519,131054,262125,524268,1048555,2097130,4194281,8388584,16777191,33554406,67108837,134217700,268435427,536870882,1073741793,2147483616,4294967263,8589934558,17179869149,34359738332,68719476699,1374389534... |
data/test_bcd.asm | colinw7/C6502 | 0 | 196218 | SED
LDA #$05
CLC
ADC #$05
OUT A
LDA #$09
CLC
ADC #$10
OUT A
SEC
LDA #$58
ADC #$46
OUT A
CLC
LDA #$12
ADC #$34
OUT A
CLC
LDA #$15
ADC #$26
OUT A
CLC
LDA #$81
ADC #$92
OUT A
SEC
LDA #$46
SBC #$12
OUT A
SEC
LDA #$40
SBC #$13
OUT A
CLC
LDA #$32
... |
src/test/resources/data/reorganizertests/test-inlining-global.asm | cpcitor/mdlz80optimizer | 36 | 196219 | <reponame>cpcitor/mdlz80optimizer
; Test of the function inlining feature (in SDCC, with global labels)
.globl func1
.org 0x4000
; calling func1 (should not be inlined since it's declared as global)
call func1
push af
; calling func2 (should not be inlined since it's declared as global)
call func2
push af
... |
libsrc/stdio_new/buf/scbb0/scbb0_writechar.asm | andydansby/z88dk-mk2 | 1 | 196220 | ; scbb0_writechar
; 08.2009 aralbrec
XLIB scbb0_writechar
; write char to buffer if space is available
;
; enter : hl = & struct scbb0
; c = char to write
; exit : carry reset if successful
; carry set if buffer full
; uses : af, de, hl
.scbb0_writechar
ld de,7
add hl,de
dec (hl) ... |
libsrc/_DEVELOPMENT/arch/sms/misc/c/sdcc_iy/sms_cxy2saddr.asm | jpoikela/z88dk | 640 | 196221 | <gh_stars>100-1000
; unsigned int sms_cxy2saddr(unsigned char x, unsigned char y)
SECTION code_clib
SECTION code_arch
PUBLIC _sms_cxy2saddr
EXTERN asm_sms_cxy2saddr
_sms_cxy2saddr:
pop af
pop hl
push hl
push af
jp asm_sms_cxy2saddr
|
Borland/CBuilder5/Source/RTL/source/math/frexp.asm | TrevorDArcyEvans/DivingMagpieSoftware | 1 | 196222 | ;[]-----------------------------------------------------------------[]
;| FREXP.ASM -- split a double number |
;[]-----------------------------------------------------------------[]
;
; C/C++ Run Time Library - Version 10.0
;
; Copyright (c) 1991, 2000 by Inprise Corporation... |
audio/sfx/healing_machine_3.asm | adhi-thirumala/EvoYellow | 16 | 196223 | <reponame>adhi-thirumala/EvoYellow<gh_stars>10-100
SFX_Healing_Machine_3_Ch1:
duty 2
unknownsfx0x10 44
unknownsfx0x20 4, 242, 0, 5
unknownsfx0x10 34
unknownsfx0x20 2, 241, 0, 5
unknownsfx0x10 8
unknownsfx0x20 1, 0, 0, 0
endchannel
|
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_1_20.asm | ljhsiun2/medusa | 9 | 196224 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r8
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x68bb, %rsi
lea addresses_A_ht+0x40ab, %rdi
nop
sub %rbp, %rbp
mov $122, %rcx
rep movsl
nop
inc %r9
lea addresses_WT_ht+0x14a9b, %rsi
lea addresse... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_595.asm | ljhsiun2/medusa | 9 | 196225 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x17daa, %rbp
nop
nop
nop
nop
inc %rcx
movups (%rbp), %xmm1
vpextrq $1, %xmm1, %r11
nop
inc %r11
lea addresses_normal_ht+0xde2a, %rbp
clflush (%rbp)
nop
nop
nop
inc %r12
movl $... |
week_7/dataset/Assembly/056586.asm | Dumebi35/DumebiCSC102 | 0 | 196226 | ; The secret to getting this program to work is to use
; a 16-bit accumulator. The original program neglected
; to set AL to zero, so we remember to set AX to zero
; in the current program.
.model small
.stack 100h
.data
aList db 6Fh,0B4h,1Fh
sum dw 0 ; changed to a 16-bit variable
.code
extrn cl... |
programs/oeis/152/A152390.asm | neoneye/loda | 22 | 196227 | <reponame>neoneye/loda<gh_stars>10-100
; A152390: Arises in enumerating non-degenerate colorings in Brook's Theorem.
; 6,68,252,648,1370,2556,4368,6992,10638,15540,21956,30168,40482,53228,68760,87456,109718,135972,166668,202280,243306,290268,343712,404208,472350,548756,634068,728952,834098,950220,1078056,1218368,137194... |
Working Disassembly/Levels/FBZ/Misc Object Data/Map - Magnetic Pendulum.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 196228 | dc.w word_3D9B6-Map_FBZMagneticPendulum
dc.w word_3D9D0-Map_FBZMagneticPendulum
dc.w word_3D9EA-Map_FBZMagneticPendulum
dc.w word_3D9F2-Map_FBZMagneticPendulum
word_3D9B6: dc.w 4 ; DATA XREF: ROM:0003D9AEo
dc.b $F0, 7, 0, 0, $FF, $F0
dc.b $F0, 7, 8, 0, 0, 0
dc.b 0, 1, 0, $14, $FF, ... |
tmp1/c55x-sim2/foo/Debug/csl_sar.asm | jwestmoreland/eZdsp-DBG-sim | 1 | 196229 | ;*******************************************************************************
;* TMS320C55x C/C++ Codegen PC v4.4.1 *
;* Date/Time created: Sat Oct 06 06:38:05 2018 *
;****************************************************************************... |
08_Assembly Language Experiment/Experiment 3/3.1/function.asm | Robert-Stackflow/HUST-Courses | 4 | 196230 | <gh_stars>1-10
.686P
.model flat, stdcall
ExitProcess PROTO STDCALL :DWORD
includelib kernel32.lib
includelib libcmt.lib
includelib legacy_stdio_definitions.lib
printf PROTO C :VARARG
include struct.asm
extern LOWF:tuple,MIDF:tuple,HIGHF:tuple,stream:tuple,indexLOW:dword,indexMID:dword,indexHIGH:dword,... |
dasm/src/test/sample.asm | zeh/dasmjs | 16 | 196231 |
; FATROM.ASM
;
;-----------------------------------------------------
; MEMORY MAP -
;-----------------------------------------------------
;
; We throw away some internal ram (96 bytes) in order
; to use direct addressing for the majority of memory
; accesses by mapping the register... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1590.asm | ljhsiun2/medusa | 9 | 196232 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1590.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x16adc, %rax
and $3483, %r12
movl $0x61626364, (%rax)
xor $36673, %r9
lea addre... |
programs/oeis/259/A259755.asm | neoneye/loda | 22 | 196233 | <reponame>neoneye/loda
; A259755: Numbers that are congruent to {4,20} mod 24.
; 4,20,28,44,52,68,76,92,100,116,124,140,148,164,172,188,196,212,220,236,244,260,268,284,292,308,316,332,340,356,364,380,388,404,412,428,436,452,460,476,484,500,508,524,532,548,556,572,580,596,604,620,628,644,652,668,676,692,700,716,724,740,... |
oeis/125/A125119.asm | neoneye/loda-programs | 11 | 196234 | <filename>oeis/125/A125119.asm<gh_stars>10-100
; A125119: Values of repunits with odd length L in base (L+3)/2 representation.
; Submitted by <NAME>
; 1,13,341,19531,2015539,329554457,78536544841,25736391511831,11111111111111111,6115909044841454629,4182283628124518315101,3479492117784426363920483,3461445831219105624193... |
汇编语言/第13章/ex13.asm | jckling/only-python | 1 | 196235 | <reponame>jckling/only-python
;名称:int 7ch中断例程
;功能:完成loop指令功能,中断例程安装在0:200处
;参数:(cx)=循环次数,(bx)=位移
assume cs:code
code segment
start:
;取得写好的中断例程的存储地址,将他复制到0200:0处
;通过offset lp取得初始地址
;需要传送多少?在中断例程结束的位置设置lpend标号,通过offset lpend-offset lp作为传输长度
;设置中断向量表中7ch例程原来存放的入口地址为新的入口地址:0200:0
;考虑地址怎么计... |
Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_8080_313.asm | ljhsiun2/medusa | 9 | 196236 | .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_UC_ht+0xc140, %rsi
lea addresses_WC_ht+0x14008, %rdi
nop
nop
nop
nop
cmp %rdx, %rdx
mov $18, %rcx
rep movsl
nop
inc %rbp
lea addresses_WT_ht+0x14748, %r11
nop
nop
nop
cmp %r9, %r9
mo... |
oeis/076/A076010.asm | neoneye/loda-programs | 11 | 196237 | ; A076010: Fourth column of triangle A075504.
; Submitted by <NAME>
; 1,90,5265,255150,11160261,458810730,18124795305,697117731750,26323112938221,981154011007170,36233774365169745,1329174591745823550,48521083977375207381,1764912230785563088410,64027726517340144702585,2318265575344203617150550,83816023949039380229223741... |
src/cpu/memmap.asm | goodboyandgod/sneese | 0 | 196238 | %if 0
SNEeSe, an Open Source Super NES emulator.
Copyright (c) 1998-2015, <NAME>.
Portions copyright (c) 1998-2003, <NAME>.
Portions copyright (c) 2003-2004, <NAME>.
Portions copyright (c) 2004-2005, Nach. ( http://nsrt.edgeemu.com/ )
Unzip Technology, copyright (c) 1998 <NAME>.
zlib Technology ( www.gzip.org/zlib/ ... |
libsrc/enterprise/set_exos_variable_callee.asm | grancier/z180 | 0 | 196240 | <reponame>grancier/z180<gh_stars>0
;
; Enterprise 64/128 specific routines
; by <NAME>, 2011
;
; set_exos_variable(unsigned char variable, unsigned char value);
;
;
; $Id: set_exos_variable_callee.asm,v 1.5 2016/06/19 20:17:32 dom Exp $
;
SECTION code_clib
PUBLIC set_exos_variable_callee
PUBLIC _set_exos_varia... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1717.asm | ljhsiun2/medusa | 9 | 196241 | <filename>Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1717.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x6905, %r8
nop
sub %r12, %r12
movups (%r8), %xmm2
vpextrq $0, %xmm2, %rax
nop
nop
nop... |
programs/oeis/116/A116150.asm | neoneye/loda | 22 | 196242 | <filename>programs/oeis/116/A116150.asm
; A116150: a(n) = Sum_{j=1..n} (3^j + (-2)^j).
; 1,14,33,130,341,1134,3193,10010,29181,89254,264353,799890,2386021,7185374,21501513,64613770,193622861,581305494,1743042673,5230875650,15689131701,47074385614,141209175833,423655489530,1270910544541,3812843481734,11438306748993,3431... |
oeis/294/A294259.asm | neoneye/loda-programs | 11 | 196243 | ; A294259: a(n) = n*(n^3 + 2*n^2 - 5*n + 10)/8.
; 0,1,4,15,43,100,201,364,610,963,1450,2101,2949,4030,5383,7050,9076,11509,14400,17803,21775,26376,31669,37720,44598,52375,61126,70929,81865,94018,107475,122326,138664,156585,176188,197575,220851,246124,273505,303108,335050,369451,406434,446125,488653,534150,582751,634594... |
libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_setTile.asm | jpoikela/z88dk | 640 | 196244 | <filename>libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_setTile.asm
; ----------------------------------------------------------------
; Z88DK INTERFACE LIBRARY FOR THE BIFROST*2 ENGINE
;
; See "bifrost2.h" for further details
; ----------------------------------------------------------------
; void BIFROST2_se... |
stackvis-tests/asm/push/push.asm | toshipiazza/drstackvis | 3 | 196245 | ; compile with nasm -felf64 foo.asm; ld foo.o -o foo.out
bits 64
section .start
global _start
_start:
; should see deadbeef in json
mov rax, 0xdeadbeef
push rax
; should see cafebabe in json
mov rax, 0xcafebabe
push rax
; exit
mov rax, 60
syscall
|
src/heap/base/asm/x64/push_registers_masm.asm | KDr2/v8 | 0 | 196246 | ;; Copyright 2020 the V8 project authors. All rights reserved.
;; Use of this source code is governed by a BSD-style license that can be
;; found in the LICENSE file.
;; MASM syntax
;; https://docs.microsoft.com/en-us/cpp/assembler/masm/microsoft-macro-assembler-reference?view=vs-2019
public PushAllRegistersAndIterat... |
libsrc/target/x1/stdio/generic_console_printc.asm | Frodevan/z88dk | 640 | 196247 | <reponame>Frodevan/z88dk<filename>libsrc/target/x1/stdio/generic_console_printc.asm<gh_stars>100-1000
SECTION code_clib
PUBLIC generic_console_printc
EXTERN generic_console_xypos
EXTERN __x1_attr
EXTERN __x1_pcg_mode
EXTERN CRT_FONT
... |
programs/oeis/087/A087656.asm | jmorken/loda | 1 | 196250 | <reponame>jmorken/loda<filename>programs/oeis/087/A087656.asm
; A087656: Let f be defined on the rationals by f(p/q) =(p+1)/(q+1)=p_{1}/q_{1} where (p_{1},q_{1})=1. Let f^k(p/q)=p_{k}/q_{k} where (p_{k},q_{k})=1. Sequence gives least k such that p_{k}-q_{k} = 1 starting at n.
; 1,2,2,4,3,6,3,4,5,10,4,12,7,6,4,16,5,18,6... |
engine/overworld/sprite_collisions.asm | opiter09/ASM-Machina | 1 | 196252 | _UpdateSprites::
ld h, $c1
inc h
ld a, SPRITESTATEDATA2_IMAGEBASEOFFSET
.spriteLoop
ld l, a
sub SPRITESTATEDATA2_IMAGEBASEOFFSET
ld c, a
ldh [hCurrentSpriteOffset], a
ld a, [hl]
and a
jr z, .skipSprite ; tests SPRITESTATEDATA2_IMAGEBASEOFFSET
push hl
push de
push bc
call .updateCurrentSprite
pop bc
po... |
libsrc/stdlib/abs.asm | andydansby/z88dk-mk2 | 1 | 196253 | <reponame>andydansby/z88dk-mk2
;
; Small C z88 Misc functions
;
; Return absolute value
; This is interesting method, but so much quicker than what a compiled
; version would do..
;
; -----
; $Id: abs.asm,v 1.5 2007/01/10 08:17:06 aralbrec Exp $
XLIB abs
LIB l_neg
; FASTCALL
.abs
bit 7,h
ret z
jp l_neg
|
oeis/259/A259902.asm | neoneye/loda-programs | 11 | 196254 | ; A259902: n*a(n+1) = (2*n^2+3n-1)*a(n)-(n^2-n-2)*a(n-1); a(0)=0, a(1)=1.
; Submitted by <NAME>
; 0,1,4,26,220,2300,28648,414212,6818728,125907560,2577034480,57906103064,1417086592336,37515931327184,1068289141830880,32558309340991280,1057440044863257952,36460006715962829408,1330080906206563365952,5118349295606378996624... |
sw/programs/led_matrik/main.asm | matejpolj/neorv32 | 0 | 196255 |
main.elf: file format elf32-littleriscv
Disassembly of section .text:
00000000 <_start>:
0: 00000037 lui zero,0x0
00000004 <__crt0_pointer_init>:
4: 80002117 auipc sp,0x80002
8: ff810113 addi sp,sp,-8 # 80001ffc <__ctr0_io_space_begin+0x800021fc>
c: 80000197 ... |
utils/puthex.asm | pchynoweth/cx16-utils | 0 | 196256 | .export puthex
.macpack generic
.include "utils/reg.inc"
.include "cbm_kernal.inc"
.code
; .a - byte with high order nibble zeroed
.proc printc
cmp #$a
bcc @number
clc
adc #'a'-10
bra @print
@number:
clc
adc #'0'
@print:
jsr CHROUT
rts
.endproc
.proc puthex
lda REG::r0
lsr
lsr
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_2_805.asm | ljhsiun2/medusa | 9 | 196257 | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xff41, %rsi
lea addresses_D_ht+0x181c1, %rdi
inc %rdx
mov $49, %rcx
rep movsb
xor %r8, %r8
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %r8
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push ... |
src/test/ref/enum-4.asm | jbrandwood/kickc | 2 | 196258 | // Test of simple enum - inline enum definitions
// Commodore 64 PRG executable file
.file [name="enum-4.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpst... |
oeis/188/A188438.asm | neoneye/loda-programs | 11 | 196259 | ; A188438: Positions of 1 in A188436; complement of A188437.
; Submitted by <NAME>
; 8,16,21,29,37,42,50,55,63,71,76,84,92,97,105,110,118,126,131,139,144,152,160,165,173,181,186,194,199,207,215,220,228,236,241,249,254,262,270,275,283,288,296,304,309,317,325,330,338,343,351,359,364,372,377,385,393,398
add $0,1
mov $1,$... |
programs/oeis/290/A290325.asm | karttu/loda | 0 | 196260 | <filename>programs/oeis/290/A290325.asm<gh_stars>0
; A290325: Number of minimal dominating sets (and maximal irredundant sets) in the complete tripartite graph K_{n,n,n}.
; 3,15,30,51,78,111,150,195,246,303,366,435,510,591,678,771,870,975,1086,1203,1326,1455,1590,1731,1878,2031,2190,2355,2526,2703,2886,3075,3270,3471,3... |
asm/locks.asm | Technological-Experimentation/slat | 11 | 196261 | global spinlock_lock
global spinlock_release
spinlock_lock:
lock bts QWORD [rdi], 0
jc spin
ret
spin:
pause
test QWORD [rdi], 1
jnz spin
jmp spinlock_lock
spinlock_release:
lock btr QWORD [rdi], 0
ret |
libsrc/_DEVELOPMENT/input/zx/c/sdcc_iy/in_mouse_amx_init_callee.asm | jpoikela/z88dk | 640 | 196262 | <filename>libsrc/_DEVELOPMENT/input/zx/c/sdcc_iy/in_mouse_amx_init_callee.asm
; void in_mouse_amx_init_callee(uint8_t x_vector, uint8_t y_vector)
SECTION code_clib
SECTION code_input
PUBLIC _in_mouse_amx_init_callee, l0_in_mouse_amx_init_callee
EXTERN asm_in_mouse_amx_init
_in_mouse_amx_init_callee:
pop af
... |
libsrc/graphics/bksave2.asm | jpoikela/z88dk | 38 | 196263 | <reponame>jpoikela/z88dk<gh_stars>10-100
;
; Fast background save
;
; Generic version (just a bit slow)
;
; $Id: bksave2.asm $
;
SECTION code_clib
PUBLIC bksave
PUBLIC _bksave
EXTERN getsprite_sub
.bksave
._bksave
push ix
ld hl,4
add hl,sp
ld e,(hl)
inc hl
ld d,(hl... |
libsrc/_DEVELOPMENT/adt/p_queue/z80/asm_p_queue_clear.asm | jpoikela/z88dk | 640 | 196264 | <reponame>jpoikela/z88dk
; ===============================================================
; Feb 2014
; ===============================================================
;
; void p_queue_clear(p_queue_t *q)
;
; Clear the queue to empty.
;
; ===============================================================
SECTION code_c... |
oeis/142/A142221.asm | neoneye/loda-programs | 11 | 196267 | <reponame>neoneye/loda-programs
; A142221: Primes congruent to 24 mod 41.
; Submitted by <NAME>
; 229,311,557,967,1049,1213,1459,1787,1951,2689,3181,3673,3919,4001,4493,4657,4903,5231,5477,5641,6133,6379,6871,7691,7937,8101,8429,8839,9413,10069,10151,10889,11299,12037,12119,12611,13103,13267,13513,13759,13841,14087,142... |
data/mapHeaders/silphco5.asm | adhi-thirumala/EvoYellow | 16 | 196270 | <reponame>adhi-thirumala/EvoYellow<gh_stars>10-100
SilphCo5_h:
db FACILITY ; tileset
db SILPH_CO_5F_HEIGHT, SILPH_CO_5F_WIDTH ; dimensions (y, x)
dw SilphCo5Blocks, SilphCo5TextPointers, SilphCo5Script ; blocks, texts, scripts
db $00 ; connections
dw SilphCo5Object ; objects
|
libsrc/_DEVELOPMENT/math/float/math48/z80/core/mm48_tenf.asm | jpoikela/z88dk | 640 | 196271 | <gh_stars>100-1000
SECTION code_clib
SECTION code_fp_math48
PUBLIC mm48_tenf
EXTERN mm48__getcix, mm48_mul10, mm48_fpmul, mm48_fpdiv
EXTERN l_inc_sp, am48_derror_erange_infc, mm48__retzero
mm48_tenf:
; multiply by power of 10
; AC' = AC' * 10^A
;
; enter : A = power of 10, |A| < 40
; ... |
programs/oeis/033/A033676.asm | neoneye/loda | 22 | 196272 | <gh_stars>10-100
; A033676: Largest divisor of n <= sqrt(n).
; 1,1,1,2,1,2,1,2,3,2,1,3,1,2,3,4,1,3,1,4,3,2,1,4,5,2,3,4,1,5,1,4,3,2,5,6,1,2,3,5,1,6,1,4,5,2,1,6,7,5,3,4,1,6,5,7,3,2,1,6,1,2,7,8,5,6,1,4,3,7,1,8,1,2,5,4,7,6,1,8,9,2,1,7,5,2,3,8,1,9,7,4,3,2,5,8,1,7,9,10
mov $1,$0
seq $1,33677 ; Smallest divisor of n >= sqrt(... |
programs/oeis/024/A024064.asm | neoneye/loda | 22 | 196273 | <filename>programs/oeis/024/A024064.asm<gh_stars>10-100
; A024064: a(n) = 6^n - n^2.
; 1,5,32,207,1280,7751,46620,279887,1679552,10077615,60466076,362796935,2176782192,13060693847,78364163900,470184984351,2821109907200,16926659444447,101559956668092,609359740010135,3656158440062576,21936950640377415,131621703842266652,... |
Transynther/x86/_processed/AVXALIGN/_st_4k_sm_/i7-8650U_0xd2_notsx.log_780_151.asm | ljhsiun2/medusa | 9 | 196275 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x50b5, %rsi
lea addresses_D_ht+0xa235, %rdi
nop
nop
nop
inc %rax
mov $88, %rcx
rep movsw
xor %rdi, %rdi
lea addresses_WC_ht+0x133b5, %rsi
clflush (%rsi)
nop
nop
nop
nop
nop
in... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_250.asm | ljhsiun2/medusa | 9 | 196276 | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xe523, %rsi
lea addresses_D_ht+0xd523, %rdi
nop
nop
xor $49658, %r8
mov $25, %rcx
rep movsq
nop
nop
add %rsi, %rsi
lea addresses_WC_ht+0x10c23, %rsi
lea addresses_WC_ht+0x1e603, %rdi
nop
nop
xor $34437, %r... |
programs/oeis/082/A082050.asm | neoneye/loda | 22 | 196277 | <reponame>neoneye/loda
; A082050: Sum of divisors of n that are not of the form 3k+1.
; 0,2,3,2,5,11,0,10,12,7,11,23,0,16,23,10,17,38,0,27,24,13,23,55,5,28,39,16,29,61,0,42,47,19,40,86,0,40,42,35,41,88,0,57,77,25,47,103,0,57,71,28,53,119,16,80,60,31,59,153,0,64,96,42,70,121,0,87,95,56,71,190,0,76,98,40,88,154,0,115,120... |
oeis/093/A093644.asm | neoneye/loda-programs | 11 | 196278 | ; A093644: (9,1) Pascal triangle.
; Submitted by <NAME>
; 1,9,1,9,10,1,9,19,11,1,9,28,30,12,1,9,37,58,42,13,1,9,46,95,100,55,14,1,9,55,141,195,155,69,15,1,9,64,196,336,350,224,84,16,1,9,73,260,532,686,574,308,100,17,1,9,82,333,792,1218,1260,882,408,117,18,1,9,91,415,1125,2010,2478,2142,1290,525,135,19,1,9,100,506,1540,... |
programs/oeis/153/A153285.asm | karttu/loda | 0 | 196279 | <filename>programs/oeis/153/A153285.asm
; A153285: a(1)=1; for n > 1, a(n) = n^2 + Sum_{j=1..n-1} (-1)^j*a(j).
; 1,3,11,7,23,11,35,15,47,19,59,23,71,27,83,31,95,35,107,39,119,43,131,47,143,51,155,55,167,59,179,63,191,67,203,71,215,75,227,79,239,83,251,87,263,91,275,95,287,99,299,103,311,107,323,111,335,115,347,119,359,... |
oeis/105/A105022.asm | neoneye/loda-programs | 11 | 196280 | <gh_stars>10-100
; A105022: Entries in the n-th row of Pascal's triangle that have the 2's bit set in their binary expansion.
; Submitted by <NAME>
; 0,0,1,2,1,2,4,4,1,2,4,8,4,8,8,8,1,2,4,8,4,8,12,16,4,8,12,16,8,16,16,16,1,2,4,8,4,8,12,16,4,8,12,24,12,24,24,32,4,8,12,16,12,24,24,32,8,16,24,32,16,32,32,32,1,2,4,8,4,8,12... |
programs/oeis/231/A231666.asm | neoneye/loda | 22 | 196281 | ; A231666: a(n) = Sum_{i=0..n} digsum_4(i)^3, where digsum_4(i) = A053737(i).
; 0,1,9,36,37,45,72,136,144,171,235,360,387,451,576,792,793,801,828,892,900,927,991,1116,1143,1207,1332,1548,1612,1737,1953,2296,2304,2331,2395,2520,2547,2611,2736,2952,3016,3141,3357,3700,3825,4041,4384,4896,4923,4987,5112,5328,5392,5517,573... |
oeis/096/A096960.asm | neoneye/loda-programs | 11 | 196282 | ; A096960: Sum_{0<d|n, n/d odd} d^5.
; Submitted by <NAME>
; 1,32,244,1024,3126,7808,16808,32768,59293,100032,161052,249856,371294,537856,762744,1048576,1419858,1897376,2476100,3201024,4101152,5153664,6436344,7995392,9768751,11881408,14408200,17211392,20511150,24407808,28629152,33554432,39296688,45435456,52541808,60716... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.