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
libsrc/_DEVELOPMENT/stdio/z80/__stdio_file_add_list.asm
meesokim/z88dk
0
55346
INCLUDE "clib_cfg.asm" SECTION code_stdio PUBLIC __stdio_file_add_list EXTERN __stdio_open_file_list, asm_p_forward_list_push_front __stdio_file_add_list: ; add file to the open list ; ; enter : de = FILE * ; ; uses : af, bc, de, hl dec de dec de ; de = & FILE.link ...
blink_timer_int_pic12f675.asm
CindyLinz/PIC-practice
0
55347
<gh_stars>0 PROCESSOR PIC12F675 include p12f675.inc CONFIG FOSC=INTRCIO CONFIG WDTE=OFF CONFIG PWRTE=ON CONFIG MCLRE=OFF CONFIG BOREN=OFF CONFIG CP=OFF CONFIG CPD=OFF CBLOCK H'20' T0I_CNT ENDC RADIX dec org 0x00 goto init org 0x04 btfss INTCON, T0IF goto int_end bcf INTCON, T0IF ...
programs/oeis/153/A153258.asm
karttu/loda
1
55348
<reponame>karttu/loda ; A153258: n^3 - (n+2)^2. ; -4,-8,-8,2,28,76,152,262,412,608,856,1162,1532,1972,2488,3086,3772,4552,5432,6418,7516,8732,10072,11542,13148,14896,16792,18842,21052,23428,25976,28702,31612,34712,38008,41506,45212,49132,53272,57638 mov $2,$0 mul $2,$0 mov $1,$2 mov $3,$0 sub $3,$0 add $3,4 add $3,$0 ...
coverage/PENDING_SUBMIT/amdvlk/0552-COVERAGE-pattern-match-h-1939/work/variant/1_spirv_asm/shader.frag.asm
asuonpaa/ShaderTests
0
55350
<filename>coverage/PENDING_SUBMIT/amdvlk/0552-COVERAGE-pattern-match-h-1939/work/variant/1_spirv_asm/shader.frag.asm ; SPIR-V ; Version: 1.0 ; Generator: Khronos Glslang Reference Front End; 10 ; Bound: 149 ; Schema: 0 OpCapability Shader %1 = OpExtInstImport "GLSL.std.450" OpMem...
Palmtree.Math.Core.Implements/vs_build/x86_Release/pmc_exclusiveor.asm
rougemeilland/Palmtree.Math.Core.Implements
0
55353
<reponame>rougemeilland/Palmtree.Math.Core.Implements ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1 TITLE Z:\Sources\Lunor\Repos\rougemeilland\Palmtree.Math.Core.Implements\Palmtree.Math.Core.Implements\pmc_exclusiveor.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVC...
gfx/pokemon/bitmask_pointers.asm
Ebernacher90/pokecrystal-allworld
0
55354
BitmasksPointers: dw BulbasaurBitmasks dw IvysaurBitmasks dw VenusaurBitmasks dw CharmanderBitmasks dw CharmeleonBitmasks dw CharizardBitmasks dw SquirtleBitmasks dw WartortleBitmasks dw BlastoiseBitmasks dw CaterpieBitmasks dw MetapodBitmasks dw ButterfreeBitmasks dw WeedleBitmasks dw KakunaBitmasks dw ...
r5asm/test/module6.asm
walter-artica/r5asm
0
55355
.code mov R8, 0x3FC8 ;UART data mov R9, 0x3FCC ;UART status waitforrx: ldw R0, R9, 0 and R0, R0, 1 cmp R0, R0, 0 beq waitforrx ldw R0, R8, 0 waitfortx: ldw R1, R9, 0 and R1, R1, 2 cmp R1, R1, 0 beq waitfortx stw R0, R8, 0 bra waitforrx
src/third_party/nasm/travis/test/struc.asm
Mr-Sheep/naiveproxy
2,219
55356
bits 32 ; Simple struc example struc teststruc1 .long: resd 1 .word: resw 1 .byte: resb 1 .str: resb 32 endstruc ; Reference with offset mov [ebp - 40 + teststruc1.word], ax istruc teststruc1 at .word, db 5 iend ; Struc with base offset ; should be the same as the previous stuc struc teststruc2, -40 .long: r...
Shared/aplib_decrunch_6280.asm
cdoty/9918-Adventures
2
55357
; ####################################################################################################################################### ; apLib decruncher for the PC-Engine ; /Mic, 2010 ; ; Assembles with wla-dx ; ; Example (decrunching packed_data into RAM at $2200): ; ; lda #<packed_data ; sta <APLIB_SRC ; lda ...
asm/6502/test/vclock_rand.asm
fcatrin/clc88
6
55359
<reponame>fcatrin/clc88<gh_stars>1-10 icl '../os/symbols.asm' org BOOTADDR mva #0 ROS7 lda #9 ldx #OS_SET_VIDEO_MODE jsr OS_CALL mwa #0 R4 next_frame: mwa DISPLAY_START VADDRW lda R4 and #$30 lsr lsr sta VBORDER lsr lsr sta VCLOCK inc R4 ...
src/03-separating-palette.asm
adamrmoss/atari-2600-tutorials
0
55360
include "lib/2K.asm" ; ╔══════════════════════════════════════════════════════════════════════════╗ ; ║ Variables ║ ; ╚══════════════════════════════════════════════════════════════════════════╝ seg.u RAM ColorPhase: .byte ; ╔═════════════...
boot/switch_pm.asm
VrncQuentin/FOS
1
55361
[bits 16] ;; Switch 32bits to Protected Mode. switch_to_pm: cli ; Tell the CPU to ignore Interrupts for now. lgdt [gdt_descriptor] ; Tell the CPU about our GDT. ;; cr0 is a control register, we can't use litterals to set it. mov eax, cr0 ; Get cr0. ...
programs/oeis/185/A185057.asm
jmorken/loda
1
55362
<filename>programs/oeis/185/A185057.asm ; A185057: a(n) = n^n! (mod 5). ; 0,1,4,4,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1 mov $1,$0 mov $2,$0 lpb $2 pow $1,2 mod $1,5 div $2,2 sub $2,1 lpe
y2s2/csa/practicals/prac-4/p4-ex-1.asm
ouldevloper/university
8
55363
; Ex 1: Output result = val * val * val ; Use val DB 2 .MODEL SMALL .STACK 100 .DATA val DB 2 .CODE MAIN PROC MOV AX,@DATA MOV DS,AX ; Put the rest of your code here MOV AL, val MUL val MUL val MOV DL, AL MOV AH, 02H ADD DL, "0" INT 21H MOV AX,4C00H IN...
MartinResearch/Monitor/monitor.asm
paulscottrobson/assorted-archives
0
55364
; ************************************************************************************************************ ; ; MIKE-2 Monitor ; ============== ; ; Rewritten by <NAME> 21 August 2015 to specification given in Microcomputer Design and ; Micro-8 volume 1 pp 170. ; ; <NAME> (<EMAIL>) ; ; 2) Deb...
source/math/const.asm
mega65dev/rom-assembler
0
55365
<filename>source/math/const.asm<gh_stars>0 ; ******************************************************************************************** ; ******************************************************************************************** ; ; Name : const.asm ; Purpose : .. ; Created : 15th Nov 1991 ; Updated : 4t...
WRK-V1.2/clr/src/vm/i386/gmsasm.asm
intj-t/openvmsft
0
55366
<reponame>intj-t/openvmsft ; ==++== ; ; ; Copyright (c) 2006 Microsoft Corporation. All rights reserved. ; ; The use and distribution terms for this software are contained in the file ; named license.txt, which can be found in the root of this distribution. ; By using this software in any fashion, y...
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_21829_440.asm
ljhsiun2/medusa
9
55367
<reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0.log_21829_440.asm .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r14 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x4390, %r11 nop nop nop nop nop add %r10, %r10 movb $0x...
ohce/str/inc.asm
Silva97/asm-tools
3
55368
<reponame>Silva97/asm-tools<filename>ohce/str/inc.asm %ifndef _STR_ASM %define _STR_ASM %include "str/stresc.asm" %include "str/ishex.asm" %include "str/xtob.asm" %include "str/xxtob.asm" %include "str/atoi.asm" %include "str/itoa.asm" %include "str/putc.asm" %include "str/echo.asm" %endif
export_templates/gamegear/common/header.asm
disi33/libRetroReversing
8
55370
<filename>export_templates/gamegear/common/header.asm<gh_stars>1-10 ; rst vectors (unused) ;SECTION "rst0", ROM0[$0000] ; rst $38 ; ; ds $08 - @, 0 ; unused ; ;SECTION "rst8", ROM0[$0008] ; rst $38 ; ; ds $10 - @, 0 ; unused ; ;SECTION "rst10", ROM0[$0010] ; rst $38 ; ; ds $18 - @, 0 ; unused ; ;SECTION "rst18", ROM0[...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_539.asm
ljhsiun2/medusa
9
55371
<reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_539.asm .global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %r9 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x25e9, %r15 nop cmp $31481, %rbp mov (%r15), %r13w nop nop ...
textformats/HexDecode.asm
FloydZ/Crypto-Hash
11
55372
.code HexDecode proc uses esi edi ebx pHexStr:dword,pOutBuffer:dword mov esi,pHexStr mov edi,pOutBuffer jmp @1 @@: and ebx,0Fh add eax,ebx mov [edi],al inc edi @1: movzx edx,byte ptr[esi] cmp edx,40h sbb ebx,ebx sub edx,37h and ebx,7 inc esi add ebx,edx js @F mov eax,ebx shl eax,4 mov [edi],al movz...
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i3-7100_9_0x84_notsx.log_10130_2794.asm
ljhsiun2/medusa
9
55373
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_UC_ht+0x1ed6a, %rsi lea addresses_normal_ht+0x1e682, %rdi nop dec %r14 mov $114, %rcx rep movsw nop nop nop cmp %rdi, %rdi lea addresses_WC_ht+0x17702, %r12 clflush (%r12) nop nop an...
libsrc/input/vg5k/in_keytranstbl.asm
jpoikela/z88dk
640
55374
<gh_stars>100-1000 ; This table translates key presses into ascii codes. ; Also used by 'GetKey' and 'LookupKey'. An effort has been made for ; this key translation table to emulate a PC keyboard with the 'CTRL' key SECTION rodata_clib PUBLIC in_keytranstbl .in_keytranstbl defb 255, 255, 10, 9, 8, 255, 255, 2...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2681.asm
ljhsiun2/medusa
9
55376
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r14 push %r15 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x1101, %r11 nop nop nop nop inc %r13 mov $0x6162636465666768, %r15 movq %r15, %xmm1 vmovups %ymm1, (%r11) nop nop xor %r11, %r11 lea addresses_UC_ht+0xf69...
programs/oeis/010/A010199.asm
karttu/loda
0
55377
<reponame>karttu/loda<filename>programs/oeis/010/A010199.asm ; A010199: Continued fraction for sqrt(140). ; 11,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1,22,1,4,1 mov $5,$0 lpb $0,1 mov $3,$0 sub $0,$5 mov ...
src/Shaders/Sdk/Direct3D11/FluidCS11/FluidCS11_BuildGridCS.asm
tgjones/slimshader-cpp
20
55379
<gh_stars>10-100 // // Generated by Microsoft (R) HLSL Shader Compiler 9.30.9200.16384 // // /// // Buffer Definitions: // // cbuffer cbSimulationConstants // { // // uint g_iNumParticles; // Offset: 0 Size: 4 [unused] // float g_fTimeStep; // Offset: 4 Size: 4 [unused] /...
original version (1984)/asm/map11-exec.asm
fa8ntomas/bclk-samples
0
55380
<gh_stars>0 ; Map 11 exec Map11Exec: lda MapVar1 bmi L33F8 lda Map11Lamps+2*4 bne L33F8 dec MapVar1 lda #VINE_UP ;=0 sta VineDir lda #$07 sta VineSpeed L33F8: jsr UpdateTrees jmp UpdateVin...
Student/examples/Correct/CPRL0/Correct_123.asm
SoftMoore/CPRL-Kt
6
55381
<gh_stars>1-10 PROGRAM 12 LDGADDR 0 LDCINT 16 STOREW LDGADDR 4 LDCINT 4 STOREW LDGADDR 8 LDCINT 2 STOREW LDCSTR " left-associative: " PUTSTR LDGADDR 0 LOADW LDGADDR 4 LOADW SUB LDGADDR 8 LOADW SUB PUTINT PUTEOL LDCSTR "right-associative: " PUTSTR ...
Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48.log_21829_1384.asm
ljhsiun2/medusa
9
55382
<filename>Transynther/x86/_processed/US/_zr_/i7-7700_9_0x48.log_21829_1384.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r14 push %r8 push %r9 push %rax push %rbp push %rbx push %rdx lea addresses_UC_ht+0x12ef5, %rbx nop and %rax, %rax mov $0x6162636465666768, %rbp movq %rbp, %xmm0 movups %xmm0, ...
libsrc/_DEVELOPMENT/math/float/math48/z80/am48_dcmp.asm
jpoikela/z88dk
640
55383
SECTION code_clib SECTION code_fp_math48 PUBLIC am48_dcmp EXTERN mm48_cmp ; compare AC and AC' (effective AC - AC') ; ; enter : AC = double x ; AC' = double y ; ; exit : z flag set if x == y ; z flag reset and c flag set if x < y ; z flag reset ...
test/naive-tests/2-basic-arithmetic.asm
skyzh/mips-simulator
35
55384
li $zero, 100 add $zero, $zero, -1000 li $at, 0xffff lui $at, 0xffff move $a0, $at move $a1, $at move $a2, $at move $a3, $at add $a0, $a0, $a0 addu $a1, $a1, $a1 addi $a2, $a2, 233 addiu $a2, $a2, 233 li $t0, 100 lui $t0, 233 li $t1, 233 lui $t1, 0xffff or $t2, $t0, $t1 ori $t3, $t0, 0xfffe and $t4, $t0, $t1 andi $t5, ...
Appl/Term/Main/mainManager.asm
steakknife/pcgeos
504
55385
<reponame>steakknife/pcgeos COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: Main FILE: mainManager.asm AUTHOR: <NAME>, September 6, 1989 REVISION HISTORY: Name Date Description ---- ---- --...
programs/oeis/315/A315496.asm
karttu/loda
0
55387
<filename>programs/oeis/315/A315496.asm ; A315496: Coordination sequence Gal.5.306.3 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,6,11,16,22,28,34,40,45,50,56,62,67,72,78,84,90,96,101,106,112,118,123,128,134,140,146,152,157,162,...
data/wildPokemon/victoryroad1.asm
etdv-thevoid/pokemon-rgb-enhanced
1
55388
<filename>data/wildPokemon/victoryroad1.asm PlateauMons1: db $0F db 36,GEODUDE db 31,GEODUDE db 41,GEODUDE db 41,GEODUDE db 39,ZUBAT db 41,ZUBAT db 43,ONIX db 45,ONIX db 41,GRAVELER db 47,GRAVELER db $00
unit_tests/static-tests/common/memory.overlapromblock1.error.asm
undisbeliever/untech-engine
34
55389
<filename>unit_tests/static-tests/common/memory.overlapromblock1.error.asm // Try and create two Data blocks that overlap each other define MEMORY_MAP = HIROM define ROM_SIZE = 1 include "../../../src/common/memory.inc" createDataBlock(rom0, 0xc00000, 0xc000ff) createDataBlock(rom1, 0xc00100, 0xc001ff) createDataB...
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_2_544.asm
ljhsiun2/medusa
9
55391
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r14 push %r15 push %r8 push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x6c95, %r10 nop nop nop sub $30210, %r13 mov $0x6162636465666768, %r14 movq %r14, (%r10) nop and %r15, %r15 lea addresses_WT_ht+0x17ce8, %r13 nop and $50435, %r14 vm...
programs/oeis/005/A005570.asm
karttu/loda
1
55392
; A005570: Number of walks on cubic lattice. ; 17,50,99,164,245,342,455,584,729,890,1067,1260,1469,1694,1935,2192,2465,2754,3059,3380,3717,4070,4439,4824,5225,5642,6075,6524,6989,7470,7967,8480,9009,9554,10115,10692,11285,11894,12519,13160,13817,14490,15179,15884,16605,17342,18095,18864,19649,20450,21267,22100,22949,23...
oeis/162/A162615.asm
neoneye/loda-programs
11
55393
<filename>oeis/162/A162615.asm ; A162615: Triangle read by rows in which row n lists n terms, starting with n, such that the difference between successive terms is equal to n^3 - 1 = A068601(n). ; Submitted by <NAME> ; 1,2,9,3,29,55,4,67,130,193,5,129,253,377,501,6,221,436,651,866,1081,7,349,691,1033,1375,1717,2059,8,5...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_463.asm
ljhsiun2/medusa
9
55394
<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_463.asm .global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x542d, %rsi lea addresses_normal_ht+0x1569f, %rdi nop nop xor %r11, %r11 mov $39, %rcx rep movsb...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1051.asm
ljhsiun2/medusa
9
55395
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r13 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x54d9, %r13 nop nop nop nop nop and %r10, %r10 mov $0x6162636465666768, %r12 movq %r12, %xmm3 vmovups %ymm3, (%r13) nop nop cmp $15986, %r12 lea addresses_normal_ht+0xc079, %...
snippets/mod192.test.i.asm
ped7g/ZXSpectrumNextMisc
15
55397
MODULE mod192 test: ld hl,0 ; value to "mod 192" ld de,0 ; expected result .loop: push hl push de ;call hlMod192 ;call hlMod192_lut call hlMod192_lut_B : ld h,0 : ld l,a ; HL = A (for rest of test to work) pop de ; compare r...
programs/oeis/187/A187948.asm
neoneye/loda
22
55398
<filename>programs/oeis/187/A187948.asm ; A187948: [nr+kr]-[nr]-[kr], where r=(1+sqrt(5))/2, k=6, [ ]=floor. ; 1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,1,0,1 seq $0,7...
Transynther/x86/_processed/AVXALIGN/_un_/i9-9900K_12_0xa0_notsx.log_1_1934.asm
ljhsiun2/medusa
9
55399
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r8 push %r9 push %rdx push %rsi lea addresses_WC_ht+0x16ac3, %r12 nop nop nop sub %r8, %r8 movb $0x61, (%r12) nop nop nop nop cmp $49064, %rsi lea addresses_D_ht+0x210b, %r9 clflush (%r9) nop nop nop nop nop sub %rdx, %rdx movl $0x61626364, (%r9) nop nop sub ...
dpcm.asm
neilbaldwin/PR8
8
55400
;-------------------------------------------------------------------------------- ; DO NOT CHANGE: Macros to set start address and length value of each sample ;-------------------------------------------------------------------------------- .MACRO DEF_DPCM address ;.BYTE <(address >> 6) .BYTE <(addr...
oeis/267/A267319.asm
neoneye/loda-programs
11
55402
<reponame>neoneye/loda-programs ; A267319: Continued fraction expansion of phi^8, where phi = (1 + sqrt(5))/2. ; Submitted by <NAME>(s3) ; 46,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,4...
kernel/asm_x86_64/state.asm
tadryanom/lux
9
55403
<reponame>tadryanom/lux<gh_stars>1-10 ;; lux OS kernel ;; copyright (c) 2018 by <NAME> format elf64 use64 section '.text' ; void save_registers(registers_t *registers) ; Saves machine state to a structure public save_registers save_registers: mov [tmp_struct.rax], rax mov [tmp_struct.rbx], rbx mov [tmp_struct.r...
oeis/266/A266984.asm
neoneye/loda-programs
11
55405
<gh_stars>10-100 ; A266984: Decimal representation of the n-th iteration of the "Rule 81" elementary cellular automaton starting with a single ON (black) cell. ; Submitted by <NAME> ; 1,1,24,31,384,511,6144,8191,98304,131071,1572864,2097151,25165824,33554431,402653184,536870911,6442450944,8589934591,103079215104,137438...
Transynther/x86/_processed/AVXALIGN/_zr_un_/i3-7100_9_0xca_notsx.log_21829_1180.asm
ljhsiun2/medusa
9
55406
<filename>Transynther/x86/_processed/AVXALIGN/_zr_un_/i3-7100_9_0xca_notsx.log_21829_1180.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r15 push %r8 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x5e0d, %rsi nop nop nop nop nop add %r15, %r15 movb (%rsi...
stringSearch.asm
Abdelbary/assembly
0
55408
<reponame>Abdelbary/assembly name "strig-search-program" ; add your code here .model small db 30,?, 30 dup(' ') name db $,<' '> .data string db 60 dup(?) ;60 place empty array subString db 60 dup(?) ;sub string to search for outt db 0ah,0dh, "entre a sentence or press entre 3 tim...
PRG/objects/4-3Under.asm
narfman0/smb3_pp1
0
55409
; WARNING: Autogenerated file! Do not put extra data here; editor will not preserve it! .byte $01 ; Unknown purpose .byte OBJ_REDTROOPA, $02, $18 .byte OBJ_FLYINGREDPARATROOPA, $09, $13 .byte OBJ_FLYINGREDPARATROOPA, $12, $0F .byte OBJ_REDTROOPA, $13, $0B .byte OBJ_FLYINGREDPARATROOPA, $13, $0F .byte OBJ_REDTR...
programs/oeis/166/A166027.asm
neoneye/loda
22
55410
; A166027: a(n) = 6*a(n-2) for n > 2; a(1) = 4, a(2) = 1. ; 4,1,24,6,144,36,864,216,5184,1296,31104,7776,186624,46656,1119744,279936,6718464,1679616,40310784,10077696,241864704,60466176,1451188224,362797056,8707129344,2176782336,52242776064,13060694016,313456656384,78364164096,1880739938304,470184984576,11284439629824,...
Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2_notsx.log_8_1544.asm
ljhsiun2/medusa
9
55411
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r9 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1b960, %r14 nop nop nop cmp $33300, %r9 mov (%r14), %r11w add $50534, %rax lea addresses_WC_ht+0x107e0, %rsi lea addresses_normal_ht+0x...
oeis/315/A315668.asm
neoneye/loda-programs
11
55412
; A315668: Coordination sequence Gal.5.69.5 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. ; Submitted by <NAME> ; 1,6,12,17,21,25,29,33,38,44,50,56,62,67,71,75,79,83,88,94,100,106,112,117,121,125,129,133,138,144,150,156,162,167,171,1...
src/bootloader/disk_sect.asm
batthomas/MythOS
0
55413
<reponame>batthomas/MythOS<gh_stars>0 disk_load: pusha push dx mov ah, 0x02 ; Read sectors from drive mov al, dh ; Sectors to read count mov ch, 0x00 ; Cylinder number mov cl, 0x02 ; Sector number mov dh, 0x00 ; Head number int 0x13 ; Low-level disk services jc .disk_error ...
oeis/031/A031911.asm
neoneye/loda-programs
11
55415
; A031911: a(n) = prime(7*n - 6). ; Submitted by <NAME> ; 2,19,47,79,109,151,191,229,269,311,353,397,439,479,523,577,617,659,709,757,811,857,907,953,1009,1049,1093,1151,1201,1249,1297,1361,1427,1459,1499,1559,1607,1657,1709,1759,1823,1877,1933,1997,2039,2089,2141,2213,2269,2311,2371,2411,2467,2543,2609,2663,2699,2741,2...
src/arch/ia32/hal/syscall/sysenter.asm
zhengruohuang/toddler
80
55417
[section .text] ;=============================================================================== ; Imports ;=============================================================================== extern save_context_sysenter extern sysenter_handler_entry extern syscall_proxy_entry ;===========================================...
programs/oeis/002/A002663.asm
neoneye/loda
22
55419
<reponame>neoneye/loda<filename>programs/oeis/002/A002663.asm ; A002663: a(n) = 2^n - C(n,0) - C(n,1) - C(n,2) - C(n,3). ; 0,0,0,0,1,6,22,64,163,382,848,1816,3797,7814,15914,32192,64839,130238,261156,523128,1047225,2095590,4192510,8386560,16774891,33551806,67105912,134214424,268431773,536866822,1073737298,2147478656,42...
programs/oeis/185/A185647.asm
neoneye/loda
22
55420
<filename>programs/oeis/185/A185647.asm ; A185647: Expansion of (1+2x)*(1+2*x^2)/((1-x)*(1+x)*(1-2*x^2)). ; 1,2,5,10,13,26,29,58,61,122,125,250,253,506,509,1018,1021,2042,2045,4090,4093,8186,8189,16378,16381,32762,32765,65530,65533,131066,131069,262138,262141,524282,524285,1048570,1048573,2097146,2097149,4194298,419430...
libsrc/_DEVELOPMENT/stdlib/z80/asm_atexit.asm
jpoikela/z88dk
640
55421
; =============================================================== ; Dec 2013 ; =============================================================== ; ; int atexit(void (*func)(void)) ; ; Register the function to run when exit() is called. ; Return 0 if successful. ; ; ======================================================...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1307.asm
ljhsiun2/medusa
9
55422
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r8 push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x1b28f, %rsi lea addresses_normal_ht+0x7995, %rdi nop nop nop xor $12268, %rdx mov $122, %rcx rep movsl nop nop nop nop nop cmp $56271, %r8 lea addresses_WC_ht+0x1168f, %rsi lea addresses_A_ht+0x...
src/x86/ipred_ssse3.asm
feiser2016/dav1d
0
55423
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; 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 copy...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_6_85.asm
ljhsiun2/medusa
9
55424
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r15 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0xb872, %r11 nop nop xor $60720, %rdx vmovups (%r11), %ymm2 vextracti128 $0, %ymm2, %xmm2 vpextrq $1, %xmm2, %r15 nop nop nop nop add %r8, %r8 lea addresses_A_ht+...
test_13.asm
Anson-Doan/-CS537-Spring2021-P3b-xv6KernelThreads
0
55425
_test_13: file format elf32-i386 Disassembly of section .text: 00000000 <fib>: exit(); \ } void worker(void *arg1, void *arg2); unsigned int fib(unsigned int n) { 0: f3 0f 1e fb endbr32 4: 55 push %ebp 5: 89 e5 mov %esp,%ebp 7: 56 ...
OS.asm
lodvaer/YHBT
2
55426
;; Main OS entry point. include 'OS.cfg' include 'include/macros.h' include 'include/cpu.h' include 'include/constants.h' include 'include/mm.h' TO_INIT_64 equ TO_INIT_32 equ TO_INIT_16 equ TO_IVAR equ org 1000h _START: use16 jmp init use64 ; The order of inclusion matters _a lot_. include 'lib/assert.asm' ; Ne...
libsrc/_DEVELOPMENT/arch/zx/nirvanam/z80/asm_NIRVANAM_fillT.asm
grancier/z180
0
55427
<reponame>grancier/z180 ; ---------------------------------------------------------------- ; Z88DK INTERFACE LIBRARY FOR THE NIRVANA ENGINE - by <NAME> ; ; See "nirvana-.h" for further details ; ---------------------------------------------------------------- SECTION code_clib SECTION code_nirvanam PUBLIC asm_NIRVANA...
7-assets/past-student-repos/LambdaSchool-master/m7/73a1/asm/sctest.asm
eengineergz/Lambda
0
55428
<reponame>eengineergz/Lambda ; Code to test the Sprint Challenge ; ; Expected output: ; 1 ; 4 ; 5 LDI R0,10 LDI R1,20 LDI R2,Test1 CMP R0,R1 JEQ R2 ; Does not jump because R0 != R1 LDI R3,1 PRN R3 ; Prints 1 Test1: LDI R2,Test2 CMP R0,R1 JNE R2 ; Jumps because R0 != R1 LDI R3,2 PRN R3 ; Skipp...
programs/oeis/020/A020903.asm
karttu/loda
0
55429
; A020903: Lim f(f(...f(n))) where f is the fractal sequence given by f(n)=A002260(n+1). ; 1,2,1,2,1,1,2,1,2,1,2,1,2,1,1,2,1,2,1,1,1,2,1,2,1,1,2,1,2,1,2,1,1,2,1,1,2,1,2,1,1,2,1,2,1,2,1,2,1,1,2,1,2,1,1,2,1,2,1,1,2,1,2,1,2,1,2,1,2,1,1,2,1,2,1,2,1,1,2,1,2,1,1,2,1,2,1,2,1,2,1,2,1,2,1,1,2,1,2,1,2,1,2,1,1,2,1,2,1,1,2,1,2,1,2...
libtool/src/gmp-6.1.2/mpn/powerpc64/p7/copyd.asm
kroggen/aergo
1,602
55430
<gh_stars>1000+ dnl PowerPC-64 mpn_copyd. dnl Copyright 2004, 2005, 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/or modify dnl it under the terms of either: dnl dnl * the GNU Lesser General Public Lice...
asg/asm/lz4hc.asm
asgkafka/librdkafka
0
55431
*PROCESS DUPALIAS * * Compiled by DCC Version 2.25.07 Mar 6 2021 08:51:07 * on Fri Apr 30 15:35:13 2021 * WXTRN @@ZARCH# * * * * Code Section * @CODE ALIAS C'@LZ4HC' @CODE CSECT @CODE AMODE ANY @CODE RMODE ANY @DATA ALIAS C'@lz4hc' memmove ALIAS C'memmove' EXTRN memmove...
oeis/019/A019701.asm
neoneye/loda-programs
11
55432
; A019701: Decimal expansion of 2*Pi/19. ; Submitted by <NAME> ; 3,3,0,6,9,3,9,6,3,5,3,5,7,6,7,7,0,9,3,1,1,8,5,7,1,9,8,2,3,9,9,4,7,6,7,2,0,2,0,7,5,4,6,7,3,6,1,8,4,3,2,1,9,1,6,8,1,5,7,3,1,1,4,9,7,9,7,7,0,1,4,8,0,3,0,1,2,7,2,6,3,0,1,3,4,7,7,3,5,0,0,3,6,0,1,2,3,2,2,9 add $0,1 mov $2,1 mov $3,$0 mul $3,5 lpb $3 mul $1,$...
programs/oeis/019/A019746.asm
neoneye/loda
22
55433
<gh_stars>10-100 ; A019746: Decimal expansion of e/9. ; 3,0,2,0,3,1,3,1,4,2,7,3,2,2,7,2,4,8,3,7,3,3,6,5,2,7,4,5,9,4,7,4,0,2,7,7,5,2,8,5,8,3,0,1,0,4,1,1,1,0,6,6,1,9,4,4,0,7,7,4,1,8,0,8,5,8,2,3,0,7,3,6,7,0,5,9,4,9,7,3,2,7,3,0,1,5,3,5,7,5,3,9,1,6,8,5,1,5,8,6 add $0,1 mov $2,1 mov $3,$0 mul $3,5 lpb $3 mul $2,$3 add $...
programs/oeis/099/A099812.asm
neoneye/loda
22
55434
<reponame>neoneye/loda<gh_stars>10-100 ; A099812: Number of distinct primes dividing 2n (i.e., omega(2n)). ; 1,1,2,1,2,2,2,1,2,2,2,2,2,2,3,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,1,3,2,3,2,2,2,3,2,2,3,2,2,3,2,2,2,2,2,3,2,2,2,3,2,3,2,2,3,2,2,3,1,3,3,2,2,3,3,2,2,2,2,3,2,3,3,2,2,2,2,2,3,3,2,3,2,2,3,3,2,3,2,3,2,2,2,3,2 lpb $0 s...
programs/oeis/113/A113804.asm
karttu/loda
1
55435
<reponame>karttu/loda<filename>programs/oeis/113/A113804.asm<gh_stars>1-10 ; A113804: Numbers that are congruent to 4 or 10 mod 14. ; 4,10,18,24,32,38,46,52,60,66,74,80,88,94,102,108,116,122,130,136,144,150,158,164,172,178,186,192,200,206,214,220,228,234,242,248,256,262,270,276,284,290,298,304,312,318,326,332,340,346,3...
chap18/ex21/lookup_vbmi.asm
JamesType/optimization-manual
374
55436
<reponame>JamesType/optimization-manual ; ; 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 IN...
programs/oeis/076/A076014.asm
neoneye/loda
22
55437
; A076014: Triangle in which m-th entry of n-th row is m^(n-1). ; 1,1,2,1,4,9,1,8,27,64,1,16,81,256,625,1,32,243,1024,3125,7776,1,64,729,4096,15625,46656,117649,1,128,2187,16384,78125,279936,823543,2097152,1,256,6561,65536,390625,1679616,5764801,16777216,43046721 lpb $0 mov $1,$0 sub $0,1 add $2,1 trn $0,$2 lp...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1037.asm
ljhsiun2/medusa
9
55438
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r15 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0x11cae, %rdx nop nop dec %r13 mov $0x6162636465666768, %rsi movq %rsi, %xmm7 vmovups %ymm7, (%rdx) nop nop nop add $18723, %rsi lea addresses_normal_ht+0xe9f0, %rsi lea ad...
Maths/Utilities/ScaleNodeTo8Bit.asm
ped7g/EliteNext
9
55439
ScaleNodeTo8Bit: ; TODO make signed ld bc,(UBnkZScaled) ld hl,(UBnkXScaled) ld de,(UBnkYScaled) SetABSbc: ld a,b ld ixh,a and SignMask8Bit ld b,a ; bc = ABS bc SetABShl: ld a,h ld ixl,a and SignMask8Bit ld h,a ; hl = ABS hl SetABSde: ld a,d ld iyh,a and ...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_614.asm
ljhsiun2/medusa
9
55441
<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_614.asm .global s_prepare_buffers s_prepare_buffers: push %r13 push %rax push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x2d68, %rdi nop nop nop sub $58319, %rdx movb $0x61, (%rdi) nop nop add %rax, %rax lea addresses_WC...
Transynther/x86/_processed/US/_zr_/i3-7100_9_0xca_notsx.log_21829_1862.asm
ljhsiun2/medusa
9
55442
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %rdi push %rsi lea addresses_WC_ht+0x1b704, %r11 nop nop nop nop cmp $25548, %rdi movups (%r11), %xmm6 vpextrq $1, %xmm6, %r12 nop nop sub %rsi, %rsi pop %rsi pop %rdi pop %r12 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r1...
project-final/Test Files/prog2.asm
sawyermade/architecture
16
55443
<reponame>sawyermade/architecture ;courtesy of the following website: https://cs.nyu.edu/courses/fall14/CSCI-UA.0436-001/MIPS_Test_Programs.html sub r0,r0,r0 ; set reg[0] to 0 lw r1,0(r0) ; reg[1] <- mem[0] (= 20) lw r2,0(r1) ; reg[2] <- mem[20] lw r3,4(r1) ; reg[3] <- mem[24] and r4,r2,r3 ...
include/icsneo/third-party/concurrentqueue/benchmarks/tbb/ia32-masm/itsx.asm
kjohannes-intrepidcs/libicsneo
6,692
55445
<filename>include/icsneo/third-party/concurrentqueue/benchmarks/tbb/ia32-masm/itsx.asm ; Copyright 2005-2014 Intel Corporation. All Rights Reserved. ; ; This file is part of Threading Building Blocks. Threading Building Blocks is free software; ; you can redistribute it and/or modify it under the terms of the GNU Gene...
helloworld.asm
gregkrsak/NASM_Practice
0
55446
; ; helloworld.asm ; ; A sample assembly language file. ; ; Written by <NAME> <<EMAIL>>, Feb. 2017 ; ; Processor: 64-bit, Intel or AMD ; Operating System: Windows, XP (Server 2003) or later ; Assembler: NASM ; ; Tested with: ; nasm -f win64 "helloworld.asm" ; golink /console /entry WinMain "helloworld.obj" kernel32.dll...
src/data.asm
maciejmalecki/trex64
11
55447
<filename>src/data.asm /* MIT License Copyright (c) 2021 <NAME> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use...
oeis/118/A118537.asm
neoneye/loda-programs
11
55448
; A118537: Number of functions f: {1, 2, ..., n} --> {1, 2, ..., n} such that f(1) != f(2), f(2) != f(3), ..., f(n-1) != f(n), f(n) != f(1). ; Submitted by <NAME> ; 2,6,84,1020,15630,279930,5764808,134217720,3486784410,99999999990,3138428376732,106993205379060,3937376385699302,155568095557812210,6568408355712890640,295...
data/pokemon/base_stats/sinnoh/weavile.asm
Dev727/ancientplatinum
0
55450
<gh_stars>0 db 0 ; 461 DEX NO db 70, 120, 65, 125, 45, 85 ; hp atk def spd sat sdf db DARK, ICE ; type db 45 ; catch rate db 199 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F50 ; gender ratio db 100 ; unknown 1 db 20 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/sinnoh/weav...
1541/64tass/patch.asm
silverdr/assembly
23
55452
<gh_stars>10-100 echksum .byte $79 jnmi jmp (vnmi) pea7a sta ledprt sta ddrb2 jmp rea7d slowd txa ; only affect .a ldx #5 ; insert 20us of delay with this routine - dex bne - tax rts patch4 jsr clklo jmp dathi nnm...
libsrc/_DEVELOPMENT/alloc/obstack/c/sdcc_iy/obstack_blank_callee.asm
meesokim/z88dk
0
55453
<gh_stars>0 ; void *obstack_blank_callee(struct obstack *ob, int size) SECTION code_alloc_obstack PUBLIC _obstack_blank_callee _obstack_blank_callee: pop af pop hl pop bc push af INCLUDE "alloc/obstack/z80/asm_obstack_blank.asm"
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48_notsx.log_21829_411.asm
ljhsiun2/medusa
9
55454
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r15 push %rax push %rcx push %rdi push %rsi lea addresses_UC_ht+0x60d0, %r11 nop nop inc %rsi mov (%r11), %eax add %r15, %r15 lea addresses_WT_ht+0x824, %rsi lea addresses_normal_ht+0xfe24, %rdi nop and $44786, %r13 mov $72, %rcx rep movsw...
oeis/099/A099534.asm
neoneye/loda-programs
11
55455
; A099534: a(n)=Sum of the first n decimal places of e. ; 7,8,16,18,26,27,35,37,45,49,54,63,63,67,72,74,77,82,85,91,91,93,101,108,112,119,120,123,128,130,136,142,144,148,157,164,171,176,183,185,189,196,196,205,208,214,223,232,241,246,255,260,267,271,280,286,292 mov $2,$0 mov $4,$0 lpb $2 mov $0,$4 sub $2,1 sub $...
system/myOS/haribote.asm
kegalas/sth_cant_upload_to_blog_recently
0
55456
;haribote-os ;tab=4 ;有关boot_info CYLS equ 0x0ff0 ;设定启动区 LEDS equ 0x0ff1 VMODE equ 0x0ff2 ;关于颜色数目的信息。颜色的位数。 SCRNX equ 0x0ff4 ;分辨率的x SCRNY equ 0x0ff6 ;分辨率的y VRAM equ 0x0ff8 ;图像缓冲区的开始地址 org 0xc200 mov al,0x13 ;VGA显卡,320x200x8位彩色 mov ah,0x...
data/pokemon/base_stats/scyther.asm
AtmaBuster/pokeplat-gen2
6
55457
db 0 ; species ID placeholder db 70, 110, 80, 105, 55, 80 ; hp atk def spd sat sdf db BUG, FLYING ; type db 45 ; catch rate db 187 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F50 ; gender ratio db 25 ; step cycles to hatch INCBIN "gfx/pokemon/scyther/front.dimensions" db GROWTH_MEDIUM_FAST ...
nsea/nsea/nsea.asm
rekav0k/Applied-Cryptography
4
55458
; Fast ASM routines to implement the NSEA core encryption routine. Note ; that this code does not include CBC handling, thought it can easily be ; added ; ; Written 21 April 1992 by <NAME> .MODEL COMPACT LOCALS @@ ; Define the following to include a 32-bit version of the core encryption ; code DO_32BIT EQU 1 ...
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48_notsx.log_6_116.asm
ljhsiun2/medusa
9
55459
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r8 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1044f, %r10 nop nop nop cmp %rbx, %rbx mov $0x6162636465666768, %rbp movq %rbp, %xmm5 vmovups %ymm5, (%r10) xor %r8, %r8 lea addresses_WC_ht+0x1d839, %rbp nop and %r...
Appl/GeoDraw/UI/uiManager.asm
steakknife/pcgeos
504
55460
<gh_stars>100-1000 COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: UI FILE: uiManager.asm AUTHOR: <NAME> REVISION HISTORY: Name Date Description ---- ---- ----------- <NAME> 2/92 ...
init16.asm
jballoffet/ia32-kernel
0
55461
<reponame>jballoffet/ia32-kernel ;################################################################################ ;# Título: Modulo de inicializacion en 16 bits # ;# # ;# Versión: 1.0 Fecha: 06/09/2015 # ;# Autor: <NAME> Tab: 4 # ;# Compilación: Usar Makefile # ;# Uso: - # ;# -------...
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_1258.asm
ljhsiun2/medusa
9
55464
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r14 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x150b1, %r10 nop dec %r12 mov (%r10), %r11d add $6782, %rcx lea addresses_normal_ht+0x4eb1, %rcx nop nop nop nop nop cmp $44438, %rbp mov $0x6162636465666768, %rax m...
oeis/274/A274093.asm
neoneye/loda-programs
11
55465
; A274093: a(0)=0; thereafter (-1)^n*n appears n times. ; Submitted by <NAME>(s1) ; 0,-1,2,2,-3,-3,-3,4,4,4,4,-5,-5,-5,-5,-5,6,6,6,6,6,6,-7,-7,-7,-7,-7,-7,-7,8,8,8,8,8,8,8,8,-9,-9,-9,-9,-9,-9,-9,-9,-9,10,10,10,10,10,10,10,10,10,10,-11,-11,-11,-11,-11,-11,-11,-11,-11,-11,-11,12,12,12,12,12,12,12,12,12,12,12,12,-13,-13,-...
Microprocessor_Interfacing_CSE_2006/Strings_Lab_7/equal_strings.asm
aadhityasw/VIT-Labs
2
55466
DATA SEGMENT STR1 DB "hello$" STR2 DB "hello$" NEWLINE DB 10,13,"$" MSG1 DB "BOTH STRING ARE SAME$" MSG2 DB "BOTH STRING ARE DIFFERENT$" DATA ENDS CODE SEGMENT ASSUME DS:DATA,CS:CODE START: MOV AX,DATA MOV DS,AX LEA SI,STR1 LEA DI,STR2 STRING_COMPARISION : MOV BX,00 ...
Palmtree.Math.Core.Sint/vs_build/x86_Debug/pmc_from.asm
rougemeilland/Palmtree.Math.Core.Sint
0
55467
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1 TITLE Z:\Sources\Lunor\Repos\rougemeilland\Palmtree.Math.Core.Sint\Palmtree.Math.Core.Sint\pmc_from.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRTD INCLUDELIB OLDNAMES _DATA SEGMENT COMM _uint_number_zero:DWORD COMM ...