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
examples/simplest.asm
AbdulrahmanAbumdas/emu8086
287
43557
<filename>examples/simplest.asm ; simplest virtual device for emu8086 in pure assembly code.... ; this example reads and sends ascii codes to virtual port 3. ; for real test, it is required to compile this code and run it outside ; of the emulator (external->run). if you copy the compiled file to c:\emu8086\devices\...
oeis/136/A136524.asm
neoneye/loda-programs
11
43558
<gh_stars>10-100 ; A136524: a(n) = 2^n*(2^n + n)^(n-1). ; Submitted by <NAME>(s1.) ; 1,2,24,968,128000,59973152,107564800000,774840978000000,22880602349081985024,2779532441951756299960832,1383517973370847653192530395136,2804745232514434754535719279455029248,23030042114303275003004737650852694413279232 mov $2,1 mov $3,...
Appl/FileMgrs/CommonDesktop/CMain/cmainCreateLauncher.asm
steakknife/pcgeos
504
43559
<reponame>steakknife/pcgeos<filename>Appl/FileMgrs/CommonDesktop/CMain/cmainCreateLauncher.asm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: Desktop FILE: Main REVISION HISTORY: Name Date Description ---- ---- -...
ffight/lcs/boss/16.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
43561
<filename>ffight/lcs/boss/16.asm copyright zengfr site:http://github.com/zengfr/romhack 00336A lea ($568,A5), A0 00733A move.b ($2d,A1), ($16,A3) [boss+3C, enemy+3C] 007340 move.b ($b,A2), ($3f,A3) [boss+16, enemy+16] copyright zengfr site:http://github.com/zengfr/romhack
oeis/181/A181736.asm
neoneye/loda-programs
11
43562
; A181736: The number of integers in base 2n such that all digits are used exactly once (so length is 2n) and for each m<=2n the base 2n integer consisting of the first m digits is divisible by m. ; 1,2,2,3,1,0,1,0,0,0,0,0,0,0,0 mov $1,1 mov $2,1 mov $3,$0 mul $3,5 lpb $3 mul $2,$3 add $1,$2 add $2,1 mov $4,$0...
Platform/C64/src/includes/searchText.asm
martinhaye/lawless-legends
51
43563
<reponame>martinhaye/lawless-legends searchText ;Clear old text ldy #16 lda #0 - .for step=0, step<=15, step=step+1 sta TEXTPORT_SCREEN_OFFSET+SCREEN_COLOR_RAM + step*40 - 1,y .next dey bne - ;Search for new one clc lda mapPosX adc posX sta locationX lda mapPosX+1 adc #0 sta locationX+1 clc ld...
oeis/317/A317527.asm
neoneye/loda-programs
11
43565
<reponame>neoneye/loda-programs<filename>oeis/317/A317527.asm ; A317527: Number of edges in the n-alternating group graph. ; 0,0,3,24,180,1440,12600,120960,1270080,14515200,179625600,2395008000,34248614400,523069747200,8499883392000,146459529216000,2667655710720000,51218989645824000,1033983353475072000,2189611807358976...
kernel/kernel.asm
ssebs/xos
15
43566
;; xOS32 ;; Copyright (C) 2016-2017 by <NAME>. use16 org 0x1000 jmp 0x0000:kmain16 kernel_version db "xOS32 v0.11 (28 June 2017)",0 copyright_str db "Copyright (C) 2016-2017 by <NAME>.",0 newline db 10,0 align 16 stack16: rb 3072 ; kmain16: ; 16-bit stub before kernel kmain16: cli cld mov ax, 0...
src/arch/x86_64/bload/multiboot.asm
sparkle-os/sparkle
36
43567
<reponame>sparkle-os/sparkle<filename>src/arch/x86_64/bload/multiboot.asm section .multiboot_header align 4 header_start: dd 0xe85250d6 ; magic number dd 0 ; architecture 0 (protected mode i386) dd header_end-header_start ; header length ; checksum dd 0x100000000 - (0xe85250d6 + 0 + (header_end - heade...
mips1.asm
zackertypical/BUAA-MIPS-Compiler
1
43569
.macro push %x sw %x, 0($fp) addiu $fp, $fp, 4 .end_macro .macro pop %x addiu $fp, $fp, -4 lw %x, 0($fp) .end_macro .macro scanf_int li $v0, 5 syscall .end_macro .macro scanf_char li $v0, 12 syscall .end_macro .macro printf_line la $a0, slabeln li $v0, 4 syscall .end_macro .macro printf_string move $a0, $a3 li $v0,...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21_1633.asm
ljhsiun2/medusa
9
43571
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r15 push %r8 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1b310, %r14 clflush (%r14) nop nop cmp %r9, %r9 vmovups (%r14), %ymm5 vextracti128 $0, %ymm5, %xmm5 vpextrq $1, %xmm5, %rcx xor %r14, %r14 lea addresses_WC_ht+0xb280...
src/boot.asm
ninjamar/myos
1
43575
<filename>src/boot.asm ;this is 16 bit mode BIOS [ORG 0x7C00] main: mov si,msg call print_str jmp $ %include 'iolib.asm' msg db "KewlOS",0 times 510-($-$$) db 0 dw 0xaa55
SimpleCPU/Python/example2.asm
ivandumas/Multiprocesadores
0
43576
// Example 8.4 // This program counts the number of words not equal // to 0 in data memory locations 4 and 5, storing // the final count in R0 MOV R0, #0; // initialize result to 0 MOV R1, #1; // constant 1 for incrementing result MOV R2, 4; // get data memory location 4 JMPZ R2, lab1; // if zero, skip next instructio...
third_party/heif_decoder/src/main/cpp/libx265/common/x86/sad-a.asm
vy12021/glide_webp
14
43577
;***************************************************************************** ;* sad-a.asm: x86 sad functions ;***************************************************************************** ;* Copyright (C) 2003-2013 x264 project ;* Copyright (C) 2013-2017 MulticoreWare, Inc ;* ;* Authors: <NAME> <<EMAIL>> ;* ...
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_1_923.asm
ljhsiun2/medusa
9
43578
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_1_923.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r15 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0x8871, %rbx nop nop nop nop and $21501, %r15 movb (%rbx), %r10b nop nop nop sub $6316, %r10 le...
examples/c/TinyBASIC/z.asm
Basman74/Sweet32
29
43579
<reponame>Basman74/Sweet32 ; *** Produced by Smaller-C modified for Sweet32 code generation GETPC R4,#0 ; Get codebase address ADD R0,R0,R0 ; Reserved for 32bit Trace/Debug handler vector ADD R0,R0,R0 LDD R14,$Sweet32_stacktop ; Auto Stack pointer setup ADD R14,R14,R4 MOV R13,R14 incs R14,R14,#-4 mov...
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xca.log_21829_366.asm
ljhsiun2/medusa
9
43580
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r14 push %r15 push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x5f54, %rsi lea addresses_A_ht+0x15f94, %rdi clflush (%rdi) inc %r13 mov $7, %rcx rep movsq nop cmp %r14, %r14 lea addresses_WT_ht+0x3874, %rsi lea addresses_D...
printargs.asm
everythng/C-ASM.
5
43581
<reponame>everythng/C-ASM. section .rodata n db 0xa section .text global _start _start: mov ebp, [esp] .loop: add esp, 4 mov edi, [esp] mov ecx, 0xffffffff xor eax,eax repne scasb inc ecx ...
oeis/005/A005901.asm
neoneye/loda-programs
11
43582
<reponame>neoneye/loda-programs<filename>oeis/005/A005901.asm ; A005901: Number of points on surface of cuboctahedron (or icosahedron): a(0) = 1; for n > 0, a(n) = 10n^2 + 2. Also coordination sequence for f.c.c. or A_3 or D_3 lattice. ; 1,12,42,92,162,252,362,492,642,812,1002,1212,1442,1692,1962,2252,2562,2892,3242,36...
04_control_structures/if.asm
mandm-pt/OperatingSystem
0
43583
<reponame>mandm-pt/OperatingSystem<filename>04_control_structures/if.asm ; ; Implementation of IF, IF-THEN, IF-THEN-ELSE, IF THEN-ELSE IF-ELSE ; mov ah, 0x0e ; int 10/ ah = 0 eh -> scrolling teletype BIOS routine ; GOTO jmp jump_over mov al, '1' ; this won't be printed, we jump over it int 0x10 jump_over: mov al...
programs/oeis/105/A105321.asm
neoneye/loda
22
43585
<reponame>neoneye/loda<filename>programs/oeis/105/A105321.asm ; A105321: Convolution of binomial(1,n) and Gould's sequence A001316. ; 1,3,4,6,6,6,8,12,10,6,8,12,12,12,16,24,18,6,8,12,12,12,16,24,20,12,16,24,24,24,32,48,34,6,8,12,12,12,16,24,20,12,16,24,24,24,32,48,36,12,16,24,24,24,32,48,40,24,32,48,48,48,64,96,66,6,8,...
data/mapHeaders/SilphCo5F.asm
AmateurPanda92/pokemon-rby-dx
9
43586
<reponame>AmateurPanda92/pokemon-rby-dx<filename>data/mapHeaders/SilphCo5F.asm<gh_stars>1-10 SilphCo5F_h: db FACILITY ; tileset db SILPH_CO_5F_HEIGHT, SILPH_CO_5F_WIDTH ; dimensions (y, x) dw SilphCo5F_Blocks ; blocks dw SilphCo5F_TextPointers ; texts dw SilphCo5F_Script ; scripts db 0 ; connections dw SilphCo5F...
programs/oeis/114/A114242.asm
neoneye/loda
22
43587
<filename>programs/oeis/114/A114242.asm ; A114242: a(n) = (n+1)(n+2)^2*(n+3)^2*(n+4)(2n+5)/720. ; 1,14,90,385,1274,3528,8568,18810,38115,72358,130130,223587,369460,590240,915552,1383732,2043621,2956590,4198810,5863781,8065134,10939720,14651000,19392750,25393095,32918886,42280434,53836615,68000360 lpb $0 mov $2,$0 ...
oeis/109/A109599.asm
neoneye/loda-programs
11
43588
<reponame>neoneye/loda-programs<filename>oeis/109/A109599.asm ; A109599: a(n) = A070864(n+8) - 4. ; Submitted by <NAME>(s2) ; 1,1,1,3,1,3,1,3,3,3,5,3,5,3,5,3,5,5,5,7,5,7,5,7,5,7,5,7,7,7,9,7,9,7,9,7,9,7,9,7,9,9,9,11,9,11,9,11,9,11,9,11,9,11,9,11,11,11,13,11,13,11,13,11,13,11,13,11,13,11,13,11,13,13,13,15,13,15,13,15,13,...
win64/lesson09.asm
mashingan/notes-asmtutor
1
43589
;; support for unicode input ; try input it as: Est 魔聖剣 format PE64 console entry start include 'win64w.inc' section '.data' data readable writeable stdout rq 1 stdin rq 1 prompt db 'Please enter your name: ', 0h hello db 'Hello, ', 0h sinsize = 255 sinput rw sinsize section '.text' code readable executab...
programs/oeis/273/A273675.asm
karttu/loda
0
43590
; A273675: Number of active (ON,black) cells in n-th stage of growth of two-dimensional cellular automaton defined by "Rule 833", based on the 5-celled von Neumann neighborhood. ; 1,4,17,33,56,85,120,161,208,261,320,385,456,533,616,705,800,901,1008,1121,1240,1365,1496,1633,1776,1925,2080,2241,2408,2581,2760,2945,3136,3...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_461.asm
ljhsiun2/medusa
9
43591
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r8 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0x159a7, %rax nop nop nop add $25861, %r9 movups (%rax), %xmm5 vpextrq $1, %xmm5, %r8 nop nop nop nop cmp %rdi, %rdi lea addresses_WT_ht+0x193e7, %rsi lea addresses_WC_ht+0x11c07...
src/native/third_party/isa-l_crypto/aes/cbc_dec_192_x8_avx.asm
guptsanj/noobaa-core
0
43592
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Copyright(c) 2011-2016 Intel Corporation All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions ; are met: ; * Redistributions of so...
libsrc/stdio/mz2500/getk.asm
jpoikela/z88dk
640
43594
; ; Sharp MZ2500 Routines ; ; getk() Read key status ; <NAME> - 2018 ; ; ; $Id: getk.asm $ ; SECTION code_clib PUBLIC getk PUBLIC _getk .getk ._getk ld a,0 rst 18h defb 0dh ; _INKEY jr nz,got_key xor a .got_key cp 13 ; was it ENTER ? jr nz,noenter IF STANDARDESCAPECHARS ld a,10 ELSE ; ld a,...
Transynther/x86/_processed/AVXALIGN/_st_zr_/i3-7100_9_0x84_notsx.log_21829_2381.asm
ljhsiun2/medusa
9
43595
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0x5e8e, %rbx nop nop nop nop cmp %r13, %r13 mov (%rbx), %r11d nop nop nop nop nop xor $32986, %r8 lea addresses_D_ht+0x3e95, %rsi lea addresses_D_ht+0x4121, %rdi clflush (%rdi) ...
Transynther/x86/_processed/US/_zr_/i3-7100_9_0xca_notsx.log_149_1788.asm
ljhsiun2/medusa
9
43596
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r15 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0xd38f, %r15 nop xor %rax, %rax mov $0x6162636465666768, %r12 movq %r12, %xmm5 vmovups %ymm5, (%r15) nop nop nop and $24762, %rdx lea addresses_WT_ht+0x6085, %r...
programs/oeis/095/A095143.asm
neoneye/loda
22
43597
<filename>programs/oeis/095/A095143.asm ; A095143: Triangle formed by reading Pascal's triangle (A007318) mod 9. ; 1,1,1,1,2,1,1,3,3,1,1,4,6,4,1,1,5,1,1,5,1,1,6,6,2,6,6,1,1,7,3,8,8,3,7,1,1,8,1,2,7,2,1,8,1,1,0,0,3,0,0,3,0,0,1,1,1,0,3,3,0,3,3,0,1,1,1,2,1,3,6,3,3,6,3,1,2,1,1,3,3,4,0,0,6,0,0,4,3,3,1,1,4,6,7,4,0,6,6,0 seq ...
CE3105/ASM5.asm
rafaellepalmos/Assembly_Language
0
43598
data segment data ends temp segment stack db 200h DUP (?) temp ends code segment assume cs:code, ds:data, ss:temp main proc far start: mov ax,data mov ds,ax Xor ax,ax mov al,99d mov cl,10d div cl mov cl,ah mov dl,al add dl,30h mov ah,02h int 21h XOR dx,dx mov dl,cl add dl,30...
code/9/6.asm
GeekHades1/AssemblyCode
1
43599
<reponame>GeekHades1/AssemblyCode ; 实验8 assume cs:code code segment mov ax, 4c00H int 21H start: mov ax, 0 s : nop nop mov di, offset s mov si, offset s2 mov ax, cs:[si] mov cs:[di], ax ; 这里的其实是把s2的地址给了s s0: jmp short s s1: mov ax, 0 int 21H mov ax, 0 s...
libsrc/target/zx81/cnvtab.asm
jpoikela/z88dk
640
43600
<gh_stars>100-1000 ; ; ZX81 Stdio ; ; ASCII-ZX81 conversion Table ; used by fgetc_cons and fputc_cons ; ; <NAME> - Apr. 2000 ; ; ; $Id: cnvtab.asm,v 1.10+ (now on GIT) $ ; SECTION rodata_clib PUBLIC zx81_cnvtab .zx81_cnvtab IF FORzx81 defb 114 ; cursor-left defb 8 defb 115 ; cursor-right defb 9 defb 112 ; cur...
Chapter_8/Program 8.7_SSE4/x86_64/Program_8.7_MASM.asm
chen150182055/Assembly
272
43601
; Program 8.7 ; SSE4 - MASM (64-bit) ; Copyright (c) 2019 Hall & Slonka extrn ExitProcess : proc .data ALIGN 16 vectorA REAL4 1.2, 3.4, 5.6, 7.8 vectorB REAL4 7.8, 5.6, 3.4, 1.2 .code _main PROC movaps xmm0, vectorA ; move aligned packed vectorA to XMM0 roundps xmm1, xmm0, 1 ; round down(1) values in XMM0 and stor...
Transynther/x86/_processed/NONE/_zr_xt_/i3-7100_9_0x84_notsx.log_21829_2143.asm
ljhsiun2/medusa
9
43602
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r14 push %r8 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0xbf44, %rsi lea addresses_normal_ht+0x3a44, %rdi clflush (%rsi) nop cmp %r8, %r8 mov $67, %rcx rep movsw nop nop nop and %r9, %r9 lea addresses_UC_ht+...
somma_vettore.asm
supermirtillo/polito-assembly-8086
0
43603
<filename>somma_vettore.asm dim equ 3 .model small .stack .data vett dw 1, 2, 3 res dw ? .code .startup mov di, 0 mov ax, 0 mov cx, dim ciclo: add ax, vett[di] add di, 2 loop ciclo mov res, ax .exit end
programs/oeis/047/A047290.asm
neoneye/loda
22
43604
<filename>programs/oeis/047/A047290.asm<gh_stars>10-100 ; A047290: Numbers that are congruent to {1, 4, 6} mod 7. ; 1,4,6,8,11,13,15,18,20,22,25,27,29,32,34,36,39,41,43,46,48,50,53,55,57,60,62,64,67,69,71,74,76,78,81,83,85,88,90,92,95,97,99,102,104,106,109,111,113,116,118,120,123,125,127,130,132,134,137,139,141,144,146...
programs/oeis/083/A083824.asm
neoneye/loda
22
43605
<reponame>neoneye/loda ; A083824: a(n) = digit reversal of 9*n, divided by 9. ; 0,1,9,8,7,6,5,4,3,2,1,11,89,79,69,59,49,39,29,19,9,109,99,78,68,58,48,38,28,18,8,108,98,88,67,57,47,37,27,17,7,107,97,87,77,56,46,36,26,16,6,106,96,86,76,66,45,35,25,15,5,105,95,85,75,65,55,34,24,14,4,104,94,84 mul $0,9 lpb $0 mul $1,10 ...
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i3-7100_9_0x84_notsx.log_21829_1763.asm
ljhsiun2/medusa
9
43606
<filename>Transynther/x86/_processed/AVXALIGN/_ht_zr_/i3-7100_9_0x84_notsx.log_21829_1763.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r15 push %r8 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_normal_ht+0x11d74, %r15 clflush (%r15) nop cmp %r10, %r10 mov $0x61626364656667...
0x05-libasm/5-memcpy.asm
alzheimeer/holbertonschool-system_linux
1
43607
BITS 64 global asm_memcpy section .text asm_memcpy: while: test rdx, rdx;un AND origen y destino no save, modifica flaqs je end mov bl, BYTE[rsi] mov BYTE[rdi], bl inc rdi inc rsi dec rdx jmp while end: ret
nasm-gcc-container/nasm-gcc/src/02/hello.asm
smith-30/low-layer
0
43608
global _start section .data message: db 'hello, world!', 10 section .text _start: mov rax, 1 ; システムコールの番号をraxに入れる(write) mov rdi, 1 ; 引数 #1 は rdi: 書き込み先(descripter) -> stdout mov rsi, message ; 引数 #2 は rsi: 文字列の先頭 mov rdx, 14 ; 引数 #3 は rdx: 書き込むバイト数 syscall ; システムコールの呼び出し mov rax, 60 ; exitのs...
src/bcd/improvement.asm
mayank-pq2q4/nasm-codes
0
43609
<gh_stars>0 extern printf SECTION .data fmt: db "The resultant BCD is: ", 10, 0 fmtshort: db "%lu ", 0 binary: dq 1010101011011010b ; 16 bit binary number (8 byte int) = 1001101010011010 msb: dq 0 ; most significant bit size int msv = 0 (initially) decimal: dq 0 ;decimal value temp: dq 0 ...
.examples/Factorial.asm
hellopuza/Processor
1
43610
<gh_stars>1-10 ;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;; Circle Assembler ;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;; main: in rax push 1 pop rbx pushq 0 pushq rax jb print_err call factorial push rbx out hlt factorial: pushq 2 pushq rax jb ret push rax push rbx ...
programs/oeis/145/A145654.asm
neoneye/loda
22
43611
; A145654: Partial sums of A000918, starting from index 1. ; 0,2,8,22,52,114,240,494,1004,2026,4072,8166,16356,32738,65504,131038,262108,524250,1048536,2097110,4194260,8388562,16777168,33554382,67108812,134217674,268435400,536870854,1073741764,2147483586,4294967232,8589934526,17179869116,34359738298,68719476664,1374389...
pwnlib/shellcraft/templates/i386/mov.asm
zaratec/pwntools
5
43612
<% from pwnlib.shellcraft import eval, pretty, okay from pwnlib.util import lists, packing, fiddling, misc from pwnlib.log import getLogger from pwnlib.shellcraft.registers import get_register, is_register, bits_required log = getLogger('pwnlib.shellcraft.i386.mov') %> <%page args="dest, src, stack_allowed = ...
Tests/base/DMA/Main.asm
MrKWatkins/ZXSpectrumNextTests
23
43613
; WARNING - this is DMA test of "zxnDMA" variant (the ZX Spectrum Next with core ; implemented in FPGA, including the DMA-like mechanics emulating the Zilog DMA) ; ; The zxnDMA is simplified a lot, removing many "gotcha" rules, and doing transfers ; of blocks without the +1/+2 to the set length, to make it less tricky ...
Transynther/x86/_processed/AVXALIGN/_st_sm_/i3-7100_9_0xca_notsx.log_21829_613.asm
ljhsiun2/medusa
9
43616
<filename>Transynther/x86/_processed/AVXALIGN/_st_sm_/i3-7100_9_0xca_notsx.log_21829_613.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x8349, %rsi lea addresses_D_ht+0x3d11, %rdi and $35722, %rbx mov $0, %rcx rep movsq nop nop n...
vp9/decoder/arm/neon/vp9_add_constant_residual_neon.asm
huangwenjun06/libvpx_mips
0
43618
; ; Copyright (c) 2013 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 contributing ...
include/test/swi.asm
eyalabraham/dragon
0
43619
<gh_stars>0 ; ; swi.asm ; ; MC6809E emulator test code SWI software interrups. ; Test for command correctness and flag settings. ; All tests will use direct or immediate addressing for simplicity, ; other addressing modes will be tested separately. ; jmp start ; setcf: equ $01 clrcf: equ ...
programs/oeis/024/A024875.asm
neoneye/loda
22
43620
; A024875: a(n) = s(1)s(n) + s(2)s(n-1) + ... + s(k)s(n-k+1), where k = floor( n/2 ), s = natural numbers >= 3. ; 12,15,38,45,82,94,148,166,240,265,362,395,518,560,712,764,948,1011,1230,1305,1562,1650,1948,2050,2392,2509,2898,3031,3470,3620,4112,4280,4828,5015,5622,5829,6498,6726,7460,7710,8512,8785,9658,9955,10902,112...
Library/Trans/Graphics/Bitmap/Gif/Export/exportManager.asm
steakknife/pcgeos
504
43621
<reponame>steakknife/pcgeos COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: Gif Translation Library FILE: exportManager.asm<2> AUTHOR: <NAME>, May 4, 1992 ROUTINES: Name Description ---- ...
libsrc/oz/ozmisc/ozdelay.asm
dex4er/deb-z88dk
1
43623
<reponame>dex4er/deb-z88dk<filename>libsrc/oz/ozmisc/ozdelay.asm ; ; Sharp OZ family functions ; ; ported from the OZ-7xx SDK by by <NAME> ; by <NAME> - Oct. 2003 ; ; ; void ozdelay(unsigned d) ; ; ------ ; $Id: ozdelay.asm,v 1.1 2003/10/22 13:55:49 stefano Exp $ ; XLIB ozdelay ozdelay: ;l...
data/pokemon/base_stats/wigglytuff.asm
Karkino/KarkCrystal16
0
43624
<reponame>Karkino/KarkCrystal16 db 0 ; species ID placeholder db 140, 70, 65, 45, 85, 70 ; hp atk def spd sat sdf db NORMAL, FAIRY ; type db 50 ; catch rate db 109 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F75 ; gender ratio db 100 ; unknown 1 db 10 ; step cycles to hatch db 5 ; unknown ...
src/lab/lab2.asm
luishendrix92/lenguajezinterfaz
0
43625
<reponame>luishendrix92/lenguajezinterfaz ; Ciclo anidado utilizando el stack y temas anteriores. ; Este programa imprime un bloque lleno de un cierto caracter ; con un tamaño dado por variables. .Model small .Stack 64 .Data char db 'x' ; Caracter de relleno n_cols dw 40 ; La mitad del ancho (40) n_rows dw ...
_anim/obj14.asm
vladjester2020/Sonic1TMR
0
43627
<filename>_anim/obj14.asm ; --------------------------------------------------------------------------- ; Animation script - lava balls ; --------------------------------------------------------------------------- dc.w byte_E4CC-Ani_obj14 dc.w byte_E4D2-Ani_obj14 dc.w byte_E4D6-Ani_obj14 dc.w byte_E4DC-An...
oeis/170/A170737.asm
neoneye/loda-programs
11
43629
<reponame>neoneye/loda-programs ; A170737: Expansion of g.f.: (1+x)/(1-17*x). ; 1,18,306,5202,88434,1503378,25557426,434476242,7386096114,125563633938,2134581776946,36287890208082,616894133537394,10487200270135698,178282404592306866,3030800878069216722,51523614927176684274,875901453762003632658,14890324713954061755186,...
programs/oeis/126/A126073.asm
jmorken/loda
1
43630
; A126073: Sum of numbers <= n which are multiples of 3 or 5 but not 15. ; 0,0,3,3,8,14,14,14,23,33,33,45,45,45,45,45,45,63,63,83,104,104,104,128,153,153,180,180,180,180,180,180,213,213,248,284,284,284,323,363,363,405,405,405,405,405,405,453,453,503,554,554,554,608,663,663,720,720 mov $2,$0 mov $4,$0 lpb $2 mov $0,$...
test/programs/test-010_unicode.asm
jfrech/Joy-Assembler
0
43631
<reponame>jfrech/Joy-Assembler<filename>test/programs/test-010_unicode.asm jmp @main c0: data 0 c1: data 0 c2: data 0 nop 0xaabbccdd msgptr: data 0 msg: data "<NAME>. ♖\n\0" print-string: mov @msg sta @msgptr print-string-loop: lda @msgptr swp lia jz @...
libsrc/_DEVELOPMENT/target/scz180/crt_preamble.asm
Frodevan/z88dk
640
43632
<reponame>Frodevan/z88dk<gh_stars>100-1000 IF !(__page_zero_present) SECTION code_crt_init ; Internal register definitions begin ; at __IO_BASE_ADDRESS = 0x00C0 ld a,__IO_BASE_ADDRESS out0 (ICR),a ; Move the internal register to 0x00C0 ...
libsrc/_DEVELOPMENT/compress/zx1/c/sccz80/dzx1_agile_rcs.asm
ahjelm/z88dk
640
43634
; void dzx0_agile_rcs(void *src, void *dst) SECTION code_clib SECTION code_compress_zx0 PUBLIC dzx0_agile_rcs EXTERN asm_dzx0_agile_rcs dzx0_agile_rcs: pop af pop de pop hl push hl push de push af jp asm_dzx0_agile_rcs
libsrc/_DEVELOPMENT/arch/zx/display/z80/asm_zx_saddr2px.asm
RC2014Z80/z88dk
8
43636
<gh_stars>1-10 ; =============================================================== ; Jun 2007 ; =============================================================== ; ; uchar zx_saddr2px(void *saddr) ; ; Pixel x coordinate corresponding to the leftmost pixel at ; of the screen address. ; ; ===================================...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_844.asm
ljhsiun2/medusa
9
43638
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r11 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x7d4, %rsi lea addresses_A_ht+0x18824, %rdi nop nop nop nop add %rax, %rax mov $13, %rcx rep movsq nop cmp $27634, %rcx lea addresses_WT_ht+0x14774, %rsi lea addresses_U...
src/main.asm
Wuerfel21/z80test
0
43639
; Main driver for the Z80 tester. ; ; Copyright (C) 2012-2022 <NAME> (<EMAIL>) ; ; This source code is released under the MIT license, see included license.txt. org 0 halt ds 255 jp $8000 ds $7EFD main: di ; disable...
programs/oeis/267/A267848.asm
karttu/loda
0
43640
<filename>programs/oeis/267/A267848.asm ; A267848: Triangle read by rows giving successive states of cellular automaton generated by "Rule 229" initiated with a single ON (black) cell. ; 1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1...
programs/oeis/043/A043369.asm
karttu/loda
0
43641
<reponame>karttu/loda ; A043369: Numbers n such that number of 0's in base 6 is 1. ; 6,12,18,24,30,37,38,39,40,41,42,48,54,60,66,73,74,75,76,77,78,84,90,96,102,109,110,111,112,113,114,120,126,132,138,145,146,147,148,149,150,156,162,168,174,181,182,183,184,185,186,192 mov $3,$0 add $3,1 mov $5,$0 lpb $3,1 mov $0,$5 ...
libsrc/_DEVELOPMENT/adt/p_forward_list/c/sccz80/p_forward_list_push_back_callee.asm
meesokim/z88dk
0
43642
<reponame>meesokim/z88dk ; void p_forward_list_push_back(p_forward_list_t *list, void *item) SECTION code_adt_p_forward_list PUBLIC p_forward_list_push_back_callee p_forward_list_push_back_callee: pop hl pop de ex (sp),hl INCLUDE "adt/p_forward_list/z80/asm_p_forward_list_push_back.asm"
programs/oeis/188/A188432.asm
jmorken/loda
1
43643
; A188432: Fixed point of the morphism 0->001, 1->01. ; 0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,...
libsrc/_DEVELOPMENT/alloc/malloc/c/sccz80/heap_info_callee.asm
meesokim/z88dk
0
43645
<filename>libsrc/_DEVELOPMENT/alloc/malloc/c/sccz80/heap_info_callee.asm ; void heap_info(void *heap, void *callback) INCLUDE "clib_cfg.asm" SECTION code_alloc_malloc ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IF __CLIB_OPT_MULTITHREAD & $01 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PUBLIC heap_info_callee heap_info_callee: pop a...
libsrc/target/pc88/graphics/w_stencil_render.asm
ahjelm/z88dk
640
43647
; ; z88dk GFX library ; ; Render the "stencil". ; The dithered horizontal lines base their pattern on the Y coordinate ; and on an 'intensity' parameter (0..11). ; Basic concept by <NAME> ; ; Machine code version by <NAME>, 22/4/2009 ; ; stencil_render(unsigned char *stencil, unsigned char intensity) ; INCLUDE "grap...
programs/oeis/189/A189321.asm
jmorken/loda
1
43648
<reponame>jmorken/loda ; A189321: Number of nondecreasing arrangements of n+2 numbers in 0..4 with the last equal to 4 and each after the second equal to the sum of one or two of the preceding four. ; 7,12,20,32,49,70,94,120,148,178,210,244,280,318,358,400,444,490,538,588,640,694,750,808,868,930,994,1060,1128,1198,1270...
Main.asm
DevEd2/Rebound
2
43649
<filename>Main.asm ; ======================= ; Rebound GBC main source ; ======================= ; If set to 1, enable debugging features. DebugMode = 1 ; Defines include "Defines.asm" ; ============= ; Reset vectors ; ============= section "Reset $00",rom0[$00] Bankswitch:: jp _Bankswitch ...
ugbc/src/hw/6809/number_to_string.asm
Samuel-DEVULDER/ugbasic
0
43650
; /***************************************************************************** ; * ugBASIC - an isomorphic BASIC language compiler for retrocomputers * ; ***************************************************************************** ; * Copyright 2021 <NAME> (<EMAIL>) ; * ; * Licensed under the Apache Lice...
target/cos_117/disasm/iop_overlay1/BABEL.asm
jrrk2/cray-sim
49
43652
0x0000 (0x000000) 0x2104- f:00020 d: 260 | A = OR[260] 0x0001 (0x000002) 0x290D- f:00024 d: 269 | OR[269] = A 0x0002 (0x000004) 0x2104- f:00020 d: 260 | A = OR[260] 0x0003 (0x000006) 0x1403- f:00012 d: 3 | A = A + 3 (0x0003) ...
src/infohud.asm
rioscrodrigo/sm_practice_hack
0
43653
<filename>src/infohud.asm ;======================================================= ;InfoHUD timers and stuff ;======================================================= org $809490 jmp $9497 ; skip resetting player 2 inputs org $8094DF plp ; patch out resetting of controller 2 buttons and enable debu...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_681.asm
ljhsiun2/medusa
9
43654
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r12 push %r15 push %r8 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x42b3, %r12 nop and %rbp, %rbp mov (%r12), %r15 nop nop nop sub $1726, %rbx lea addresses_WC_ht+0x8f93, %r9 nop nop nop nop nop xor $61775, ...
boot/pc-bios/fmcdboot.asm
neri/toe
0
43656
;; MEG-OS CD Boot Sector for FM TOWNS ;; License: MIT (c) 2021 MEG-OS project %define IPL_SIGN 0x1eaf %define ARCH_NEC98 0 %define ARCH_PC 1 %define ARCH_FMT 2 %define NOBOOTDIR [bits 16] [org 0x0800] _HEAD: db "IPL4" entry: ;; setup register cld push cs pop ds xor ax, ax mo...
oeis/156/A156276.asm
neoneye/loda-programs
11
43658
<gh_stars>10-100 ; A156276: Denominator of Euler(n, 1/10). ; 1,5,100,250,10000,25000,1000000,2500000,100000000,250000000,10000000000,25000000000,1000000000000,2500000000000,100000000000000,250000000000000,10000000000000000,25000000000000000 mov $1,10 pow $1,$0 mov $2,$0 sub $2,9 gcd $2,2 div $1,$2 dif $1,$2 mov $0,$1
libsrc/_DEVELOPMENT/arch/sms/SMSlib/c/sccz80/SMS_setClippingWindow_callee.asm
jpoikela/z88dk
640
43659
; void SMS_setClippingWindow(unsigned char x0,unsigned char y0,unsigned char x1,unsigned char y1) SECTION code_clib SECTION code_SMSlib PUBLIC SMS_setClippingWindow_callee EXTERN asm_SMSlib_setClippingWindow SMS_setClippingWindow_callee: pop af pop de pop hl ld h,e pop bc pop de ld d,c push...
programs/oeis/232/A232981.asm
jmorken/loda
1
43660
; A232981: The Gauss factorial n_5!. ; 1,1,2,6,24,24,144,1008,8064,72576,72576,798336,9580032,124540416,1743565824,1743565824,27897053184,474249904128,8536498274304,162193467211776,162193467211776,3406062811447296,74933381851840512 mov $1,1 lpb $0 mov $2,$0 lpb $0 mod $0,5 sub $0,1 lpe add $0,$2 mul ...
libsrc/_DEVELOPMENT/arch/zx/bifrost_l/c/sdcc/BIFROSTL_getTile.asm
grancier/z180
0
43661
; ---------------------------------------------------------------- ; Z88DK INTERFACE LIBRARY FOR THE BIFROST* ENGINE - RELEASE 1.2/L ; ; See "bifrost_l.h" for further details ; ---------------------------------------------------------------- ; unsigned char BIFROSTL_getTile(unsigned int px, unsigned int py) SECTION c...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_374.asm
ljhsiun2/medusa
9
43662
<reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_374.asm .global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r15 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0x19d44, %rbp nop nop and $48116, %rsi mov $0x6162636465666768, %...
data/wild/maps/PokemonTower3F.asm
opiter09/ASM-Machina
1
43663
<reponame>opiter09/ASM-Machina PokemonTower3FWildMons: def_grass_wildmons 10 ; encounter rate db 30, GASTLY db 31, GASTLY db 32, GASTLY db 33, GASTLY db 29, GASTLY db 38, GASTLY db 34, GASTLY db 30, CUBONE db 32, CUBONE db 35, HAUNTER end_grass_wildmons def_water_wildmons 0 ; encounter rate end_water_wil...
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_88_764.asm
ljhsiun2/medusa
9
43667
<filename>Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_88_764.asm .global s_prepare_buffers s_prepare_buffers: push %r14 push %r8 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x59f5, %rdi nop nop nop and %r9, %r9 mov (%rdi), %si nop nop nop nop nop xor $7082, %rax lea...
week_7/dataset/Assembly/056590.asm
Dumebi35/DumebiCSC102
0
43668
<reponame>Dumebi35/DumebiCSC102 ; Use INT 10h to draw a single-line box on the screen, ; with the upper left corner at row 5, column 10 and the ; lower right corner at row 20, column 70. .model small .stack 100h ulrow = 5 ulcol = 10 lrrow = 20 lrcol = 70 bwidth = (lrcol - ulcol) - 2 bheight =(lrrow - ulrow) - 2 ulc...
oeis/266/A266752.asm
neoneye/loda-programs
11
43669
<reponame>neoneye/loda-programs ; A266752: Binary representation of the n-th iteration of the "Rule 163" elementary cellular automaton starting with a single ON (black) cell. ; Submitted by <NAME> ; 1,100,10010,1001010,100101010,10010101010,1001010101010,100101010101010,10010101010101010,1001010101010101010,10010101010...
src/layout.asm
stid/kick-c64-dead-test
22
43670
<gh_stars>10-100 #importonce #import "./zeropage_map.asm" #import "./mem_map.asm" #import "./data.asm" #import "./main_loop.asm" * = * "layout" drawLayout: { lda #<font ldx #>font sta ZP.tmpSourceAddressLow // Source Address stx ZP.tmpSourceAddressHigh...
libsrc/_DEVELOPMENT/math/float/am9511/c/sdcc/cam32_sdcc_read_callee.asm
witchcraft2001/z88dk
4
43671
<reponame>witchcraft2001/z88dk<filename>libsrc/_DEVELOPMENT/math/float/am9511/c/sdcc/cam32_sdcc_read_callee.asm SECTION code_clib SECTION code_fp_am9511 PUBLIC cam32_sdcc_readr_callee PUBLIC cam32_sdcc_ireadr_callee PUBLIC cam32_sdcc_read1_callee .cam32_sdcc_readr_callee ; sdcc float primitive ; Read right ...
programs/oeis/034/A034785.asm
neoneye/loda
22
43672
<filename>programs/oeis/034/A034785.asm<gh_stars>10-100 ; A034785: a(n) = 2^(n-th prime). ; 4,8,32,128,2048,8192,131072,524288,8388608,536870912,2147483648,137438953472,2199023255552,8796093022208,140737488355328,9007199254740992,576460752303423488,2305843009213693952,147573952589676412928,2361183241434822606848,944473...
1571/64tass/block.asm
silverdr/assembly
23
43673
<reponame>silverdr/assembly ; rom 1.1 additions ; user commands user ldy cmdbuf+1 cpy #'0' bne us10 ; 0 resets pntr usrint jmp burst_routines nop ; fill nop ; fill nop ; fill nop ; fill nop ...
src/calendar_dot_exe.asm
ViGrey/calendar_dot_exe
2
43674
; Copyright (C) 2020, <NAME> ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions ; are met: ; ; 1. Redistributions of source code must retain the above copyright ; notice, this list of conditions and the fo...
software/pcx86/test/cpu/80186/add.asm
jriwanek-forks/pcjs
711
43675
;00: ff ff 00 00 fe ff ff ff 02 00 03 00 00 80 ff 7f ;10: ad b2 f5 93 45 f2 00 ff fe 03 80 7f 03 80 7f 80 ;20: 00 a6 2c ff ff 01 00 ff ff ff ff 02 00 04 00 00 ;30: 80 ff 7f f9 fb 61 bf 46 7f 01 ff ff 04 80 7f 04 ;40: 80 7f 80 00 b9 8d 00 00 00 80 13 74 80 00 b6 XX ;50: XX XX XX XX XX XX XX XX XX XX XX XX 83 00 57 ...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_39.asm
ljhsiun2/medusa
9
43677
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0xb2b8, %rsi lea addresses_WT_ht+0x1df40, %rdi nop inc %r9 mov $75, %rcx rep movsb cmp %rax, %rax lea addresses_D_ht+0x48f0, %r11 and $59386, %r13 mov $0x6162636465666768, %rdi...
programs/oeis/090/A090991.asm
karttu/loda
0
43678
; A090991: Number of meaningful differential operations of the n-th order on the space R^6. ; 6,10,16,26,42,68,110,178,288,466,754,1220,1974,3194,5168,8362,13530,21892,35422,57314,92736,150050,242786,392836,635622,1028458,1664080,2692538,4356618,7049156,11405774,18454930,29860704,48315634,78176338,126491972,204668310,3...
src/third_party/nasm/test/masmdisp.asm
Mr-Sheep/naiveproxy
2,219
43679
%use masm global fproc, nproc bits 64 _TEXT segment fproc proc far mov eax,dword ptr foo mov rdx,offset foo mov ecx,bar[rbx] lea rsi,foo lea rsi,dword ptr foo lea rsi,[foo] lea rsi,dword [foo] mov rdi,gs:[rbx] ret fproc endp nproc proc near mov eax,dword ptr foo mov rdx,offset foo mov ecx,bar[rbx] ...
programs/oeis/310/A310375.asm
jmorken/loda
1
43680
<reponame>jmorken/loda<filename>programs/oeis/310/A310375.asm ; A310375: Coordination sequence Gal.5.82.4 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; 1,4,10,14,18,23,28,32,36,42,46,50,56,60,64,69,74,78,82,88,92,96,102,106,110,115...
programs/oeis/024/A024093.asm
neoneye/loda
22
43681
<filename>programs/oeis/024/A024093.asm ; A024093: a(n) = 8^n - n^5. ; 1,7,32,269,3072,29643,254368,2080345,16744448,134158679,1073641824,8589773541,68719227904,549755442595,4398045973280,35184371329457,281474975662080,2251799812265391,18014398507592416,144115188073379773,1152921504603646976,9223372036850691707,7378697...
code/macro.asm
skrasser/slither_c64
3
43682
<filename>code/macro.asm !macro w_inc_08 .mem { lda .mem ; load low byte clc ; clear carry adc #$08 ; add 8 sta .mem ; write back bcc .cc ; carry clear, done inc .mem+1 ; otherwise increment high byte .cc } !macro w_mov .mem, .val16 { lda #<.val16 ; load low byte of value sta .mem ; store in .mem l...
oeis/192/A192033.asm
neoneye/loda-programs
11
43683
; A192033: Expansion of x*(3*x^2+x+1)/((x-1)*(2*x-1)*(x+1)). ; Submitted by <NAME> ; 0,1,3,10,21,46,93,190,381,766,1533,3070,6141,12286,24573,49150,98301,196606,393213,786430,1572861,3145726,6291453,12582910,25165821,50331646,100663293,201326590,402653181,805306366,1610612733,3221225470,6442450941,12884901886,257698037...