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 |
|---|---|---|---|---|
data/mapObjects/Route15.asm | AmateurPanda92/pokemon-rby-dx | 9 | 41527 | <reponame>AmateurPanda92/pokemon-rby-dx
Route15_Object:
db $43 ; border block
db 4 ; warps
warp 7, 8, 0, ROUTE_15_GATE_1F
warp 7, 9, 1, ROUTE_15_GATE_1F
warp 14, 8, 2, ROUTE_15_GATE_1F
warp 14, 9, 3, ROUTE_15_GATE_1F
db 1 ; signs
sign 39, 9, 12 ; Route15Text12
db 11 ; objects
object SPRITE_LASS, 41, 11, ST... |
core/startGam.asm | cristoferfb/columns | 0 | 41528 | <gh_stars>0
start_game:
call generate_block ; Generamos un bloque
call use_block ; Lo asignamos como el bloque actual
call generate_block ; Generamos otro bloque (sera el siguiente)
call draw_next ; Dibujamos el siguiente bloque
call new_block ; Posicionamos el nuevo bloque
... |
programs/oeis/062/A062025.asm | jmorken/loda | 1 | 41529 | <gh_stars>1-10
; A062025: a(n) = n*(13*n^2 - 7)/6.
; 0,1,15,55,134,265,461,735,1100,1569,2155,2871,3730,4745,5929,7295,8856,10625,12615,14839,17310,20041,23045,26335,29924,33825,38051,42615,47530,52809,58465,64511,70960,77825,85119,92855,101046,109705,118845,128479,138620,149281,160475,172215,184514,197385,210841,22489... |
oeis/007/A007483.asm | neoneye/loda-programs | 11 | 41531 | <gh_stars>10-100
; A007483: a(n) = 3*a(n-1) + 2*a(n-2), with a(0)=1, a(1)=5.
; Submitted by <NAME>
; 1,5,17,61,217,773,2753,9805,34921,124373,442961,1577629,5618809,20011685,71272673,253841389,904069513,3219891317,11467812977,40843221565,145465290649,518082315077,1845177526529,6571697209741,23405446682281,8335973446632... |
print_integers.asm | bats64mgutsi/mips-assembly | 0 | 41533 | <reponame>bats64mgutsi/mips-assembly<gh_stars>0
# To print integers, place the integer to print in $a0 and then syscall
# with 1. The integer will be printed as a decimal.
.text
main:
li $a0, -45
syscall
li $v0, 10
syscall
.data
|
oeis/170/A170778.asm | neoneye/loda-programs | 11 | 41534 | ; A170778: a(n) = n^8*(n^6 + 1)/2.
; 0,1,8320,2394765,134250496,3051953125,39182921856,339114418825,2199031644160,11438417750841,50000050000000,189875023971061,641959447265280,1968688600715005,5556004150673536,14596464294140625,36028799166447616,84188916767579185,187406689301020800,399503351383223581,819200012800000000... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_672.asm | ljhsiun2/medusa | 9 | 41535 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r9
push %rbp
push %rbx
push %rdx
push %rsi
lea addresses_WC_ht+0x1573a, %rsi
clflush (%rsi)
inc %rbp
vmovups (%rsi), %ymm7
vextracti128 $0, %ymm7, %xmm7
vpextrq $0, %xmm7, %rdx
nop
nop
nop
nop
sub %rsi, %rsi
lea addresses_W... |
programs/oeis/038/A038605.asm | neoneye/loda | 22 | 41536 | ; A038605: a(n) = floor( prime(n)/n ).
; 2,1,1,1,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5
mov $2,$0
seq $0,40 ; The prime numbers.
add $2,1
div $0,$2
|
programs/oeis/304/A304371.asm | neoneye/loda | 22 | 41537 | <filename>programs/oeis/304/A304371.asm<gh_stars>10-100
; A304371: Number of function calls of the second kind required to compute ack(3,n), where ack denotes the Ackermann function.
; 5,47,257,1187,5093,21095,85865,346475,1391981,5580143,22345073,89429363,357815669,1431459191,5726229881,22905705851,91624396157,3665007... |
libsrc/stdio_new/general/stdio_staterestore.asm | meesokim/z88dk | 8 | 41538 | ; stdio_staterestore
; 08.2009 aralbrec
PUBLIC stdio_staterestore
; pops all registers from stack
; companion to stdio_statesave
.stdio_staterestore
pop hl ; hl = return address
exx
ex af,af
pop iy
pop ix
pop hl
pop de
pop bc
pop af
exx
ex af,af
... |
data/growth_rates.asm | opiter09/ASM-Machina | 1 | 41539 | growth_rate: MACRO
; [1]/[2]*n**3 + [3]*n**2 + [4]*n - [5]
dn \1, \2
if \3 < 0
db -\3 | $80 ; signed magnitude
else
db \3
endc
db \4, \5
ENDM
GrowthRateTable:
; entries correspond to GROWTH_* (see constants/pokemon_data_constants.asm)
table_width 4, GrowthRateTable
growth_rate 1, 1, 0, 0, 0 ; Medium F... |
oeis/136/A136591.asm | neoneye/loda-programs | 11 | 41540 | ; A136591: Column 1 of triangle A136590.
; Submitted by <NAME>
; 1,1,-4,6,24,-240,720,5040,-80640,362880,3628800,-79833600,479001600,6227020800,-174356582400,1307674368000,20922789888000,-711374856192000,6402373705728000,121645100408832000,-4865804016353280000,51090942171709440000
mov $1,2
mov $2,1
lpb $0
mul $1,$0
... |
printf/printf2_64.asm | AnaA-Rocha/Learning_Assembly | 0 | 41541 | ; more printf2_64
extern printf
segment .data
fmt2: db "printf2: flt2=%e", 10, 0
fmt3: db "char1=%c, str1=%s, len=%d", 10, 0
fmt4: db "char1=%c, str1=%s, len=%d, inta1=%d, inta2=%ld", 10, 0
fmt5: db "hex1=%lX, flt1=%e, flt2=%e", 10, 0
char1: db 'a' ; a character
str1: db "mystring",0 ; a C string,... |
data/wildPokemon/safarizone3.asm | etdv-thevoid/pokemon-rgb-enhanced | 1 | 41542 | ZoneMons3:
db $1E
IF DEF(_RED)
db 25,NIDORAN_M
db 26,RHYHORN
db 23,TANGELA
db 24,EXEGGCUTE
db 33,NIDORINO
db 26,EXEGGCUTE
db 25,SCYTHER
db 23,SCYTHER
db 17,CHANSEY
db 17,CHANSEY
ENDC
IF DEF(_GREEN)
db 25,NIDORAN_M
db 26,RHYHORN
db 23,TANGELA
db 24,EXEGGCUTE
db 33,NIDORINO
db 26,EXEGGCUTE
db 25,PINSIR
... |
audio/sfx/cry1b_2.asm | opiter09/ASM-Machina | 1 | 41543 | <reponame>opiter09/ASM-Machina
SFX_Cry1B_2_Ch5:
duty_cycle_pattern 3, 3, 0, 0
square_note 6, 15, 7, 1728
square_note 15, 14, 7, 1792
square_note 4, 15, 4, 1776
square_note 4, 14, 4, 1760
square_note 8, 13, 1, 1744
sound_ret
SFX_Cry1B_2_Ch6:
duty_cycle_pattern 0, 0, 2, 2
square_note 7, 14, 6, 1665
square_not... |
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_1_265.asm | ljhsiun2/medusa | 9 | 41545 | <filename>Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_1_265.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1780d, %r13
nop
nop
nop
nop
sub $48490, %r9
movb (%r13), %cl
nop
inc %rbp
lea addresses_A_ht+0x163d... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1568.asm | ljhsiun2/medusa | 9 | 41546 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xe1fc, %rdi
nop
nop
nop
nop
nop
cmp $15115, %rax
mov (%rdi), %rdx
nop
nop
nop
nop
and %r13, %r13
lea addresses_WT_ht+0x48fc, %rsi
lea ... |
Tests/ARM/Nocash/Nocash.asm | georgjz/armips | 1 | 41547 | <gh_stars>1-10
.gba
.create "output.bin",0
.arm
// Faux GBA ROM header
// This way we can load the binary in No$gba for verification
.area 0xC0,0x00
b armMsg
.endarea
.arm
.align 4
armMsg:
// Example from No$gba help file
.msg "Hello"
.msg "Source Addr = %r0% ; Dest Addr = %r1% ; Length = %r2%"
.msg "Stack Pointer... |
pwnlib/shellcraft/templates/i386/linux/readn.asm | DrKeineLust/pwntools | 8,966 | 41548 | <%
from pwnlib.shellcraft.i386.linux import read
from pwnlib.shellcraft.i386 import setregs
from pwnlib.shellcraft import common
%>
<%page args="fd, buf, nbytes"/>
<%docstring>
Reads exactly nbytes bytes from file descriptor fd into the buffer buf.
Arguments:
fd(int): fd
buf(void): buf
nbytes(s... |
programs/oeis/016/A016201.asm | neoneye/loda | 22 | 41550 | ; A016201: Expansion of 1/((1-x)(1-2x)(1-7x)).
; 1,10,77,554,3909,27426,192109,1345018,9415637,65910482,461375421,3229632042,22607432485,158252043778,1107764339213,7754350440026,54280453211253,379963172740914,2659742209710685
lpb $0
mov $2,$0
sub $0,1
seq $2,16130 ; Expansion of 1/((1-2x)(1-7x)).
add $1,$2
lpe... |
oeis/007/A007807.asm | neoneye/loda-programs | 11 | 41553 | <filename>oeis/007/A007807.asm
; A007807: A variation on Euclid: a(n)=g(n)-1, where g(0)=0, g(1)=1, g(n+1)=g(n)(g(n-1)+1).
; Submitted by <NAME>
; 0,0,1,3,11,59,779,47579,37159979,1768109008379,65702897157329640779,116169884340604934905464739377179,7632697963609645128663145969343357330533515068777579
mov $2,$0
mov $0,... |
untested/x86/my_mm_malloc.asm | GabrielRavier/Generic-Assembly-Samples | 0 | 41554 | <reponame>GabrielRavier/Generic-Assembly-Samples<filename>untested/x86/my_mm_malloc.asm
%include "macros.inc"
global _my_mm_malloc
global _my_mm_free
extern _malloc
extern _free
extern ___errno_location
segment .text align=16
_my_mm_malloc:
multipush edi, esi
push eax
mov eax, [esp + 28]
xor esi, esi
lea ecx,... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1460.asm | ljhsiun2/medusa | 9 | 41555 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r14
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xdfdf, %r10
nop
nop
cmp %r11, %r11
movl $0x61626364, (%r10)
nop
nop
add $24027, %rcx
lea addresses_WT_ht+0x965f, %r8
nop
nop
nop
and $28179, %rbp
mov ... |
scripts/VermilionGym.asm | AmateurPanda92/pokemon-rby-dx | 9 | 41557 | <reponame>AmateurPanda92/pokemon-rby-dx
VermilionGym_Script:
ld hl, wCurrentMapScriptFlags
bit 5, [hl]
res 5, [hl]
push hl
call nz, VermilionGymScript_5ca4c
pop hl
bit 6, [hl]
res 6, [hl]
call nz, VermilionGymScript_5ca6d
call EnableAutoTextBoxDrawing
ld hl, VermilionGymTrainerHeader0
ld de, VermilionGym_Sc... |
code/main.asm | simon-butler/bndrsntch | 9 | 41558 | ;==========================================================
; BNDRSNTCH
;
; by <NAME> 2019
;
; MAIN source file, build entry point.
;
;==========================================================
;==========================================================
; MEMORY MAP
;
; Video bank 1 $4000 - $7FFF is used for first pe... |
programs/oeis/269/A269657.asm | karttu/loda | 0 | 41560 | ; A269657: Number of length-4 0..n arrays with no adjacent pair x,x+1 repeated.
; 1,15,79,253,621,1291,2395,4089,6553,9991,14631,20725,28549,38403,50611,65521,83505,104959,130303,159981,194461,234235,279819,331753,390601,456951,531415,614629,707253,809971,923491,1048545,1185889,1336303,1500591,1679581,1874125,2085099,2... |
src/main/states/fade.asm | ISSOtm/gb-open-world | 8 | 41561 |
register_state Fade
FadeStateUpdate:
call FadePaletteBuffers
; If we're done fading, switch to next state
ld a, [wFadeSteps]
and a
ret nz
ld a, [wAfterFadeState]
ld [wCurState], a
FadeStateInit:
ret
SECTION "Fade state vars", WRAM0
; Which state will be switched to after fading is done
wAfterFadeState:... |
data/baseStats_original/skarmory.asm | adhi-thirumala/EvoYellow | 16 | 41562 | <gh_stars>10-100
;SkarmoryBaseStats: ; 38aa6 (e:4aa6)
db DEX_SKARMORY ; pokedex id
db 65 ; base hp
db 80 ; base attack
db 140 ; base defense
db 70 ; base speed
db 70 ; base special
db STEEL ; species type 1
db FLYING ; species type 2
db 80 ; catch rate
db 168 ; base exp yield
INCBIN "pic/ymon/skarmory.pic",0,1 ; 55, sp... |
Appl/NInFnt/ninfntTables.asm | steakknife/pcgeos | 504 | 41563 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Nimbus Font Converter
FILE: ninfntTables.asm
AUTHOR: <NAME>, Apr 19, 1991
ROUTINES & TABLES:
Name Description
---... |
oeis/142/A142203.asm | neoneye/loda-programs | 11 | 41566 | <reponame>neoneye/loda-programs
; A142203: Primes congruent to 6 mod 41.
; Submitted by <NAME>
; 47,211,293,457,1031,1277,1523,1933,2179,2671,2753,2917,2999,3163,3491,4229,4639,4721,4967,5623,5869,6197,6361,6607,6689,7591,7673,7919,8329,8821,9067,9887,10133,10789,11117,11527,12101,12347,12511,12757,13003,13249,13331,13... |
oeis/293/A293328.asm | neoneye/loda-programs | 11 | 41567 | <gh_stars>10-100
; A293328: Least integer k such that k/2^n > sqrt(1/3).
; Submitted by <NAME>
; 1,2,3,5,10,19,37,74,148,296,592,1183,2365,4730,9460,18919,37838,75675,151349,302698,605396,1210792,2421583,4843166,9686331,19372661,38745321,77490642,154981283,309962566,619925132,1239850263,2479700525,4959401050,9918802099... |
EEL7030/Rep CAEE/Mic 8085/Soma.asm | GSimas/MicroC | 0 | 41568 | <filename>EEL7030/Rep CAEE/Mic 8085/Soma.asm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;Soma.asm - soma de numeros em hexadecimal
;Prof. <NAME> - 04.01.2000
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ORG 2000H
LDA N ; traz para A o valor de N
... |
oeis/167/A167352.asm | neoneye/loda-programs | 11 | 41569 | ; A167352: Totally multiplicative sequence with a(p) = (p+1)*(p-3) = p^2-2p-3 for prime p.
; Submitted by <NAME>(s3)
; 1,-3,0,9,12,0,32,-27,0,-36,96,0,140,-96,0,81,252,0,320,108,0,-288,480,0,144,-420,0,288,780,0,896,-243,0,-756,384,0,1292,-960,0,-324,1596,0,1760,864,0,-1440,2112,0,1024,-432,0,1260,2700,0,1152,-864,0,-2... |
programs/oeis/102/A102239.asm | karttu/loda | 1 | 41570 | <gh_stars>1-10
; A102239: a(n) = Sum[5^i, {i, 0, n}] + 1 - Mod[Sum[5^i, {i, 0, n}], 2]
; 1,7,31,157,781,3907,19531,97657,488281,2441407,12207031,61035157,305175781,1525878907,7629394531,38146972657,190734863281,953674316407,4768371582031,23841857910157,119209289550781,596046447753907
mov $1,5
mov $2,$0
add $2,1
pow $1... |
oeis/076/A076004.asm | neoneye/loda-programs | 11 | 41571 | <reponame>neoneye/loda-programs
; A076004: Fourth column of triangle A075503.
; Submitted by <NAME>
; 1,80,4160,179200,6967296,254607360,8940421120,305659904000,10259284361216,339910422691840,11158051230842880,363834840082022400,11805930580539867136,381715961976738283520,12309283295632755261440,396164311565124134502400... |
cat.asm | snowman789/xv6_scheduler | 0 | 41573 | <filename>cat.asm
_cat: file format elf32-i386
Disassembly of section .text:
00000000 <cat>:
char buf[512];
void
cat(int fd)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 56 push %esi
4: 53 push %ebx
5: 8b 75 08 ... |
libsrc/_DEVELOPMENT/adt/wa_stack/z80/asm_wa_stack_capacity.asm | jpoikela/z88dk | 640 | 41574 | <reponame>jpoikela/z88dk
; ===============================================================
; Mar 2014
; ===============================================================
;
; size_t wa_stack_capacity(wa_stack_t *s)
;
; Return capacity of the stack in words.
;
; ===========================================================... |
exampl01/bmbutton/bmbutton.asm | AlexRogalskiy/Masm | 0 | 41575 | <reponame>AlexRogalskiy/Masm
; #########################################################################
.386
.model flat, stdcall ; 32 bit memory model
option casemap :none ; case sensitive
include bmbutton.inc ; local includes for this file
; ##########################################... |
libsrc/target/gb/gbdk/asm_scroll.asm | Frodevan/z88dk | 640 | 41576 | <reponame>Frodevan/z88dk
; font.ms
;
; <NAME>, 1999
; <EMAIL>
; Distrubuted under the Artistic License - see www.opensource.org
;
SECTION code_driver
PUBLIC asm_scroll
INCLUDE "target/gb/def/gb_globals.def"
;; Scroll the whole screen
asm_scroll:
PUSH BC
PUSH DE
PUSH HL
LD HL,0x9800
LD BC,0x9800+0x2... |
Assembly/write.asm | fengjixuchui/NASM-Assembly-Linux-Notes | 22 | 41578 | <filename>Assembly/write.asm<gh_stars>10-100
; Write
; Compile with: nasm -f elf write.asm
; Link with (64 bit systems require elf_i386 option): ld -m elf_i386 write.o -o write
; Run with: ./write
%include 'functions.asm'
SECTION .data
filename db 'readme.txt', 0h ; the filename to create
contents db 'Hello w... |
OpenCorePkg/Legacy/BootSector/efi32.nasm | CEOALT1/RefindPlusUDK | 10,125 | 41579 | <reponame>CEOALT1/RefindPlusUDK
DEFAULT_HANDLER_SIZE: equ 9 ; size of exception/interrupt stub
SYS_CODE_SEL: equ 0x20 ; 32-bit code selector in GDT
PE_OFFSET_IN_MZ_STUB: equ 0x3c ; place in MsDos stub for offset to PE Header
VGA_FB: equ 0x00... |
programs/oeis/084/A084639.asm | neoneye/loda | 22 | 41580 | <filename>programs/oeis/084/A084639.asm
; A084639: Expansion of x*(1+2*x)/((1+x)*(1-x)*(1-2*x)).
; 0,1,4,9,20,41,84,169,340,681,1364,2729,5460,10921,21844,43689,87380,174761,349524,699049,1398100,2796201,5592404,11184809,22369620,44739241,89478484,178956969,357913940,715827881,1431655764,2863311529,5726623060,114532461... |
oeis/170/A170764.asm | neoneye/loda-programs | 11 | 41581 | <filename>oeis/170/A170764.asm
; A170764: Expansion of g.f.: (1+x)/(1-44*x).
; 1,45,1980,87120,3833280,168664320,7421230080,326534123520,14367501434880,632170063134720,27815482777927680,1223881242228817920,53850774658067988480,2369434084954991493120,104255099738019625697280,4587224388472863530680320,2018378730928059953... |
libsrc/_DEVELOPMENT/inttypes/z80/asm_strtoimax.asm | jpoikela/z88dk | 640 | 41583 |
; intmax_t strtoimax(const char *nptr, char **endptr, int base)
SECTION code_clib
SECTION code_inttypes
PUBLIC asm_strtoimax
IFDEF __SDCC
EXTERN asm_strtoll
defc asm_strtoimax = asm_strtoll
ELSE
EXTERN asm_strtol
defc asm_strtoimax = asm_strtol
ENDIF
|
libsrc/compress/zx7/dzx7_mega_callee.asm | jpoikela/z88dk | 38 | 41584 | <filename>libsrc/compress/zx7/dzx7_mega_callee.asm
; void dzx7_mega_callee(void *src, void *dst)
SECTION code_clib
SECTION code_compress_zx7
PUBLIC _dzx7_mega_callee
EXTERN asm_dzx7_mega
_dzx7_mega_callee:
pop hl
pop de
ex (sp),hl
jp asm_dzx7_mega
|
tests/test_chords.asm | moitias/sointu | 0 | 41585 | <reponame>moitias/sointu
%define BPM 100
%include "../src/sointu.inc"
BEGIN_PATTERNS
PATTERN 64, 0, 0, 0, 68, 0, 0, 0, 66, 0, 0, 0, 69, 0, 0, 0,
PATTERN 0, 68, 0, 0, 71, 0, 0, 0, 69, 0, 0, 0, 73, 0, 0, 0,
PATTERN 0, 0, 71, 0, 75, 0, 0, 0, 73, 0, 0, 0, 76, 0, 0, 0,
END_PATTERNS
BEGIN_TRACKS... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_422.asm | ljhsiun2/medusa | 9 | 41586 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x6c53, %r15
nop
nop
nop
nop
nop
add $49173, %rbp
movups (%r15), %xmm6
vpextrq $1, %xmm6, %r14
nop
nop
nop
nop
nop
xor $31228, %rbx
lea addresses_A_ht+0xadb3, %r13
xo... |
programs/oeis/127/A127694.asm | neoneye/loda | 22 | 41588 | <reponame>neoneye/loda
; A127694: Absolute value of coefficient of x^3 in polynomial whose zeros are 5 consecutive integers starting with the n-th integer.
; 580,1175,2070,3325,5000,7155,9850,13145,17100,21775,27230,33525,40720,48875,58050,68305,79700,92295,106150,121325,137880,155875,175370,196425,219100,243455,269550... |
data/pokemon/base_stats/sharpedo.asm | TastySnax12/pokecrystal16-493-plus | 2 | 41589 | <reponame>TastySnax12/pokecrystal16-493-plus
db 0 ; species ID placeholder
db 70, 120, 40, 95, 95, 40
; hp atk def spd sat sdf
db WATER, DARK ; type
db 60 ; catch rate
db 175 ; base exp
db NO_ITEM, DEEPSEATOOTH ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatch
... |
uw1/call-eop-enqueueGridCoords.asm | JohnGlassmyer/UltimaHacks | 68 | 41592 | %include "../UltimaPatcher.asm"
%include "include/uw1.asm"
%include "include/uw1-eop.asm"
[bits 16]
startPatch EXE_LENGTH, \
call eop enqueueGridCoords to flip drawing of geometry behind player
%macro callEopEnqueueGridCoordsAt 2
startBlockAt %1, %2
callFromLoadModule byCallSiteEopDispatcher
endBlockOfL... |
intel-avx2/matmul/asm/matmul_simd.asm | yanyh15/vectorization-examples | 0 | 41593 | # mark_description "Intel(R) C Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 19.1.0.166 Build 20191121";
# mark_description "-o asm/matmul_simd.asm -fopenmp -mavx2 -O2 -xCORE_AVX2 -S -masm=intel";
.intel_syntax noprefix
.file "matmul_simd.c"
.text
..TXTST0:
.L_2__routine_start_main_0:
# -- Be... |
helloworld.asm | kindjie/6502Assembly | 6 | 41594 | ;Hello World Example Project
;Boot loader
!source "./libs/loader.asm"
+start_at $1000
;Screen utilities
!source "./libs/screen.asm"
;Initialization
jmp init
;Iterates over "HELLO WORLD!" message, assigning characters to
;screen memory until end of message.
message !scr "hello world!"
messagelen=12 ;Number of cha... |
programs/oeis/027/A027967.asm | jmorken/loda | 1 | 41595 | <reponame>jmorken/loda
; A027967: T(n, 2*n-5), T given by A027960.
; 3,7,18,44,98,199,373,654,1085,1719,2620,3864,5540,7751,10615,14266,18855,24551,31542,40036,50262,62471,76937,93958,113857,136983,163712,194448,229624,269703,315179,366578,424459,489415,562074,643100,733194,833095,943581,1065470,1199621,1346935,1508356... |
Transynther/x86/_processed/NC/_st_zr_sm_/i9-9900K_12_0xca_notsx.log_21829_731.asm | ljhsiun2/medusa | 9 | 41596 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %r9
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x14add, %rax
nop
nop
nop
nop
cmp $34443, %r11
mov $0x6162636465666768, %rbp
movq %rbp, %xmm7
and $0xffffffffffffffc0, %rax
movntdq %xmm7, (%rax)
nop
nop... |
oeis/088/A088229.asm | neoneye/loda-programs | 11 | 41597 | <filename>oeis/088/A088229.asm
; A088229: Number of n X n (0,1) matrices with distinct rows.
; Submitted by <NAME>
; 1,2,12,336,43680,24165120,53981544960,476410007808000,16517640193528320000,2252801478912508197273600,1212983979979000042023881932800,2587892965783744956308448364029542400,21943955209199862746410706867184... |
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xca.log_21829_230.asm | ljhsiun2/medusa | 9 | 41598 | <filename>Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xca.log_21829_230.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r9
push %rbp
push %rcx
push %rdx
lea addresses_D_ht+0xdf43, %r10
nop
nop
add %rbp, %rbp
mov $0x6162636465666768, %rcx
movq %rcx, %xmm6
and $0xffffffff... |
zdrojaky/obfuskace/nahrazeni-ekvivalentem1.asm | Zelvar/VSB-DP-TEXT | 0 | 41599 | strlen:
enter 0,0
mov edx, [ ebp + 8 ]
mov eax, 0
.back:
test byte [ edx + eax ], 0xff
jz .exit
inc eax
jmp .back
.exit:
leave
ret |
oeis/074/A074550.asm | neoneye/loda-programs | 11 | 41600 | ; A074550: a(n) = 3^n + 4^n + 8^n.
; Submitted by <NAME>(s1.)
; 3,15,89,603,4433,34035,266969,2115723,16849313,134499555,1074849449,8594306043,68736785393,549824517075,4398319729529,35185460179563,281479314724673,2251817122694595,18014467616379209,144115464116024283,1152922607605259153,9223376445361640115,7378699391840... |
src/firmware-tests/SunriseSunset/Poll/PollChainTest.asm | pete-restall/Cluck2Sesame-Prototype | 1 | 41601 | #include "Mcu.inc"
#include "FarCalls.inc"
#include "SunriseSunset.inc"
#include "TestFixture.inc"
#include "../PollAfterSunriseSunsetMock.inc"
radix decimal
PollChainTest code
global testArrange
testArrange:
fcall initialisePollAfterSunriseSunsetMock
fcall initialiseSunriseSunset
testAct:
fcall pollSunri... |
C5515_Support_Files/C5515_Lib/dsplib_2.40.00/55x_src/bexp.asm | HeroSizy/Sizy | 0 | 41602 | ;***********************************************************
; Version 2.40.00
;***********************************************************
; Function: bexp
; Version: 2.0
; Processor: C55xx
; Description: block exponent
; Useage: short r_maxexp = bexp (DATA *x... |
programs/oeis/174/A174910.asm | karttu/loda | 0 | 41603 | <reponame>karttu/loda
; A174910: Partial sums of A028835.
; 2,5,10,17,28,40,54,70,90,111,134,159,188,218,250,284,322,361,402,445,492,540,590,642,698,755,814,875,940,1006,1074,1144,1218,1293,1370,1449,1532,1616,1702,1790,1882,1975,2070,2167,2268,2370,2474,2580,2690,2801
mov $8,$0
mov $10,$0
add $10,1
lpb $10,1
clr $0... |
software/cpm.asm | mastmees/z-one | 6 | 41604 | ;**************************************************************
;*
;* C P / M version 2 . 2
;*
;* Reconstructed from memory image on February 27, 1981
;*
;* by <NAME>
;*
;* Modifications by <NAME> 2018 to produce identical
;* binary image to actual CPM.SYS for some Xerox ma... |
programs/oeis/074/A074518.asm | karttu/loda | 1 | 41605 | <reponame>karttu/loda<gh_stars>1-10
; A074518: a(n) = 1^n + 5^n + 8^n.
; 3,14,90,638,4722,35894,277770,2175278,17167842,136170854,1083507450,8638762718,68963617362,550976517014,4404150026730,35214889666958,281627564601282,2252562753138374,18018213206747610
mov $2,5
mov $3,8
pow $3,$0
pow $2,$0
add $2,$3
add $2,1
mov $... |
oeis/096/A096182.asm | neoneye/loda-programs | 11 | 41607 | ; A096182: Index of first occurrence of n in A095773.
; Submitted by <NAME>(s4)
; 1,2,4,6,8,10,13,16,19,22,26,30,34,38,42,46,51,56,61,66,71,76,82,88,94,100,106,112,118,124,130,136,142,148,155,162,169,176,183,190,197,204,211,218,225,232,240,248,256,264,272,280,288,296,304,312,320,328,336
mov $2,$0
mov $4,$0
lpb $2
mo... |
build/DISK_C/asm/main.asm | chiro2001/ASMTemplate | 0 | 41609 | <filename>build/DISK_C/asm/main.asm
.model small
.stack 100h
.const
.data
k dw 6 ; 三角形大小
m db 'Hi', '$' ; 填充字符
blank db ' .', '$'
ent db ' <|', 0ah, 0dh, '$'
.code
print_blank proc
mov ah, 9
mov dx, offset blank
int 21h
ret
print_blank endp
print_m proc
mov ah, 9
mov dx, offs... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2867.asm | ljhsiun2/medusa | 9 | 41610 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x17a98, %rsi
lea addresses_normal_ht+0xebfe, %rdi
nop
nop
nop
and %r10, %r10
mov $15, %rcx
rep movsl
nop
nop
nop
nop
nop
and $4728, %r8
lea addresses_WC_ht+0x15560, %r15
nop
a... |
PIC12F675/main.asm | geckoanton/PICCapacitiveTouch | 1 | 41611 | ; Copyright (c) 2021 geckoanton
; This code is licensed under MIT license (see LICENSE file for details)
INCLUDE <p12f675.inc>
;configuration registers
__CONFIG _HS_OSC & _WDT_OFF & _PWRTE_OFF & _MCLRE_ON & _BOREN_ON & _CP_OFF & _CPD_OFF
;define register addreses
;holds calibration for charge time
CA0 equ h... |
PRG/levels/Ice/6-3.asm | narfman0/smb3_pp1 | 0 | 41612 | ; Original address was $AA6B
; 6-3
.word $0000 ; Alternate level layout
.word $0000 ; Alternate object layout
.byte LEVEL1_SIZE_09 | LEVEL1_YSTART_140
.byte LEVEL2_BGPAL_00 | LEVEL2_OBJPAL_09 | LEVEL2_XSTART_18
.byte LEVEL3_TILESET_00 | LEVEL3_VSCROLL_LOCKLOW
.byte LEVEL4_BGBANK_INDEX(12) | LEVEL4_INITACT_NOTHING... |
SMP5_1.X/SMP5_1.asm | tabinohito/I4_PIC | 0 | 41614 | LIST P=PIC16F84A
INCLUDE "P16F84A.INC"
__CONFIG _HS_OSC&_WDT_OFF
CNT1 EQU 0CH
CNT2 EQU 0DH
CNT3 EQU 0EH
MY_CNT1 EQU 10H
MY_CNT2 EQU 11H
MY_CNT3 EQU 12H
MY_CNT4 EQU 13H
MY_CNT5 EQU 14H
MY_CNT6 EQU 15H
MY_CNT7 EQU 16H
MY_CNT8 EQU 17H
MY_CNT9 EQU 18H
MY_CNT10 EQU... |
T1.asm | abphilip-vit/CollegeP2 | 1 | 41615 | ORG 000H
MOV P0, #00000000B
MOV P2, #00000000B
// SENSORS - P0
// MOTORS - P2
MAIN:
SETB P2.0
SETB P2.1
JB P0.0, RIGHT
JB P0.1, LEFT
SJMP MAIN
LEFT:
SETB P2.0
CLR P2.1
ACALL WAIT2
SJMP MAIN
RIGHT:
CLR P2.0
... |
src/data/program.asm | alimpk/faulty-mano-cpu | 0 | 41616 | <filename>src/data/program.asm
0111100000000000
0010001000000000
0001001000000001
0011010000000000
0010001000000001
0001001000000010
0011010000000001
0010001000000010
0001001000000011
0011010000000010
0010001000000011
0001001000000100
0011010000000011
0010001000000100
0001001000000101
0011010000000100
0... |
term3/Programmirovanie/lab2.asm | japanese-goblinn/labs | 0 | 41617 | <gh_stars>0
.model small
.stack 256
.data
intToOut dw ?
endline db 13,10,'$'
result db 'Result:',13,10,'$'
symbError db 'Invalid input',13,10,'$'
interDiv db 'Write dividend int:',13,10,'$'
divOn db 'Write divider int:',13,10,'$'
zeroDiv db 'Division by zero',13,10,'$'
ten dw 10
.code
I... |
forktest.asm | thr0m3l/easy-xv6 | 0 | 41618 | <gh_stars>0
_forktest: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
printf(1, "fork test OK\n");
}
int
main(void)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
forktest();
6: e8 35 00 00... |
programs/oeis/120/A120146.asm | karttu/loda | 0 | 41619 | <reponame>karttu/loda
; A120146: a(1)=22; a(n)=floor((44+sum(a(1) to a(n-1)))/2).
; 22,33,49,74,111,166,249,374,561,841,1262,1893,2839,4259,6388,9582,14373,21560,32340,48510,72765,109147,163721,245581,368372,552558,828837,1243255,1864883,2797324,4195986,6293979,9440969,14161453
mov $3,$0
mov $7,$0
add $7,1
lpb $7,1
... |
oeis/173/A173832.asm | neoneye/loda-programs | 11 | 41620 | <filename>oeis/173/A173832.asm
; A173832: Largest prime < n^5.
; Submitted by <NAME>
; 31,241,1021,3121,7759,16787,32749,59029,99991,161047,248827,371291,537811,759371,1048573,1419839,1889561,2476081,3199997,4084081,5153623,6436327,7962607,9765619,11881357,14348891,17210353,20511143,24299981
mov $2,$0
add $2,2
mov $3,... |
programs/oeis/168/A168232.asm | neoneye/loda | 22 | 41621 | <filename>programs/oeis/168/A168232.asm
; A168232: a(n) = (2*n - 3*(-1)^n - 1)/2.
; 2,0,4,2,6,4,8,6,10,8,12,10,14,12,16,14,18,16,20,18,22,20,24,22,26,24,28,26,30,28,32,30,34,32,36,34,38,36,40,38,42,40,44,42,46,44,48,46,50,48,52,50,54,52,56,54,58,56,60,58,62,60,64,62,66,64,68,66,70,68,72,70,74,72,76,74,78,76,80,78,82,80... |
src/yawc.asm | juperala/yawc | 1 | 41623 | <filename>src/yawc.asm
; YAWC - Yeat Another WORM Clone
BITS 16 ; Use 16 bit registers ???
segment mystack stack ; STACK SEGMENT - MYSTACK
resb 0200h ; Reserve 512 byte
stacktop:
segment mydata data ; DATA SEGMENT - MYDATA
; VARIABLES
wormarray resb 60000
oldintmask resw 1 ; 1 word to save old ... |
Library/Gadgets/UI/uiTimeInputParse.asm | steakknife/pcgeos | 504 | 41624 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1995 -- All Rights Reserved
GEOWORKS CONFIDENTIAL
PROJECT: Jedi
MODULE: Gadgets Library
FILE: uiTimeInputParse.asm
AUTHOR: <NAME>, Jan 24, 1995
ROUTINES:
Name Descrip... |
programs/oeis/158/A158628.asm | neoneye/loda | 22 | 41625 | ; A158628: a(n) = 44*n^2 - 1.
; 43,175,395,703,1099,1583,2155,2815,3563,4399,5323,6335,7435,8623,9899,11263,12715,14255,15883,17599,19403,21295,23275,25343,27499,29743,32075,34495,37003,39599,42283,45055,47915,50863,53899,57023,60235,63535,66923,70399,73963,77615,81355,85183,89099,93103,97195,101375,105643,109999,11444... |
libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/fputs_callee.asm | teknoplop/z88dk | 0 | 41626 | <filename>libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/fputs_callee.asm
; int fputs_callee(const char *s, FILE *stream)
INCLUDE "clib_cfg.asm"
SECTION code_clib
SECTION code_stdio
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $02
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC _fputs_callee
EXTERN asm_fputs
_fputs_c... |
programs/oeis/187/A187335.asm | neoneye/loda | 22 | 41627 | <reponame>neoneye/loda<gh_stars>10-100
; A187335: Complement of A187334.
; 2,3,5,6,8,9,11,12,13,14,17,18,20,21,23,24,26,27,28,29,32,33,35,36,38,39,41,42,43,44,47,48,50,51,53,54,56,57,58,59,62,63,65,66,68,69,71,72,73,74,77,78,80,81,83,84,86,87,88,89,92,93,95,96,98,99,101,102,103,104,107,108,110,111,113,114,116,117,118,1... |
my_strstr.asm | Ionut-Iordache-I/Assembly-encryption-functions | 0 | 41628 | %include "io.mac"
section .text
global my_strstr
extern printf
my_strstr:
push ebp
mov ebp, esp
pusha
mov edi, [ebp + 8] ; substr_index
mov esi, [ebp + 12] ; haystack
mov ebx, [ebp + 16] ; needle
mov ecx, [ebp + 20] ; haystack_len
mov ... |
ZORTON.reko/ZORTON_1ED0.asm | 0xLiso/dePIXELator | 0 | 41629 | ;;; Segment 1ED0 (1ED0:0000)
1ED0:0000 A5 7C 9A 01 06 76 24 C9 CB .|...v$..
;; fn1ED0_0009: 1ED0:0009
;; Called from:
;; 1D10:0319 (in fn1D10_02AE)
;; 1D10:0EB5 (in fn1D10_0E66)
fn1ED0_0009 proc
enter 8h,0h
mov ax,28BAh
mov es,ax
push word ptr es:[0A18Ah]
call far 0800h:1109h
... |
programs/oeis/082/A082903.asm | neoneye/loda | 22 | 41630 | ; A082903: a(n) = gcd(2^n, sigma_1(n)) = gcd(A000079(n), A000203(n)) also a(n) = gcd(2^n, sigma_3(n)) = gcd(A000079(n), A001158(n)).
; 1,1,4,1,2,4,8,1,1,2,4,4,2,8,8,1,2,1,4,2,32,4,8,4,1,2,8,8,2,8,32,1,16,2,16,1,2,4,8,2,2,32,4,4,2,8,16,4,1,1,8,2,2,8,8,8,16,2,4,8,2,32,8,1,4,16,4,2,32,16,8,1,2,2,4,4,32,8,16,2,1,2,4,32,4,4... |
programs/oeis/165/A165186.asm | neoneye/loda | 22 | 41632 | <reponame>neoneye/loda<filename>programs/oeis/165/A165186.asm
; A165186: Sum(mod(k*(n-k),n); k=1,2,..,n)
; 0,1,4,6,10,17,28,36,30,45,66,82,78,105,140,136,136,141,190,230,238,253,322,380,250,325,360,434,406,505,558,592,572,561,700,678,666,741,910,980,820,917,946,1122,1050,1173,1316,1432,1078,1125,1394,1430,1378,1449
ad... |
data/pokemon/dex_entries/misdreavus.asm | AtmaBuster/pokeplat-gen2 | 6 | 41633 | db "SCREECH@" ; species name
db "It loves to watch"
next "people it's scar-"
next "ed. It frightens"
page "them by screaming"
next "loudly or appear-"
next "ing suddenly.@"
|
programs/oeis/192/A192920.asm | neoneye/loda | 22 | 41634 | ; A192920: Coefficient of x in the reduction by (x^2 -> x+1) of the polynomial F(n+4)*x^n, where F=A000045 (Fibonacci sequence).
; 0,5,8,26,63,170,440,1157,3024,7922,20735,54290,142128,372101,974168,2550410,6677055,17480762,45765224,119814917,313679520,821223650,2149991423,5628750626,14736260448,38580030725,10100383172... |
oeis/175/A175114.asm | neoneye/loda-programs | 11 | 41635 | ; A175114: First differences of A175113.
; 1,364,7448,51012,206896,620060,1527624,3281908,6373472,11454156,19360120,31134884,48052368,71639932,103701416,146340180,201982144,273398828,363730392,476508676,615680240,785629404,991201288,1237724852,1531035936,1877500300,2284036664,2758139748,3307903312,3942043196,4669920360... |
core/words/write16.asm | paulscottrobson/nextForth | 2 | 41638 | <reponame>paulscottrobson/nextForth
;
; Word: !
; Dictionary: (d a - )
; Date: 1st February 2018
; Macro: Yes
; Notes:
;
pop ix
pop hl
ex de,hl
ld (hl),e
inc hl
ld (hl),d
pop de
jp (ix) |
Includes/Headers.asm | bbernardoni/MathTI83 | 0 | 41639 | <reponame>bbernardoni/MathTI83
; ===============================================================
; HEADERS.ASM - <NAME> 2013
; ===============================================================
; ===============================================================
; Definitions
; ==============================================... |
programs/oeis/021/A021270.asm | neoneye/loda | 22 | 41641 | <filename>programs/oeis/021/A021270.asm
; A021270: Decimal expansion of 1/266.
; 0,0,3,7,5,9,3,9,8,4,9,6,2,4,0,6,0,1,5,0,3,7,5,9,3,9,8,4,9,6,2,4,0,6,0,1,5,0,3,7,5,9,3,9,8,4,9,6,2,4,0,6,0,1,5,0,3,7,5,9,3,9,8,4,9,6,2,4,0,6,0,1,5,0,3,7,5,9,3,9,8,4,9,6,2,4,0,6,0,1,5,0,3,7,5,9,3,9,8,4
add $0,1
mov $1,10
pow $1,$0
sub $1,6
... |
Library/Mailbox/UI/uiStrings.asm | steakknife/pcgeos | 504 | 41642 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1994 -- All Rights Reserved
PROJECT: Clavin
MODULE: strings
FILE: uiStrings.asm
AUTHOR: <NAME>, Apr 11, 1994
ROUTINES:
Name Description
---- -----------
REVISI... |
libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_iy/cm48_sdcciy_isless.asm | meesokim/z88dk | 0 | 41644 | <reponame>meesokim/z88dk<filename>libsrc/_DEVELOPMENT/math/float/math48/c/sdcc_iy/cm48_sdcciy_isless.asm
; int isless(float x, float y)
SECTION code_fp_math48
PUBLIC cm48_sdcciy_isless
EXTERN am48_isless, cm48_sdcciyp_dread2
cm48_sdcciy_isless:
call cm48_sdcciyp_dread2
; AC'= y
; AC = x
jp am48_i... |
libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/exp10_fastcall.asm | ahjelm/z88dk | 640 | 41647 | <gh_stars>100-1000
SECTION code_fp_math16
PUBLIC exp10f16_fastcall
EXTERN _m16_exp10f
defc exp10f16_fastcall = _m16_exp10f
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _exp10f16_fastcall
defc _exp10f16_fastcall = _m16_exp10f
ENDIF
|
data/pokemon/base_stats/lickitung.asm | AtmaBuster/pokeplat-gen2 | 6 | 41648 | db 0 ; species ID placeholder
db 90, 55, 75, 30, 60, 75
; hp atk def spd sat sdf
db NORMAL, NORMAL ; type
db 45 ; catch rate
db 127 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/lickitung/front.dimensions"
db GROWTH_MEDIUM_... |
Chapter_10/Program 10.1/x86_64/Program_10.1_MASM.asm | hexu1985/Assembly.Programming.And.Computer.Architecture | 0 | 41649 | <filename>Chapter_10/Program 10.1/x86_64/Program_10.1_MASM.asm
; Program 10.1
; Using Segment Selectors - MASM (64-bit)
; Copyright (c) 2019 <NAME>
extrn ExitProcess : proc
.DATA
array DWORD 3, 2, 6, 4, 1
.CODE
_main PROC
mov rax, OFFSET array ; array address to rax
mov ebx, [rax+4] ; second element to ebx
; mov ec... |
lab1/obj/bootblock.asm | wsj6109118105/ucoreStudy | 0 | 41650 | <filename>lab1/obj/bootblock.asm
obj/bootblock.o: 文件格式 elf32-i386
Disassembly of section .text:
00007c00 <start>:
# start address should be 0:7c00, in real mode, the beginning address of the running bootloader
.globl start
start:
.code16 # Assemble for 16-bit mode
... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xca_notsx.log_21829_705.asm | ljhsiun2/medusa | 9 | 41651 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1e648, %rsi
lea addresses_UC_ht+0xf088, %rdi
nop
nop
sub %r13, %r13
mov $126, %rcx
rep movsq
nop
nop
and $40405, %r9
lea addresses_normal_ht+0x9... |
programs/oeis/107/A107454.asm | karttu/loda | 0 | 41652 | ; A107454: Number of nonisomorphic generalized Petersen graphs P(n,k) with girth 5 on 2n vertices for 1<=k<=Floor[(n-1)/2].
; 1,0,1,0,1,2,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1
mov $1,$0
mov... |
programs/oeis/325/A325517.asm | karttu/loda | 0 | 41653 | ; A325517: a(n) = n*((2*n + 1)*(2*n^2 + 2*n + 3) - 3*(-1)^n)/24.
; 0,1,6,24,64,145,282,504,832,1305,1950,2816,3936,5369,7154,9360,12032,15249,19062,23560,28800,34881,41866,49864,58944,69225,80782,93744,108192,124265,142050,161696,183296,207009,232934,261240,292032,325489,361722,400920,443200
mov $15,$0
mov $17,$0
lpb ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.