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 |
|---|---|---|---|---|
src/heap/heap.asm | Progressive-Learning-Platform/plp-grinder | 1 | 45873 | # Simplified heap implementation. The heap is a fixed-size, and its size cannot be dynamically adjusted.
# Memory is allocated from the "bottom" of the heap, and the "bottom" is redefined as the first untouched word in the heap.
# Currently, memory is never reclaimed.
#
# A bitmap is used to keep track of which words i... |
programs/oeis/212/A212684.asm | neoneye/loda | 22 | 45874 | ; A212684: Number of (w,x,y,z) with all terms in {1,...,n} and |x-y|=n-w+|y-z|.
; 0,1,6,19,42,79,132,205,300,421,570,751,966,1219,1512,1849,2232,2665,3150,3691,4290,4951,5676,6469,7332,8269,9282,10375,11550,12811,14160,15601,17136,18769,20502,22339,24282,26335,28500,30781,33180
sub $2,$0
add $0,2
mul $0,$2
mul $2,$0
... |
oeis/343/A343177.asm | neoneye/loda-programs | 11 | 45875 | <reponame>neoneye/loda-programs
; A343177: a(0)=4; if n >0 is even then a(n) = 2^(n/2+1)+3, otherwise a(n) = 3*(2^((n-1)/2)+1).
; Submitted by <NAME>
; 4,6,7,9,11,15,19,27,35,51,67,99,131,195,259,387,515,771,1027,1539,2051,3075,4099,6147,8195,12291,16387,24579,32771,49155,65539,98307,131075,196611,262147,393219,524291,... |
tests/miaf/valid-tkhd_transformations.asm | y-guyon/ComplianceWarden | 3 | 45876 | <gh_stars>1-10
%define BE(a) ( ((((a)>>24)&0xFF) << 0) + ((((a)>>16)&0xFF) << 8) + ((((a)>>8)&0xFF) << 16) + ((((a)>>0)&0xFF) << 24))
ftyp_start:
dd BE(ftyp_end - ftyp_start)
db "ftyp"
db "isom"
dd BE(0x00)
db "mif1", "miaf"
ftyp_end:
meta_start:
dd BE(meta_end - meta_start)
db "meta"
dd BE(0)
hdlr_start:
dd BE(h... |
programs/oeis/264/A264440.asm | neoneye/loda | 22 | 45877 | <reponame>neoneye/loda
; A264440: Row lengths of the irregular triangle A137510 (number of divisors d of n with 1 < d < n, or 0 if no such d exists).
; 1,1,1,1,1,2,1,2,1,2,1,4,1,2,2,3,1,4,1,4,2,2,1,6,1,2,2,4,1,6,1,4,2,2,2,7,1,2,2,6,1,6,1,4,4,2,1,8,1,4,2,4,1,6,2,6,2,2,1,10,1,2,4,5,2,6,1,4,2,6,1,10,1,2,4,4,2,6,1,8,3,2,1,... |
data/baseStats/totodile.asm | adhi-thirumala/EvoYellow | 16 | 45878 | ;not added yet/ever?
db DEX_TOTODILE ; pokedex id
db 50 ; base hp
db 65 ; base attack
db 64 ; base defense
db 43 ; base speed
db 46 ; base special
db WATER ; species type 1
db WATER ; species type 2
db 46 ; catch rate
db 66 ; base exp yield
INCBIN "pic/ymon/totodile.pic",0,1 ; sprite dimensions
dw TotodilePi... |
chapter1/HelloWorld.asm | Deteriorator/WindowsPE | 0 | 45879 | <filename>chapter1/HelloWorld.asm
;------------------------------------------------------------------------------
; 功能: Win32 汇编程序
; 作者: Leon
; 日期: 2022-01-05
;------------------------------------------------------------------------------
; ml -c -coff HelloWorld.asm
; link -subsystem:windows HelloWorld.obj
.386
... |
x86-branch.asm | paulie-g/uarch-bench | 501 | 45880 | <filename>x86-branch.asm
%include "x86-helpers.asm"
nasm_util_assert_boilerplate
thunk_boilerplate
; branch notes
;
; The BTB seems to have a 32-byte granularity and only the first taken
; branch in a 32-byte region gets a "fast" back-to-back prediction, of
; 1 cycle
; the second branch in a 32-byte region appears to... |
src/third_party/nasm/travis/test/iftoken.asm | Mr-Sheep/naiveproxy | 2,219 | 45881 | %define ZMACRO
%define NMACRO 1
%define TMACRO 1 2
db 'N "":'
%iftoken
db ' token'
%else
db ' ntoken'
%endif
%ifempty
db ' empty'
%else
db ' nempty'
%endif
db 10
db 'C "":'
%iftoken ; With a comment!
db ' token'
%else
db ' ntoken'
%endif
%ifempty ; With a comment!
db ' empty'
%else
db ' nempty'
%endif
db ... |
PRG/prg009.asm | narfman0/smb3_pp1 | 0 | 45882 | ; Super Mario Bros. 3 Full Disassembly by Southbird 2012
; For more info, see http://www.sonicepoch.com/sm3mix/
;
; PLEASE INCLUDE A CREDIT TO THE SOUTHBIRD DISASSEMBLY
; AND THE ABOVE LINK SOMEWHERE IN YOUR WORKS :)
;
; Original disassembler source generated by DCC6502 version v1.4
; (With labels, comments, and some s... |
kernel/asm_i386/irq_stub.asm | tadryanom/lux | 9 | 45883 | <filename>kernel/asm_i386/irq_stub.asm
;; lux OS kernel
;; copyright (c) 2018 by <NAME>
format elf
use32
section '.text'
macro irq_enter
{
cli
pusha
}
macro irq_exit
{
popa
}
public pic0_spurious_stub
pic0_spurious_stub:
irq_enter
extrn pic0_spurious
call pic0_spurious
irq_exit
iret
public pic1_spuriou... |
Source/Levels/L0706.asm | AbePralle/FGB | 0 | 45884 | ; L0706.asm
; Generated 10.29.2000 by mlevel
; Modified 10.29.2000 by <NAME>
INCLUDE "Source/Defs.inc"
INCLUDE "Source/Levels.inc"
;---------------------------------------------------------------------
SECTION "Level0706Section",ROMX
;---------------------------------------------------------------------
L0706_Conte... |
programs/oeis/284/A284625.asm | neoneye/loda | 22 | 45885 | ; A284625: Positions of 2 in A284749.
; 3,6,7,10,13,14,17,18,21,24,25,28,31,32,35,36,39,42,43,46,47,50,53,54,57,60,61,64,65,68,71,72,75,78,79,82,83,86,89,90,93,94,97,100,101,104,107,108,111,112,115,118,119,122,123,126,129,130,133,136,137,140,141,144,147,148,151,154,155,158,159,162,165,166,169,170,173,176,177,180,183,18... |
src/ram.asm | Hacktix/BullyGB | 10 | 45886 | <reponame>Hacktix/BullyGB<gh_stars>1-10
SECTION "HRAM", HRAM
hDeviceModel: db ; One-byte identifier of the device type based on initial register values.
; $01 - DMG
; $02 - MGB
; $03 - SGB
; $04 - ... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_832.asm | ljhsiun2/medusa | 9 | 45887 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0xd2a1, %r12
clflush (%r12)
nop
nop
nop
add %r8, %r8
and $0xffffffffffffffc0, %r12
vmovntdqa (%r12), %ymm2
vextracti128 $0, %ymm2, %xmm2
vpextrq $0, %xmm2, %rax
nop
nop
xor %rdi, %rd... |
oeis/015/A015519.asm | neoneye/loda-programs | 11 | 45888 | ; A015519: a(n) = 2*a(n-1) + 7*a(n-2).
; Submitted by <NAME>
; 0,1,2,11,36,149,550,2143,8136,31273,119498,457907,1752300,6709949,25685998,98341639,376485264,1441362001,5518120850,21125775707,80878397364,309637224677,1185423230902,4538307034543,17374576685400,66517302612601,254656642023002,974934402334211,37324652988294... |
decreasoner.macosx/software/relsat-dist/gmp-3.1/mpn/sparc32/add_n.asm | problem-frames/openpf | 1 | 45889 | <gh_stars>1-10
dnl SPARC mpn_add_n -- Add two limb vectors of the same length > 0 and store
dnl sum in a third limb vector.
dnl Copyright (C) 1995, 1996, 2000 Free Software Foundation, 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 modif... |
third_party/virtualbox/src/VBox/VMM/VMMR0/CPUMR0A.asm | Fimbure/icebox-1 | 521 | 45890 | <reponame>Fimbure/icebox-1
; $Id: CPUMR0A.asm $
;; @file
; CPUM - Ring-0 Assembly Routines (supporting HM and IEM).
;
;
; Copyright (C) 2006-2017 Oracle Corporation
;
; This file is part of VirtualBox Open Source Edition (OSE), as
; available from http://www.virtualbox.org. This file is free software;
; you can redis... |
Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2.log_20245_503.asm | ljhsiun2/medusa | 9 | 45893 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x19805, %r9
nop
nop
nop
nop
add $39500, %r10
movl $0x61626364, (%r9)
cmp %rbp, %rbp
lea addresses_WT_ht+0x17005, %rbx
xor $61270, %rbp
mov $0x6162636465666768, %r9
movq %r9, %x... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_62.asm | ljhsiun2/medusa | 9 | 45894 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r14
push %r8
push %rcx
push %rdx
push %rsi
// Load
lea addresses_UC+0x1a98e, %rsi
nop
nop
nop
nop
add $57524, %r8
mov (%rsi), %r10
sub $49945, %r10
// Store
lea addresses_UC+0x1a98e, %r8
sub $19322, %r... |
Driver/Printer/HP/QuietJet/quietjetDriverInfo.asm | steakknife/pcgeos | 504 | 45895 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Quietjet printer driver
FILE: quietjetDriverInfo.asm
AUTHOR: <NAME>, 27 Feb 1990
REVISION HISTORY:
Name Date Description
---- ---... |
oeis/296/A296964.asm | neoneye/loda-programs | 11 | 45896 | ; A296964: Expansion of (x*exp(x)-1)/(1-x).
; Submitted by <NAME>
; 0,1,2,9,40,205,1236,8659,69280,623529,6235300,68588311,823059744,10699776685,149796873604,2246953104075,35951249665216,611171244308689,11001082397556420,209020565553571999,4180411311071440000,87788637532500240021,1931350025715005280484,4442105059144512... |
Transynther/x86/_processed/AVXALIGN/_zr_un_/i3-7100_9_0x84_notsx.log_481_1202.asm | ljhsiun2/medusa | 9 | 45897 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %r15
push %r9
push %rbp
push %rbx
push %rdi
// Store
lea addresses_A+0x1f668, %r13
nop
nop
nop
add $27588, %rdi
mov $0x5152535455565758, %r9
movq %r9, %xmm7
movups %xmm7, (%r13)
// Exception!!!
nop
nop
... |
src/LKS/MC_Load.asm | Kannagi/LKS | 6 | 45898 | <filename>src/LKS/MC_Load.asm<gh_stars>1-10
.MACRO LKS_LOAD_CG
SNES_CGADD \1
SNES_DMA0 $00
SNES_DMA0_BADD $22
lda #:\2
ldx #\2
ldy #\3
stx DMA_ADDL
sta DMA_BANK
sty DMA_SIZEL
SNES_MDMAEN $01
.ENDM
.MACRO LKS_LOAD_VRAM
SNES_DMA0 $01
SNES_DMA0_BADD $18
SNES_VMADD \1
lda #:\3
ldx... |
cards/bn6/ChipTransmission/137-G003 Falzar.asm | RockmanEXEZone/MMBN-Mod-Card-Kit | 10 | 45899 | .include "defaults_chip.asm"
table_file_jp equ "exe6-utf8.tbl"
table_file_en equ "bn6-utf8.tbl"
game_code_len equ 3
game_code equ 0x4252354A // BR5J
game_code_2 equ 0x42523545 // BR5E
game_code_3 equ 0x42523550 // BR5P
card_type equ 2
card_id equ 3
card_no equ "003"
card_sub equ "Rare Chip Data Distributi... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_680.asm | ljhsiun2/medusa | 9 | 45901 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x6075, %rsi
lea addresses_D_ht+0xf913, %rdi
nop
nop
nop
xor $51191, %r10
mov $99, %rcx
rep movsq
add $1724, %r12
lea addresses_D_ht+0x457b, %r9
nop
nop
nop
xor $12838, %rdi
mov... |
src/msx/sample_res/font.asm | aburi6800/msx-PSGSoundDriver | 3 | 45903 | <reponame>aburi6800/msx-PSGSoundDriver
; ■フォントパターンデータ
; &H0100〜にロードする
FONT_PTN_DATA:
DB $00,$00,$00,$00,$00,$00,$00,$00
DB $1C,$1C,$18,$18,$10,$00,$30,$30
DB $36,$36,$12,$24,$00,$00,$00,$00
DB $36,$36,$7F,$36,$7F,$36,$36,$00
DB $08,$3E,$68,$3E,$0B,$3E,$08,$00
DB $71,$52,$64,$08,$13,$25,$47,$00
... |
programs/oeis/024/A024165.asm | karttu/loda | 1 | 45904 | <reponame>karttu/loda
; A024165: Number of integer-sided triangles with sides a,b,c, a<b<c, a+b+c=n such that c - b > b - a.
; 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,2,1,1,2,2,1,4,2,2,4,4,2,6,4,4,6,6,4,9,6,6,9,9,6,12,9,9,12,12,9,16,12,12,16,16,12,20,16,16,20,20,16,25,20,20,25,25,20,30,25,25,30,30,25,36,30,30,36,36,30,42,3... |
oeis/162/A162750.asm | neoneye/loda-programs | 11 | 45905 | ; A162750: The a(n)-th (odd) binary palindrome is A162749(n).
; Submitted by <NAME>(s1.)
; 2,1,5,6,3,4,11,12,13,14,7,8,9,10,23,24,25,26,27,28,29,30,15,16,17,18,19,20,21,22,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,95,96,97,98,99,100
add $0,2
seq $0,6068 ; a(n) is G... |
programs/oeis/222/A222410.asm | neoneye/loda | 22 | 45906 | <reponame>neoneye/loda<filename>programs/oeis/222/A222410.asm
; A222410: Partial sums of A008534, or crystal ball sequence for {A_6}* lattice.
; 1,15,113,575,2171,6581,16955,38613,79885,153091,275661,471395,771863,1217945,1861511,2767241,4014585,5699863,7938505,10867431,14647571,19466525,25541363,33121565,42492101,5397... |
examples/heart/game_states.asm | sgadrat/nine-gine | 6 | 45908 | ; Subroutine called when the state change to this state
game_states_init:
VECTOR(ingame_init)
; Subroutine called each frame
game_states_tick:
VECTOR(ingame_tick)
palettes_data:
; Background
.byt $20,$0d,$0d,$0d, $20,$0d,$0d,$0d, $20,$0d,$0d,$0d, $20,$0d,$0d,$0d
; Sprites
.byt $20,$06,$25,$22, $20,$0d,$0d,$0d, $20,$0... |
programs/oeis/000/A000285.asm | neoneye/loda | 22 | 45909 | <gh_stars>10-100
; A000285: a(0) = 1, a(1) = 4, and a(n) = a(n-1) + a(n-2) for n >= 2.
; 1,4,5,9,14,23,37,60,97,157,254,411,665,1076,1741,2817,4558,7375,11933,19308,31241,50549,81790,132339,214129,346468,560597,907065,1467662,2374727,3842389,6217116,10059505,16276621,26336126,42612747,68948873,111561620,180510493,29207... |
oeis/015/A015154.asm | neoneye/loda-programs | 11 | 45910 | ; A015154: Sum of (Gaussian) q-binomial coefficients for q=-3.
; Submitted by <NAME>
; 1,2,0,16,32,1344,-5120,968192,13138944,6377617408,-245871738880,376093809229824,44307874417573888,199959909725932814336,-70241187753472205783040,956261367126518476707463168,1009796863619552398291323846656,4116593491123968454644927155... |
配套代码/L053/L053/1.asm | zmrbak/ReverseAnalysis | 35 | 45911 | ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.24.28117.0
TITLE C:\Users\libit\source\repos\L053\L053\L053.cpp
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES
CONST SEGMENT
$SG5583 DB 'a=%d,b=%d,c.a=%d,c.b=%d,d=%d,e=%d', 00H
ORG $+2
$SG5593 DB 'Hello World... |
llvm/test/tools/llvm-ml/repeat_directives.asm | mkinsner/llvm | 2,338 | 45913 | <filename>llvm/test/tools/llvm-ml/repeat_directives.asm
; RUN: llvm-ml -m64 -filetype=s %s /Fo - | FileCheck %s
.data
a BYTE ?
.code
repeat_test PROC
; CHECK-LABEL: repeat_test:
REPEAT 1+2
xor eax, 0
ENDM
; CHECK: xor eax, 0
; CHECK: xor eax, 0
; CHECK: xor eax, 0
; CHECK-NOT: xor eax, 0
repeat_test ENDP
w... |
programs/oeis/070/A070545.asm | jmorken/loda | 1 | 45914 | ; A070545: a(n)=Card( k, 0<k<=n such that k is relatively prime to sigma(k)).
; 1,2,3,4,5,5,6,7,8,8,9,9,10,10,10,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,20,20,20,21,22,23,23,24,24,25,25,26,26,26,26,27,27,28,29,29,29,30,30,31,31,32,32,33,33,34,34,35,36,37,37,38,38,38,38,39,39,40
mov $2,$0
add $2,1
mov $4,$0
lpb... |
mkdir.asm | Nakazona/operating_systems | 0 | 45915 | <reponame>Nakazona/operating_systems
_mkdir: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.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 ... |
libsrc/_DEVELOPMENT/l/z80/long/l_long_sbc_stack.asm | jpoikela/z88dk | 640 | 45916 | <gh_stars>100-1000
SECTION code_clib
SECTION code_l
PUBLIC l_long_sbc_stack
l_long_sbc_stack:
; compute a = a - b - carry
;
; enter : dehl = long a
; stack = long b, return address
;
; exit : dehl = a - b - carry
; carry set on overflow
;
; uses : f, bc, de, hl, ix
... |
programs/oeis/074/A074392.asm | jmorken/loda | 1 | 45918 | ; A074392: a(n) = Lucas(n+1) + (3*(-1)^n - 1)/2.
; 2,1,5,5,12,16,30,45,77,121,200,320,522,841,1365,2205,3572,5776,9350,15125,24477,39601,64080,103680,167762,271441,439205,710645,1149852,1860496,3010350,4870845,7881197,12752041,20633240,33385280,54018522,87403801,141422325,228826125,370248452,599074576,969323030,1568397... |
home/lcdc.asm | adhi-thirumala/EvoYellow | 16 | 45922 | <reponame>adhi-thirumala/EvoYellow<filename>home/lcdc.asm
LCDC::
push af
ld a, [hLCDCPointer] ; doubles as enabling byte
and a
jr z, .noLCDCInterrupt
push hl
; [C700 + [rLY]] --> [FF00 + [hLCDCPointer]]
ld a, [rLY]
ld l, a
ld h, wLYOverrides / $100
ld h, [hl] ; h != not part of pointer
ld a, [hLCDCPointer]
... |
programs/oeis/219/A219190.asm | jmorken/loda | 1 | 45923 | <gh_stars>1-10
; A219190: Numbers of the form n*(5*n+1), where n = 0,-1,1,-2,2,-3,3,...
; 0,4,6,18,22,42,48,76,84,120,130,174,186,238,252,312,328,396,414,490,510,594,616,708,732,832,858,966,994,1110,1140,1264,1296,1428,1462,1602,1638,1786,1824,1980,2020,2184,2226,2398,2442,2622,2668,2856,2904,3100,3150,3354,3406,3618,3... |
programs/oeis/064/A064304.asm | jmorken/loda | 1 | 45924 | ; A064304: Eighth diagonal of triangle A064094.
; 1,429,14589,137089,702297,2537781,7312789,17981769,39322929,78571837,146150061,256488849,428947849,688828869,1068484677,1608522841,2359104609,3381338829,4748770909,6548966817
mov $1,1
mov $2,6
mov $5,$0
mov $6,$0
lpb $2
add $1,$5
sub $2,1
lpe
mov $3,$6
lpb $3
sub... |
programs/oeis/212/A212698.asm | neoneye/loda | 22 | 45925 | ; A212698: Main transitions in systems of n particles with spin 3/2.
; 3,24,144,768,3840,18432,86016,393216,1769472,7864320,34603008,150994944,654311424,2818572288,12079595520,51539607552,219043332096,927712935936,3917010173952,16492674416640,69269232549888,290271069732864,1213860837064704,5066549580791808,211106232532... |
Examples/ch10/ShowTime.asm | satadriver/LiunuxOS_t | 0 | 45926 | <reponame>satadriver/LiunuxOS_t
TITLE Showing the Time (ShowTime.ASM)
; This program locates the cursor and displays the
; system time. It two MS-Windows structures.
; Last update: 8/14/01.
INCLUDE Irvine32.inc
Comment @
Definitions copied from Irvine32.inc (SmallWin.inc):
COORD STRUCT
X WORD ?
... |
programs/oeis/207/A207399.asm | karttu/loda | 0 | 45927 | <reponame>karttu/loda<filename>programs/oeis/207/A207399.asm
; A207399: Number of n X 4 0..1 arrays avoiding 0 0 1 and 0 1 1 horizontally and 0 0 1 and 1 1 0 vertically.
; 9,81,289,729,1521,2809,4761,7569,11449,16641,23409,32041,42849,56169,72361,91809,114921,142129,173889,210681,253009,301401,356409,418609,488601,5670... |
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_6_6.asm | ljhsiun2/medusa | 9 | 45928 | <filename>Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_6_6.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r15
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xf5c6, %r12
nop
nop
nop
nop
nop
sub $11014, %r15
movl $0x61626364, (%r12)
nop
nop
n... |
oeis/056/A056001.asm | neoneye/loda-programs | 11 | 45930 | <gh_stars>10-100
; A056001: A second-order recursive sequence.
; 1,16,108,480,1650,4752,12012,27456,57915,114400,213928,381888,655044,1085280,1744200,2728704,4167669,6229872,9133300,13156000,18648630,26048880,35897940,48859200,65739375,87512256,115345296,150629248,195011080,250430400,319159632,403848192,507570921,63388... |
usertests.asm | dmansilva/OSProject03 | 0 | 45931 |
_usertests: file format elf32-i386
Disassembly of section .text:
00000000 <iputtest>:
int stdout = 1;
// does chdir() call iput(p->cwd) in a transaction?
void
iputtest(void)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 ec 18 sub $0x... |
libsrc/stdlib/rand.asm | RC2014Z80/z88dk | 8 | 45932 | ;
; Small C+ Runtime Library
;
; Random number generator
;
; int rand(void)
;
; Liberated from ticalc.org, mods to standard z80 by djm 11/4/99
;
; -----
; $Id: rand.asm,v 1.12 2016-05-17 21:43:06 dom Exp $
; you must declare an integer C variable "std_seed" to hold the
; 16-bit seed in your mai... |
libtool/src/gmp-6.1.2/mpn/x86/pentium4/sse2/sqr_basecase.asm | kroggen/aergo | 1,602 | 45933 | dnl mpn_sqr_basecase for Pentium 4 and P6 models with SSE2 (i.e., 9,D,E,F).
dnl Copyright 2001, 2002, 2007 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under the terms of either:
dnl
dnl * ... |
lib/avx512/poly_fma_avx512.asm | jkivilin/intel-ipsec-mb | 1 | 45936 | <filename>lib/avx512/poly_fma_avx512.asm
;;
;; Copyright (c) 2021-2022, 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 not... |
external/source/shellcode/linux/ia32/stager_sock_reverse.asm | madhavarao-yejarla/VoIP | 35 | 45937 | <filename>external/source/shellcode/linux/ia32/stager_sock_reverse.asm
;;
;
; Name: stager_sock_reverse
; Qualities: Can Have Nulls
; Version: $Revision: 1512 $
; License:
;
; This file is part of the Metasploit Exploit Framework
; and is subject to the same licenses and copyrig... |
programs/oeis/245/A245416.asm | jmorken/loda | 1 | 45938 | <reponame>jmorken/loda<filename>programs/oeis/245/A245416.asm
; A245416: Number of nonnegative integers with property that their base 9/2 expansion (see A024650) has n digits.
; 9,36,162,729,3276,14742,66339,298530,1343385,6045228,27203526,122415867,550871406,2478921327,11155145967,50198156856,225891705852,101651267633... |
oeis/000/A000272.asm | neoneye/loda-programs | 11 | 45939 | <gh_stars>10-100
; A000272: Number of trees on n labeled nodes: n^(n-2) with a(0)=1.
; 1,1,1,3,16,125,1296,16807,262144,4782969,100000000,2357947691,61917364224,1792160394037,56693912375296,1946195068359375,72057594037927936,2862423051509815793,121439531096594251776,5480386857784802185939,262144000000000000000000,13248... |
programs/oeis/008/A008823.asm | neoneye/loda | 22 | 45940 | <filename>programs/oeis/008/A008823.asm
; A008823: Expansion of (1+2*x^3+x^5)/((1-x)^2*(1-x^5)).
; 1,2,3,6,9,14,19,24,31,38,47,56,65,76,87,100,113,126,141,156,173,190,207,226,245,266,287,308,331,354,379,404,429,456,483,512,541,570,601,632,665,698,731,766,801,838,875,912,951,990,1031,1072,1113,1156,1199,1244,1289,1334,1... |
audio tools/ab_Squirrel3 Public/Sub/psgDrive.asm | langel/pce-dev-kit | 1 | 45941 | <reponame>langel/pce-dev-kit
;******************************************************************************************************
; SUB TRACK MUSIC DRIVER : this still has a LOT of debug stuff in it.
;------------------------------------------------------------------------------------------------------
psgSubDr... |
07/StackArithmetic/StackTest/StackTest.asm | thinker1990/nand2tetris | 0 | 45942 | <filename>07/StackArithmetic/StackTest/StackTest.asm
//StackTest
@17
D=A
@SP
A=M
M=D
@SP
M=M+1
@17
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
@SP
A=M
D=M
@SP
M=M-1
@SP
A=M
D=M-D
@IF_TRUE_BE61880DBF
D;JEQ
D=0
@SP
A=M
M=D
@SP
M=M+1
@CONTINUE_BE61880DBF
0;JMP
(IF_TRUE_BE61880DBF)
D=-1
@SP
A=M
M=D
@SP
M=M+1
(CONTINUE_BE61880DBF)
... |
decrunch/lz49decrunch_v001.asm | lgblgblgb/rasm | 40 | 45943 | ;
; LZ48 decrunch
; input
; hl compressed data adress
; de output adress of data
;
; output
; hl last adress of compressed data read (you must inc once for LZ48 stream)
; de last adress of decrunched data write +1
; bc always 3
; a always zero
; lx undetermined
; flags (inc a -> 0)
org ... |
demos/win32/DEMO9/demo9b.asm | gbmaster/nasmx | 18 | 45944 | <filename>demos/win32/DEMO9/demo9b.asm
;// DEMO9B.ASM
;//
;// Copyright (C)2005-2011 The NASMX Project
;//
;// This is a fully UNICODE aware, typedefined demo that demonstrates
;// using NASMX typedef system to make your code truly portable between
;// 32 and 64-bit systems using either ASCII or UNICODE
;//
;//... |
libsrc/_DEVELOPMENT/arch/zx/nirvanap/z80/asm_NIRVANAP_tiles.asm | teknoplop/z88dk | 0 | 45945 | ; ----------------------------------------------------------------
; Z88DK INTERFACE LIBRARY FOR NIRVANA+ ENGINE - by <NAME>
;
; See "nirvana+.h" for further details
; ----------------------------------------------------------------
SECTION code_clib
SECTION code_nirvanap
PUBLIC asm_NIRVANAP_tiles
asm_NIRVANAP_tiles... |
oeis/124/A124239.asm | neoneye/loda-programs | 11 | 45947 | <gh_stars>10-100
; A124239: a(n) = Sum_{k=1..n} Sum_{m=1..n} (2*k - 1)^m.
; Submitted by <NAME>
; 1,14,197,3704,90309,2704470,95856025,3921108576,181756280697,9413656622446,538727822713277,33757715581666296,2298714540642445405,169016703698449309846,13345320616706684277361,1126219424250538393789824,101160070702700567996... |
source/sys_core.asm | HugoCintas/satellite-attitude-analysis | 2 | 45948 | ;-------------------------------------------------------------------------------
; sys_core.asm
;
; Copyright (C) 2009-2018 Texas Instruments Incorporated - www.ti.com
;
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
... |
assignments/03.asm | smirzaei/systems-programming-class | 0 | 45949 | <filename>assignments/03.asm
TITLE CLASS ASSIGNMENT 3
.model small
.stack 64
.data
max db 80
len db ?
str1 db 80 dup(?)
.code
; ---------------------------------------------------------------------
mac1 macro
mov ah,07
int 21h
endm
; ---... |
Controller_Software/Tut2- PWM Interrupts and Sine Wave Generation/dsp/SGEN/v101/source/C28x_SGEN_LIB/sgt3dc.asm | equinoxorg/Micro-Hydro-ELC | 2 | 45950 | <gh_stars>1-10
; ========================================================================
; This software is licensed for use with Texas Instruments C28x
; family DSCs. This license was provided to you prior to installing
; the software. You may review this license by consulting a copy of
; the agreement in the d... |
pwnlib/shellcraft/templates/powerpc/linux/mknodat.asm | IMULMUL/python3-pwntools | 325 | 45951 | <gh_stars>100-1000
<%
from pwnlib.shellcraft.powerpc.linux import syscall
%>
<%page args="fd, path, mode, dev"/>
<%docstring>
Invokes the syscall mknodat. See 'man 2 mknodat' for more information.
Arguments:
fd(int): fd
path(char): path
mode(mode_t): mode
dev(dev_t): dev
</%docstring>
${sysca... |
Tests/IO/Template.e.asm | Gabidal/GAC | 5 | 45952 | <filename>Tests/IO/Template.e.asm
.intel_syntax noprefix
.global _Z6_INIT_v
.global _Z4mainv
.global _Z10Start_Testv
.section .text #.text
_Z10Start_Testv:
lea rcx, qword ptr [rsp + 0 ] #a_REG0, .STACK_0
mov rcx, rcx #REG_a_REG0_Parameter41, a_REG0
call _Z13____List_int_P13____List_int_
lea rcx, qword ptr [rsp + 0 ]... |
hmi_sdk/hmi_sdk/Tools/ffmpeg-2.6.2/libavcodec/x86/mlpdsp.asm | APCVSRepo/android_packet | 4 | 45955 | ;******************************************************************************
;* SIMD-optimized MLP DSP functions
;* Copyright (c) 2014 <NAME> <<EMAIL>>
;*
;* This file is part of FFmpeg.
;*
;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General Public... |
programs/oeis/215/A215879.asm | jmorken/loda | 1 | 45956 | ; A215879: Written in base 3, n ends in a(n) consecutive nonzero digits.
; 0,1,1,0,2,2,0,2,2,0,1,1,0,3,3,0,3,3,0,1,1,0,3,3,0,3,3,0,1,1,0,2,2,0,2,2,0,1,1,0,4,4,0,4,4,0,1,1,0,4,4,0,4,4,0,1,1,0,2,2,0,2,2,0,1,1,0,4,4,0,4,4,0,1,1,0,4,4,0,4,4,0,1,1,0,2,2,0,2,2,0,1,1,0,3,3,0,3,3,0,1,1,0,3,3,0,3,3,0,1,1,0,2,2,0,2,2,0,1,1,0,5,5... |
programming/radasm/lab1/task3.asm | Foltrex/bsu | 113 | 45957 | .486
.model flat, stdcall
option casemap :none
include windows.inc ; always first
include masm32.inc
include gdi32.inc
include user32.inc
include kernel32.inc
includelib masm32.lib
includelib gdi32.lib
includelib user32.lib
includelib kernel32.lib
.data
zero db "0",0
... |
programs/oeis/212/A212754.asm | karttu/loda | 0 | 45961 | <gh_stars>0
; A212754: Number of (w,x,y,z) with all terms in {0,...,n} and at least one of these conditions holds: w<R, x>R, y>R, z>R, where R = max{w,x,y,z} - min{w,x,y,z}.
; 0,8,53,184,472,1008,1905,3296,5336,8200,12085,17208,23808,32144,42497,55168,70480,88776,110421,135800,165320,199408,238513,283104,333672,390728,... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xca_notsx.log_2_1207.asm | ljhsiun2/medusa | 9 | 45962 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x16d50, %rcx
nop
nop
nop
sub $44842, %r14
mov $0x6162636465666768, %rsi
movq %rsi, (%rcx)
sub %r11, %r11
lea addresses_D_ht+0x1afd0, %r8
nop
nop
nop
add %rdi, %rdi
mov $0x... |
libsrc/time/mc1000/clock.asm | grancier/z180 | 0 | 45963 | <filename>libsrc/time/mc1000/clock.asm
;
; CCE MC-1000 clock()
;
; Stefano 2013
;
; ------
; $Id: clock.asm,v 1.4 2016/06/12 17:02:26 dom Exp $
;
SECTION code_clib
PUBLIC clock
PUBLIC _clock
EXTERN FRAMES
.clock
._clock
ld hl,(FRAMES)
ld de,(FRAMES+2)
ret
|
programs/oeis/262/A262139.asm | karttu/loda | 0 | 45964 | <filename>programs/oeis/262/A262139.asm
; A262139: The first of eight consecutive positive integers the sum of the squares of which is equal to the sum of the squares of nine consecutive positive integers.
; 22,145,862,5041,29398,171361,998782,5821345,33929302,197754481,1152597598,6717831121,39154389142,228208503745,13... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_836.asm | ljhsiun2/medusa | 9 | 45965 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x11166, %rbx
nop
nop
and $46221, %r13
movb (%rbx), %r8b
nop
nop
nop
nop
sub $14859, %rax
lea addresses_WT_ht+0x550c, %rdx
nop
nop
nop
add $58066, %r15
mov $0x6162636... |
programs/oeis/116/A116468.asm | karttu/loda | 0 | 45966 | ; A116468: Permutation of natural numbers generated by 2-rowed array shown below.
; 2,3,1,6,4,7,5,10,8,11,9,14,12,15,13,18,16,19,17,22,20,23,21,26,24,27,25,30,28,31,29,34,32,35,33,38,36,39,37,42,40,43,41,46,44,47,45,50,48,51,49,54,52,55,53,58,56,59,57,62,60,63,61,66,64,67
mov $2,$0
sub $0,1
mod $0,4
mov $1,$0
mul $1,4... |
Transynther/x86/_processed/NONE/_st_un_/i9-9900K_12_0xca.log_21829_859.asm | ljhsiun2/medusa | 9 | 45967 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xcedd, %rsi
lea addresses_WC_ht+0x1214d, %rdi
nop
nop
nop
and $15358, %r15
mov $122, %rcx
rep movsw
nop
nop
nop
nop
nop
sub $62527, %r10
lea addresses_WT_ht+0x163ad, %rsi
lea addresses... |
data/mapHeaders/pewterpokecenter.asm | adhi-thirumala/EvoYellow | 16 | 45968 | PewterPokecenter_h:
db POKECENTER ; tileset
db PEWTER_POKECENTER_HEIGHT, PEWTER_POKECENTER_WIDTH ; dimensions (y, x)
dw PewterPokecenterBlocks, PewterPokecenterTextPointers, PewterPokecenterScript ; blocks, texts, scripts
db $00 ; connections
dw PewterPokecenterObject ; objects
|
oeis/028/A028725.asm | neoneye/loda-programs | 11 | 45969 | <reponame>neoneye/loda-programs
; A028725: a(n) = floor(n/2) * floor(n/2-1/2) * floor(n/2-1) * floor(n/2-3/2) * floor(n/2-2) / 12.
; 0,0,0,0,0,0,1,3,12,24,60,100,200,300,525,735,1176,1568,2352,3024,4320,5400,7425,9075,12100,14520,18876,22308,28392,33124,41405,47775,58800,67200,81600,92480,110976,124848,148257,165699,19... |
libsrc/_DEVELOPMENT/adt/wa_stack/c/sccz80/wa_stack_push.asm | jpoikela/z88dk | 640 | 45971 |
; int wa_stack_push(wa_stack_t *s, void *item)
SECTION code_clib
SECTION code_adt_wa_stack
PUBLIC wa_stack_push
EXTERN w_array_append
defc wa_stack_push = w_array_append
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _wa_stack_push
defc _wa_stack_push = wa_stack_push
ENDIF
|
src/main/fragment/mos6502-common/_deref_(_deref_qwuc1)=_deref_(_deref_qwuc2).asm | jbrandwood/kickc | 2 | 45972 | <reponame>jbrandwood/kickc
ldy {c2}
sty $fe
ldy {c2}+1
sty $ff
ldy #0
lda ($fe),y
ldy {c1}
sty $fe
ldy {c1}+1
sty $ff
ldy #0
sta ($fe),y |
pkgs/tools/yasm/src/modules/parsers/nasm/tests/newsect.asm | manggoguy/parsec-modified | 2,151 | 45973 | [absolute 0]
mytype:
.long resd 1
mytype_size:
[section .text]
lbl:
..@6.strucstart:
times mytype.long-($-..@6.<EMAIL>start) db 0
dd 'ABCD'
times mytype_size-($-..@6.strucstart) db 0
|
test/jzas/sintactic/valid/success14.asm | scoffey/jz80sim | 1 | 45974 | aseg
org 100h
inicio ld a, (num)
cp 0
inc a
cp a
;cp
jp z, cero
ld b, a
ld c, 1
ld a, 2
ciclo cp b
... |
PRG/maps/World3L.asm | narfman0/smb3_pp1 | 0 | 45975 |
.byte $8D, $8E, $50, $45, $47, $B7, $AE, $B8, $05, $8B, $50, $B2, $47, $B2, $47, $45
.byte $8D, $8F, $85, $86, $46, $8C, $8D, $8F, $AA, $91, $85, $A5, $46, $9D, $46, $99
.byte $8D, $8D, $8D, $8F, $04, $90, $87, $88, $B5, $8D, $8D, $8E, $06, $B9, $4A, $9D
.byte $8D, $8D, $8D, $8D, $B0, $87, $96, $97, $AB, $95, $95,... |
oeis/178/A178741.asm | neoneye/loda-programs | 11 | 45976 | <filename>oeis/178/A178741.asm
; A178741: a(1)=2. For a(n)+1, differences must be strictly increasing and consecutive terms are relatively prime
; Submitted by <NAME>
; 2,3,5,8,13,19,26,35,46,59,73,88,105,124,145,167,190,217,246,277,309,343,379,416,457,499,542,587,633,680,729,779,830,883,937,992,1049,1107,1166,1227,128... |
document/Elf_library_reduced/open_source_tools/ELFkickers/tiny/fgconsole-2.2.17.asm | unanao/Elfdbs | 0 | 45977 | <reponame>unanao/Elfdbs
;; fgconsole.asm: Copyright (C) 2001 by <NAME>, under the GNU
;; General Public License (version 2 or later). No warranty.
;;
;; To build:
;; nasm -f bin -o fgconsole fgconsole-2.2.17.asm && chmod +x fgconsole
BITS 32
%define ORIGIN 0x05000000
org ORIGIN
db 0x7F, "ELF"
dd 1
dd 0
... |
kernel/asm_i386/sse2.asm | tadryanom/lux | 9 | 45978 |
;; lux OS kernel
;; copyright (c) 2018 by <NAME>
format elf
use32
section '.text'
; void *memcpy(void *destination, const void *source, size_t count)
public memcpy
memcpy:
push esi
push edi
mov esi, [esp+8+8]
mov edi, [esp+8+4]
mov ecx, [esp+8+12]
mov [.return], edi
cmp ecx, 128
jl .normal
test esi, 0x... |
programs/oeis/135/A135013.asm | neoneye/loda | 22 | 45981 | ; A135013: Partial sums of A000265.
; 1,2,5,6,11,14,21,22,31,36,47,50,63,70,85,86,103,112,131,136,157,168,191,194,219,232,259,266,295,310,341,342,375,392,427,436,473,492,531,536,577,598,641,652,697,720,767,770,819,844,895,908,961,988,1043,1050,1107,1136,1195,1210,1271,1302,1365,1366,1431,1464,1531,1548,1617,1652,1723,1... |
programs/oeis/210/A210695.asm | neoneye/loda | 22 | 45982 | <filename>programs/oeis/210/A210695.asm<gh_stars>10-100
; A210695: a(n) = 6*a(n-1) - a(n-2) + 6 with n>1, a(0)=0, a(1)=1.
; 0,1,12,77,456,2665,15540,90581,527952,3077137,17934876,104532125,609257880,3551015161,20696833092,120629983397,703083067296,4097868420385,23884127455020,139206896309741,811357250403432,47289366061... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_1028.asm | ljhsiun2/medusa | 9 | 45983 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x1ba7a, %rsi
lea addresses_WC_ht+0x155ba, %rdi
nop
nop
nop
cmp %r12, %r12
mov $120, %rcx
rep movsq
nop
nop
nop
nop
dec %rdi
pop %rsi
pop %rdi
pop %rcx
pop %r12
ret
.global s_fault... |
oeis/278/A278646.asm | neoneye/loda-programs | 11 | 45984 | ; A278646: a(n) = ((2*n+1)/(n+1))*Sum_{j=0..n/2} binomial(n+1, j)*binomial(n-j-1, n-2*j).
; Submitted by <NAME>
; 1,0,5,7,27,66,195,540,1547,4408,12663,36455,105325,305046,885573,2576007,7506675,21909720,64039119,187418205,549141249,1610708190,4729015305,13896677718,40870234629,120290710176,354292339625,1044178154305,3... |
Kernel/asm/libasm.asm | malevasquez/TPE_Arqui | 0 | 45986 | <filename>Kernel/asm/libasm.asm
GLOBAL cpuVendor
GLOBAL getSeconds
GLOBAL getMinutes
GLOBAL getHours
GLOBAL getDay
GLOBAL getMonth
GLOBAL getYear
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, ... |
computer_architecture/add_32/add_32.asm | yisonPylkita/studies | 0 | 45987 | <reponame>yisonPylkita/studies<gh_stars>0
;consts
LEFT_OPERAND_BASE equ 2000h
RIGHT_OPERAND_BASE equ 3000h
RESULT_BASE equ 4000h
; setup
mov a, 0
; add first byte
mov dptr, #LEFT_OPERAND_BASE
movx a, @dptr
mov r0, a
mov dptr, #RIGHT_OPERAND_BASE
movx a,... |
libsrc/stdio/sscanf.asm | grancier/z180 | 0 | 45988 | <gh_stars>0
MODULE sscanf
SECTION code_clib
PUBLIC sscanf
EXTERN asm_scanf
EXTERN scanf_ungetc
EXTERN scanf_getc
EXTERN __sgoioblk
; sccz80 version
;void sscanf(char *buf, char *fmt,...)
;{
; asm_scanf(fp, sccz80_delta, *ct,ct-1);
;}
sscanf:
ld l,a
ld h,0
add hl,hl
add hl,sp ;&buf
... |
programs/oeis/120/A120139.asm | jmorken/loda | 1 | 45989 | <filename>programs/oeis/120/A120139.asm
; A120139: a(1)=11; a(n)=floor((23+sum(a(1) to a(n-1)))/2).
; 11,17,25,38,57,85,128,192,288,432,648,972,1458,2187,3280,4920,7380,11070,16605,24908,37362,56043,84064,126096,189144,283716,425574,638361,957542,1436313,2154469,3231704,4847556,7271334,10907001,16360501
add $0,1
mov $... |
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sccz80/frexp_callee.asm | Frodevan/z88dk | 640 | 45990 | <reponame>Frodevan/z88dk
SECTION code_fp_math32
PUBLIC frexp_callee
EXTERN cm32_sccz80_frexp_callee
defc frexp_callee = cm32_sccz80_frexp_callee
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _frexp_callee
EXTERN cm32_sdcc_frexp_callee
defc _frexp_callee = cm32_sdcc_frexp_callee
ENDIF
|
Library/Text/TextRegion/trSmallClear.asm | steakknife/pcgeos | 504 | 45991 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: trSmallClear.asm
AUTHOR: <NAME>, Feb 18, 1992
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Descrip... |
sources/ippcp/asm_intel64/pcprij128encryptecbpipee9as.asm | ntyukaev/ipp-crypto | 30 | 45992 | <gh_stars>10-100
;===============================================================================
; Copyright 2015-2020 Intel Corporation
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; ... |
libsrc/oz/ozgfx/ozswapactivedisplay.asm | grancier/z180 | 0 | 45994 | <filename>libsrc/oz/ozgfx/ozswapactivedisplay.asm
;
; Sharp OZ family functions
;
; ported from the OZ-7xx SDK by by <NAME>
; by <NAME> - Oct. 2003
;
;
; gfx functions
;
; Videmo memory page handling
;
;
; ------
; $Id: ozswapactivedisplay.asm,v 1.3 2016/06/28 14:48:17 dom Exp $
;
SECTION code_clib
PUBLIC ozs... |
oeis/142/A142537.asm | neoneye/loda-programs | 11 | 45995 | <filename>oeis/142/A142537.asm<gh_stars>10-100
; A142537: Primes congruent to 7 mod 53.
; Submitted by <NAME>
; 7,113,431,643,1279,1597,2339,2551,2657,3187,3823,3929,5413,5519,6367,6473,6791,7109,7321,7639,8699,9547,10289,10501,10607,11243,12197,12409,13151,13469,13681,13999,14423,14741,15271,15377,15907,16649,17497,17... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0.log_21829_1328.asm | ljhsiun2/medusa | 9 | 45996 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r14
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x11368, %r14
nop
nop
nop
nop
nop
add $18201, %r10
vmovups (%r14), %ymm1
vextracti128 $0, %ymm1, %xmm1
vpextrq $0, %xmm1, %r13
nop
inc %rbp
lea addresses_A_ht+0xdc68, %rsi
lea ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.