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
oeis/081/A081407.asm
neoneye/loda-programs
11
58123
<filename>oeis/081/A081407.asm ; A081407: 4th-order non-linear ("factorial") recursion: a(0)=a(1)=a(2)=a(3)=1, a(n) = (n+1)*a(n-4). ; 1,1,1,1,5,6,7,8,45,60,77,96,585,840,1155,1536,9945,15120,21945,30720,208845,332640,504735,737280,5221125,8648640,13627845,20643840,151412625,259459200,422463195,660602880,4996616625,8821...
Test files/test2.asm
victoragcosta/SB_trab1
0
58124
<filename>Test files/test2.asm TRIANGULO:EQU 1 SECTION TEXT INPUT B INPUT H LOAD B MULT H IF TRIANGULO DIV DOIS STORE R ; Comment 2 OUTPUT R ; Comment 1 STOP ; Comment 3 ; Comment 4 ; Line with random tabs and spaces... SECTION BSS B: SPACE H: SPACE ...
libsrc/_DEVELOPMENT/arch/zx/nirvanam/c/sdcc/NIRVANAM_printC_callee.asm
grancier/z180
0
58126
; ---------------------------------------------------------------- ; Z88DK INTERFACE LIBRARY FOR THE NIRVANA ENGINE - by <NAME> ; ; See "nirvana-.h" for further details ; ---------------------------------------------------------------- ; void NIRVANAM_printC(unsigned int ch, unsigned char *attrs, unsigned int lin, uns...
oeis/280/A280405.asm
neoneye/loda-programs
11
58127
; A280405: Odd semiprimes that cannot be represented as 2p+3q, where p and q are primes. ; Submitted by <NAME> ; 9,33,51,69,87,111,123,141,159,177,201,213,237,249,267,291,303,321,339,381,393,411,447,471,489,501,519,537,573,591,633,669,681,699,717,753,771,789,807,831,843,879,921,933,951,993,1011,1041,1059,1077,1101,1119...
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sccz80/sp1_PrintAt.asm
jpoikela/z88dk
640
58128
; void sp1_PrintAt(uchar row, uchar col, uchar colour, uint tile) ; CALLER linkage for function pointers SECTION code_clib SECTION code_temp_sp1 PUBLIC sp1_PrintAt EXTERN asm_sp1_PrintAt sp1_PrintAt: ld hl,2 add hl,sp ld c,(hl) inc hl ld b,(hl) inc hl ld a,(hl) inc hl inc hl ld e,(hl)...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_29.asm
ljhsiun2/medusa
9
58130
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0x211a, %r12 nop nop nop nop nop dec %r9 mov (%r12), %si nop nop sub %r13, %r13 lea addresses_UC_ht+0x97aa, %rsi lea addresses_WC_ht+0x1916a, %rdi clflush (...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1363.asm
ljhsiun2/medusa
9
58131
<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1363.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r8 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x743b, %rsi inc %rdx vmovups (%rsi), %ymm7 vextracti128 $1, %ymm7, %xmm7 vpextrq $1, ...
game-projects/Sonic2/Objects/MainCharacters/Tails/Tails.asm
wide-dot/thomson-to8-game-engine
11
58132
<reponame>wide-dot/thomson-to8-game-engine<filename>game-projects/Sonic2/Objects/MainCharacters/Tails/Tails.asm ; =========================================================================== ; ---------------------------------------------------------------------------- ; Object 02 - Tails ; -----------------------------...
src/engine/object.asm
matanui159/celeste-gameboy
8
58133
include "../hardware.inc" section "Objects ROM", rom0 ;; @param c: DMA register ;; @param a: Source high address ;; @param b: Wait time ObjectDMA: load "Object DMA", hram hObjectDMA: ldh [c], a .loop: dec b jr nz, .loop ret .end: endl ;; Initializes the object rendering ObjectsInit:: ; Copy ove...
code/zlib-1.2.11/contrib/masmx64/gvmat64.asm
skrtbhtngr/presto
0
58134
;uInt longest_match_x64( ; deflate_state *s, ; IPos cur_match); /* current match */ ; gvmat64.asm -- Asm portion of the optimized longest_match for 32 bits x86_64 ; (AMD64 on Athlon 64, Opteron, Phenom ; and Intel EM64T on Pentium 4 with EM64T, Pentium D, Core 2 Duo, Core I...
vp8/encoder/arm/armv5te/vp8_packtokens_partitions_armv5.asm
CM-Archive/android_external_libvpx
0
58135
<gh_stars>0 ; ; Copyright (c) 2010 The WebM 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 in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contri...
EmulatorPkg/Sec/X64/SwitchRam.asm
DK519/DK_Project
1
58136
;------------------------------------------------------------------------------ ; ; Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR> ; Portitions copyright (c) 2011, Apple Inc. All rights reserved. ; SPDX-License-Identifier: BSD-2-Clause-Patent ; ;--------------------------------------------------...
Script/3.asm
hosne-ara-tuli/CSE331L_Section_7_Summer20_NSU_Final
0
58137
<reponame>hosne-ara-tuli/CSE331L_Section_7_Summer20_NSU_Final .MODEL SMALL .STACK 100h .DATA ALPHABETS DB DUP 26 (?) .CODE MOV AX, @DATA MOV DS, AX MOV CX, 26 MOV SI, 0 L1: MOV AH, 1 INT 21h MOV ALPHABETS[SI], AL INC SI LOOP L1 MOV SI, 25...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_759.asm
ljhsiun2/medusa
9
58139
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r8 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0xa0b2, %rdx nop nop nop nop add %r13, %r13 mov (%rdx), %r9 nop nop nop dec %r15 lea addresses_WT_ht+0xf442, %rsi lea addresses_UC_ht+0x15d, %rdi nop nop nop sub $19318, %r8 mov...
programs/oeis/212/A212673.asm
karttu/loda
0
58140
; A212673: Number of (w,x,y,z) with all terms in {1,...,n} and w<=|x-y|+|y-z|. ; 0,0,8,46,152,378,792,1476,2528,4060,6200,9090,12888,17766,23912,31528,40832,52056,65448,81270,99800,121330,146168,174636,207072,243828,285272,331786,383768,441630,505800,576720,654848,740656,834632 mov $15,$0 mov $17,$0 lpb $17,1 clr $...
deps/gmp.js/mpn/x86_64/aors_n.asm
6un9-h0-Dan/cobaul
184
58141
dnl AMD64 mpn_add_n, mpn_sub_n dnl Copyright 2003, 2004, 2005, 2007, 2008, 2010 Free Software Foundation, dnl Inc. dnl This file is part of the GNU MP Library. dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl it under the terms of the GNU Lesser General Public License as publi...
programs/oeis/147/A147597.asm
karttu/loda
0
58142
; A147597: a(n) is the number whose binary representation is A138146(n). ; 1,7,31,119,455,1799,7175,28679,114695,458759,1835015,7340039,29360135,117440519,469762055,1879048199,7516192775,30064771079,120259084295,481036337159,1924145348615,7696581394439,30786325577735,123145302310919,492581209243655,1970324836974599,788...
oeis/060/A060894.asm
neoneye/loda-programs
11
58143
<filename>oeis/060/A060894.asm ; A060894: n^8+n^7-n^5-n^4-n^3+n+1. ; Submitted by <NAME> ; 1,1,331,8401,80581,464881,1950271,6568801,18837001,47763361,109889011,233669041,465542221,878077201,1580623591,2732936641,4562284561,7384587841,11630180251,17874821521,26876632021,39619660081,57364832911,81709082401,114653477401,...
programs/oeis/296/A296028.asm
jmorken/loda
1
58144
<reponame>jmorken/loda ; A296028: Characteristic function of primes in the nonmultiples of 3. ; 0,1,0,1,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1 mul $0,3 div ...
Projekt1/Implementierung/filter5.asm
rollix/era-praktikum
0
58145
;------------------------------------------------------------------------------- ; filter5(int N, int *start, int length, int *dest): ; Applies a median filter to a signal array at start, writes the result to dest ;------------------------------------------------------------------------------- section .data ; error m...
Driver/IFS/DOS/MSNet/msnetManager.asm
steakknife/pcgeos
504
58146
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: msnetManager.asm AUTHOR: <NAME>, Oct 30, 1991 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Descr...
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_21829_255.asm
ljhsiun2/medusa
9
58147
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0xaf13, %r13 nop nop nop nop xor %r8, %r8 movl $0x61626364, (%r13) nop sub $21647, %r15 lea addresses_WT_ht+0x143b1, %rsi lea addresses_WC_ht+0x15f79, %rdi nop add %r13, %r13 m...
oeis/086/A086246.asm
neoneye/loda-programs
11
58148
<reponame>neoneye/loda-programs ; A086246: Expansion of (1 + x - sqrt(1 - 2*x - 3*x^2)) / 2 in powers of x. ; Submitted by <NAME> ; 0,1,1,1,2,4,9,21,51,127,323,835,2188,5798,15511,41835,113634,310572,853467,2356779,6536382,18199284,50852019,142547559,400763223,1129760415,3192727797,9043402501,25669818476,73007772802,20...
oeis/078/A078044.asm
neoneye/loda-programs
11
58149
; A078044: Expansion of (1-x)/(1+x+2*x^3). ; Submitted by <NAME> ; 1,-2,2,-4,8,-12,20,-36,60,-100,172,-292,492,-836,1420,-2404,4076,-6916,11724,-19876,33708,-57156,96908,-164324,278636,-472452,801100,-1358372,2303276,-3905476,6622220,-11228772,19039724,-32284164,54741708,-92821156,157389484,-266872900 mov $1,1 mov $2,...
libsrc/stdio/x1/getk.asm
RC2014Z80/z88dk
8
58150
<reponame>RC2014Z80/z88dk ; ; Sharp X1 Stdio ; ; getk() - Read key status ; ; <NAME> (for X1s.org) - 24/10/2013 ; SECTION code_clib PUBLIC getk PUBLIC _getk EXTERN _x1_keyboard_io getk: _getk: ld hl, _x1_keyboard_io ld a, (hl) IF STANDARDESCAPECHARS ...
src/libav/libavcodec/x86/dct32_sse.asm
fillest/rtmp_load
10
58151
;****************************************************************************** ;* 32 point SSE-optimized DCT transform ;* Copyright (c) 2010 <NAME> ;* ;* This file is part of Libav. ;* ;* Libav is free software; you can redistribute it and/or ;* modify it under the terms of the GNU Lesser General Public ;* License as ...
stressfs.asm
avivo23/os_ass3
0
58152
<filename>stressfs.asm _stressfs: file format elf32-i386 Disassembly of section .text: 00000000 <main>: #include "fs.h" #include "fcntl.h" int main(int argc, char *argv[]) { 0: 8d 4c 24 04 lea 0x4(%esp),%ecx 4: 83 e4 f0 and $0xfffffff0,%esp 7: ff 71 fc pushl ...
MouseJiggler/MouseJiggler/lib/SleepTimer.asm
TuningSweeper/USB-MouseJiggler
0
58153
<reponame>TuningSweeper/USB-MouseJiggler<gh_stars>0 ;;***************************************************************************** ;;***************************************************************************** ;; Filename: SleepTimer.asm ;; Version: 1.0, Updated on 2015/3/4 at 22:26:59 ;; Generated by PSoC Desig...
libsrc/input/vz/in_keytranstbl.asm
jpoikela/z88dk
640
58155
<filename>libsrc/input/vz/in_keytranstbl.asm<gh_stars>100-1000 ; This table translates key presses into ascii codes. ; Also used by 'GetKey' and 'LookupKey'. An effort has been made for ; this key translation table to emulate a PC keyboard with the 'CTRL' key SECTION rodata_clib PUBLIC in_keytranstbl .in_keytranstb...
P6/data_P6_2/ALUTest12.asm
alxzzhou/BUAA_CO_2020
1
58156
lbu $3,9($0) sltu $6,$3,$3 xor $3,$1,$3 sb $3,7($0) lhu $5,4($0) slti $0,$5,3749 addu $3,$4,$3 lb $4,8($0) xor $3,$4,$3 xori $1,$4,42049 subu $3,$0,$3 addu $6,$6,$3 andi $4,$4,52496 sll $1,$1,16 lhu $3,12($0) lbu $4,11($0) addiu $6,$5,20181 addu $1,$2,$3 subu $3,$3,$3 sw $1,0($0) sra $6,$6,9 addu $1,$0,$3 andi $0,$3,46...
Transynther/x86/_processed/AVXALIGN/_st_4k_sm_/i7-7700_9_0x48_notsx.log_21829_1641.asm
ljhsiun2/medusa
9
58157
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r8 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x3d15, %rdi clflush (%rdi) sub $511, %rdx mov (%rdi), %r14w nop nop nop add $28310, %r8 lea addresses_WT_ht+0x18789, %rsi lea addresses_normal_ht+0x176c9, %rdi nop nop nop nop...
programs/oeis/070/A070352.asm
jmorken/loda
1
58158
<reponame>jmorken/loda<gh_stars>1-10 ; A070352: a(n) = 3^n mod 5; or period 4, repeat [1, 3, 4, 2]. ; 1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,3,4,2,1,...
oeis/142/A142258.asm
neoneye/loda-programs
11
58160
; A142258: Primes congruent to 9 mod 43. ; Submitted by <NAME>(w1) ; 181,353,439,1213,1471,1901,1987,2417,2503,3019,3191,3449,3793,4051,4481,4567,5857,6029,6287,6373,6803,7577,8093,8179,8609,8867,10243,10501,11447,12049,12479,12823,13339,13597,14543,14629,14887,15661,15919,16091,16349,16607,16693,17123,17209,17467,1841...
tests/data_simple/12.asm
NullMember/customasm
414
58161
<reponame>NullMember/customasm #d8 0x8 ; = 0x08 #d16 0x16 ; = 0x0016 #d24 0x24 ; = 0x000024 #d32 0x32 ; = 0x00000032
programs/oeis/182/A182568.asm
neoneye/loda
22
58162
<reponame>neoneye/loda<filename>programs/oeis/182/A182568.asm ; A182568: a(n) = 2*floor(n/4)*(n - 2*(1 + floor(n/4))). ; 0,0,0,0,0,2,4,6,8,12,16,20,24,30,36,42,48,56,64,72,80,90,100,110,120,132,144,156,168,182,196,210,224,240,256,272,288,306,324,342,360,380,400,420,440,462,484,506,528,552,576,600,624,650,676,702,728,75...
programs/oeis/176/A176414.asm
jmorken/loda
1
58163
<reponame>jmorken/loda ; A176414: Expansion of (7+8*x)/(1+2*x). ; 7,-6,12,-24,48,-96,192,-384,768,-1536,3072,-6144,12288,-24576,49152,-98304,196608,-393216,786432,-1572864,3145728,-6291456,12582912,-25165824,50331648,-100663296,201326592,-402653184,805306368,-1610612736,3221225472,-6442450944,12884901888,-25769803776,5...
oeis/093/A093851.asm
neoneye/loda-programs
11
58164
; A093851: a(n) = A002283(n-1) + floor(A052268(n)/(1+n)). ; Submitted by <NAME> ; 4,39,324,2799,24999,228570,2124999,19999999,189999999,1818181817,17499999999,169230769229,1642857142856,15999999999999,156249999999999,1529411764705881,14999999999999999,147368421052631577,1449999999999999999,14285714285714285713,14090909...
source/header/00start.asm
paulscottrobson/6502-basic
3
58165
; ************************************************************************************************ ; ************************************************************************************************ ; ; Name: 00start.asm ; Purpose: Start up code. ; Created: 21st February 2021 ; Reviewed: 11th March 2021 ; Author:...
programs/oeis/243/A243989.asm
neoneye/loda
22
58166
<reponame>neoneye/loda ; A243989: Rounded down ratio of a lune area and a unit circle one, the lune is bounded by two unit circles whose centers are separated by a distance 1/n. ; 1,3,4,6,7,9,11,12,14,15,17,18,20,21,23,25,26,28,29,31,32,34,36,37,39,40,42,43,45,47,48,50,51,53,54,56,58,59,61,62,64,65,67,69,70,72,73,75,76...
testcases/rc5.asm
Asintoerr/A-Sin-To-Err
0
58167
; RC5 encryption test case ; Input #define CTR_NONCE $0 ; 32 bits = 8 nibbles #define CTR_COUNTER $8 ; 32 bits = 8 nibbles ; Output #define RC5_A $10 ; 32 bits = 8 nibbles #define RC5_B $18 ; 32 bits = 8 nibbles ; Temporary variables #define OPERAND_A $20 ; 32 bit...
pro/pro3.2/boot.asm
wangdehu/os
3
58168
%include "os.inc" PageDirBase0 equ 200000h ; 页目录开始地址: 2M PageTblBase0 equ 201000h ; 页表开始地址: 2M + 4K PageDirBase1 equ 210000h ; 页目录开始地址: 2M + 64K PageTblBase1 equ 211000h ; 页表开始地址: 2M + 64K + 4K LinearAddrDemo equ 00401000h ProcFoo equ 00401000h ProcBar equ 00501000h ProcPagingDemo equ 00301000h org 0100h ...
codigo/capitulo 39/archivo_escritura.asm
Nabucodonosor-editorial/ensamblador-x86
2
58169
segment .data MsgError db "se produjo un error",0xA,0xD ;mensaje en caso de ; existir un error al crear el archivo los numeros ; hexadecimales son equivalentes a los numeros decimales ; 10 y 13 los cuales permiten el salto de linea lon equ $ -MsgError MsgExito db "archivo abie...
pwnlib/shellcraft/templates/thumb/linux/getpeername.asm
IMULMUL/python3-pwntools
325
58170
<reponame>IMULMUL/python3-pwntools <% from pwnlib.shellcraft.thumb.linux import syscall %> <%page args="fd, addr, length"/> <%docstring> Invokes the syscall getpeername. See 'man 2 getpeername' for more information. Arguments: fd(int): fd addr(SOCKADDR_ARG): addr len(socklen_t): len </%docstring> ...
programs/oeis/115/A115599.asm
jmorken/loda
1
58172
<reponame>jmorken/loda ; A115599: Consider all Pythagorean triples (X,X+1,Z) ordered by increasing Z; sequence gives Z-X values. ; 2,9,50,289,1682,9801,57122,332929,1940450,11309769,65918162,384199201,2239277042,13051463049,76069501250,443365544449,2584123765442,15061377048201,87784138523762,511643454094369,29820765860...
pwnlib/shellcraft/templates/amd64/linux/epoll_wait.asm
zaratec/pwntools
5
58173
<% from pwnlib.shellcraft.amd64.linux import syscall %> <%page args="epfd, events, maxevents, timeout"/> <%docstring> Invokes the syscall epoll_wait. See 'man 2 epoll_wait' for more information. Arguments: epfd(int): epfd events(epoll_event): events maxevents(int): maxevents timeout(int): timeout...
bronzebeard/definitions/ST7735S.asm
brucehoult/bronzebeard
25
58174
# definitions related to the ST7735S display # # datasheet: https://www.crystalfontz.com/controllers/Sitronix/ST7735S/320/ # reference: https://github.com/adafruit/Adafruit-ST7735-Library # not sure about this one #DP_CLOCKDIV_WRITE = (2 << SPI_CTL0_PSC_POS) # PORT B DP_CS_BIT = 2 DP_RST_BIT = 1 DP_DC_BIT = 0 DP_C...
Src/Ant32/io.asm
geoffthorpe/ant-architecture
0
58175
# # <NAME> -- 11/18/01 # printChar-- A function that prints a character # one argument: character to be printed # Registers used: # # g3 - argument register, holds character to be printed printChar: ld4 g3, fp, 12 # read the argument from the stack cout g3 # Print the character. addi sp, fp, 0 # rest...
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_964.asm
ljhsiun2/medusa
9
58176
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r9 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x15c6f, %rdi nop nop nop nop nop sub %r9, %r9 movups (%rdi), %xmm4 vpextrq $0, %xmm4, %r13 nop nop and $12359, %rax lea addresses_normal_ht+...
test/geekos_test_vm/src/geekos/fd_boot_bak.asm
PeterDinda/palacios
2
58177
; -*- fundamental -*- ; Boot sector for GeekOS ; Copyright (c) 2001,2004 <NAME> <<EMAIL>> ; Copyright (c) 2003, <NAME> <<EMAIL>> ; $Revision: 1.1 $ ; This is free software. You are permitted to use, ; redistribute, and modify it as specified in the file "COPYING". ; Loads setup code and a program image from sectors ...
lib/x86_64/zuc_common.asm
dongbinghua/intel-ipsec-mb
174
58178
<reponame>dongbinghua/intel-ipsec-mb ;; ;; Copyright (c) 2009-2021, Intel Corporation ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions are met: ;; ;; * Redistributions of source code must retain the above copyright notice,...
programs/oeis/005/A005358.asm
karttu/loda
0
58179
<filename>programs/oeis/005/A005358.asm ; A005358: Number of low discrepancy sequences in base 5. ; 0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,...
examples/5_write_file/src/main.asm
Teriks/libasm_io
1
58180
;================================================================= ; ; Copyright (c) 2014, Teriks ; ; All rights reserved. ; ; libasm_io is distributed under the following BSD 3-Clause License ; ; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the followin...
libsrc/_DEVELOPMENT/stdlib/z80/asm__div.asm
meesokim/z88dk
0
58182
<filename>libsrc/_DEVELOPMENT/stdlib/z80/asm__div.asm ; =============================================================== ; Dec 2013 ; =============================================================== ; ; void _div(div_t *d, int numer, int denom) ; ; Fill the div_t struct with the results of integer divide ; numer / deno...
src/data/flyover-text-onett.asm
Iemnur/Mother2GbaTranslation
149
58183
<gh_stars>100-1000 .loadtable "data/flyover-table.tbl" // Should this be 02 01? db 02h, 02h db 01h, 26h .str "Onett, a small town in Eagleland\n"
programs/oeis/008/A008719.asm
karttu/loda
0
58185
<filename>programs/oeis/008/A008719.asm ; A008719: Expansion of 1/((1-x)*(1-x^4)*(1-x^6)*(1-x^12)). ; 1,1,1,1,2,2,3,3,4,4,5,5,8,8,9,9,12,12,15,15,18,18,21,21,27,27,30,30,36,36,42,42,48,48,54,54,64,64,70,70,80,80,90,90,100,100,110,110,125,125,135,135,150,150,165,165,180,180,195,195,216,216,231,231,252,252,273,273,294,29...
Transynther/x86/_processed/NC/_st_sm_/i9-9900K_12_0xca_notsx.log_8_1085.asm
ljhsiun2/medusa
9
58186
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x1881, %r14 nop nop add $54401, %r13 movw $0x6162, (%r14) nop xor $56653, %rbx lea addresses_D_ht+0x8981, %rsi lea addresses_WC_ht+0x5c2f, %rdi nop nop nop nop sub $600, %rax ...
classlib/modules/portlib/src/main/native/thread/windows/windows.x86/locklbl.asm
sirinath/Harmony
5
58189
; Licensed to the Apache Software Foundation (ASF) under one or more ; contributor license agreements. See the NOTICE file distributed with ; this work for additional information regarding copyright ownership. ; The ASF licenses this file to You under the Apache License, Version 2.0 ; (the "License"); you may...
MySource/22-variable.asm
mdabdullahibnaharun/Assembly-Language
0
58190
; You may customize this and other start-up templates; ; The location of this template is c:\emu8086\inc\0_com_template.txt org 100h .model small .data var1 db 6 .code main proc mov dl,var1 add dl,48 mov ah,2 int 21h mov ah,4ch int 21h...
programs/oeis/192/A192378.asm
neoneye/loda
22
58191
<gh_stars>10-100 ; A192378: (A192377)/2. ; 0,1,2,10,34,131,484,1812,6756,25221,94118,351262,1310918,4892423,18258760,68142632,254311752,949104393,3542105802,13219318834,49335169514,184121359243,687150267436,2564479710524,9570768574636,35718594588045 mov $5,2 mov $6,$0 lpb $5 mov $0,$6 mov $3,0 sub $5,1 add $0,...
x86_64-assembly/space-age/spaceage.asm
dgeoffri/exercism
0
58192
section .rodata align 16 seconds_per_year dd 31557600.0 earth_years_per_orbit dd 0.2408467 ; Mercury dd 0.61519726 ; Venus dd 1.0 ; Earth dd 1.8808158 ; Mars dd 11.862615 ; Jupiter ...
programs/oeis/028/A028430.asm
karttu/loda
0
58193
; A028430: Clog sequence in base 9. Right to left concatenation of n, int(log_9(n)), int(log_9(int(log_9(n)))),... in base9. ; 1,2,3,4,5,6,7,8,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136...
Working Disassembly/Levels/AIZ/Misc Object Data/Map - Miniboss Small.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
5
58195
<gh_stars>1-10 Map_3625EA: dc.w Frame_3625F0-Map_3625EA dc.w Frame_3625F8-Map_3625EA dc.w Frame_362600-Map_3625EA Frame_3625F0: dc.w 1 dc.b $F4, $A, 0, 0,$FF,$F4 Frame_3625F8: dc.w 1 dc.b $F8, 5, 0, 9,$FF,$F8 Frame_362600: dc.w 1 dc.b $FC, 0, 0, $D,$FF,$FC
libsrc/target/zx/ulaplus/ula_plus_mode.asm
jpoikela/z88dk
640
58197
<reponame>jpoikela/z88dk<filename>libsrc/target/zx/ulaplus/ula_plus_mode.asm ; ; ZX Spectrum specific routines ; by <NAME>, MAR 2010 ; ; int ula_plus_mode(); ; ; The result is: ; - 0 (false) ULAPlus not installed / emulated ; - 1 ULAPlus 64 colour mode is available ; ; $Id: ula_plus_mode.asm,v 1.3 2016-06-10 21:14:23 d...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_5.asm
ljhsiun2/medusa
9
58198
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r8 lea addresses_A_ht+0xa883, %r13 inc %r8 movups (%r13), %xmm6 vpextrq $0, %xmm6, %r10 nop nop nop nop nop cmp %r11, %r11 pop %r8 pop %r13 pop %r11 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11...
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_21829_183.asm
ljhsiun2/medusa
9
58199
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_A_ht+0x1819f, %r8 nop nop nop and $58904, %r11 mov $0x6162636465666768, %r15 movq %r15, %xmm6 vmovups %ymm6, (%r8) nop sub $60516, %r12 lea addresses_WT_ht+0...
src/hello_loop.asm
MarioSieg/Utilitiy-Routines
1
58200
<filename>src/hello_loop.asm<gh_stars>1-10 .data msg: .asciz "Hello, World\n" .text .globl main main: movq $3, %rcx # number of iterations L0: pushq %rcx # preserve rcx movq $1, %rax # 1 = write movq $1, %rdi # 1 = to stdout movq $msg, %rsi # string ptr movq $13, ...
CS61/cs61_labs/lab-2-Kuzame/lab02_ex0.asm
Kuzame/CS61
1
58203
<gh_stars>1-10 ;================================================= ; Name: <NAME> ; Login; aharm002 ; Email: <EMAIL> ; ; Lab: lab 2 ; Lab section: 24 ; TA: <NAME> ;================================================= ; ;Hello world example program ;Also illustrates how to use PUTS (aka: Trap x22) ; .ORIG x300...
Kernel/asm/libasm.asm
MatiMonaco/so-tp2
0
58204
<filename>Kernel/asm/libasm.asm GLOBAL cpuVendor section .text cpuVendor: push rbp mov rbp, rsp push rbx mov rax, 0 cpuid mov [rdi], ebx mov [rdi + 4], edx mov [rdi + 8], ecx mov byte [rdi+13], 0 mov rax, rdi pop rbx mov rsp, rbp pop rbp ret
scripts/mansion4.asm
adhi-thirumala/EvoYellow
16
58205
Mansion4Script: call Mansion4Script_523cf call EnableAutoTextBoxDrawing ld hl, Mansion4TrainerHeader0 ld de, Mansion4ScriptPointers ld a, [wMansion4CurScript] call ExecuteCurMapScriptInTable ld [wMansion4CurScript], a ret Mansion4Script_523cf: ld hl, wCurrentMapScriptFlags bit 5, [hl] res 5, [hl] ret z Ch...
src/Native/System.Private.TypeLoader.Native/arm64/VTableResolver.asm
lambdageek/corert
9
58206
<filename>src/Native/System.Private.TypeLoader.Native/arm64/VTableResolver.asm ;; Licensed to the .NET Foundation under one or more agreements. ;; The .NET Foundation licenses this file to you under the MIT license. ;; See the LICENSE file in the project root for more information. #include "kxarm64.h" DATAARE...
oeis/123/A123567.asm
neoneye/loda-programs
11
58208
; A123567: Recursive sum of 2*Omega(n), where Omega(n) is the sequence A001222. ; Submitted by <NAME>(s2) ; 3,5,7,11,13,17,19,25,29,33,35,41,43,47,51,59,61,67,69,75,79,83,85,93,97,101,107,113,115,121,123,133,137,141,145,153,155,159,163,171,173,179,181,187,193,197,199,209,213,219,223,229,231,239,243,251,255,259,261,269,...
ex07_higher_lower_array.asm
gustatarem/assembly-arqsis
1
58209
<reponame>gustatarem/assembly-arqsis include 'emu8086.inc' .model small org 100h .code PRINTS MACRO message MOV AH, 09h LEA DX, message INT 21h ENDM start: PRINTS message1 MOV CX, 10 MOV BX,offset array MOV AH, 01 input: PUTC 10 PUTC 13 IN...
programs/oeis/226/A226323.asm
neoneye/loda
22
58211
<reponame>neoneye/loda<filename>programs/oeis/226/A226323.asm ; A226323: Number of ordered pairs (i,j) with |i| * |j| <= n and gcd(i,j) <= 1. ; 1,9,17,25,33,41,57,65,73,81,97,105,121,129,145,161,169,177,193,201,217,233,249,257,273,281,297,305,321,329,361,369,377,393,409,425,441,449,465,481,497,505,537,545,561,577,593,6...
_maps/obj5E.asm
vladjester2020/Sonic1TMR
0
58213
<reponame>vladjester2020/Sonic1TMR ; --------------------------------------------------------------------------- ; Sprite mappings - seesaws (SLZ) ; --------------------------------------------------------------------------- dc.w byte_119AC-Map_obj5E, byte_119D0-Map_obj5E dc.w byte_119AC-Map_obj5E, byte_119D0-M...
simd/i386/jidctred-sse2.asm
1camper/libjpeg-turbo
522
58214
; ; jidctred.asm - reduced-size IDCT (SSE2) ; ; Copyright 2009 Pierre Ossman <<EMAIL>> for Cendio AB ; Copyright (C) 2016, <NAME>. ; ; Based on the x86 SIMD extension for IJG JPEG library ; Copyright (C) 1999-2006, MIYASAKA Masaru. ; For conditions of distribution and use, see copyright notice in jsimdext.inc ; ; This ...
programs/oeis/301/A301809.asm
neoneye/loda
22
58215
<gh_stars>10-100 ; A301809: Group the natural numbers such that the first group is (1) then (2),(3),(4,5),(6,7,8),... with the n-th group containing F(n) sequential terms where F(n) is the n-th Fibonacci number (A000045(n)). Sequence gives the sum of terms in the n-th group. ; 1,2,3,9,21,55,140,364,945,2465,6435,16821,...
test/test.Array.sliceba.asm
richRemer/atlatl
0
58216
global test_case extern Array.sliceb extern Array.eachb extern std.outb extern std.outln extern sys.error %include "Array.inc" section .text test_case: mov rax, test_arrayb ; Array to slice mov rbx, 4 ; at offset 2 call Array.sliceb ; slice into two arrays ...
oeis/090/A090993.asm
neoneye/loda-programs
11
58217
<filename>oeis/090/A090993.asm ; A090993: Number of meaningful differential operations of the n-th order on the space R^8. ; Submitted by <NAME>(s2) ; 8,14,24,42,72,126,216,378,648,1134,1944,3402,5832,10206,17496,30618,52488,91854,157464,275562,472392,826686,1417176,2480058,4251528,7440174,12754584,22320522,38263752,66...
lib/new.asm
argymouz/alan-compiler
0
58218
; [polymorphic in T] ; T * _new (int size); ; -------------------- ; This function allocates 'size' bytes of memory space in the heap ; and returns a pointer to it. It returns the 'nil' pointer if no ; memory can be allocated. ; KNOWN BUGS !!! ; 1. Does not attempt to reuse disposed memory. s...
demo.asm
Spirax2/zx-multiscroll-demo
1
58219
<filename>demo.asm org 24576 INCLUDE "input.asm" INCLUDE "im2.asm" INCLUDE "entities.asm" INCLUDE "depack.asm" INCLUDE "rambank.asm" END_P1: org $8000 IM2table: ds 257 ; IM2 table (reserved) start_game: set_interrupt: ld a, 0x9a ld hl, 0x8000 ld de, ISR call SetIM2 pre_begin:...
tests/emra/PRED_MODE/asm/PR04.asm
ilebedev/stacktool
1
58220
<reponame>ilebedev/stacktool<gh_stars>1-10 #define BASE_ADDR_0 0x00000000 // (core 0) #define BASE_ADDR_1 0x02000000 // (core 1) #define BASE_ADDR_2 0x04000000 // (core 2) #define BASE_ADDR_3 0x06000000 // (core 3) #// thread 0 on core 0 #int main() { # # int *localArr = (int *) BASE_ADDR_0; # int *remoteArr1 = (int...
programs/oeis/192/A192982.asm
neoneye/loda
22
58221
; A192982: Coefficient of x in the reduction by x^2 -> x+1 of the polynomial p(n,x) defined at Comments. ; 0,1,1,3,8,20,44,89,169,307,540,928,1568,2617,4329,7115,11640,18980,30876,50145,81345,131851,213596,345888,559968,906385,1466929,2373939,3841544,6216212,10058540,16275593,26335033,42611587,68947644,111560320,180509...
programs/oeis/129/A129532.asm
neoneye/loda
22
58222
<reponame>neoneye/loda<filename>programs/oeis/129/A129532.asm ; A129532: 3n(n-1)4^(n-2). ; 0,0,6,72,576,3840,23040,129024,688128,3538944,17694720,86507520,415236096,1962934272,9160359936,42278584320,193273528320,876173328384,3942779977728,17626545782784,78340203479040,346346162749440 mov $1,4 pow $1,$0 bin $0,2 mul $1...
list_opcodes.asm
Dentrax/DLL-Injection-with-Assembly
16
58223
<filename>list_opcodes.asm ; ==================================================== ; DLL-Injection-with-Assembly Copyright(C) 2017 <NAME> ; This program comes with ABSOLUTELY NO WARRANTY; This is free software, ; and you are welcome to redistribute it under certain conditions; See ; file LICENSE, which is part of this s...
programs/oeis/008/A008723.asm
neoneye/loda
22
58224
<reponame>neoneye/loda ; A008723: Molien series for 3-dimensional group [2,11] = *2 2 11. ; 1,0,2,0,3,0,4,0,5,0,6,1,7,2,8,3,9,4,10,5,11,6,13,7,15,8,17,9,19,10,21,11,23,13,25,15,27,17,29,19,31,21,33,23,36,25,39,27,42,29,45,31,48,33,51,36,54,39,57,42,60,45,63,48,66,51,70,54,74,57,78,60,82,63,86,66,90,70,94,74,98,78,102,8...
Working Disassembly/Levels/DPZ/Debug/Main.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
5
58225
<filename>Working Disassembly/Levels/DPZ/Debug/Main.asm ; Object Mappings Subtype Frame Arttile dbglistobj Obj_Ring, Map_Ring, 0, 0, make_art_tile($3D2,3,1) dbglistobj Obj_2PItem, Map_2PItem, 0, 0, make_art_tile($3C6,0,0) dbglistobj Obj_PathSwap, Map_PathSwap, 9, 1, make_art_t...
engine/battle/move_effects/triple_kick.asm
AtmaBuster/pokeplat-gen2
6
58226
BattleCommand_triplekick: ; triplekick ld a, [wKickCounter] ld b, a inc b ld hl, wCurDamage + 1 ld a, [hld] ld e, a ld a, [hli] ld d, a .next_kick dec b ret z ld a, [hl] add e ld [hld], a ld a, [hl] adc d ld [hli], a ; No overflow. jr nc, .next_kick ld a, $ff ld [hld], a ld [hl], a ret BattleCom...
kernel.asm
howardpx2016/xv6
0
58228
<filename>kernel.asm<gh_stars>0 kernel: file format elf32-i386 Disassembly of section .text: 80100000 <multiboot_header>: 80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh 80100006: 00 00 add %al,(%eax) 80100008: fe 4f 52 decb 0x52(%edi) 8010000b: e4 .b...
oeis/101/A101928.asm
neoneye/loda-programs
11
58229
<gh_stars>10-100 ; A101928: E.g.f. cos(arcsinh(x)) = sin(arccosh(x)) (even powers only). ; Submitted by <NAME> ; 1,-1,5,-85,3145,-204425,20646925,-2993804125,589779412625,-151573309044625,49261325439503125,-19753791501240753125,9580588878101765265625,-5527999782664718558265625,3742455852864014463945828125,-293782784449...
oeis/256/A256256.asm
neoneye/loda-programs
11
58230
<reponame>neoneye/loda-programs ; A256256: Total number of ON cells after n generations of cellular automaton on triangular grid, starting from a node, in which every 60-degree wedge looks like the Sierpiński's triangle. ; Submitted by <NAME>(s3) ; 0,6,18,30,54,66,90,114,162,174,198,222,270,294,342,390,486,498,522,546,...
bvs/BvsGetFont.asm
osfree-project/FamilyAPI
0
58231
;/*! ; @file ; ; @brief BvsGetFont DOS wrapper ; ; (c) osFree Project 2008-2022, <http://www.osFree.org> ; for licence see licence.txt in root directory, or project website ; ; This is Family API implementation for DOS, used with BIND tools ; to link required API ; ; @author <NAME> (<EMAIL>) ; ; * 0 N...
programs/oeis/213/A213578.asm
neoneye/loda
22
58234
; A213578: Antidiagonal sums of the convolution array A213576. ; 1,4,13,34,80,174,359,712,1371,2580,4768,8684,15629,27852,49225,86390,150704,261530,451795,777360,1332791,2277864,3882048,6599064,11191705,18940564,31992709,53943562,90807056,152631750,256190783,429455704,719031699,1202505852,2008941280,3352869380,55906367...
libsrc/gfx/wide/w_stencil_add_circle.asm
Frodevan/z88dk
38
58235
; ; Z88 Graphics Functions - Small C+ stubs ; ; Written around the Interlogic Standard Library ; ; Compute the line coordinates and put into a vector ; Basic concept by <NAME> (calculate_side) ; ; <NAME> - 13/3/2009 ; ; ; $Id: w_stencil_add_circle.asm,v 1.3 2016-04-23 20:37:40 dom Exp $ ; ;; void ste...
programs/oeis/144/A144611.asm
jmorken/loda
1
58236
<gh_stars>1-10 ; A144611: Sturmian word of slope 2-sqrt(2). ; 0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,...
src/asm/win32/fixdbl.asm
Pantarheon/libkoliba
0
58237
;; ;; ;; fixdbl.asm ;; ;; Copyright 2021 G. <NAME> ;; All rights reserved ;; ;; nasm -fwin32 fixdbl.asm ;; ;; This is needed because MSC produces ;; a truly ridiculously slow result when ;; compiling fixdbl.c. It is deceptively ;; simple in assembly language, at least ;; when it comes to Intel processors and ;; compati...
original/01 - Tutorial One.asm
rodoherty1/6502-Examples
0
58238
; 10 SYS (2304) *=$0801 BYTE $0E, $08, $0A, $00, $9E, $20, $28 BYTE $32, $33, $30, $34, $29, $00, $00, $00 *=$0900 ;************************************************* ;* Variables ;************************************************* SCREEN_Start_Location$ = $0400 VAR_BINARY = %01010101 VAR_HEX = $1F VAR_OCTA...
ta21demo/gp_keydraw.asm
hallorant/bitmit
6
58240
<filename>ta21demo/gp_keydraw.asm ; gp_keydraw.asm ; Draws while you press a key (by <NAME>, I added "equ"s) ; ; zmac gp_keydraw.asm ; trs80gp zout/gp_keydraw.bds screen equ $3c00 block equ $bf ; This is 1011 1111 in binary (a graphic block) org $5200 start: di ; no blinking cursor ld c,block again: ld hl,screen...
oeis/021/A021662.asm
neoneye/loda-programs
11
58241
<filename>oeis/021/A021662.asm<gh_stars>10-100 ; A021662: Decimal expansion of 1/658. ; 0,0,1,5,1,9,7,5,6,8,3,8,9,0,5,7,7,5,0,7,5,9,8,7,8,4,1,9,4,5,2,8,8,7,5,3,7,9,9,3,9,2,0,9,7,2,6,4,4,3,7,6,8,9,9,6,9,6,0,4,8,6,3,2,2,1,8,8,4,4,9,8,4,8,0,2,4,3,1,6,1,0,9,4,2,2,4,9,2,4,0,1,2,1,5,8,0,5,4 add $0,1 mov $2,10 pow $2,$0 mov ...
45/runtime/rt/draw.asm
minblock/msdos
0
58242
PAGE 56,132 TITLE DRAW - Draw Statement Support ;*** ; DRAW - Draw Statement Support ; ; Copyright <C> 1986, Microsoft Corporation ; ;Purpose: ; ; BASIC Syntax mapping to included runtime entry points: ; ; - DRAW Statement: ; ; DRAW string ; | ; $DRA ; ;*****************************************************...
libsrc/_DEVELOPMENT/arch/zx/bifrost_h/c/sdcc/BIFROSTH_getTile.asm
grancier/z180
0
58243
<reponame>grancier/z180<filename>libsrc/_DEVELOPMENT/arch/zx/bifrost_h/c/sdcc/BIFROSTH_getTile.asm ; ---------------------------------------------------------------- ; Z88DK INTERFACE LIBRARY FOR THE BIFROST* ENGINE - RELEASE 1.2/L ; ; See "bifrost_h.h" for further details ; --------------------------------------------...