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
tests/hello-m68000.asm
AaronTraas/loccount
0
56655
* * Program to repeatedly display "Hello, World!" on the * Motorola 68000 * * Written by <NAME>, Computer Engineering student * at Concordia University, Montreal, Canada. * * <EMAIL> * org $1000 ;Main function: use a jump to this address from debugger... main m...
samples/rand/rand.asm
fossabot/ancient_cpu
17
56656
#{ ~label 'z' 0x05 ~label 'a' 0x06 ~label 'b' 0x07 ~label 'bios' 0x45 ~label 'tick' 0x05 } .dup &(![~z]) &(0x1) .locals init #( [0x0] u32 [0x1] u8 ) ; ... .prune .dup &(![~z]) &(0x1) .locals init #( [0x0] f64, [0x1] u8, [0x2] u8, [0x3] u8, [0x4] u8, [...
Kernel/RTC.asm
foviedoITBA/TPE-Arqui
0
56657
global _get_seconds global _get_minutes global _get_hours section .text _get_seconds: mov eax, 0 out 70h,al in al,71h ret _get_minutes: mov eax, 2 out 70h, al in al, 71h ret _get_hours: mov eax, 4 out 70h, al in al, 71h ret
boot3.asm
shirishbahirat/algorithm
0
56658
ORG 0 BITS 16 _start jmp short start nop times 33 db 0 start: jmp 0x7C0:step2 step2: cli ; clear interrupt mov ax, 0x7C0 mov ds, ax mov es, ax mov ax, 0x00 mov sp, 0x7C00 sti ; Enable interrupt mov si, message call print jmp $ print: mov bx, 0 .loop: lodsb cmp al, 0 je .done call print_char jm...
programs/oeis/176/A176542.asm
neoneye/loda
22
56659
<reponame>neoneye/loda ; A176542: Numbers n such that there are only a finite nonzero number of sets of n consecutive triangular numbers that sum to a square. ; 32,50,98,128,200,242,338,392,512,578,722,800,968,1058,1250,1352,1568,1682,1922,2048,2312,2450,2738,2888,3200,3362,3698,3872,4232,4418,4802,5000,5408,5618,6050,...
Transynther/x86/_processed/NONE/_ht_zr_/i9-9900K_12_0xa0.log_21829_1436.asm
ljhsiun2/medusa
9
56661
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r15 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_normal_ht+0x14814, %rbx nop nop nop xor %r8, %r8 movl $0x61626364, (%rbx) nop nop nop sub $62270, %rdi lea addresses_D_ht+0x8c24, %r10 nop nop sub $3734, %r12 movups (%r10), %xmm4 vp...
dev/emm386/vdminit.asm
minblock/msdos
0
56662
<reponame>minblock/msdos .386p page 58,132 ;****************************************************************************** title VDM_Init - VDM initialization module ;****************************************************************************** ; ; (C) Copyright MICROSOFT Corp. 1986-1991 ; (C) Copyright COMPAQ Co...
programs/oeis/006/A006542.asm
neoneye/loda
22
56663
<filename>programs/oeis/006/A006542.asm ; A006542: a(n) = binomial(n,3)*binomial(n-1,3)/4. ; 1,10,50,175,490,1176,2520,4950,9075,15730,26026,41405,63700,95200,138720,197676,276165,379050,512050,681835,896126,1163800,1495000,1901250,2395575,2992626,3708810,4562425,5573800,6765440,8162176,9791320,11682825,13869450,163869...
libsrc/_DEVELOPMENT/arch/zxn/esxdos/c/sccz80/esx_m_tapeout_close.asm
jpoikela/z88dk
640
56664
; unsigned char esx_m_tapeout_close(void) SECTION code_esxdos PUBLIC esx_m_tapeout_close EXTERN asm_esx_m_tapeout_close defc esx_m_tapeout_close = asm_esx_m_tapeout_close ; SDCC bridge for Classic IF __CLASSIC PUBLIC _esx_m_tapeout_close defc _esx_m_tapeout_close = esx_m_tapeout_close ENDIF
libsrc/printflike/itod.asm
andydansby/z88dk-mk2
1
56666
; itod -- convert nbr to signed decimal string of width sz ; right adjusted, blank filled ; returns str ; ; if sz > 0 terminate with null byte ; if sz = 0 find end of string ; if sz < 0 use last byte for data ; ; Used for printf - compiled hand optimized C ...
Appl/Preferences/PrefMgr/prefmgrMtdHan.asm
steakknife/pcgeos
504
56667
<gh_stars>100-1000 COMMENT @---------------------------------------------------------------------- Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: GEOS MODULE: FILE: prefmgrMtdHan.asm AUTHOR: Cheng, 1/90 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date...
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_5603_18.asm
ljhsiun2/medusa
9
56668
.global s_prepare_buffers s_prepare_buffers: push %r15 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0x1d4a5, %r9 nop cmp $64080, %rbp movl $0x61626364, (%r9) nop nop dec %rbx lea addresses_WT_ht+0xd4e9, %rsi lea addresses_UC_ht+0x5ff1, %rdi clflush (%rdi) nop nop nop lfence mov $38, %rc...
cs61/lab5/lab05_ex2.asm
bmoya217/ucr
0
56669
<reponame>bmoya217/ucr ;================================================= ; Name: <NAME> ; Username: <EMAIL> ; ; Lab: lab 5 ; Lab section: 021 ; TA: <NAME> ; ;================================================= .Orig x3000 ;Instructions LEA R0, PROMPT PUTS JSR GET_INPUT_3200 JSR PRINT_IN_BINARY_3400 HALT ;Local dat...
repoint-cursor-options.asm
Sagiri/mvitem
5
56670
<reponame>Sagiri/mvitem .definelabel free_space, 0x08800000 NUM_FIELD_MOVE_CURSOR_OPTIONS equ 12 NUM_REGULAR_CURSOR_OPTIONS_OLD equ 18 NUM_ADDITIONAL_REGULAR_CURSOR_OPTIONS equ 1 // ----------------------------------------------------------------------------- .definelabel sCursorOptionsOld, readu32("rom.gba", 0x081...
programs/oeis/059/A059539.asm
karttu/loda
0
56671
<reponame>karttu/loda ; A059539: Beatty sequence for 3^(1/3). ; 1,2,4,5,7,8,10,11,12,14,15,17,18,20,21,23,24,25,27,28,30,31,33,34,36,37,38,40,41,43,44,46,47,49,50,51,53,54,56,57,59,60,62,63,64,66,67,69,70,72,73,74,76,77,79,80,82,83,85,86,87,89,90,92,93,95,96,98,99,100,102,103,105,106,108,109,111,112,113,115,116,118,119...
oeis/022/A022525.asm
neoneye/loda-programs
11
56672
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A022525: Nexus numbers (n+1)^9-n^9. ; 1,511,19171,242461,1690981,8124571,30275911,93864121,253202761,612579511,1357947691,2801832661,5444719021,10056547411,17782312591,30276117361,49868399761,79771413871,124328407411,189312302221,282280046581,412989171211,593883443671,8...
src/sound/sleeping_music/channel3.asm
Gegel85/RunnerGB
0
56673
musicChan3SleepingTheme:: setRegisters $80, $00, $00, $AC, $85 stopMusic jump musicChan3SleepingTheme repeat 27 * 4 enableTerminals %00000100 disableTerminals %01000000 setVolume %01000000 wait SEMIQUAVER setVolume %01100000 wait SEMIQUAVER enableTerminals %01000000 disableTerminals %00000100 setVolum...
oeis/040/A040860.asm
neoneye/loda-programs
11
56674
; A040860: Continued fraction for sqrt(890). ; Submitted by <NAME> ; 29,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1,58,1,4,1 gcd $0,262156 mul $0,42 mod $0,13 mov $1,$0 add $0,4 add $1,3...
programs/oeis/187/A187093.asm
karttu/loda
1
56675
<filename>programs/oeis/187/A187093.asm ; A187093: a(0)=0, a(1)=a(2)=1; thereafter, a(n+1) = n^2 - a(n-1). ; 0,1,1,3,8,13,17,23,32,41,49,59,72,85,97,111,128,145,161,179,200,221,241,263,288,313,337,363,392,421,449,479,512,545,577,611,648,685,721,759,800,841,881,923,968,1013,1057,1103,1152,1201,1249,1299,1352,1405,1457 ...
programs/oeis/135/A135908.asm
neoneye/loda
22
56676
; A135908: Clique number of commuting graph of symmetric group S_n. ; 0,0,0,2,3,5,8,11,17,26,35,53,80,107,161,242,323,485,728,971,1457,2186,2915,4373,6560,8747,13121,19682,26243,39365,59048,78731,118097,177146,236195,354293,531440,708587,1062881,1594322,2125763,3188645,4782968,6377291,9565937 seq $0,792 ; a(n) = max{(...
verify/lxp32/src/firmware/test004.asm
roneissu/bonfire-cpu
38
56677
<gh_stars>10-100 /* * This test verifies that nop instruction does not change * register values. */ lc r0, failure nop mov r1, 1 nop mov r2, 2 mov r3, 3 nop mov r4, 4 mov r5, 5 mov r6, 6 nop nop mov r7, 7 mov r8, 8 mov r9, 9 nop mov r10, 10 mov r11, 11 mov r12, 12 mov r13, 13 mov r14, 14 mov r...
src/palettes.asm
Gegel85/RunnerGB
0
56678
<gh_stars>0 bgPal:: incbin "assets/bg.pal" groundPal:: incbin "assets/ground.pal" scoreZonePal:: incbin "assets/scoring_zone.pal" playerPal:: incbin "assets/hero1.pal" moonPal:: incbin "assets/moon.pal" spikePal:: incbin "assets/spike.pal" creditsPal:: incbin "assets/credits.pal" mainMenuPal:: incbin "as...
libsrc/target/micro8085/drv/ee_mem.asm
UnivEngineer/z88dk
4
56679
;------------------------------------------------------------------------- ; Read/write driver for serial eeprom memory for micro8085_cilb ; Functions below assumes support for INTEL 8085 "undocumented" opcodes SECTION code_clib EXTERN eepgsz EXTERN sprxbf EXTERN spirx EXTER...
Library/User/Gen/genTrigger.asm
steakknife/pcgeos
504
56680
<reponame>steakknife/pcgeos COMMENT @----------------------------------------------------------------------- Copyright (c) GeoWorks 1988 -- All Rights Reserved PROJECT: PC GEOS MODULE: UserInterface/Gen FILE: genTrigger.asm ROUTINES: Name Description ---- ----------- GLB GenTriggerClass Trigg...
programs/oeis/051/A051937.asm
karttu/loda
0
56683
<filename>programs/oeis/051/A051937.asm ; A051937: Truncated triangular pyramid numbers: a(n) = Sum_{k=4..n} k*(k+1)/2-9. ; 1,7,19,38,65,101,147,204,273,355,451,562,689,833,995,1176,1377,1599,1843,2110,2401,2717,3059,3428,3825,4251,4707,5194,5713,6265,6851,7472,8129,8823,9555,10326,11137,11989,12883,13820,14801,15827,1...
common/c32.asm
DigitalMars/optlink
28
56684
TITLE SLR-COMPRESSOR Copyright (c) SLR Systems, Inc 1994 INCLUDE MACROS INCLUDE SLR32 INCLUDE SEGMSYMS if fg_winpack INCLUDE SEGMENTS endif PUBLIC COMPRESS .DATA EXTERNDEF HUF_MINI_BUFFER:BYTE EXTERNDEF SLR_PREV_SEG:DWORD,DONT_PACK:DWORD,PUTSTUFF_SMALL:DWORD,PUTSTUFF:DWORD,SLR_FLUSHSTUFF:DWORD ...
experiments/hello-world-st7565/hello.asm
daltonmatos/avrgcc-mixed-with-avrasm2
2
56685
<filename>experiments/hello-world-st7565/hello.asm<gh_stars>1-10 .include "../../Source/m644Pdef.inc" .org 0x0000 ; jmp hello_main ; Reset ; jmp unused ; External Interrupt Request 0 ; jmp unused ; External Interrupt Request 1 ; jmp unused ...
src/libs/cesplib_rars.asm
daullmer/tic-tac-toe
1
56686
.eqv DISPLAY_ADDRESS 0x10040000 .eqv DISPLAY_WIDTH 256 .eqv DISPLAY_HEIGHT 256 .eqv KEYBOARD_ADDDRESS 0xFFFF0000 # GAME SPECIFIC .eqv BORDER_SIZE 5 .eqv CELL_SIZE 82 .eqv CURSOR_SIZE 8
tests/nasm/loopnz.asm
brenden7158/v86
12,700
56687
global _start %include "header.inc" mov ecx, 0x10042 mov eax, 42 start1: dec eax loopz start1 mov ecx, 0x10005 mov ebx, 51 start2: dec ebx db 67h loopz start2 mov ecx, 0x10005 start3: or edx, 1 db 67h loopz start3 %include "footer.inc"
PRACT0/_PROJECT.CB/asm/matrix.asm
so1h/so1
0
56689
.286 ifndef ??version ?debug macro endm publicdll macro name public name endm $comm macro name,dist,size,count comm dist name:BYTE:count*size endm else $comm macro name,dist,size,count comm dist name[size]:BYTE:count endm endif ?debug V 301h ?debug S "..\so1\matrix.c" ?debug C E9B7AE61490F2E2E5C736F315C6D...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1311.asm
ljhsiun2/medusa
9
56691
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r15 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x151fb, %r15 nop nop xor %rdx, %rdx mov (%r15), %di nop nop dec %rbx lea addresses_normal_ht+0x1c613, %rcx nop nop sub $52280, %r11 movw $0x6162, (%rcx) nop nop nop cmp $1871...
libsrc/_DEVELOPMENT/math/float/math16/z80/asm_f16_floor.asm
Frodevan/z88dk
0
56692
<reponame>Frodevan/z88dk SECTION code_fp_math16 EXTERN asm_f24_f16 EXTERN asm_u16_f24 EXTERN asm_f24_u16 EXTERN asm_f24_i16 EXTERN asm_f24_add_callee EXTERN asm_f16_f24 PUBLIC asm_f16_floor ; half f16_floor( half ) __z88dk_fastcall; ; Entry: hl = floating point number .asm_f16_floor call asm_f24_f16 ...
chap18/ex26/g2s_vpermi2d.asm
JamesType/optimization-manual
374
56693
; ; Copyright (C) 2021 by Intel Corporation ; ; Permission to use, copy, modify, and/or distribute this software for any ; purpose with or without fee is hereby granted. ; ; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH ; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHA...
mkdir.asm
farshben/OS
0
56694
_mkdir: file format elf32-i386 Disassembly of section .text: 00000000 <main>: #include "stat.h" #include "user.h" int main(int argc, char *argv[]) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 83 e4 f0 and $0xfffffff0,%esp 6: 83 ec 20 ...
asm/subtitles/originais/0201c39c_eu.asm
Iemnur/megaman-zx-traducao-ptbr
10
56695
<gh_stars>1-10 ; r0 = r4 = r5 ; r1 não é usado ; r2 não é usado ; 0201C39C B510 push r4,r14 0201C39E 1C04 mov r4,r0 0201C3A0 6AE1 ldr r1,[r4,2Ch] 0201C3A2 7848 ldrb r0,[r1,1h] 0201C3A4 2804 cmp r0,4h ; r0 contém o trecho que será executado 0201C3A6 D831 bhi ...
oeis/125/A125047.asm
neoneye/loda-programs
11
56697
<reponame>neoneye/loda-programs<filename>oeis/125/A125047.asm ; A125047: Infinite word generated by mapping 1->12, 2->13, 3->43, 4->42 starting at 1. ; Submitted by <NAME> ; 1,2,1,3,1,2,4,3,1,2,1,3,4,2,4,3,1,2,1,3,1,2,4,3,4,2,1,3,4,2,4,3,1,2,1,3,1,2,4,3,1,2,1,3,4,2,4,3,4,2,1,3,1,2,4,3,4,2,1,3,4,2,4,3,1,2,1,3,1,2,4,3,1,...
oeis/165/A165317.asm
neoneye/loda-programs
11
56698
; A165317: a(n) = the number of digits in the binary representation of n that each do not precede or follow a similarly valued digit. ; Submitted by <NAME> ; 1,2,0,1,3,1,0,1,2,4,2,0,2,1,0,1,2,3,1,3,5,3,2,0,1,3,1,0,2,1,0,1,2,3,1,2,4,2,1,3,4,6,4,2,4,3,2,0,1,2,0,2,4,2,1,0,1,3,1,0,2,1,0,1,2,3,1,2,4,2,1,2,3,5,3,1,3,2,1,3,4,...
libsrc/_DEVELOPMENT/target/yaz180/device/pca9665/pca9665_read_indirect.asm
Frodevan/z88dk
640
56699
INCLUDE "config_private.inc" SECTION code_driver PUBLIC pca9665_read_indirect ;Do a read from the indirect registers ;input BC = device addr | indirect register address (ddd.....:......rr) ;output A = byte read .pca9665_read_indirect ld a,c ;prepare indirect address in A...
oeis/021/A021690.asm
neoneye/loda-programs
11
56700
; A021690: Decimal expansion of 1/686. ; 0,0,1,4,5,7,7,2,5,9,4,7,5,2,1,8,6,5,8,8,9,2,1,2,8,2,7,9,8,8,3,3,8,1,9,2,4,1,9,8,2,5,0,7,2,8,8,6,2,9,7,3,7,6,0,9,3,2,9,4,4,6,0,6,4,1,3,9,9,4,1,6,9,0,9,6,2,0,9,9,1,2,5,3,6,4,4,3,1,4,8,6,8,8,0,4,6,6,4 add $0,1 mov $2,10 pow $2,$0 mov $0,$2 div $0,686 mod $0,10
mcrml.asm
qynvi/laserturret
0
56701
<reponame>qynvi/laserturret NAME MCRML ; local include files $INCLUDE(macro.inc) CGROUP GROUP CODE CODE SEGMENT PUBLIC 'CODE' ASSUME CS:CGROUP, SS:STACK, DS:DATA TESTMACROS: MacroTestInit: MOV AX, STACK ;initialize the stack pointer MOV SS, AX ...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_102.asm
ljhsiun2/medusa
9
56703
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x17ec1, %rax nop nop nop nop nop add $41503, %rdi movb $0x61, (%rax) nop nop xor %rbp, %rbp lea addresses_WT_ht+0x5189, %rsi lea addresses_UC_ht+...
bootdict/tc/source.asm
ikysil/ikforth
8
56705
<gh_stars>1-10 ;****************************************************************************** ; ; source.asm ; IKForth ; ; Unlicense since 1999 by <NAME> ; ;****************************************************************************** ; ;*****************************************************************************...
oeis/280/A280072.asm
neoneye/loda-programs
11
56706
; A280072: Indices of centered 11-gonal numbers (A060544) that are also 11-gonal numbers (A051682). ; Submitted by <NAME> ; 1,11,210,4180,83381,1663431,33185230,662041160,13207637961,263490718051,5256606723050,104868643742940,2092116268135741,41737456718971871,832657018111301670,16611402905507061520,3313954010920299287...
programs/oeis/102/A102853.asm
neoneye/loda
22
56707
<gh_stars>10-100 ; A102853: Number of prime factors (with multiplicity) of number of points on surface of square pyramid. ; 1,1,2,1,3,2,3,1,2,3,2,2,3,1,3,1,4,2,2,3,2,3,2,2,3,1,4,2,3,3,3,2,3,2,3,1,3,2,3,3,5,2,2,2,4,2,4,2,2,3,4,3,2,1,6,2,3,1,4,2,3,4,3,1,3,2,3,1,3,2,2,5,4,2,4,2,3,1,2,4,2,3,4,2,4,2,4,1,2,4,3,2,2,3,4,1,5,1,...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_211.asm
ljhsiun2/medusa
9
56708
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x1ce61, %rsi lea addresses_normal_ht+0xa205, %rdi nop nop nop nop nop inc %r15 mov $19, %rcx rep movsw nop nop cmp %r13, %r13 lea addresses_UC_ht+0x13987, %r8 nop nop nop nop n...
add/clean-run-time-system/amark_prefetch.asm
ErinvanderVeen/C-to-Clean
0
56709
_TEXT ends _DATA segment n_queue_items: dq 0 queue_first: dq 0 queue: dq 0,0,0,0,0,0,0,0 dq 0,0,0,0,0,0,0,0 _DATA ends _TEXT segment pmark: mov rax,qword ptr heap_size_65+0 xor rbx,rbx mov qword ptr n_marked_words+0,rbx shl rax,6 mov qword ptr heap_size_64_65+0,rax mov qword ptr lazy_array_list+0,rbx ...
oeis/240/A240607.asm
neoneye/loda-programs
11
56710
; A240607: a(n) = 2*a(n-2)+a(n-3)+a(n-4) for n>=4, a(n) = binomial(n,3) for n<4. ; Submitted by <NAME> ; 0,0,0,1,0,2,1,5,4,13,14,35,45,97,139,274,420,784,1253,2262,3710,6561,10935,19094,32141,55684,94311,162603,276447,475201,809808,1389452,2371264,4063913,6941788,11888542,20318753,34782785,59467836,101772865,174037210,...
src/string/string_compare/src/string_compare.asm
nikAizuddin/lib80386
4
56711
; 1 2 3 4 5 6 7 ;234567890123456789012345678901234567890123456789012345678901234567890 ;===================================================================== ; ; FUNCTION: string_compare ; FUNCTION PURPOSE: <See doc/description file> ; ; ...
programs/oeis/127/A127713.asm
neoneye/loda
22
56713
<filename>programs/oeis/127/A127713.asm ; A127713: A bisection of the row sums of the inverse of the triangle A(n,k) = 1/F(n+1) if k <= n <= 2k, 0 otherwise. ; 1,2,4,10,23,59,149,387,1000,2607,6799,17770,46457,121542,318044,832427,2178919,5703887,14931949,39090776,102338336,267921095,701419679,1836329673,4807555633,125...
src/test/ref/sinus-basic.asm
jbrandwood/kickc
2
56714
/// @file /// A lightweight library for printing on the C64. /// /// Printing with this library is done by calling print_ function for each element // Commodore 64 PRG executable file .file [name="sinus-basic.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [s...
oddeven.asm
D2epu/asm-x86
0
56715
extern printf extern scanf section .data message db "enter any number: ", 0 fmt_in db "%d", 0 fmt_odd db "you entered odd number", 0 fmt_evn db "you entered even number", 0 section .code global start start: enter 4, 0 push message call printf add esp, 4 lea eax, [ebp - 4] pus...
programs/oeis/214/A214945.asm
karttu/loda
0
56716
<reponame>karttu/loda<filename>programs/oeis/214/A214945.asm<gh_stars>0 ; A214945: Number of squarefree words of length 6 in an (n+1)-ary alphabet. ; 0,42,696,4260,16680,50190,126672,281736,569520,1068210,1886280,3169452,5108376,7947030,11991840,17621520,25297632,35575866,49118040,66704820,89249160,117810462,153609456,...
programs/oeis/161/A161886.asm
neoneye/loda
22
56718
; A161886: Number of nonzero elements in the n X n Redheffer matrix. ; 1,4,7,11,14,19,22,27,31,36,39,46,49,54,59,65,68,75,78,85,90,95,98,107,111,116,121,128,131,140,143,150,155,160,165,175,178,183,188,197,200,209,212,219,226,231,234,245,249,256,261,268,271,280,285,294,299,304 mov $1,2 mul $1,$0 mov $2,$0 seq $2,2541 ;...
templates/draft.asm
RV8V/asm-code
1
56720
.global _start .data hello: .string "hello\n" .text _start: mov $1, %rax mov $1, %rdi mov $hello, %rsi mov $7, %rdx syscall mov $60, %rax mov $0, %rdi syscall
alice2/brads_alice2_archive/asm/string.asm
lkesteloot/alice
63
56721
; ; STRCPY - Copies HL into IX. ; ; Leaves IX at terminating 0. No other ; registers are modified. ; ; ; STRCPY PUSH HL PUSH AF STRCPY_LOOP LD A, (HL) LD (IX), A INC HL INC IX CP 0 JP NZ, STRCPY_LOOP DEC IX POP AF POP HL RET ;----------------------------------------
libtool/src/gmp-6.1.2/mpn/powerpc64/mode64/divrem_1.asm
kroggen/aergo
1,602
56722
<reponame>kroggen/aergo dnl PowerPC-64 mpn_divrem_1 -- Divide an mpn number by an unnormalized limb. dnl Copyright 2003-2005, 2007, 2008, 2010, 2012 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 i...
libsrc/_DEVELOPMENT/adt/w_vector/c/sdcc_ix/w_vector_insert_n_callee.asm
meesokim/z88dk
0
56723
<reponame>meesokim/z88dk ; size_t w_vector_insert_n_callee(w_vector_t *v, size_t idx, size_t n, void *item) SECTION code_adt_w_vector PUBLIC _w_vector_insert_n_callee, l0_w_vector_insert_n_callee _w_vector_insert_n_callee: exx pop bc exx pop hl pop bc pop de pop af l0_w_vector_insert_n_callee...
kernel/data.asm
paulscottrobson/color-forth-old-next
1
56724
; *************************************************************************************** ; *************************************************************************************** ; ; Name : data.asm ; Author : <NAME> (<EMAIL>) ; Date : 7th December 2018 ; Purpose : Data area ; ; *******************************...
asm/todas_funcoes.asm
LSantos06/IA-32
0
56725
<reponame>LSantos06/IA-32 section .data x dw "0x" X_SIZE equ $-x menos db '-' section .text ; Funcoes de inteiro %define FLAG_NEGATIVO BYTE [EBP-1] %define DIGITO BYTE [EBP-2] LerInteiro: ;cria frame de pilha ;Cria 2 espacos pra variavel local enter 2,0 ...
src/drivers/pci.asm
moneytech/BareMetal-kernel
289
56726
; ============================================================================= ; BareMetal -- a 64-bit OS written in Assembly for x86-64 systems ; Copyright (C) 2008-2020 Return Infinity -- see LICENSE.TXT ; ; PCI Functions ; ============================================================================= ; The PCI fun...
oeis/343/A343093.asm
neoneye/loda-programs
11
56728
<filename>oeis/343/A343093.asm ; A343093: Number of rooted toroidal maps with n edges and no isthmuses. ; Submitted by <NAME> ; 1,14,159,1680,17147,171612,1696491,16631840,162090756,1572801142,15210259585,146710561296,1412132981778,13569013500024,130199055578307,1247825314752768,11947157409479180,114288613130155608,109...
test/copy2.asm
auroralimin/montador-assembly-inventado
0
56730
<reponame>auroralimin/montador-assembly-inventado UM: EQU 1 SECTION DATA N1: SPACE N2: CONST -0x10 N3: SPACE N4: SPACE 2 SECTION TEXT ROT: INPUT N1 COPY N1, N4 + UM ;comentario qualquer COPY N2, N3 COPY N3, N4 OUTPUT N4 STOP
oeis/258/A258943.asm
neoneye/loda-programs
11
56732
; A258943: Exponential reversion of Fibonacci numbers A000045. ; Submitted by <NAME> ; 1,-1,1,2,-25,132,-209,-5104,77121,-550000,-1212751,104886144,-1708324409,11026947008,204999609375,-8086017144832,130002259664321,-256459066769664,-50556576336151391,1626772400000000000,-22785408268305809049,-251717732965479463936 mo...
programs/oeis/236/A236216.asm
neoneye/loda
22
56734
; A236216: Sum of the tenth powers of the first n primes. ; 1024,60073,9825698,292300947,26229725548,164088217397,2180082117846,8311148375647,49737659589296,470444892889497,1290073179870298,6098657552288147,19521316862440548,41132799175724797,93731931411554846,268619401777067895,779736155077709296,1493079066740591897,3...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_5_1231.asm
ljhsiun2/medusa
9
56735
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r8 push %rbp push %rbx push %rdi push %rsi // Load lea addresses_WC+0x19d41, %r10 sub $28830, %rbx movntdqa (%r10), %xmm0 vpextrq $1, %xmm0, %rsi nop nop nop inc %rdi // Store lea addresses_WC+0x523f, ...
nine_slice.asm
peckhamdata/cgl-6502
4
56736
nine_slice_x: .byte $00 nine_slice_y: .byte $00 nine_slice_w: .byte $00 nine_slice_h: .byte $00 offset: .byte $00, $00 nine_slice_chars: .byte $4f, $63, $50 .byte $65, $20, $67 .byte $4c, $64, $7a nine_slice_h_tmp: .byte $00 nine_slice_w_tmp: .byte $00 nine_slice_color: .byte $06 nine_slice_plot: tx...
oeis/238/A238256.asm
neoneye/loda-programs
11
56737
<gh_stars>10-100 ; A238256: A060308 begins with one 2, one 3, one 5, two 7's, one 11, two 13's, i.e., d(n) = 1, 1, 1, 2, 1, 2, 1, 2, 3, 1,... times the primes (A000040). a(n) uses this distribution with noncomposites (A008578). ; Submitted by <NAME> ; 1,2,3,5,5,7,11,11,13,17,17,19,19,19,23,29,29,29,31,31,37,41,41,43,43...
programs/oeis/139/A139594.asm
karttu/loda
1
56738
<reponame>karttu/loda ; A139594: Number of different n X n symmetric matrices with nonnegative entries summing to 4. Also number of symmetric oriented graphs with 4 arcs on n points. ; 0,1,9,39,116,275,561,1029,1744,2781,4225,6171,8724,11999,16121,21225,27456,34969,43929,54511,66900,81291,97889,116909,138576,163125,190...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1119.asm
ljhsiun2/medusa
9
56739
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x137f, %rsi clflush (%rsi) nop nop cmp $46799, %rbx mov $0x6162636465666768, %r10 movq %r10, %xmm3 vmovups %ymm3, (%rsi) nop nop nop nop xor %rdx, %rdx lea addresses_WC_ht+0x4...
bootload.asm
adamdjudge/osalpha
0
56740
<filename>bootload.asm ; OS Alpha floppy bootloader ; Copyright (C) 2021 <NAME> ; ; File: bootload.asm ; Last modified: 25 May 2020 ; Description: Loads OS Alpha kernel from disk ; Note: Based heavily on the MikeOS bootloader BITS 16 jmp short start nop ; Disk descriptor table for 1.44 MB 3.5" diskette d...
asm/hello.asm
foxxy777/leros
40
56742
// // A small hello world // // write Leros to the UART // nop // first instruction is not executed start: load 76 store r0 load <send nop jal r1 load 101 store r0 load <send nop jal r1 load 114 store r0 load <send nop jal r1 load 111 store r0 load <send nop jal r1 load 115 store r0 load ...
libtool/src/gmp-6.1.2/mpn/x86_64/bd1/mul_basecase.asm
kroggen/aergo
1,602
56744
dnl AMD64 mpn_mul_basecase optimised for AMD Bulldozer and Piledriver. dnl Contributed to the GNU project by <NAME>. dnl Copyright 2003-2005, 2007, 2008, 2011-2013 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...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_152.asm
ljhsiun2/medusa
9
56745
<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_152.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r12 push %r14 push %r15 push %r8 push %rbx push %rcx push %rsi // Load lea addresses_PSE+0x16662, %rbx nop nop sub %r8, ...
oeis/195/A195619.asm
neoneye/loda-programs
11
56746
<gh_stars>10-100 ; A195619: Denominators a(n) of Pythagorean approximations b(n)/a(n) to 4. ; Submitted by <NAME> ; 16,1040,68640,4529184,298857520,19720067120,1301225572416,85861167712320,5665535843440720,373839504499375184,24667741761115321440,1627697116729111839840,107403341962360266108016,7086992872399048451289200,...
babysteps/old.asm
ilya101010/asm_studies
1
56747
<reponame>ilya101010/asm_studies Use16 org 0x7C00 start: cli ; disabling interrupts mov ax, cs ; segment registers' init mov ds, ax mov es, ax mov ss, ax mov sp, 0x7C00 ; stack backwards => ok mov ...
test/test.Array.eachb.asm
richRemer/atlatl
0
56749
<reponame>richRemer/atlatl global test_case extern Array.eachb extern std.outbln %include "Array.inc" section .text test_case: mov rbx, std.outbln ; function to call lea rax, [test_arr] ; array call Array.eachb ret section .data test_arr_data: dq 0x0102030405060708 test_arr: istruc Arr...
oeis/277/A277391.asm
neoneye/loda-programs
11
56752
<reponame>neoneye/loda-programs ; A277391: a(n) = n!*LaguerreL(n, -2*n). ; Submitted by <NAME> ; 1,3,34,654,17688,616120,26252496,1322624016,76909665664,5069558461824,373529452588800,30422117430022912,2713911389090970624,263171888496899625984,27563036166079327578112,3100736138961250867968000,372888702864658105915244544...
programs/oeis/007/A007526.asm
karttu/loda
1
56753
<filename>programs/oeis/007/A007526.asm ; A007526: a(n) = n(a(n-1) + 1), a(0) = 0. ; 0,1,4,15,64,325,1956,13699,109600,986409,9864100,108505111,1302061344,16926797485,236975164804,3554627472075,56874039553216,966858672404689,17403456103284420 add $0,1 lpb $0,1 add $1,1 mul $1,$2 sub $0,1 add $2,1 lpe
libsrc/_DEVELOPMENT/arch/sms/misc/c/sdcc_ix/sms_tiles_get_area.asm
jpoikela/z88dk
640
56754
; void sms_tiles_get_area(struct r_Rect8 *r, void *dst) SECTION code_clib SECTION code_arch PUBLIC _sms_tiles_get_area EXTERN _sms_tiles_get_area_callee_0 _sms_tiles_get_area: pop af pop bc pop de push de push bc push af jp _sms_tiles_get_area_callee_0
Test/assembly.asm
vuchampion/NASM-x86-
0
56755
extern printf extern scanf global adding_two_integers segment .data prompt db "Enter an integer.", 10, 0 confirm db "Your integer was: %d", 10, 0 greater db "Your integer was greater than 50", 10, 0 lesser db "Your integer was less than 50", 10, 0 integer_format db "%d", 0 segment .bss segment .text adding_two_inte...
Transynther/x86/_processed/NONE/_ht_zr_/i9-9900K_12_0xca.log_21829_496.asm
ljhsiun2/medusa
9
56756
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r15 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x121a7, %r15 clflush (%r15) nop nop nop nop add $10246, %r10 mov $0x6162636465666768, %r12 movq %r12, %xmm6 vmovups %ymm6, (%r15) and %rcx, %rcx...
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xca_notsx.log_21829_617.asm
ljhsiun2/medusa
9
56757
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1819e, %rsi nop nop nop add $55048, %rbx mov $0x6162636465666768, %r13 movq %r13, (%rsi) and $44055, %r11 lea addresses_A_ht+0x1be2a, %r13 nop nop nop nop add $41642, %rdi mov $0x6162...
Practica6/Practica6/main.asm
Pedejeca135/ELECTRONICA-B_UASLP
1
56758
<filename>Practica6/Practica6/main.asm ; ; Practica6.asm ; ; Created: 3/11/2020 6:12:05 PM ; Author : pjco9 ; ; Replace with your application code start: inc r16 rjmp start
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_197.asm
ljhsiun2/medusa
9
56759
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r9 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x14c6, %r11 clflush (%r11) nop nop nop xor $60244, %rdx mov (%r11), %rcx nop nop xor %rcx, %rcx lea addresses_D_ht+0xe5c6, %r12 nop sub $989, %rbx movw...
Transynther/x86/_processed/US/_st_sm_/i7-7700_9_0x48.log_2_2896.asm
ljhsiun2/medusa
9
56760
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %rbp push %rbx push %rdi push %rsi lea addresses_WT_ht+0x7338, %r11 nop nop nop nop nop and %rbp, %rbp movb (%r11), %bl nop nop nop nop nop sub %rdi, %rdi lea addresses_D_ht+0x17010, %rsi nop nop nop nop and $63249, %r10 movb (%rsi), %r13b ...
programs/oeis/099/A099800.asm
neoneye/loda
22
56763
; A099800: Bisection of A002110. ; 2,30,2310,510510,223092870,200560490130,304250263527210,614889782588491410,1922760350154212639070,7858321551080267055879090,40729680599249024150621323470,267064515689275851355624017992790 mul $0,2 add $0,1 seq $0,2110 ; Primorial numbers (first definition): product of first n primes....
programs/oeis/002/A002541.asm
neoneye/loda
22
56764
<filename>programs/oeis/002/A002541.asm ; A002541: a(n) = Sum_{k=1..n-1} floor((n-k)/k). ; 0,1,2,4,5,8,9,12,14,17,18,23,24,27,30,34,35,40,41,46,49,52,53,60,62,65,68,73,74,81,82,87,90,93,96,104,105,108,111,118,119,126,127,132,137,140,141,150,152,157,160,165,166,173,176,183,186,189,190,201,202,205,210,216,219,226,227,232...
_build/dispatcher/jmp_ippsGFpECVerify_ce235615.asm
zyktrcn/ippcp
1
56765
<reponame>zyktrcn/ippcp extern m7_ippsGFpECVerify:function extern n8_ippsGFpECVerify:function extern y8_ippsGFpECVerify:function extern e9_ippsGFpECVerify:function extern l9_ippsGFpECVerify:function extern n0_ippsGFpECVerify:function extern k0_ippsGFpECVerify:function extern ippcpJumpIndexForMergedLibs extern ippcpSafe...
oeis/263/A263529.asm
neoneye/loda-programs
11
56766
; A263529: Binomial transform of double factorial n!! (A006882). ; Submitted by <NAME>(s2) ; 1,2,5,13,37,111,355,1191,4201,15445,59171,234983,966397,4101709,17946783,80754331,373286481,1769440513,8592681907,42689422871,216789872741,1124107246669,5947013363479,32071798826115,176194545585529,985330955637801,5605802379087...
Transynther/x86/_processed/NONE/_zr_xt_/i3-7100_9_0x84_notsx.log_21829_812.asm
ljhsiun2/medusa
9
56767
<filename>Transynther/x86/_processed/NONE/_zr_xt_/i3-7100_9_0x84_notsx.log_21829_812.asm .global s_prepare_buffers s_prepare_buffers: push %r15 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1eeeb, %rbp nop nop sub %r15, %r15 mov $0x6162636465666768, %rsi movq %rsi, (%rbp) nop sub %rbx...
dpadinvert.asm
joshuadhowe/z3randomizer
0
56768
<filename>dpadinvert.asm ;================================================================================ ; D-Pad Invert ; runs in NMI, must use minimum possible # of cycles ;-------------------------------------------------------------------------------- ; Filtered Joypad 1 Register: [BYST | udlr]. !INVERT_DPAD = "$7...
oeis/176/A176733.asm
neoneye/loda-programs
11
56771
; A176733: a(n) = (n+6)*a(n-1) + (n-1)*a(n-2), a(-1)=0, a(0)=1. ; Submitted by <NAME> ; 1,7,57,527,5441,61959,770713,10391023,150869313,2346167879,38896509881,684702346767,12752503850497,250514001320647,5176062576469401,112204510124346479,2546140161382663553,60356495873790805383,1491840283714484609593,38382424018590349...
linux64/lesson08.asm
mashingan/notes-asmtutor
1
56772
<reponame>mashingan/notes-asmtutor ; Don't use rbx (as return address) and r11 (as flags ret) ; because those two not guarantee to intact after syscall ; ref: https://stackoverflow.com/a/50571366 format ELF64 executable 3 entry start include 'procs.inc' segment readable executable start: pop rbx @@: cmp ...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_727.asm
ljhsiun2/medusa
9
56773
<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_727.asm .global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %rax push %rcx push %rdi push %rsi lea addresses_A_ht+0x17a1e, %rsi lea addresses_D_ht+0x77fe, %rdi dec %r14 mov $66, %rcx rep movsb nop add %rax, %rax lea addresse...
oeis/097/A097775.asm
neoneye/loda-programs
11
56774
<filename>oeis/097/A097775.asm ; A097775: Pell equation solutions (14*a(n))^2 - 197*b(n)^2 = -1 with b(n) = A097776(n), n >= 0. ; Submitted by <NAME> ; 1,787,618581,486203879,382155630313,300373839222139,236093455472970941,185569155627915937487,145857120230086453893841,114643510931692324844621539,9010965373518993724141...
P6/data_P6_2/MDTest4.asm
alxzzhou/BUAA_CO_2020
1
56775
ori $ra,$ra,0xf mthi $4 mflo $4 div $0,$ra mfhi $4 lui $4,11058 mflo $1 mflo $5 mtlo $3 ori $4,$5,20720 sb $5,9($0) mult $4,$5 mult $5,$4 lb $6,14($0) mflo $4 srav $5,$2,$5 lb $4,1($0) lb $3,10($0) ori $4,$0,48844 addiu $5,$2,7172 mtlo $5 ori $5,$5,55314 sll $4,$0,24 srav $4,$2,$2 div $6,$ra mult $3,$4 mthi $1 multu $4...
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48.log_21829_2427.asm
ljhsiun2/medusa
9
56777
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_normal_ht+0x16e67, %rdi nop nop nop add %r13, %r13 movw $0x6162, (%rdi) nop nop nop xor %rbp, %rbp lea addresses_D_ht+0x16b1f, %rsi lea addresses_WC_ht+0x16e2e, %rdi clflush (%rsi) nop nop nop mfence mo...
Day-28/shofol_ami.asm
MasumBhai/50-Day-challenge-with-Assembly-Language
1
56778
<filename>Day-28/shofol_ami.asm ; Day-28 Date-19 May,2021 ; problem - print Hollow pyramid using star consists upper and lower but there will be one base line .model small .stack 100h include 'emu8086.inc' .data n_line db 0ah,0dh,"$" multi db 2 rows db ? i db ? j db ? space db ? .code $UpperBlock proc...
Transynther/x86/_processed/P/_zr_/i7-7700_9_0x48.log_350_390.asm
ljhsiun2/medusa
9
56780
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r15 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0x1c98e, %rbp clflush (%rbp) nop nop nop nop xor %r11, %r11 movw $0x6162, (%rbp) nop nop cmp $37344, %r15 lea addresses_D_ht+0x1de4e, %rsi lea addres...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1490.asm
ljhsiun2/medusa
9
56781
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r12 push %r8 push %r9 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x1370e, %r8 nop nop nop nop add $24278, %rdi vmovups (%r8), %ymm4 vextracti128 $1, %ymm4, %xmm4 vpextrq $0, %xmm4, %r12 nop nop nop nop nop and $62297,...