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
text/maps/route_13.asm
adhi-thirumala/EvoYellow
16
196771
<reponame>adhi-thirumala/EvoYellow<gh_stars>10-100 _Route13BattleText2:: text "My bird #MON" line "want to scrap!" done _Route13EndBattleText2:: text "My" line "bird combo lost?" prompt _Route13AfterBattleText2:: text "My #MON look" line "happy even though" cont "they lost." done _Route13BattleText3:: tex...
oeis/081/A081668.asm
neoneye/loda-programs
11
196772
<reponame>neoneye/loda-programs ; A081668: Expansion of 2sinh(x) + BesselI_0(2x). ; 1,2,2,2,6,2,20,2,70,2,252,2,924,2,3432,2,12870,2,48620,2,184756,2,705432,2,2704156,2,10400600,2,40116600,2,155117520,2,601080390,2,2333606220,2,9075135300,2,35345263800,2,137846528820,2,538257874440,2,2104098963720,2,8233430727600,2,322...
mp2/sched2.asm
Candy-Crusher/ece220
0
196775
<filename>mp2/sched2.asm .ORIG x4000 .FILL 31 .STRINGZ "lunch" .FILL 6 .FILL 31 .STRINGZ "dinner" .FILL 11 .FILL 10 .STRINGZ "ECE220" .FILL 3 .FILL 10 .STRINGZ "lecture" .FILL 4 .FILL 8 .STRINGZ "220 lab" .FILL 5 .FILL 16 .STRINGZ "MATH213" .FILL 10 .FILL 4 .STRINGZ "MATH213" .FILL 12 .FI...
nand2tetris/proj4/toggle.asm
ethull/university
1
196776
<reponame>ethull/university //@SCREEN //D=A //initialise pointer to addr -1 //@Pos //M=D-1 @colour M=0 @RESET 0;JMP //loop until key >0, assume starts >0 (CHECK) @KBD D=M @CHECK2 D;JGT @CHECK 0;JMP //loop until key=0 (CHECK2) @KBD D=M @FLIP D;JEQ @CHECK2 0;JMP (WRITE) //if position is at max of the screen, reset @2...
src/shaders/post_processing/gen5_6/Core_Kernels/PL3_AVS_IEF_Unpack_8x8.asm
tizenorg/platform.upstream.libva-intel-driver
0
196777
<reponame>tizenorg/platform.upstream.libva-intel-driver /* * All Video Processing kernels * Copyright © <2010>, Intel Corporation. * * This program is licensed under the terms and conditions of the * Eclipse Public License (EPL), version 1.0. The full text of the EPL is at * http://www.opensource.org/licenses/e...
WEEK-6/3.asm
ShruKin/Microprocessor-and-Microcontroller-Lab
0
196778
LDA 9050 MOV B,A ANI 0F // mask upper nibble MOV C,A MOV A,B ANI F0 // mask lower nibble JZ SKIP RRC // // rotate 4 times to get the upper nibble in lower nibble part RRC RRC RRC MOV D,A XRA A MVI E,0A SUM: ADD D DCR E JNZ SUM SKIP: ADD C STA 9...
sources/ippcp/asm_ia32/pcpmontreductw7as.asm
ntyukaev/ipp-crypto
1
196779
<reponame>ntyukaev/ipp-crypto ;=============================================================================== ; Copyright 2014-2020 Intel Corporation ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the Lic...
oeis/001/A001464.asm
neoneye/loda-programs
11
196782
; A001464: E.g.f. exp( -x -(1/2)*x^2 ). ; Submitted by <NAME>(s1) ; 1,-1,0,2,-2,-6,16,20,-132,-28,1216,-936,-12440,23672,138048,-469456,-1601264,9112560,18108928,-182135008,-161934624,3804634784,-404007680,-83297957568,92590134208,1906560847424,-4221314202624,-45349267830400,159324751301248,1110454747949952,-5730872535...
tests/bank_bits/1.asm
NullMember/customasm
414
196783
<gh_stars>100-1000 #bankdef bits8 { #bits 8 #addr 0x0 #size 0x8 #outp 0x0 } #bankdef bits16 { #bits 16 #addr 0x0 #size 0x8 #outp 8 * 0x8 } #bank bits8 #d8 0, 1, 2, 3, $ #bank bits16 #d16 0, 1, $ ; = 0x0001020304000000_000000010002
Transynther/x86/_processed/NC/_st_zr_un_sm_/i7-7700_9_0x48.log_21829_2272.asm
ljhsiun2/medusa
9
196784
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_A_ht+0xfd37, %rcx nop nop nop xor %r15, %r15 mov (%rcx), %r13w xor %r12, %r12 lea addresses_A_ht+0xc85d, %rax nop nop nop nop nop sub $50320, %r8 movups (%rax), %xmm7 vpext...
oeis/296/A296550.asm
neoneye/loda-programs
11
196785
<filename>oeis/296/A296550.asm ; A296550: Number of n X 4 0..1 arrays with each 1 horizontally, vertically or antidiagonally adjacent to 3 or 6 neighboring 1s. ; Submitted by <NAME> ; 1,1,3,5,7,10,17,28,43,66,105,168,264,413,651,1030,1624,2555,4025,6349,10010,15771,24851,39173,61748,97315,153366,241722,380989,600470,94...
src/examples/fizzbuzz.asm
Ppjet6/zeerust
9
196786
<reponame>Ppjet6/zeerust<gh_stars>1-10 ld B, 0 loop: inc B ld E, B call printFizzBuzz ld A, B sub A, 20 jp m, loop halt printFizzBuzz: ld A, E ld C, 15 call divmod jp z, fzbz ld A, E ld C, 5 call divmod jp z, bz ld A, E ld C, 3 call divmod jp z, fz ld A, E call printNum ret fz: ld HL, fizz jp e...
oeis/007/A007204.asm
neoneye/loda-programs
11
196787
; A007204: Crystal ball sequence for D_4 lattice. ; 1,25,169,625,1681,3721,7225,12769,21025,32761,48841,70225,97969,133225,177241,231361,297025,375769,469225,579121,707281,855625,1026169,1221025,1442401,1692601,1974025,2289169,2640625,3031081,3463321,3940225,4464769,5040025,5669161,6355441,7102225,7912969,8791225,97406...
examples/z180load.asm
jblang/ColecoController
12
196788
<filename>examples/z180load.asm<gh_stars>10-100 ; ColecoVision Game Loader for CP/M on Z180 ; ; Works with SC126 SBC ; ; Assemble with sjasm. ColecoVision BIOS ROM must be in "coleco.rom" ; in the same directory where loader.asm is assembled. ; ; CP/M file loader code from https://github.com/MMaciocia/RC2014-YM2149 ; ...
programs/oeis/299/A299256.asm
jmorken/loda
1
196789
; A299256: Coordination sequence for 3D uniform tiling formed by stacking parallel layers of the 3.6.3.6 2D tiling (cf. A008579). ; 1,6,18,40,72,112,162,220,288,364,450,544,648,760,882,1012,1152,1300,1458,1624,1800,1984,2178,2380,2592,2812,3042,3280,3528,3784,4050,4324,4608,4900,5202,5512,5832,6160,6498,6844,7200,7564,...
src/firmware-tests/Platform/Timer0/InitialiseAfterTimer0Mock.asm
pete-restall/Cluck2Sesame-Prototype
1
196790
<gh_stars>1-10 #include "Platform.inc" #include "InitialisationChain.inc" #include "TestDoubles.inc" radix decimal udata global calledInitialiseAfterTimer0 calledInitialiseAfterTimer0 res 1 InitialiseAfterTimer0Mock code global initialiseInitialiseAfterTimer0Mock global INITIALISE_AFTER_TIMER0 initialiseIn...
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i7-8650U_0xd2.log_219_1848.asm
ljhsiun2/medusa
9
196792
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_A_ht+0x1a74a, %rsi lea addresses_normal_ht+0x1d91d, %rdi nop nop cmp $41167, %r12 mov $32, %rcx rep movsl nop nop add %rax, %rax lea addresses_UC_ht+0xe2ca, %rsi lea addresses_A_ht+0...
programs/oeis/256/A256817.asm
karttu/loda
0
196793
; A256817: Number of length n+2 0..1 arrays with at most two downsteps in every n consecutive neighbor pairs. ; 8,16,32,64,124,229,402,673,1080,1670,2500,3638,5164,7171,9766,13071,17224,22380,28712,36412,45692,56785,69946,85453,103608,124738,149196,177362,209644,246479,288334,335707,389128,449160,516400,591480,675068,7...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2457.asm
ljhsiun2/medusa
9
196794
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r9 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_normal_ht+0xb055, %r11 sub %r14, %r14 mov (%r11), %ebx nop nop nop nop cmp $35099, %rbx lea addresses_normal_ht+0xcded, %r11 nop nop nop nop nop xor $5693, %rdx mov (%r11),...
data/pokemon/base_stats/sinnoh/magmortar.asm
Dev727/ancientplatinum
0
196795
<gh_stars>0 db 0 ; 467 DEX NO db 75, 95, 67, 83, 125, 95 ; hp atk def spd sat sdf db FIRE, FIRE ; type db 30 ; catch rate db 199 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F25 ; gender ratio db 100 ; unknown 1 db 25 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/sinnoh/magm...
oeis/107/A107858.asm
neoneye/loda-programs
11
196796
<filename>oeis/107/A107858.asm ; A107858: a(n) = b(k), where b(k) = Fibonacci(n-1) and k = floor( n*(1+sqrt(5))/2 ). ; Submitted by <NAME>(s1) ; 1,1,2,3,7,11,28,45,117,189,494,799,2091,3383,8856,14329,37513,60697,158906,257115,673135,1089155,2851444,4613733,12078909,19544085,51167078,82790071,216747219,350704367,918155...
oeis/069/A069271.asm
neoneye/loda-programs
11
196797
<reponame>neoneye/loda-programs ; A069271: a(n) = binomial(4*n+1,n)*2/(3*n+2). ; 1,2,9,52,340,2394,17710,135720,1068012,8579560,70068713,580034052,4855986044,41043559340,349756577100,3001701610320,25921837477692,225083787458904,1963988670706228,17211860478150800,151433425446423120,1337084111034954810,118440103675466828...
programs/oeis/066/A066715.asm
neoneye/loda
22
196798
; A066715: a(n) = gcd(2n+1, sigma(2n+1)). ; 1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,3,1,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,3,1,7,1,5,1,3,1,1,3,1,1,1,1,1,13,1,1,3,1,1,1,1,1,15,1,1,3,1,5,3,1,1,9,1,1,3,1,1,3,1,1,1,1,1,3,1,1,1,1,1,1,1,1,3,1,1 mul $0,2 mov $1,$0 seq $0,203 ; a(n) = sigma(n), the sum of the divisors ...
programs/oeis/179/A179259.asm
neoneye/loda
22
196800
<filename>programs/oeis/179/A179259.asm ; A179259: Arises in covering a graph by forests and a matching. ; 2,12,52,140,294,532,872,1332,1930,2684,3612,4732,6062,7620,9424,11492,13842,16492,19460,22764,26422,30452,34872,39700,44954,50652,56812,63452,70590,78244,86432,95172,104482,114380,124884,136012,147782,160212,17332...
programs/oeis/160/A160186.asm
neoneye/loda
22
196802
; A160186: Lodumo_5 of Lucas numbers. ; 2,1,3,4,7,6,8,9,12,11,13,14,17,16,18,19,22,21,23,24,27,26,28,29,32,31,33,34,37,36,38,39,42,41,43,44,47,46,48,49,52,51,53,54,57,56,58,59,62,61,63,64,67,66,68,69,72,71,73,74,77,76,78,79,82,81,83,84,87,86,88,89 mov $2,$0 add $2,$0 mov $3,8 add $3,$0 sub $0,$3 mov $1,$0 mov $0,$3 gc...
tvm/test/data/many-variables.asm
psyomn/sprawl
0
196803
<filename>tvm/test/data/many-variables.asm .ORIG x3000 ADD R1, R2, R3 ADD R1, R2, R3 HALT VAR1 .STRINGZ "hello world" VAR2 .STRINGZ "goodbye world" VAR3 .STRINGZ "not so fast world" VAR4 .BLKW 1 VAR5 .BLKW 1000
mips-basic-algorithms/exercices/ex4.asm
jvwasquevite/computer-architecture-and-organization
0
196804
# Calcular o fatorial de n, onde o valor de n deve ser lido da posicao inicial # (0x10010000) e o resultado (n!) deve ser escrito na posicao seguinte 0x10010004 ## Registradores utilizados: # $t0 = Operador e resultado final do calculo # $t1 = Operando do calculo, inserido pelo usuario # $t2 = Registrador auxiliar de ...
programs/oeis/103/A103303.asm
karttu/loda
1
196806
<filename>programs/oeis/103/A103303.asm<gh_stars>1-10 ; A103303: Complete list of digits used in the counting numbers (in base 10). Also known as the "arabic numerals". ; 0,1,2,3,4,5,6,7,8,9 lpb $0,1 mov $1,$0 sub $0,12 lpe
programs/oeis/000/A000295.asm
neoneye/loda
22
196807
; A000295: Eulerian numbers (Euler's triangle: column k=2 of A008292, column k=1 of A173018). ; 0,0,1,4,11,26,57,120,247,502,1013,2036,4083,8178,16369,32752,65519,131054,262125,524268,1048555,2097130,4194281,8388584,16777191,33554406,67108837,134217700,268435427,536870882,1073741793,2147483616,4294967263,8589934558,171...
data/mapHeaders/MtMoonB2F.asm
AmateurPanda92/pokemon-rby-dx
9
196808
MtMoonB2F_h: db CAVERN ; tileset db MT_MOON_B2F_HEIGHT, MT_MOON_B2F_WIDTH ; dimensions (y, x) dw MtMoonB2F_Blocks ; blocks dw MtMoonB2F_TextPointers ; texts dw MtMoonB2F_Script ; scripts db 0 ; connections dw MtMoonB2F_Object ; objects
project_testing/sarah.asm
Ahmed-ata112/processor_simulation_game
1
196809
<gh_stars>1-10 check_if_in_array macro arr, arr_len, element_size , op ,result local L1 ,finish,found lea si,arr mov bh,arr_len ;; number of elements in array L1: mov cx,element_size lea di,op ; store the string we search for repe CMPSB cmp cx,0 ;; CX =0 if the 2 current words equall je found ...
v0100/tests/test.asm
apfeltee/SmallerC
1
196811
<filename>v0100/tests/test.asm bits 16 org 0x100 ; glb main : (void) int ; glb start : (void) void _start: push bp mov bp, sp jmp L2 L1: ; RPN'ized expression: "( main ) " ; Expanded expression: " main ()0 " ; Fused expression: "( main )0 " call _main L3: leave ret L2: jmp L1 ; glb dosputch : ( ; prm c :...
src/main.asm
remy/next-http
14
196812
<filename>src/main.asm DEVICE ZXSPECTRUM48 SLDOPT COMMENT WPMEM, LOGPOINT, ASSERTION OPT reset --zxnext --syntax=abfw ; DEFINE TESTING ; DEFINE THROTTLE ; throttle storage writing INCLUDE "version.inc.asm" INCLUDE "macros.inc.asm" INCLUDE "constants.inc.asm" ;; Dot commands always start at $2000, with H...
wof/lcs/enemy/78.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
196813
<filename>wof/lcs/enemy/78.asm copyright zengfr site:http://github.com/zengfr/romhack 001590 lea ($20,A0), A0 008574 bne $858c [enemy+78] 00881C bne $882a 009010 bne $9022 [enemy+78] 00929A bne $92a8 [enemy+78] 00957E or.b ($9b,A1), D0 [enemy+78] 00970E bne $971c [enemy+78] 009AB8 b...
tiny/tiny.asm
sparrc/dockerfiles
0
196815
BITS 32 org 0x00200000 db 0x7F, "ELF" hello: db "hello world", 10 dw 2 dw 3 ; nasm insisted on aligning them properly so let's do it this way exit: dd 0x80cd4066 ; inc eax - int 0x80 dd s...
programs/oeis/052/A052945.asm
karttu/loda
0
196817
; A052945: Number of compositions of n when each odd part can be of two kinds. ; 1,2,5,14,38,104,284,776,2120,5792,15824,43232,118112,322688,881600,2408576,6580352,17977856,49116416,134188544,366609920,1001596928,2736413696,7476021248,20424869888,55801782272,152453304320 mov $1,1 lpb $0,1 sub $0,1 add $2,$3 add ...
data/baseStats_original/chinchou.asm
adhi-thirumala/EvoYellow
16
196818
<reponame>adhi-thirumala/EvoYellow ;ChinchouBaseStats: ; 38aa6 (e:4aa6) db DEX_CHINCHOU ; pokedex id db 75 ; base hp db 38 ; base attack db 38 ; base defense db 67 ; base speed db 56 ; base special db WATER ; species type 1 db ELECTRIC ; species type 2 db 190 ; catch rate db 90 ; base exp yield INCBIN "pic/ymon/chincho...
common/registers.asm
degaart/Rastapopoulos
1
196819
<filename>common/registers.asm section .text ; uint32_t read_cr3() global read_cr3 read_cr3: mov eax, cr3 ret ; uint32_t read_cr2() global read_cr2 read_cr2: mov eax, cr2 ret ; uint32_t read_cr1() global read_cr1 read_cr1: mov eax, cr1 ret ; uint32_t read_cr0() global read_cr0 re...
term3/Programmirovanie/test.asm
japanese-goblinn/labs
0
196821
.model small .stack 100h .data testMessage db 'Hello Word! Im very cool program for testing lab6', 13, 10, '$' .code Start: mov ax, @DATA mov ds, ax mov dx, offset testMessage mov ah, 09h int 21h mov ax, 4C00h int 21h end Start
programs/oeis/001/A001768.asm
neoneye/loda
22
196822
; A001768: Sorting numbers: number of comparisons for merge insertion sort of n elements. ; 0,1,3,5,7,10,13,16,19,22,26,30,34,38,42,46,50,54,58,62,66,71,76,81,86,91,96,101,106,111,116,121,126,131,136,141,146,151,156,161,166,171,177,183,189,195,201,207,213,219,225,231,237,243,249,255,261,267,273,279,285,291,297,303,309,...
bios/inc.asm
minblock/msdos
0
196823
<gh_stars>0 ;/* ; * Microsoft Confidential ; * Copyright (C) Microsoft Corporation 1981-1991 ; * All Rights Reserved. ; */ TITLE FILE - Listing of DOS .INC files include dosseg.inc CODE SEGMENT ASSUME SS:DOSGroup,CS:DOSGroup include dossym.inc include d...
povver/music.asm
bushy555/ZX-Spectrum-1-Bit-Routines
59
196824
dw ptn00 dw ptn00 dw ptn00 dw ptn00 dw ptn01 dw ptn01x dw ptn01x dw ptn01x dw ptn01a dw ptn01ax dw ptn01ax dw ptn01b mLoop dw ptn03 dw ptn03x dw ptn03a dw ptn03ax dw ptn03b dw ptn03bx dw ptn03c dw ptn03axr dw 0 ;speed+ctrl, [offset1+freq1, offset2+freq2, offset3+freq3], drum+noise_enable p...
programs/oeis/295/A295388.asm
karttu/loda
1
196825
<reponame>karttu/loda ; A295388: a(n) is the least k > n such that n divides k, and n+1 divides k+1, and n+2 divides k+2. ; 7,14,63,64,215,174,511,368,999,670,1727,1104,2743,1694,4095,2464,5831,3438,7999,4640,10647,6094,13823,7824,17575,9854,21951,12208,26999,14910,32767,17984,39303,21454,46655,25344,54871,29678,63999,...
oeis/202/A202410.asm
neoneye/loda-programs
11
196826
; A202410: Inverse Lah transform of 1,2,3,...; e.g.f. exp(x/(x-1))*(2*x-1)/(x-1). ; Submitted by <NAME> ; 1,-2,-1,2,17,94,487,2386,9473,638,-727729,-14280542,-222283631,-3235193378,-46058318473,-649936245646,-9071848025983,-123239922765314,-1562265600970337,-16288001936745662,-55920926830283119,4236297849575724638,2013...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_1_1742.asm
ljhsiun2/medusa
9
196829
.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_WT_ht+0x14d2c, %rsi lea addresses_WC_ht+0x1532c, %rdi inc %r12 mov $50, %rcx rep movsq xor %rcx, %rcx lea addresses_WC_ht+0x7986, %r8 dec %rax mov $0x6162636465666768, %r13 movq %r13...
oeis/219/A219531.asm
neoneye/loda-programs
11
196830
; A219531: a(n) = Sum_{k=0..11} C(n, k). ; Submitted by <NAME> ; 1,2,4,8,16,32,64,128,256,512,1024,2048,4095,8178,16278,32192,63019,121670,230964,430104,784626,1401292,2449868,4194304,7036530,11576916,18696432,29666704,46295513,71116846,107636402,160645504,236618693,344212906,494889092,703680424,990134948,1379464600,19...
programs/oeis/254/A254368.asm
neoneye/loda
22
196831
<filename>programs/oeis/254/A254368.asm ; A254368: a(n) = 5*2^n + 3^n + 15. ; 21,28,44,82,176,418,1064,2842,7856,22258,64184,187402,551936,1635298,4864904,14512762,43374416,129795538,388731224,1164882922,3492027296,10470838978,31402031144,94185121882,282513422576,847456381618,2542201372664,7626268573642,22878134632256,...
oeis/141/A141854.asm
neoneye/loda-programs
11
196832
<reponame>neoneye/loda-programs ; A141854: Primes congruent to 7 mod 11. ; Submitted by <NAME> ; 7,29,73,139,227,271,293,337,359,491,557,601,733,821,887,953,997,1019,1063,1129,1151,1217,1283,1327,1459,1481,1613,1657,1723,1789,1811,1877,1987,2053,2141,2207,2251,2273,2339,2383,2647,2713,2801,2999,3109,3307,3329,3373,3461...
programs/oeis/158/A158289.asm
neoneye/loda
22
196833
; A158289: Period 18 zigzag sequence: repeat [0,1,2,3,4,5,6,7,8,9,8,7,6,5,4,3,2,1]. ; 0,1,2,3,4,5,6,7,8,9,8,7,6,5,4,3,2,1,0,1,2,3,4,5,6,7,8,9,8,7,6,5,4,3,2,1,0,1,2,3,4,5,6,7,8,9,8,7,6,5,4,3,2,1,0,1,2,3,4,5,6,7,8,9,8,7,6,5,4,3,2,1,0,1,2,3,4,5,6,7,8,9,8,7,6,5,4,3,2,1,0,1,2,3,4,5,6,7,8,9 lpb $0 sub $0,5 mov $2,13 t...
Design/voltages.asm
aaiijmrtt/JUCSE
6
196834
; procedure to display potentiometer readings in data field ; begin at 2100h lxi h, 2500h mov a, m; load potentiometer value rar rar rar rar rar sta 2510h; store most significant 3 bits inx h mov a, m; load potentiometer value rar rar rar rar rar sta 2511h; store most significant 3 bits mvi a, 01h; set parameter for d...
CSC-308/MASM/Add.asm
FrancesCoronel/cs-hu
2
196835
; ; Add Two Numbers ; .386 .model flat,stdcall .STACK include kernel32.inc include masm32.inc includelib kernel32.lib includelib masm32.lib .DATA ExitMsg byte "Press any key to continue . . . ", 00dh, 00ah, 0 CRLF byte 00dh, 00ah, 0 FirstMsg db "Enter the first number", 00dh, 00ah, 0 SecondMsg...
src/uefi.asm
badcf00d/UEFI-helloworld
1
196836
<reponame>badcf00d/UEFI-helloworld ; Example to print hello world to the screen from the UEFI ; ; Can be used with: ; make ; make qemu bits 64 ; generate 64-bit code default rel ; default to RIP-relative addressing %include "src/include/typedefs.asm" section .text ; contains the progr...
main.asm
hassantsf-acd/matrix-asm
0
196838
<reponame>hassantsf-acd/matrix-asm %include "asm_io.inc" segment .data A: times 25 * 25 dd 0 B: times 25 * 25 dd 0 C: times 25 * 25 dd 0 row_A: dd 0 col_A: dd 0 row_B: dd 0 col_B: dd 0 row_C: dd 0 col_C: dd 0 valid_A: dd 0 valid_B: dd 0 %include "modules/messages.inc" ; Helper Variables sum: dd 0 k: dd 0 var1: dd 0 var...
oeis/089/A089909.asm
neoneye/loda-programs
11
196839
; A089909: Sum of digits of numbers between 0 and (8/9)*(10^n-1). ; Submitted by <NAME>(s4) ; 0,36,748,11460,154572,1945684,23456796,274567908,3145679020,35456790132,394567901244,4345679012356,47456790123468,514567901234580,5545679012345692,59456790123456804,634567901234567916 mov $2,$0 lpb $0 sub $0,1 add $1,1 ...
oeis/108/A108269.asm
neoneye/loda-programs
11
196840
<filename>oeis/108/A108269.asm ; A108269: Numbers of the form (2*m - 1)*4^k where m >= 1, k >= 1. ; Submitted by <NAME> ; 4,12,16,20,28,36,44,48,52,60,64,68,76,80,84,92,100,108,112,116,124,132,140,144,148,156,164,172,176,180,188,192,196,204,208,212,220,228,236,240,244,252,256,260,268,272,276,284,292,300,304,308,316,320...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_962.asm
ljhsiun2/medusa
9
196841
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x16ab2, %rdx and $53339, %r14 movb (%rdx), %al nop nop nop cmp $39754, %r10 lea addresses_WT_ht+0x201a, %rsi lea addresses_normal_ht+0x...
Bootloader/Stage1/Bootloader.asm
Archlisk/fos2
0
196842
[ORG 0x7C00] [BITS 16] FSVD_LBA equ 1 FSVD_LOAD_ADDR equ 0x8000 STAGE2_LOAD_ADDR equ 0x8200 start: mov [boot_drive], dl ; Set video mode to 3 to clear the screen mov ah, 0x00 mov al, 0x03 int 0x10 ; Zero the segments xor ax, ax mov ds, ax mov es, ax mov ss, ax mov sp, [FSVD_LOAD_ADDR] ; Load the FSVD...
Examples/simple_loops/print_string_v3.asm
IanM-Matrix1/KickAss_hla
1
196843
<filename>Examples/simple_loops/print_string_v3.asm<gh_stars>1-10 /* Example: print_string_v3.asm This is a demonstration of nested structured statements. This code uses an alternative string representation - the first byte is the number of bytes in the string, and is followed by the data. The st...
Library/User/Gen/genC.asm
steakknife/pcgeos
504
196844
COMMENT @---------------------------------------------------------------------- Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: User/Gen FILE: genC.asm REVISION HISTORY: Name Date Description ---- ---- ----------- brianc 8/91 Initial version DESCRIPTION: This file...
Assembly logic/Classes and structs.asm
cashsignsesh/ProgrammingLanguageTutorialIdea
4
196845
; Possible Issue: ; - If I programmed an opcode that directly jumps to an address etc.. ; it could potentailly be dangerous if it ends up in a class depending ; on what it is exactly format PE start: classSize=30 ; Class size in bytes, compiler can get this ; Mandatory GetProcessHeap - Func...
engine/battle/move_effects/paralyze.asm
opiter09/ASM-Machina
1
196846
<reponame>opiter09/ASM-Machina<gh_stars>1-10 ParalyzeEffect_: ld hl, wEnemyMonStatus ld de, wPlayerMoveType ldh a, [hWhoseTurn] and a jp z, .next ld hl, wBattleMonStatus ld de, wEnemyMoveType .next ld a, [hl] and a ; does the target already have a status ailment? jr nz, .didntAffect ; check if the target is i...
oeis/284/A284800.asm
neoneye/loda-programs
11
196847
<gh_stars>10-100 ; A284800: Fixed points of the transform A284799. ; Submitted by <NAME> ; 6,9,12,78,90,102,114,141,153,165,177,204,216,228,240,1086,1134,1182,1230,1338,1386,1434,1482,1590,1638,1686,1734,1842,1890,1938,1986,2109,2157,2205,2253,2361,2409,2457,2505,2613,2661,2709,2757,2865,2913,2961,3009,3132,3180,3228,3...
Driver/Keyboard/GDI/gdiKeyboardManager.asm
steakknife/pcgeos
504
196848
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (c) Copyright Geoworks 1996 -- All Rights Reserved GEOWORKS CONFIDENTIAL PROJECT: MODULE: FILE: gdi-keyboardManager.asm AUTHOR: <NAME>, <NAME>, 1996 METHODS: Name Description ---- ----------- ROUTINES: ...
oeis/228/A228741.asm
neoneye/loda-programs
11
196849
<reponame>neoneye/loda-programs ; A228741: Number of arrays of the median of three adjacent elements of some length-6 0..n array. ; Submitted by <NAME>(s2) ; 16,77,232,545,1096,1981,3312,5217,7840,11341,15896,21697,28952,37885,48736,61761,77232,95437,116680,141281,169576,201917,238672,280225,326976,379341,437752,502657...
Lab3/Lab31.asm
siwasilp/Micro
0
196850
<reponame>siwasilp/Micro<filename>Lab3/Lab31.asm ;Lab31.asm ORG 0000H ;1 START31: MOV A,22H ;2 MOV 24H,A ;3 MOV R0,24H ;4 MOV R7,23H ;5 MOV 27H,R0 ;6 MOV 28H,R7 ;7 MOV 22H,23H ;8 SJMP $ ;9 END ;10
oeis/022/A022243.asm
neoneye/loda-programs
0
196851
<reponame>neoneye/loda-programs ; A022243: Gaussian binomial coefficients [ n,3 ] for q = 8. ; Submitted by <NAME>(w4) ; 1,585,304265,156087945,79936505481,40928737412745,20955593338439305,10729268895402608265,5493386001237942388361,2812613653548502301460105,1440058191955372430686340745,737309794366817196670904616585,3...
oeis/015/A015525.asm
neoneye/loda-programs
11
196852
; A015525: Expansion of x/(1-3*x-8*x^2). ; Submitted by <NAME> ; 0,1,3,17,75,361,1683,7937,37275,175321,824163,3875057,18218475,85655881,402715443,1893393377,8901903675,41852858041,196773803523,925144274897,4349623252875,20450023957801,96147057896403,452041365351617,2125300559226075,9992232600491161,46979102275282083,2...
os/ktime.asm
Sebazzz/sdos
1
196853
; ktime.asm ; ; Kernel timer [bits 32] %include "../macro.incl.asm" %include "../hwport.incl.asm" extern nmi_enable extern nmi_disable ; kinit_init_timer ; Initializes the RTC ; ; Input: nothing ; Output: nothing global kinit_init_timer kinit_init_timer: cli ; we expect this to be called with interrupts off, but ne...
oeis/024/A024564.asm
neoneye/loda-programs
11
196854
<reponame>neoneye/loda-programs ; A024564: a(n) = [ 1/{n*sqrt(7)} ], where {x} := x - [ x ]. ; Submitted by <NAME> ; 1,3,1,1,4,1,1,6,1,2,9,1,2,24,1,3,1,1,3,1,1,4,1,2,6,1,2,12,1,2,54,1,3,1,1,4,1,1,5,1,2,8,1,2,17,1,2,1,1,3,1,1,4,1,1,6,1,2,10,1,2,27,1,3,1,1,3,1,1,4,1,2,7,1,2,12,1,2,69,1,3,1,1,4,1,1,5,1,2,8,1,2,18,1,2,1,1,...
third-party/gmp/gmp-src/mpn/arm64/gcd_11.asm
jhh67/chapel
1,602
196856
dnl ARM v8a mpn_gcd_11. dnl Based on the K7 gcd_1.asm, by <NAME>. Rehacked for ARM by Torbjorn dnl Granlund. dnl Copyright 2000-2002, 2005, 2009, 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/or mo...
Library/SpecUI/CommonUI/CButton/copenButton.asm
steakknife/pcgeos
504
196858
<reponame>steakknife/pcgeos COMMENT @---------------------------------------------------------------------- Copyright (c) GeoWorks 1988 -- All Rights Reserved PROJECT: PC GEOS MODULE: CommonUI/COpen (gadgets code common to all specific UIs) FILE: copenButton.asm (common portion of button code) ROUTINES: ...
kill.asm
chen-cohen/xv6_2
0
196859
_kill: 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 ...
examples/mix-c-asm/sources/mynum-avr.asm
JohnHau/cmake-tutorial
14
196860
<reponame>JohnHau/cmake-tutorial NAME mynum RSEG CSTACK:DATA:NOROOT(0) RSEG RSTACK:DATA:NOROOT(0) PUBLIC mynum RSEG CODE:CODE:NOROOT(1) mynum: LDI R16, 42 LDI R17, 0 RET END
Library/Spline/UI/uiControl.asm
steakknife/pcgeos
504
196861
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: uiControl.asm AUTHOR: <NAME> METHODS: Name Description ---- ----------- FUNCTIONS: Scope Name Description ----- ---- ----------- ...
unittests/32Bit_ASM/X87/DD_07.asm
cobalt2727/FEX
628
196862
%ifdef CONFIG { "RegData": { "RAX": "0xFFFF3800", "RBX": "0xFFFF0000" }, "Mode": "32BIT" } %endif lea edx, [.data] mov eax, -1 mov ebx, -1 fnstsw [edx + 8 * 1] fld dword [edx + 8 * 0] fnstsw [edx + 8 * 2] mov ax, word [edx + 8 * 2] mov bx, word [edx + 8 * 1] hlt .data: dq 0x3f800000 dq 0 dq 0
Transynther/x86/_processed/NONE/_ht_zr_xt_/i7-7700_9_0x48_notsx.log_21829_1911.asm
ljhsiun2/medusa
9
196863
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r9 push %rcx push %rdi push %rsi lea addresses_normal_ht+0xf413, %rsi lea addresses_WC_ht+0x1b932, %rdi clflush (%rdi) dec %r14 mov $64, %rcx rep movsw nop nop nop nop xor %r9, %r9 pop %rsi pop %rdi pop %rcx pop %r9 pop %r14 ret .global s_faulty_load s_f...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1322.asm
ljhsiun2/medusa
9
196865
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x273, %rsi lea addresses_WC_ht+0x17673, %rdi nop nop nop xor %rbp, %rbp mov $75, %rcx rep movsw nop nop nop inc %rcx lea addresses_D_ht+0x5f3, %rdx nop and %rdi, %rdi movb $0x61, (%rdx)...
MasmEd/MasmEd/Opt/AddinManager.asm
CherryDT/FbEditMOD
11
196866
<reponame>CherryDT/FbEditMOD IDD_DLGADDINMANAGER equ 6100 IDC_LSTADDINS equ 1001 IDC_BTNHELP equ 1002 .const szAddinPath db '\Addins\',0 szAllDll db '*.dll',0 szHelpPath db '\Addins\Help\',0 .data? lpOldAddinListProc dd ? .code AddinListProc proc hWin:HWND,uMsg:UIN...
oeis/095/A095307.asm
neoneye/loda-programs
11
196867
<filename>oeis/095/A095307.asm ; A095307: Number of walks of length n between two nodes at distance 2 in the cycle graph C_7. ; Submitted by <NAME> ; 1,0,4,1,15,7,56,37,210,176,793,793,3017,3458,11561,14756,44592,62017,172995,257775,674520,1062601,2641366,4352660,10381281,17742621,40927033,72048354,161766061,291693136,...
Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xa0.log_21829_1418.asm
ljhsiun2/medusa
9
196868
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x5331, %rsi lea addresses_UC_ht+0x11bc1, %rdi nop nop nop sub $58149, %r8 mov $124, %rcx rep movsw nop nop and $55758, %rdi lea addresses_WT_ht+0x14871, %r14 and $7487, %rcx mo...
src/PJ/fileio/dosnext.asm
AnimatorPro/Animator-Pro
119
196869
CGROUP group code code segment dword 'CODE' assume cs:CGROUP,ds:CGROUP include errcodes.i public pj_dnext ; Boolean pj_dnext(void); pj_dnext proc near mov ah,4fh int 21h jc jsnbad mov eax,1 jmp jsnret jsnbad: xor eax,eax ;zero out result jsnret: ret pj_dnext endp code ends end
r_lib_zx.asm
jorgicor/altair
0
196870
<filename>r_lib_zx.asm ; ---------------------------------------------------------------------------- ; Altair, CIDLESA's 1981 arcade game remade for the ZX Spectrum and ; Amstrad CPC. ; ---------------------------------------------------------------------------- ; Back buffer. bbuf .equ LIB_RAM_START BBUFSZ .equ BBUF...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1731.asm
ljhsiun2/medusa
9
196871
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r8 push %r9 push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0xe9d1, %rsi lea addresses_normal_ht+0x17231, %rdi clflush (%rdi) nop nop nop nop sub $58372, %r9 mov $55, %rcx rep movsw nop add %r12, %r12 lea addresses_WC_ht+0x1e1d1, %r...
lib/chibiakumas/SrcMSX/MSX1_V1_BitmapMemory_Header.asm
gilbertfrancois/msx
0
196872
BmpByteWidth equ 1 CharByteWidth equ 1 VdpIn_Data equ &98 VdpIn_Status equ &99 VdpOut_Data equ &98 VdpOut_Control equ &99 VdpOut_Palette equ &9A VdpOut_Indirect equ &9B Vdp_SendByteData equ &9B ;V9990 functions ;Vdp9k_Data equ &60 ;VRAM data port ;Vdp9k_Palette equ &61 ;Palette data port ;Vdp9...
demo2/demo2.asm
simonowen/tile2sam
2
196873
<filename>demo2/demo2.asm ; Demo 2 - draw masked sprites with background save/restore lmpr: equ 250 hmpr: equ 251 vmpr: equ 252 rom0_off: equ %00100000 mode4: equ %01100000 base: equ &8000 interrupt: equ &0038 lastpos: equ &e000 save_buffers: equ &f000 org 0 dump base+$ autoexec ...
programs/oeis/211/A211661.asm
jmorken/loda
1
196874
; A211661: Number of iterations log_3(log_3(log_3(...(n)...))) such that the result is < 1. ; 1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3 lpb $0 div $0,26 add $0,1 add $1,1 lpe add $1,1...
uti/opencon.asm
olifink/smsqe
0
196875
<reponame>olifink/smsqe ; Open console for current job section utility include dev8_keys_err include dev8_keys_qdos_io include dev8_mac_xref xdef ut_opconhi ; open console and set highest display mode xdef ut_opcon ; open console under current display mode ut_opconhi xjsr ut_himod ; check and set mode first ...
libsrc/graphics/spectrum/bksave.asm
jpoikela/z88dk
640
196878
; ; Fast background save ; ; ZX Spectrum version (speeded up with a row table) ; ; $Id: bksave.asm $ ; SECTION smc_clib PUBLIC bksave PUBLIC _bksave EXTERN pixeladdress EXTERN zx_saddrpdown EXTERN swapgfxbk EXTERN __graphics_end .bksave ._bksave push ix call swapgfxbk ld hl,4 ...
Transynther/x86/_processed/NONE/_un_xt_sm_/i7-7700_9_0x48.log_21829_184.asm
ljhsiun2/medusa
9
196880
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r15 push %r8 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0xffe1, %rcx nop nop nop nop nop cmp $62833, %r8 movups (%rcx), %xmm6 vpextrq $0, %xmm6, %rbp nop nop nop xor $57569, %r14 lea addresses_UC_ht+0xb2e1, %r14 nop and %r...
RTC/AsmDebug/macros.asm
Threetwosevensixseven/CSpectPlugins
4
196881
; macros.asm Border macro(Colour) if Colour=0 xor a else ld a, Colour endif out ($FE), a if Colour=0 xor...
MASM_Practice/33_ConsoleIO.asm
TuringGu/RELearning
0
196884
.586 .MODEL flat,stdcall option casemap:none include windows.inc include user32.inc include kernel32.inc include msvcrt.inc includelib user32.lib includelib kernel32.lib includelib msvcrt.lib .data text01 db "Title Here",0 text02 db "Hello World!",0 text03 db 0 format db "%s",0 .code main PROC ;Pop up a window p...
symbolinen_konekieli/Ratol_msdos/hex2dec.asm
tkukka/VariousContent
0
196885
<reponame>tkukka/VariousContent<filename>symbolinen_konekieli/Ratol_msdos/hex2dec.asm ;RaTol Symbolinen konekieli: ;Tero Kukka IY96A ;Tiedosto: hex2dec.asm ;Luotu 25.4.1998 include a:makrot.txt ;Muuntaa hex-luvun 10-järjestelmään. Suurin hex-luku 0009 fff6h. ;...
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1976.asm
ljhsiun2/medusa
9
196888
<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1976.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %r15 push %r9 push %rcx push %rdi push %rsi lea addresses_WT_ht+0x2ab6, %r13 nop add %rdi, %rdi and $0xffffffffffffffc0, %r13 movaps (%r1...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_1520.asm
ljhsiun2/medusa
9
196889
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r14 push %r8 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x4fe4, %rax nop nop nop nop dec %r12 mov (%rax), %r11 nop nop nop xor $42634, %r14 lea addresses_UC_ht+0xba6, %rdx nop nop nop nop nop cmp $12177, %r10 mov...
Tables/ShipClassTable.asm
TinfoilAsteroid/EliteNext
9
196890
ShipBodiesTable: DB $ - ShipBodiesTable ShipPackList: DB ShipID_Sidewinder, ShipID_Mamba, ShipID_Krait, ShipID_Adder, ShipID_Gecko, ShipID_Cobra_Mk_1, ShipID_Worm, ShipID_Cobra_Mk_3_P ShipPackTableSize EQU $ - ShipPackList ShipHunterTable DB ShipID_Cobra_Mk_3_P, ShipID_Asp_Mk_2, ShipID...
Transynther/x86/_processed/AVXALIGN/_st_zr_un_4k_sm_/i3-7100_9_0xca_notsx.log_21829_1348.asm
ljhsiun2/medusa
9
196891
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r14 push %r15 push %rbp push %rcx push %rdi push %rsi lea addresses_D_ht+0x3d7, %r13 nop nop nop sub $48282, %rdi mov (%r13), %r15d nop and $14262, %rbp lea addresses_A_ht+0xeac5, %r15 nop nop nop nop inc %rcx mov (%r15), %r12w nop ad...
src/test/ref/struct-ptr-16.asm
jbrandwood/kickc
2
196892
<filename>src/test/ref/struct-ptr-16.asm // Demonstrates problem with returning a dereferenced pointer to a struct // Commodore 64 PRG executable file .file [name="struct-ptr-16.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code [s...
libsrc/gfx/narrow/circle.asm
Frodevan/z88dk
4
196893
; ; Z88 Graphics Functions - Small C+ stubs ; ; Written around the Interlogic Standard Library ; ; Stubs Written by <NAME> - 30/9/98 ; ; ; $Id: circle.asm $ ; ; Usage: circle(int x, int y, int radius, int skip); IF !__CPU_INTEL__ & !__CPU_GBZ80__ SECTION code_graphics PUBLIC circle...
programs/oeis/034/A034999.asm
karttu/loda
1
196894
<filename>programs/oeis/034/A034999.asm ; A034999: Number of ways to cut a 2 X n rectangle into rectangles with integer sides. ; 1,2,8,34,148,650,2864,12634,55756,246098,1086296,4795090,21166468,93433178,412433792,1820570506,8036386492,35474325410,156591247016,691227204226,3051224496244,13468756547882,59453967813584,26...
oeis/020/A020989.asm
neoneye/loda-programs
11
196895
; A020989: a(n) = (5*4^n - 2)/3. ; Submitted by <NAME> ; 1,6,26,106,426,1706,6826,27306,109226,436906,1747626,6990506,27962026,111848106,447392426,1789569706,7158278826,28633115306,114532461226,458129844906,1832519379626,7330077518506,29320310074026,117281240296106,469124961184426,1876499844737706,7505999378950826,3002...