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
BitEpicness/bootloader.asm
davidov541/BitEpicness
0
40042
// k1 = x location // k2 = y location // k0 = temperary // s0 = current block number // s1 = address of string // s2 = ending block j bootloader // 0 ldi $sp, 512 // 1, 2 nop // 3 nop // 4 nop // 5 nop // 6 // **** Interupt routine **** interupt: la $k0, noSet...
EjerciciosClase/segundo2.asm
adeandak/OPC
0
40045
<gh_stars>0 TITLE *MASM Template (segundo2.asm)* ; Descripcion: ; Segundo ejercicio en ensamblador. ; INCLUDE \masm32\Irvine\Irvine32.inc INCLUDELIB \masm32\Irvine\Irvine32.lib INCLUDELIB \masm32\Irvine\User32.lib INCLUDELIB \masm32\Irvine\Kernel32.lib .DATA uno BYTE 1, 2 dos WORD 3, 4 tres DW...
PRG/objects/1-2.asm
narfman0/smb3_pp1
0
40046
.byte $01 ; Unknown purpose .byte OBJ_CFIRE_GOOMBAPIPE_R, $19, $13 .byte OBJ_GOOMBA, $20, $18 .byte OBJ_CFIRE_GOOMBAPIPE_R, $2B, $13 .byte OBJ_PARAGOOMBA, $39, $15 .byte OBJ_GREENPIRANHA_FIRE, $4A, $11 .byte OBJ_GOOMBA, $53, $17 .byte OBJ_GOOMBA, $55, $10 .byte OBJ_PARAGOOMBA, $61, $14 .byte OBJ_GOOMBA, $6B,...
programs/oeis/276/A276395.asm
karttu/loda
0
40047
; A276395: Characteristic function of floor(36*n/25). ; 1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1 mov $5,$0 mov $7,2 lpb $7,1 mov $0,$5 sub $7,1 add $0,$7 sub $0,1 mov $6,$0 add $6,1 mul ...
ltst1.asm
adrianna157/CS444-Lab5-Mutexes
0
40049
_ltst1: file format elf32-i386 Disassembly of section .text: 00000000 <main>: } #endif // BENNY_MOOTEX int main(int argc, char **argv) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 56 push %esi 4: 53 push ...
libsrc/_DEVELOPMENT/adt/w_array/c/sdcc_iy/w_array_insert_n_callee.asm
meesokim/z88dk
0
40050
; size_t w_array_insert_n_callee(w_array_t *a, size_t idx, size_t n, void *item) SECTION code_adt_w_array PUBLIC _w_array_insert_n_callee _w_array_insert_n_callee: pop ix pop hl pop bc pop de pop af push ix INCLUDE "adt/w_array/z80/asm_w_array_insert_n.asm"
programs/oeis/157/A157737.asm
neoneye/loda
22
40051
; A157737: a(n) = 441*n^2 - 2*n. ; 439,1760,3963,7048,11015,15864,21595,28208,35703,44080,53339,63480,74503,86408,99195,112864,127415,142848,159163,176360,194439,213400,233243,253968,275575,298064,321435,345688,370823,396840,423739,451520,480183,509728,540155,571464,603655,636728,670683,705520,741239,777840,815323,8536...
Windows/FastFind32.asm
clayne/FastExtrema
6
40052
; /******************************************************************* ; * ; * Author: <NAME> ; * <EMAIL> ; * https://github.com/komrad36 ; * ; * Last updated Mar 12, 2021 ; *******************************************************************/ _TEXT$FastFind32 SEGMENT ALIGN(64) FastFind32 PROC vmovd ...
x86/latin_1/mixedcase/getpc/call/ECX+2.asm
mitthu/alpha3
137
40054
<filename>x86/latin_1/mixedcase/getpc/call/ECX+2.asm BITS 32 ; See http://skypher.com/wiki/index.php/Hacking/Shellcode/GetPC CALL INC_EBX ; $+0 = E8 FFFFFFFF PUSH $+5 INC_EBX equ $-1 ; $+4 = FFC3 INC EBX RETN ; $+5 = C...
oeis/142/A142307.asm
neoneye/loda-programs
11
40055
; A142307: Primes congruent to 35 mod 44. ; Submitted by <NAME> ; 79,167,211,431,563,607,739,827,1091,1223,1399,1487,1531,1619,1663,2411,2543,2719,2851,2939,3203,3467,3511,3643,3863,3907,4127,4259,4391,4523,4567,4787,4831,4919,5051,5227,5623,5711,5843,6151,6547,6679,6899,7207,7559,7603,7691,7823,7867,8087,8219,8263,852...
codigo/ej3/ej3_example.asm
IgnacioPardo/TD2_TP1
0
40056
inicio: SET R0, 0x10 SET R1, 0x00 SET R2, 0x01 ciclo: ADD R1, R2 CMP R0, R1 JZ fin JMP ciclo fin: halt: JMP halt
0x500-Shellcode/helloworld3.asm
mafiya69/animated-umbrella
0
40057
<gh_stars>0 BITS 32 ; Tell nasm this is 32-bit code jmp short one ; Jump down to a call at the end two: ; ssize_t write(int fd, const void *buf, size_t count); pop ecx ; Pop the return address (string ptr) int ecx. xor eax, eax ; Zero out full 32 bits of eax register mov al, ...
Source/HBIOS/ansi.asm
davidknoll/RomWBW
194
40058
; ;================================================================================================== ; ANSI EMULATION MODULE ;================================================================================================== ; ; TODO: ; 1) INSERT/DELETE CHARACTERS CTL SEQUENCES ; 2) OTHER CTL SEQUENCES? ...
programs/oeis/169/A169630.asm
neoneye/loda
22
40059
<filename>programs/oeis/169/A169630.asm ; A169630: a(n) = n times the square of Fibonacci(n). ; 0,1,2,12,36,125,384,1183,3528,10404,30250,87131,248832,705757,1989806,5581500,15586704,43356953,120187008,332134459,915304500,2516113236,6900949462,18888143927,51599794176,140718765625,383142771674,1041660829548,282810728818...
Library/Text/TextStorage/tsSmallModify.asm
steakknife/pcgeos
504
40060
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: tsSmallModify.asm AUTHOR: <NAME>, Nov 19, 1991 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Descri...
programs/oeis/101/A101855.asm
karttu/loda
0
40061
<gh_stars>0 ; A101855: a(n) = n*(n+1)*(n+2)*(n+4)*(n+23)/120. ; 6,30,91,216,441,812,1386,2232,3432,5082,7293,10192,13923,18648,24548,31824,40698,51414,64239,79464,97405,118404,142830,171080,203580,240786,283185,331296,385671,446896,515592,592416,678062,773262,878787,995448 mov $17,$0 mov $19,$0 add $19,1 lpb $19,1 c...
libsrc/_DEVELOPMENT/arch/zx/display/z80/asm_zx_saddrcleft.asm
jpoikela/z88dk
640
40064
; =============================================================== ; Jun 2007 ; =============================================================== ; ; void *zx_saddrcleft(void *saddr) ; ; Modify screen address to move left one character (eight pixels) ; If at the leftmost edge, move to rightmost column on prev row. ; ; ==...
fib.asm
tylerkahn/dcpu16-haskell
1
40065
; Taken from https://github.com/krasin/llvm-dcpu16 ; Successfuly runs on my implementation :autoinit ;;Init data stack register C SET C, SP SUB C, 256 :autostart JSR main :autohalt HLT ; .file "/home/krasin/fib.c" ; .align 2 :fib SUB C, 12 ; The Notch order SET [10+C], X ; The Notch o...
SOURCE ASM FILES/FPSHack_TEST_HalfSomeItemValueIDK.asm
Meowmaritus/Wind-Waker-60FPS-Hack
14
40066
#To be inserted at 800f57fc ##################################### ##FPSHack_TEST_HalfSomeItemValueIDK## ##################################### lfs f1, -0x5E54 (rtoc) #Vanilla lis r17, 0x817F lfs f17, 0x0004 (r17) fmuls f1, f1, f17
src/drawCode/dc_w3s2.asm
Gip-Gip/VePseu
5
40067
; The third wall and it's second shadow ; See GLOSSARY.TXT for definitions of vague words dc_w3s2_delayed: DELAY 2 dc_w3s2: SUBROUTINE LDX #PIXH .loop: LDA wallColour STA WSYNC .joinIn: STA COLUPF LDA wall3a STA PF1 TYA BEQ .noSprite_1 .branchPoint_1: D...
oeis/023/A023721.asm
neoneye/loda-programs
11
40068
; A023721: Numbers with no 0's in their base-5 expansion. ; Submitted by <NAME>(w1) ; 1,2,3,4,6,7,8,9,11,12,13,14,16,17,18,19,21,22,23,24,31,32,33,34,36,37,38,39,41,42,43,44,46,47,48,49,56,57,58,59,61,62,63,64,66,67,68,69,71,72,73,74,81,82,83,84,86,87,88,89,91,92,93,94,96,97,98,99,106,107,108,109,111,112,113,114,116,11...
firstass.asm
Mohamed-94/Group-of-Assembly-Programs-Samples--8086-85-Processors-family-
16
40069
<reponame>Mohamed-94/Group-of-Assembly-Programs-Samples--8086-85-Processors-family- TITLE FIRST ECHO PROGRAM .MODEL SMALL .STACK 100H MAIN PROC MOV AH,2 MOV DL,??? INT 21H MOV AH,01 INT 21H MOV BL,AL MOV AH,02 MOV DL,0DH INT 21H MOV DL,0AH INT 21H MOV DL,BL INT 21H MOV AH,4CH INT 21H MAIN ENDP EN...
Appl/GeoDex/Misc/miscTitle.asm
steakknife/pcgeos
504
40070
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: GeoDex MODULE: Misc FILE: miscTitle.asm AUTHOR: <NAME>, Dec 3, 1990 ROUTINES: Name Description ---- ----------- TitledGlyphSpecBuild Intercept SpecBui...
libsrc/_DEVELOPMENT/arch/zx/display/z80/asm_zx_bitmask2px.asm
teknoplop/z88dk
0
40071
; =============================================================== ; Jun 2007 ; =============================================================== ; ; uint zx_bitmask2px(uchar bitmask) ; ; Return x coordinate 0-7 corresponding to bitmask. ; ; =============================================================== SECTION code_cl...
memalgn.asm
adrianna157/CS444-Lab5-Mutexes
0
40072
<filename>memalgn.asm _memalgn: file format elf32-i386 Disassembly of section .text: 00000000 <main>: # define PGSIZE 4096 #endif // PGSIZE int main(int argc, char **argv) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 56 push %esi 4: 53 ...
programs/oeis/060/A060462.asm
karttu/loda
1
40073
<filename>programs/oeis/060/A060462.asm ; A060462: Integers k such that k! is divisible by k*(k+1)/2. ; 1,3,5,7,8,9,11,13,14,15,17,19,20,21,23,24,25,26,27,29,31,32,33,34,35,37,38,39,41,43,44,45,47,48,49,50,51,53,54,55,56,57,59,61,62,63,64,65,67,68,69,71,73,74,75,76,77,79,80,81,83,84,85,86,87,89,90,91,92,93,94,95,97,98,...
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca_notsx.log_21829_1013.asm
ljhsiun2/medusa
9
40074
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x1b3b0, %r14 nop nop add $21955, %r15 movl $0x61626364, (%r14) nop nop sub $54236, %rsi lea addresses_WT_ht+0xaa50, %rsi lea addresses_UC_ht+0x16ea0, %rdi nop nop nop nop nop and %rbp, ...
benchmark/benchmark-zx0.sms.asm
maxim-zhao/bmp2tilecompressors
12
40075
; { "technology": "ZX0", "extension": "zx0" } .memorymap defaultslot 0 slotsize $4000 slot 0 $0000 .endme .rombankmap bankstotal 1 banksize $4000 banks 1 .endro .bank 0 slot 0 .org 0 ld hl,data ld de,$4000 call dzx0_standard ret ; ends the test .define ZX0ToVRAM .block "decompressor" .include "../decompressor...
coverage/IN_CTS/0489-COVERAGE-nir-opt-loop-unroll-83/reduction_output/1/reduction_work/variant/shader_reduced_0003/variant/1_spirv_asm/shader_reduced_0003.frag.asm
asuonpaa/ShaderTests
0
40076
; SPIR-V ; Version: 1.0 ; Generator: Khronos Glslang Reference Front End; 10 ; Bound: 199 ; Schema: 0 OpCapability Shader %1 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %4 "main" %114 %180 OpExecutionMode %4 O...
cmd/command/minicmd/romhead.asm
minblock/msdos
0
40077
<reponame>minblock/msdos page ,132 title ROM COMMAND Resident ROM Header comment %------------------------------------------------------------------ This module provides a standard ROM header for ROM COMMAND as described in the IBM System BIOS technical reference. MS-DOS ROM $Exec header is also supplied for ...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2529.asm
ljhsiun2/medusa
9
40078
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r15 push %r8 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x1021c, %rsi lea addresses_A_ht+0xc31c, %rdi nop nop nop nop cmp $65159, %r15 mov $99, %rcx rep movsb nop nop nop and %r8, %r8 lea addresses_WC_ht+0x1672e, %rsi lea addresses_A...
programs/oeis/252/A252749.asm
neoneye/loda
22
40079
<filename>programs/oeis/252/A252749.asm ; A252749: Partial sums of A252748: a(0) = 0, a(n) = A252748(n) + a(n-1). ; 0,-1,-2,-3,-2,-5,-2,-5,6,13,14,5,26,17,22,27,76,61,100,85,108,121,116,99,186,185,184,255,298,271,316,291,470,469,458,465,618,585,578,585,694,655,736,697,726,811,806,765,1074,1097,1144,1137,1186,1139,1406,...
programs/oeis/217/A217776.asm
karttu/loda
0
40080
<filename>programs/oeis/217/A217776.asm<gh_stars>0 ; A217776: a(n) = n*(n+1) + (n+2)*(n+3) + (n+4)*(n+5) + (n+6)*(n+7). ; 68,100,140,188,244,308,380,460,548,644,748,860,980,1108,1244,1388,1540,1700,1868,2044,2228,2420,2620,2828,3044,3268,3500,3740,3988,4244,4508,4780,5060,5348,5644,5948,6260,6580,6908,7244,7588,7940,83...
tests/lorenz/common/print.asm
rheit/yam6502
0
40081
<reponame>rheit/yam6502 ; this file is part of the C64 Emulator Test Suite. public domain, no copyright ;print text which immediately follows ;the JSR and return to address after 0 ; return addr on stack == ptr to string print .block pla sta print0+1 pla ...
libsrc/_DEVELOPMENT/stdio/z80/asm_vfprintf_unlocked_int.asm
meesokim/z88dk
0
40083
<filename>libsrc/_DEVELOPMENT/stdio/z80/asm_vfprintf_unlocked_int.asm ; =============================================================== ; Jan 2014 ; =============================================================== ; ; int vfprintf_unlocked(FILE *stream, const char *format, void *arg) ; ; See C11 specification. ; ; ===...
libsrc/_DEVELOPMENT/font/font_4x8/_font_4x8_64_nbot.asm
jpoikela/z88dk
640
40085
; ; Font extracted from 64-4.tap ; ; Tap file downloaded from: http://mdfs.net/Software/Spectrum/Coding/Printout/ SECTION rodata_font SECTION rodata_font_4x8 PUBLIC _font_4x8_64_nbot PUBLIC _font_4x8_64_nbot_end _font_4x8_64_nbot: BINARY "font_4x8_64_nbot.bin" _font_4x8_64_nbot_end:
oeis/187/A187949.asm
neoneye/loda-programs
11
40086
<reponame>neoneye/loda-programs ; A187949: Positions of 0 in A187948; complement of A187953. ; Submitted by <NAME>(s1) ; 2,5,10,13,15,18,23,26,31,34,36,39,44,47,49,52,57,60,65,68,70,73,78,81,86,89,91,94,99,102,104,107,112,115,120,123,125,128,133,136,138,141,146,149,154,157,159,162,167,170,175,178,180,183,188,191,193,19...
examples/asm-64/avx_int.asm
patrickf2000/upl
0
40087
.intel_syntax noprefix .data STR_1: .string "Add:" STR_2: .string "Mul:" .bss .text .extern puts .extern printf .extern exit .extern fflush .extern input_int .extern print_int .global main main: push rbp mov rbp, rsp sub rsp, 196 mov DWORD PTR [rbp-36], 1 mov DWORD PTR [rbp-32], 2 mov DWORD PTR [rbp...
libsrc/stdio_new/fd/pollfd.asm
andydansby/z88dk-mk2
1
40088
<filename>libsrc/stdio_new/fd/pollfd.asm ; CALLER linkage for function pointers XLIB pollfd LIB pollfd_callee XREF ASMDISP_POLLFD_CALLEE .pollfd pop de pop bc pop hl push hl push bc push de jp pollfd_callee + ASMDISP_POLLFD_CALLEE
test.asm
heztet/cpu12-sublime
0
40089
<reponame>heztet/cpu12-sublime ; this is a line comment org $0800 main: ldd ops ldx ops + 2 idiv stx quot std remain stop ; breakpoint here ops rmb 4 quot rmb 2 remain rmb 2
bddisasm_test/avx512/avx512cd_64.asm
andreaswimmer/bddisasm
1
40090
<reponame>andreaswimmer/bddisasm bits 64 vpbroadcastmb2q xmm2, k1 vpbroadcastmb2q ymm16, k1 vpbroadcastmb2q zmm24, k1 vpbroadcastmw2d xmm2, k1 vpbroadcastmw2d ymm16, k1 vpbroadcastmw2d zmm24, k1 vpconflictd xmm2, xmm0 vpconflictd xmm2, [rbx] vpconflictd xmm2, [rbx]{1to4} ...
Assembly/Heap/HeapManager_Data.asm
detlefgrohs/C256-Foenix-FMX
0
40091
<filename>Assembly/Heap/HeapManager_Data.asm ZeroPage .block ;.section ZeroPage HeaderPointer = $a0 ;.long ? BlockPointer = $a3 ;.long ? RequestedSize = $a6 ;.word ? ;;.send .bend Header .struct Start .long ? End .long ? TotalSize ...
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_1_990.asm
ljhsiun2/medusa
9
40092
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1c6d4, %r8 nop nop cmp $43636, %r13 movb (%r8), %r11b nop nop add %r15, %r15 lea addresses_A_ht+0x1732c, %rsi nop nop nop and $53248, %rcx mov (%rsi), %rdi nop add $5916, %rs...
oeis/008/A008421.asm
neoneye/loda-programs
11
40094
; A008421: Crystal ball sequence for 10-dimensional cubic lattice. ; Submitted by <NAME> ; 1,21,221,1561,8361,36365,134245,433905,1256465,3317445,8097453,18474633,39753273,81270333,158819253,298199265,540279585,948062325,1616336765,2684641785,4354393801,6911195501,10753517061,16429137361,24680949041,36503969061,5321565...
programs/oeis/285/A285982.asm
neoneye/loda
22
40096
<filename>programs/oeis/285/A285982.asm ; A285982: a(n) = n! (mod n + 3). ; 1,1,2,0,3,0,0,0,5,0,6,0,0,0,8,0,9,0,0,0,11,0,0,0,0,0,14,0,15,0,0,0,0,0,18,0,0,0,20,0,21,0,0,0,23,0,0,0,0,0,26,0,0,0,0,0,29,0,30,0,0,0,0,0,33,0,0,0,35,0,36,0,0,0,0,0,39,0,0,0,41,0,0,0,0,0,44,0,0,0,0,0,0,0,48,0,0,0,50,0 lpb $0 pow $0,3 div $...
bin/JWASM/Samples/Win32_5.asm
Abd-Beltaji/ASMEMU
3
40097
<filename>bin/JWASM/Samples/Win32_5.asm ;--- Win32 "hello world" console application. ;--- Uses JWasm's bin output format, so no linker needed. ;--- assemble: JWasm -bin -Fo Win32_5.exe Win32_5.ASM .386 option casemap:none .nolist include winnt.inc ;include PE image definitions .list STD_OUTPU...
programs/oeis/121/A121241.asm
karttu/loda
1
40098
; A121241: Change 0 to -1 in A090678. ; 1,1,1,-1,-1,1,-1,1,-1,1,1,-1,1,-1,-1,1,-1,1,1,-1,-1,1,-1,1,1,-1,1,-1,1,-1,-1,1,-1,1,1,-1,-1,1,-1,1,-1,1,1,-1,1,-1,-1,1,1,-1,1,-1,-1,1,-1,1,1,-1,1,-1,1,-1,-1,1,-1,1,1,-1,-1,1,-1,1,-1,1,1,-1,1,-1,-1,1,-1,1,1,-1,-1,1,-1,1,1,-1,1,-1,1,-1,-1,1,1,-1,1,-1,-1,1,-1 bin $0,2 cal $0,38189 ...
programs/oeis/061/A061213.asm
neoneye/loda
22
40099
<reponame>neoneye/loda ; A061213: a(n) = product of first n triangular numbers (A000217) + 1. ; 2,4,19,181,2701,56701,1587601,57153601,2571912001,141455160001,9336040560001,728211163680001,66267215894880001,6958057668962400001,834966920275488000001,113555501157466368000001,17373991677092354304000001,2970952576782792585...
libsrc/_DEVELOPMENT/target/yaz180/driver/time/c/sdcc/clock_getres.asm
Frodevan/z88dk
640
40100
<reponame>Frodevan/z88dk SECTION code_driver PUBLIC _clock_getres EXTERN asm_clock_getres ; get the the system time resolution _clock_getres: pop af inc sp ; ignore the enum clock_id pop hl push hl dec sp push af jp asm_clock_getres
src/vector.asm
mdsteele/nesfxr
1
40101
.INCLUDE "apu.inc" .INCLUDE "oam.inc" .INCLUDE "ppu.inc" .IMPORT Func_OamClear, Main, Ram_ShadowOam_oama_arr64 ;;;=========================================================================;;; .ZEROPAGE ;;; NmiReady: Set this to 1 to signal that Ram_ShadowOam_oama_arr64 is ready ;;; to be consumed by the NMI handler....
Working Disassembly/Levels/HCZ/Misc Object Data/Map - Block.asm
TeamASM-Blur/Sonic-3-Blue-Balls-Edition
5
40102
Map_21D04A: dc.w Frame_21D052-Map_21D04A ; ... dc.w Frame_21D05A-Map_21D04A dc.w Frame_21D068-Map_21D04A dc.w Frame_21D07C-Map_21D04A Frame_21D052: dc.w 1 dc.b $F0, $F, 0, 0,$FF,$F0 Frame_21D05A: dc.w 2 dc.b $F0, $F, 0, 0,$FF,$E0 dc.b $F0, $F, 0, 0, 0, 0 Frame_21D068: dc.w 3 dc.b $F0, $F, 0, 0,$...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2948.asm
ljhsiun2/medusa
9
40103
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_A_ht+0x1c628, %r13 nop nop nop nop cmp %rsi, %rsi movb (%r13), %r9b nop nop nop add $34170, %rsi lea addresses_UC_ht+0x102a8, %rsi lea addresses_WT_ht+0x296c, %rdi clflush (%rsi) nop nop sub %r...
libsrc/_DEVELOPMENT/stdio/c/sdcc_ix/fseek_callee.asm
jpoikela/z88dk
640
40104
; int fseek_callee(FILE *stream, long offset, int whence) INCLUDE "config_private.inc" SECTION code_clib SECTION code_stdio ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IF __CLIB_OPT_MULTITHREAD & $02 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PUBLIC _fseek_callee, l0_fseek_callee EXTERN asm_fseek _fseek_callee: pop af exx po...
examples/mix-c-asm/sources/mynum-arm.asm
JohnHau/cmake-tutorial
14
40105
#define SHT_PROGBITS 0x1 PUBLIC mynum SECTION `.text`:CODE:NOROOT(1) THUMB mynum: MOVS R0,#+0x2A BX LR ;; return SECTION `.iar_vfe_header`:DATA:NOALLOC:NOROOT(2) SECTION_TYPE SHT_PROGBITS, 0 DATA DC32 0 ...
mipsevm/test/lwl.asm
koredefashokun/cannon
211
40106
############################################################################### # File : lwl.asm # Project : MIPS32 MUX # Author: : <NAME> (<EMAIL>) # # Standards/Formatting: # MIPS gas, soft tab, 80 column # # Description: # Test the functionality of the 'lwl' instruction. # #####################...
libsrc/z80_crt0s/z80/sccz80/l_long_mult.asm
Frodevan/z88dk
4
40107
; ; Small C+ Long Library Functions ; ; Multiply 32 bit numbers ; ; Entry: dehl=arg1 ; Stack: return address, arg2 ; ; Exit: dehl=result SECTION code_crt0_sccz80 PUBLIC l_long_mult EXTERN l_mulu_32_32x32 .l_long_mult ; dehl = arg1 ; stack = arg2, ret ...
oeis/199/A199563.asm
neoneye/loda-programs
11
40108
<gh_stars>10-100 ; A199563: 5*9^n+1. ; 6,46,406,3646,32806,295246,2657206,23914846,215233606,1937102446,17433922006,156905298046,1412147682406,12709329141646,114383962274806,1029455660473246,9265100944259206,83385908498332846,750473176484995606,6754258588364960446,60788327295284644006,547094945657561796046,492385451091...
programs/oeis/122/A122878.asm
jmorken/loda
1
40109
<filename>programs/oeis/122/A122878.asm<gh_stars>1-10 ; A122878: Periodic sequence of period 21 related to a simple scheduling problem. ; 12,12,12,12,13,13,13,23,23,23,23,12,12,12,13,13,13,13,23,23,23,12,12,12,12,13,13,13,23,23,23,23,12,12,12,13,13,13,13,23,23,23,12,12,12,12,13,13,13,23,23,23,23,12,12,12,13,13,13,13,23...
libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_setTile.asm
grancier/z180
0
40111
<gh_stars>0 ; ---------------------------------------------------------------- ; Z88DK INTERFACE LIBRARY FOR THE BIFROST*2 ENGINE ; ; See "bifrost2.h" for further details ; ---------------------------------------------------------------- ; void BIFROST2_setTile(unsigned int px,unsigned int py,unsigned int tile) SECTI...
non_regression/other_x86_linux_41.o.asm
LRGH/plasmasm
1
40112
<filename>non_regression/other_x86_linux_41.o.asm .file "(extract)dircolors.c" .text .local dc_parse_stream .type dc_parse_stream, @function dc_parse_stream: cmpl $.LC0000003F, %esi ret .size dc_parse_stream, .-dc_parse_stream # ---------------------- .section .rodata .align 32 .local long_o...
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_894_1381.asm
ljhsiun2/medusa
9
40113
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x9a71, %rsi lea addresses_normal_ht+0x90f1, %rdi nop nop nop nop dec %r13 mov $22, %rcx rep movsb nop and $49991, %r9 lea addresses_WC_ht+0x1e0bd, %rbp nop nop ...
libsrc/_DEVELOPMENT/arch/zx/bifrost_h/c/sccz80/BIFROSTH_resetTileImages.asm
teknoplop/z88dk
0
40114
; ---------------------------------------------------------------- ; Z88DK INTERFACE LIBRARY FOR THE BIFROST* ENGINE - RELEASE 1.2/L ; ; See "bifrost_h.h" for further details ; ---------------------------------------------------------------- ; void BIFROSTH_resetTileImages(void *addr) SECTION code_clib SECTION code_b...
programs/oeis/009/A009945.asm
neoneye/loda
22
40115
; A009945: Coordination sequence for NiAs(2), As position. ; 1,6,18,42,74,114,162,222,290,366,450,546,650,762,882,1014,1154,1302,1458,1626,1802,1986,2178,2382,2594,2814,3042,3282,3530,3786,4050,4326,4610,4902,5202,5514,5834,6162,6498,6846,7202,7566,7938,8322,8714,9114,9522,9942,10370,10806,11250,11706,12170,12642,13122...
P6/data_P6_2/MDTest68.asm
alxzzhou/BUAA_CO_2020
1
40117
<filename>P6/data_P6_2/MDTest68.asm ori $ra,$ra,0xf srav $5,$2,$5 lb $4,15($0) mult $4,$6 ori $4,$5,24944 addu $4,$2,$4 mflo $4 addiu $4,$4,21373 addiu $6,$1,19960 addiu $6,$4,18023 sll $3,$3,21 div $5,$ra mfhi $6 mtlo $5 mfhi $3 mult $2,$2 mult $4,$4 multu $6,$0 lui $4,23540 addu $6,$2,$1 multu $4,$6 lui $4,50339 mtlo...
Source/FUN3.asm
AAKMakes/ASM-projects
0
40118
; ; Comment ; ; === STACK SEGMENT === MyStack segment stack DB 64 dup('12345678') MyStack endS ; === DATA SEGMENT === MyData segment ; --- Declare your variables here --- MyData endS MyCode segment Assume CS:Mycode,DS:MyData ;Includes go here ;End of includes Main PROC Start: MOV AX, MYDATA MOV DS...
oeis/194/A194146.asm
neoneye/loda-programs
11
40120
; A194146: Beatty sequence for (4+sqrt(6))/2; complement of A194145. ; Submitted by <NAME>(s2) ; 3,6,9,12,16,19,22,25,29,32,35,38,41,45,48,51,54,58,61,64,67,70,74,77,80,83,87,90,93,96,99,103,106,109,112,116,119,122,125,128,132,135,138,141,145,148,151,154,158,161,164,167,170,174,177,180,183,187,190,193,196,199,203,206,2...
src/animate.asm
ZornsLemma/blinkenlights
0
40121
<reponame>ZornsLemma/blinkenlights<filename>src/animate.asm { ; open file scope ; Debug options show_missed_vsync_1 = FALSE show_missed_vsync_2 = FALSE show_rows = FALSE assert not(show_missed_vsync_1 and show_rows) slow_palette = TRUE ; check_carry makes the code a little bit bigger as well as slower, and if ; the ru...
tests/reg_call5.asm
notaz/ia32rtools
55
40122
; special case of callee sharing the stack frame _text segment para public 'CODE' use32 sub_test proc near var_8 = dword ptr -8 push ebp mov ebp, esp sub esp, 8 mov [ebp+var_8], 1 call ebpcal...
tests/_a_02/_a_02.asm
RL-Bin/RLBin
0
40124
<filename>tests/_a_02/_a_02.asm global _start extern _GetStdHandle@4 extern _WriteConsoleA@20 extern _ExitProcess@4 section .data str: db 'path 1',0x0D,0x0A strLen: equ $-str str2: db 'path 2',0x0D,0x0A strLen2: equ $-str section .bss numCharsWritten: resd 1 se...
text/maps/route_21.asm
adhi-thirumala/EvoYellow
16
40125
<reponame>adhi-thirumala/EvoYellow _Route21BattleText1:: text "You want to know" line "if the fish are" cont "biting?" done _Route21EndBattleText1:: text "Dang!" prompt _Route21AfterBattleText1:: text "I can't catch" line "anything good!" done _Route21BattleText2:: text "I got a big haul!" line "Wanna go ...
programs/oeis/330/A330179.asm
neoneye/loda
22
40126
; A330179: a(n) = n + floor(ns/r) + floor(nt/r), where r = e - 1, s = e, t = e + 1. ; 4,9,13,18,22,27,33,37,42,46,51,55,61,66,70,75,79,84,90,94,99,103,108,112,118,123,127,132,136,141,147,151,156,160,165,169,175,180,184,189,193,198,204,208,213,217,222,226,232,237,241,246,250,255,261,265 mov $4,$0 mov $7,$0 mod $0,6 mov...
programs/oeis/076/A076369.asm
jmorken/loda
1
40128
<reponame>jmorken/loda<gh_stars>1-10 ; A076369: n + mu(n), where mu is the Moebius-function (A008683). ; 2,1,2,4,4,7,6,8,9,11,10,12,12,15,16,16,16,18,18,20,22,23,22,24,25,27,27,28,28,29,30,32,34,35,36,36,36,39,40,40,40,41,42,44,45,47,46,48,49,50,52,52,52,54,56,56,58,59,58,60,60,63,63,64,66,65,66,68,70,69,70,72 mov $1,...
release/src/router/gmp/source/mpn/alpha/copyd.asm
zhoutao0712/rtn11pb1
184
40130
<reponame>zhoutao0712/rtn11pb1<gh_stars>100-1000 dnl Alpha mpn_copyd -- copy, decrementing. dnl Copyright 2002, 2003 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 modify dnl it under the terms of the GNU Lesser...
firmware/kernal/commandline.asm
QuorumComp/hc800
2
40131
<reponame>QuorumComp/hc800<gh_stars>1-10 INCLUDE "lowlevel/hc800.i" INCLUDE "lowlevel/rc800.i" INCLUDE "lowlevel/uart.i" INCLUDE "stdlib/string.i" INCLUDE "stdlib/stream.i" INCLUDE "filesystems.i" INCLUDE "mmu.i" INCLUDE "uart_commands.i" INCLUDE "video.i" HUNK_MMU EQU 0 HUNK_END EQU 1 HUNK_DATA EQ...
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xca_notsx.log_34_1497.asm
ljhsiun2/medusa
9
40132
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r15 push %rbx push %rsi lea addresses_WT_ht+0x1b80a, %r10 nop nop nop nop xor $24483, %r11 movw $0x6162, (%r10) nop inc %r15 lea addresses_D_ht+0x83c6, %r11 nop nop nop nop nop lfence mov $0x6162636465666768, %r10 movq %r10...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_1695_1357.asm
ljhsiun2/medusa
9
40134
<filename>Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_1695_1357.asm .global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %r9 push %rax push %rdi push %rsi lea addresses_WC_ht+0xd50a, %rax sub %rsi, %rsi movups (%rax), %xmm2 vpextrq $1, %xmm2, %r13 nop cmp $45088, %r15 lea add...
EndScreen.asm
RichardTND/ShockRaid
0
40135
<filename>EndScreen.asm ;Shockraid end screen ;Kill all interrupts and draw end screen. EndScreen sei lda #$35 sta $01 ldx #$48 ldy #$ff stx $fffe sty $ffff lda #$81 sta $dc0d sta $dd0d lda #$00 st...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_764.asm
ljhsiun2/medusa
9
40136
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r11 push %r15 push %r9 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x372a, %rsi lea addresses_WT_ht+0x163ca, %rdi nop add %r9, %r9 mov $113, %rcx rep movsw nop nop nop nop nop cmp %r15, %r15 lea addresses_D_ht+0x7fea,...
data/pokemon/base_stats/weedle.asm
AtmaBuster/pokeplat-gen2
6
40137
<filename>data/pokemon/base_stats/weedle.asm db 0 ; species ID placeholder db 40, 35, 30, 50, 20, 20 ; hp atk def spd sat sdf db BUG, POISON ; type db 255 ; catch rate db 52 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F50 ; gender ratio db 15 ; step cycles to hatch INCBIN "gfx/pokemon/weed...
programs/oeis/130/A130322.asm
neoneye/loda
22
40138
<filename>programs/oeis/130/A130322.asm ; A130322: A130321^2. ; 1,4,1,12,4,1,32,12,4,1,80,32,12,4,1,192,80,32,12,4,1,448,192,80,32,12,4,1,1024,448,192,80,32,12,4,1,2304,1024,448,192,80,32,12,4,1 seq $0,25676 ; Exponent of 8 (value of i) in n-th number of form 8^i*9^j. mov $2,$0 add $2,1 lpb $0 sub $0,1 mul $2,2 lp...
Web/asm/examples/Hello World (LCD).asm
visrealm/vrcpu
102
40139
<reponame>visrealm/vrcpu DISPLAY_MODE = LCD_CMD_DISPLAY | LCD_CMD_DISPLAY_ON | LCD_CMD_DISPLAY_CURSOR | LCD_CMD_DISPLAY_CURSOR_BLINK lcc #LCD_INITIALIZE lcc #DISPLAY_MODE .start: clra lcc #LCD_CMD_CLEAR data Ra, .hello call .printStr jmz .printStr: mov Rc, Ra .nextChar: lod Ra, Rc tst Ra jz...
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0_notsx.log_21829_1697.asm
ljhsiun2/medusa
9
40140
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r15 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x14db, %rsi lea addresses_D_ht+0x1106f, %rdi clflush (%rsi) nop nop add $53294, %rbp mov $62, %rcx rep movsb and %rax, %rax lea addresses_D_ht+0x1bcf1, %r15 xor $10776, %r10 m...
PC_8086/sb_io.asm
ford442/HxCModPlayer
67
40141
<gh_stars>10-100 ;/////////////////////////////////////////////////////////////////////////////////// ;//-------------------------------------------------------------------------------// ;//-------------------------------------------------------------------------------// ;//-----------H----H--X----X-----CCCCC----222...
src/test/ref/inline-kasm-loop.asm
jbrandwood/kickc
2
40143
<reponame>jbrandwood/kickc // Example of inline kickasm in a function // Commodore 64 PRG executable file .file [name="inline-kasm-loop.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code [start=$80d] .segmentdef Data [startAfter="C...
src/sys/rnd.asm
blambi/floppybird
354
40145
<filename>src/sys/rnd.asm %define MAX_SHORT 65535 ; ================================= ; PROTOTYPE : void randomize(void) ; INPUT : n/a ; RETURN : n/a ; ================================= randomize: pusha call ticks mov [seed], dx ; tickcount as seed popa ret ; ================================ ; PROTOTYPE : void...
libsrc/_DEVELOPMENT/arch/ts2068/misc/c/sdcc_iy/tshc_cls_wc_attr_callee.asm
jpoikela/z88dk
640
40146
<gh_stars>100-1000 ; void tshc_cls_wc_attr(struct r_Rect8 *r, uchar attr) SECTION code_clib SECTION code_arch PUBLIC _tshc_cls_wc_attr_callee EXTERN asm_tshc_cls_wc_attr _tshc_cls_wc_attr_callee: pop hl pop ix dec sp ex (sp),hl ld l,h jp asm_tshc_cls_wc_attr
smsq/uq/date.asm
olifink/smsqe
0
40147
; Date Conversions, QL compatible  1990 <NAME> section uq xdef uq_ldate xdef uq_ldowk xdef uq_datel xref cv_calst xref cv_dnymd xref cv_ymddn include 'dev8_keys_qdos_sms' include 'dev8_keys_msgc' ql.zdate equ $7fffb7e9 ;+++ ; Push QL format date (20 character string) onto stack (a1,a6) ; ; d1 c ...
libsrc/sdcard/sd_load.asm
meesokim/z88dk
0
40148
; ; SD Card driver ; by <NAME>, 2012 ; portions of the code are by <NAME> and <NAME> ; ; int sd_load(slot, struct SD_INFO sd_descriptor) ; result: 0-OK, ; ; $Id: sd_load.asm,v 1.8 2015/01/19 01:33:07 pauloscustodio Exp $ ; ;----------------------------------------------------------------------------------------- ; ...
oeis/142/A142236.asm
neoneye/loda-programs
11
40149
<gh_stars>10-100 ; A142236: Primes congruent to 39 mod 41. ; Submitted by <NAME>(w3) ; 367,449,613,859,941,1187,1433,1597,2089,2417,2663,2909,3319,4057,4139,4549,4877,5779,5861,6271,6353,6599,6763,7583,7829,7993,8731,9059,9551,10289,10453,10781,11027,11273,11437,11519,12011,12421,12503,13159,13241,13487,14143,14389,147...
programs/oeis/159/A159966.asm
karttu/loda
0
40150
<gh_stars>0 ; A159966: Lodumo_4 of A102370 (sloping binary numbers). ; 0,3,2,1,4,7,6,5,8,11,10,9,12,15,14,13,16,19,18,17,20,23,22,21,24,27,26,25,28,31,30,29,32,35,34,33,36,39,38,37,40,43,42,41,44,47,46,45,48,51,50,49,52,55,54,53,56,59,58,57,60,63,62,61,64,67,66,65,68,71,70,69,72,75,74,73,76,79,78,77,80,83,82,81,84,87,8...
libsrc/_DEVELOPMENT/l/z80/l_jrde.asm
dikdom/z88dk
0
40152
SECTION code_clib SECTION code_l PUBLIC l_jrde ; 8080 relative 16-bit jump ; call with twos complement offset in de ; ; ld de,destination-origin ; call l_jrde ; .origin l_jrde: ex (sp),hl add hl,de ex (sp),hl ret
programs/oeis/184/A184550.asm
neoneye/loda
22
40154
<reponame>neoneye/loda ; A184550: Super-birthdays (falling on the same weekday), version 2 (birth within 1 and 2 years after a February 29). ; 0,6,11,17,28,34,39,45,56,62,67,73,84,90,95,101,112,118,123,129,140,146,151,157,168,174,179,185,196,202,207,213,224,230,235,241,252,258,263,269,280,286,291,297,308,314,319,325,33...
Transynther/x86/_processed/NONE/_ht_zr_un_/i9-9900K_12_0xca.log_21829_765.asm
ljhsiun2/medusa
9
40156
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r15 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x5232, %r13 nop nop nop nop nop xor %r8, %r8 movb $0x61, (%r13) nop nop nop nop add $58300, %r10 lea addresses_normal_ht+0x35ee, %rdx nop no...
Driver/Video/Dumb/Simp2Bit/simp2bitStringTab.asm
steakknife/pcgeos
504
40157
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Geoworks 1996 -- All Rights Reserved PROJECT: PC GEOS MODULE: Simp2Bit video driver FILE: simp2bitStringTab.asm AUTHOR: <NAME>, Oct 7, 1996 ROUTINES: Name Description ---- ----------- REVISION HI...
asm/first/main.asm
LordShion/Thomson-MO-6809-dev
2
40158
<gh_stars>1-10 ; MO5 Test stuff ORG $32000 ; Could be a little lower ? main ; Disable interrupts ORCC #$50 ; Paint screen with 0xAA pattern in FORME LDA #$FF LDX #$1F40 boucle STA ,-X CMPX #0 BNE boucle ; Set the border (also to 0xAA) STA $A7C0 ; COLOR memory to 0xCF LDA #$AD LDX #$1F40 boucle2 ST...
_anim/obj55.asm
vladjester2020/Sonic1TMR
0
40159
; --------------------------------------------------------------------------- ; Animation script - Basaran enemy ; --------------------------------------------------------------------------- dc.w byte_10230-Ani_obj55 dc.w byte_10234-Ani_obj55 dc.w byte_10238-Ani_obj55 byte_10230: dc.b $F, 0, $FF, 0 byte_10...
Assembly/textbox/shop_menu.asm
WildGenie/Ninokuni
14
40160
<gh_stars>10-100 ;;----------------------------------------------------------------------------;; ;; Align the position of the textbox in the shop menu ;; Copyright 2014 <NAME> (aka pleonex) ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with ...
libsrc/_DEVELOPMENT/threads/mutex/c/sccz80/mtx_timedlock.asm
jpoikela/z88dk
640
40161
; int mtx_timedlock(mtx_t *m, struct timespec *ts) SECTION code_clib SECTION code_threads_mutex PUBLIC mtx_timedlock EXTERN asm_mtx_timedlock mtx_timedlock: pop af pop bc pop hl push hl push bc push af jp asm_mtx_timedlock
oeis/142/A142818.asm
neoneye/loda-programs
11
40162
; A142818: Primes congruent to 20 mod 61. ; Submitted by <NAME>(s3) ; 569,691,1301,1423,1667,1789,2399,2521,2887,3253,3863,4229,5449,5693,6547,6791,7523,8011,8377,9109,9719,10939,11549,12037,12281,12647,14843,15331,16063,16673,18503,18869,20089,20333,21187,22651,23017,23627,23993,24359,24481,24847,25457,25579,26189,269...
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_1565.asm
ljhsiun2/medusa
9
40163
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r8 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x91a6, %rcx nop nop nop and %rax, %rax movb (%rcx), %r8b nop nop nop add %rdx, %rdx lea addresses_normal_ht+0x1cf06, %r13 nop nop dec %rdi mov (%r13), %r12d nop nop nop add %r...