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
programs/oeis/160/A160828.asm
neoneye/loda
22
57272
<reponame>neoneye/loda ; A160828: a(n) = 4*n^4 + 24*n^3 + 84*n^2 + 144*n + 98. ; 98,354,978,2258,4578,8418,14354,23058,35298,51938,73938,102354,138338,183138,238098,304658,384354,478818,589778,719058,868578,1040354,1236498,1459218,1710818,1993698,2310354,2663378,3055458,3489378,3968018,4494354,5071458,5702498,6390738,7...
chip8/kas/examples/sub.asm
thaolt/c8basic
4
57273
<filename>chip8/kas/examples/sub.asm<gh_stars>1-10 include 'c8.asm' org 0x200 ; ; sub sum ; a = 1 ; b = 2 ; let c ; c = a + b ; draw( 0, 0, c ) ; endsub ; ; cls() ; gosub sum ; jmp _start _global: .dummy db 0 .stk_idx db 0 ; last stack index .reg_dump db 16 dup 0 _start: hires ; clear screen cls ...
programs/oeis/096/A096383.asm
neoneye/loda
22
57274
<reponame>neoneye/loda ; A096383: Area of the Pythagorean triangle a = u^2 - v^2 (cf. A096382) when u=3, v=4,4,5,... ; 84,240,486,840,1320,1944,2730,3696,4860,6240,7854,9720,11856,14280,17010,20064,23460,27216,31350,35880,40824,46200,52026,58320,65100,72384,80190,88536,97440,106920,116994,127680,138996,150960,163590 m...
programs/oeis/027/A027941.asm
jmorken/loda
1
57275
<reponame>jmorken/loda ; A027941: a(n) = Fibonacci(2n+1) - 1. ; 0,1,4,12,33,88,232,609,1596,4180,10945,28656,75024,196417,514228,1346268,3524577,9227464,24157816,63245985,165580140,433494436,1134903169,2971215072,7778742048,20365011073,53316291172,139583862444,365435296161,956722026040,2504730781960,6557470319841,17167...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca_notsx.log_12_1715.asm
ljhsiun2/medusa
9
57276
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r14 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x188b0, %rsi lea addresses_normal_ht+0x138e1, %rdi clflush (%rsi) nop nop nop nop nop inc %rbx mov $68, %rcx rep movsl nop nop nop nop nop cmp $1879...
projects/08/FunctionCalls/FibonacciElement/Sys.asm
ITFS777/n2t
0
57277
<reponame>ITFS777/n2t @256 D=A @SP M=D (Sys.init) @LCL D=M @SP M=D @4 D=A @SP A=M M=D @SP M=M+1 @return_address1 D=A @SP A=M M=D @SP M=M+1 @LCL D=M @SP A=M M=D @SP M=M+1 @ARG D=M @SP A=M M=D @SP M=M+1 @THIS D=M @SP A=M M=D @SP M=M+1 @THAT D=M @SP A=M M=D @SP M=M+1 ...
lab_11_str/lab_11_str/CopyStr.asm
Winterpuma/bmstu_MDPL
14
57278
<reponame>Winterpuma/bmstu_MDPL<gh_stars>10-100 .386 .model flat, c public CopyStr .code CopyStr: push ebp mov ebp, esp push edi mov esi, [ebp + 8] ; s1 mov edi, [ebp + 12] ; s2 mov ecx, [ebp + 16] ; len mov eax, edi sub edi, esi ; find which one is bigger cmp edi, 0 jge edi_pos ; if edi is bigger then e...
asm/ooe_reveal_bestiary.asm
Iemnur/DSVEdit
70
57280
<filename>asm/ooe_reveal_bestiary.asm .nds .relativeinclude on .erroronwarning on ; Reveals all entries in the bestiary from the start of the game. .open "ftc/overlay9_22", 02223E00h .org 0x0222D424 ; Check for whether to display the enemy name or ??? in the enemy list. mvn r1, 0h ; Set all bits. .org 0x0222CF38 ...
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0xca.log_21829_509.asm
ljhsiun2/medusa
9
57281
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r15 push %r8 push %rcx push %rdi push %rsi lea addresses_normal_ht+0x1c1f0, %r15 nop nop nop nop add %r8, %r8 mov (%r15), %r12d nop nop nop nop cmp $55996, %r11 lea addresses_WT_ht+0x1a9dc, %rdi nop nop nop nop nop inc %r13 ...
fiat-amd64/13.88_ratio11342_seed989931496276831_square_poly1305.asm
dderjoel/fiat-crypto
491
57282
<gh_stars>100-1000 SECTION .text GLOBAL square_poly1305 square_poly1305: sub rsp, 0x30 ; last 0x30 (6) for Caller - save regs mov [ rsp + 0x0 ], rbx; saving to stack mov [ rsp + 0x8 ], rbp; saving to stack mov [ rsp + 0x10 ], r12; saving to stack mov [ rsp + 0x18 ], r13; saving to stack mov [ rsp + 0x20 ], r14; savin...
oeis/337/A337151.asm
neoneye/loda-programs
11
57283
<gh_stars>10-100 ; A337151: a(n) = (n!)^2 * Sum_{k=0..n} (-1)^(n-k) * (k+1) / ((n-k)!)^2. ; Submitted by <NAME> ; 1,1,5,53,977,27649,1111429,60147205,4213400897,370767834593,40025019652901,5199763957426741,800136077306754385,143904538461745813153,29906871652295426507237,7111902097369951568209349,19186580666811986361063...
wc.asm
sagivnet/Opertion-Systems
0
57285
_wc: file format elf32-i386 Disassembly of section .text: 00000000 <main>: printf(1, "%d %d %d %s\n", l, w, c, name); } int main(int argc, char *argv[]) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 57 push %edi 4: 56 p...
src/test/ref/platform-asm6502.asm
jbrandwood/kickc
2
57286
// Tests the target platform ASM6502 // Generic ASM 6502 .file [name="platform-asm6502.prg", type="prg", segments="Program"] .segmentdef Program [segments="Code, Data"] .segmentdef Code [start=$3000] .segmentdef Data [startAfter="Code"] .segment Code main: { ldx #0 __b1: // for(char i=0;i<10;i++) cpx #$...
oeis/018/A018920.asm
neoneye/loda-programs
11
57287
<gh_stars>10-100 ; A018920: Pisot sequence T(3,10), a(n) = floor(a(n-1)^2/a(n-2)). ; Submitted by <NAME>(s4) ; 3,10,33,108,353,1153,3766,12300,40172,131202,428506,1399501,4570771,14928140,48755311,159234864,520061125,1698519827,5547366384,18117700664,59172417076,193257136076,631177877968,2061427183105,6732621943159,219...
oeis/086/A086084.asm
neoneye/loda-programs
11
57291
<gh_stars>10-100 ; A086084: A086070 in binary. ; Submitted by <NAME>(w1) ; 1,10,11,101,111,1011,1101,1111,10111,11011,11101,11111,101111,110111,111011,111101,111111,1011111,1101111,1110111,1111011,1111101,1111111,10111111,11011111,11101111,11110111,11111011,11111101,11111111,101111111,110111111,111011111,111101111,1111...
Source/SystemQOR/MSWindows/WinCmpSupQORVC/src/Memory/chkstk.asm
mfaithfull/QOR
9
57292
<filename>Source/SystemQOR/MSWindows/WinCmpSupQORVC/src/Memory/chkstk.asm<gh_stars>1-10 page ,132 title chkstk - C stack checking routine ;*** ;chkstk.asm - C stack checking routine ; ; Copyright (c) Microsoft Corporation. All rights reserved. ; ;Purpose: ; Provides support for automati...
programs/oeis/109/A109377.asm
jmorken/loda
1
57293
; A109377: Expansion of ( 2+x+2*x^2 ) / ( 1-2*x+x^2-x^3 ). ; 2,5,10,17,29,51,90,158,277,486,853,1497,2627,4610,8090,14197,24914,43721,76725,134643,236282,414646,727653,1276942,2240877,3932465,6900995,12110402,21252274,37295141,65448410,114853953,201554637,353703731,620706778 mov $1,2 mov $3,5 lpb $0 sub $0,1 add $...
src/debug/di/arm/floatconversion.asm
elinor-fung/coreclr
159
57294
; Licensed to the .NET Foundation under one or more agreements. ; The .NET Foundation licenses this file to you under the MIT license. ; See the LICENSE file in the project root for more information. ;; ==++== ;; ;; ;; ==--== #include "ksarm.h" ;; Arguments ;; input: (in R0) the adress of the ULONGLONG to be con...
pin-3.22-98547-g7a303a835-gcc-linux/source/tools/Regvalue/print_flags_asm.asm
ArthasZhang007/15418FinalProject
0
57296
; ; Copyright (C) 2014-2014 Intel Corporation. ; SPDX-License-Identifier: MIT ; include asm_macros.inc PROLOGUE PUBLIC getFlags PUBLIC modifyFlags .code modifyFlags PROC EXPORT ret modifyFlags ENDP ; Sets the flags register to the first argument of this function ; then call modifyFlags() and returns the value...
Lab Assessment Submission/Lab Assessment 2/la2.2_1812918642.asm
MohammadSakiL/CSE331L-Section-1-Fall20-NSU
0
57297
; You may customize this and other start-up templates; ; The location of this template is c:\emu8086\inc\0_com_template.txt org 100h A EQU 1 B EQU 2 C EQU 3 D EQU 4 MOV AX,A ADD AX,B ADD AX,C ADD AX,D MOV BX,AX ret
Driver/Video/VGAlike/Cyber16/cyber16Manager.asm
steakknife/pcgeos
504
57298
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GlobalPC 1998 -- All Rights Reserved PROJECT: PC GEOS MODULE: Cyber16 Video Driver FILE: cyber16Manager.asm AUTHOR: <NAME> REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 10/92 init...
libsrc/_DEVELOPMENT/adt/b_array/c/sdcc_iy/b_array_append_callee.asm
meesokim/z88dk
0
57299
; size_t b_array_append_callee(b_array_t *a, int c) SECTION code_adt_b_array PUBLIC _b_array_append_callee _b_array_append_callee: pop af pop hl pop bc push af INCLUDE "adt/b_array/z80/asm_b_array_append.asm"
xv6-pdx/kernel.asm
budiwa/CS333
0
57300
kernel: file format elf32-i386 Disassembly of section .text: 80100000 <multiboot_header>: 80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh 80100006: 00 00 add %al,(%eax) 80100008: fe 4f 52 decb 0x52(%edi) 8010000b: e4 .byte 0xe4 8010000c <entry>: # E...
programs/oeis/164/A164603.asm
jmorken/loda
1
57301
; A164603: a(n) = ((1+4*sqrt(2))*(2+2*sqrt(2))^n + (1-4*sqrt(2))*(2-2*sqrt(2))^n)/2. ; 1,18,76,376,1808,8736,42176,203648,983296,4747776,22924288,110688256,534450176,2580553728,12460015616,60162277376,290489171968,1402605797376,6772379877376,32699942699008,157889290305536,762356932018176,3680984889294848 mov $1,1 mov ...
libsrc/_DEVELOPMENT/env/esxdos/z80/__ENV_TMPNAM.asm
jpoikela/z88dk
640
57302
<reponame>jpoikela/z88dk INCLUDE "config_private.inc" SECTION bss_env PUBLIC __ENV_TMPNAM __ENV_TMPNAM: defs __ENV_LTMPNAM ; The implementation shall behave as if no function defined in this ; volume of IEEE Std 1003.1-2001, except tempnam(), calls tmpnam().
src/zp.h.asm
kieranhj/nova-invite
1
57303
<reponame>kieranhj/nova-invite<filename>src/zp.h.asm ;; -*- beebasm -*- ; Stuff that has to stick around across intro, demo and outro. ; where this persistent data region begins zp_top=$9c ; swram_slots_base = $9c SLOT_BANK0 = 0 SLOT_BANK1 = 1 SLOT_BANK2 = 2 SLOT_MUSIC = 3
oeis/334/A334562.asm
neoneye/loda-programs
11
57304
; A334562: E.g.f.: exp(-(x + x^2 + x^3)). ; Submitted by <NAME> ; 1,-1,-1,-1,25,19,-209,-2269,2801,68615,371071,-2499641,-28306871,-58645861,1964456495,15133179179,-37119981599,-1861550428529,-9225044407169,110317002942095,2150185424201081,3953685082287779,-233260896605772881,-2920858244957587661,7649165533910291665,51...
programs/oeis/163/A163464.asm
neoneye/loda
22
57305
<reponame>neoneye/loda<filename>programs/oeis/163/A163464.asm<gh_stars>10-100 ; A163464: Cumulative sum of a repeated shift-and-add operation on the base-7 representation of prime(n). ; 0,0,0,1,1,1,2,2,3,4,4,5,5,6,6,8,9,9,10,11,11,12,12,13,14,16,16,17,17,18,20,20,21,21,24,24,25,26,26,27,28,28,30,30,32,32,34,35,36,36,37...
Assembly/helloworld1.asm
saurabhcommand/Hello-world
1,428
57307
<reponame>saurabhcommand/Hello-world .global _start _start: MOV R7, #4 MOV R0, #1 MOV R2, #12 LDR R1, =string SWI 0 MOV R7, #1 SWI 0 .data string: .ascii "<NAME>"
programs/oeis/165/A165233.asm
neoneye/loda
22
57308
<gh_stars>10-100 ; A165233: Signed denominators of terms in series expansion of cos(x)+sin(x). ; 1,1,-2,-6,24,120,-720,-5040,40320,362880,-3628800,-39916800,479001600,6227020800,-87178291200,-1307674368000,20922789888000,355687428096000,-6402373705728000,-121645100408832000,2432902008176640000 mov $1,1 lpb $0 sub $0...
programs/oeis/005/A005369.asm
jmorken/loda
1
57309
; A005369: a(n) = 1 if n is of the form m(m+1), else 0. ; 1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,...
programs/oeis/107/A107006.asm
neoneye/loda
22
57310
<filename>programs/oeis/107/A107006.asm ; A107006: Primes of the form 4x^2-4xy+7y^2, with x and y nonnegative. ; 7,31,79,103,127,151,199,223,271,367,439,463,487,607,631,727,751,823,919,967,991,1039,1063,1087,1231,1279,1303,1327,1399,1423,1447,1471,1543,1567,1663,1759,1783,1831,1879,1951,1999,2143,2239,2287,2311,2383,25...
oeis/267/A267925.asm
neoneye/loda-programs
11
57311
<filename>oeis/267/A267925.asm ; A267925: Binary representation of the n-th iteration of the "Rule 246" elementary cellular automaton starting with a single ON (black) cell. ; 1,111,10111,1110111,101110111,11101110111,1011101110111,111011101110111,10111011101110111,1110111011101110111,101110111011101110111,111011101110...
bahamut/source/menu-information.asm
higan-emu/bahamut-lagoon-translation-kit
2
57312
namespace menu { seek(codeCursor) namespace information { enqueue pc seek($eeef93); jsl drawWindowPaged //"Equipment Summary" and "Item Explanation" windows seek($eef090); jsl drawWindowPaged //"Dragon Keeper's Item Explanation" window seek($eef31c); string.hook(summary) //"Equipment Summa...
libsrc/_DEVELOPMENT/compress/zx1/c/sccz80/dzx1_standard_callee.asm
ahjelm/z88dk
640
57314
<filename>libsrc/_DEVELOPMENT/compress/zx1/c/sccz80/dzx1_standard_callee.asm<gh_stars>100-1000 ; void dzx1_standard_callee(void *src, void *dst) SECTION code_clib SECTION code_compress_zx1 PUBLIC dzx1_standard_callee EXTERN asm_dzx1_standard dzx1_standard_callee: pop hl pop de ex (sp),hl jp asm_dz...
third_party/virtualbox/src/VBox/ValidationKit/bootsectors/bootsector2-cpu-hidden-regs-1.asm
Fimbure/icebox-1
521
57315
; $Id: bootsector2-cpu-hidden-regs-1.asm $ ;; @file ; Bootsector that shows/tests the content of hidden CPU registers. ; ; Requires VMMDevTesting. Enable it via VBoxManage: ; VBoxManage setextradata bs-cpu-hidden-regs-1 VBoxInternal/Devices/VMMDev/0/Config/TestingEnabled 1 ; ; Copyright (C) 2007-2017 Oracle Corpora...
src/engine/utilities/delay.asm
jameswilddev/comb
0
57316
; Delay for a number of CPU cycles, minimum 6. ; The number of CPU cycles to delay. ; - A r* to clobber. .macro delay_immediate ldi @1, (@0 - 6) delay @1 .endm ; Delay for a number of CPU cycles, plus 5. ; - A r* containing the number of CPU cycles to delay (plus 5 more). This will be clobbered. .macro delay ; ...
libsrc/stdio/coleco/getk.asm
jpoikela/z88dk
640
57317
<reponame>jpoikela/z88dk ; ; Placeholder for reading a key from the keyboard ; ; Yet the Colecovision doesnt have a keybaord... ; ; TODO: Something with the number pad ; SECTION code_clib PUBLIC getk PUBLIC _getk getk: _getk: ld hl,0 ret
programs/oeis/112/A112051.asm
neoneye/loda
22
57318
<reponame>neoneye/loda ; A112051: a(1)=1, a(n) = first index i (> a(n-1)), where A112046(i) gets a value distinct from any values A112046(1)..A112046(a(n-1)). ; 1,3,11,24,60,84,144,180,264,420,480,684,840,924,1104,1404,1740,1860,2244,2520,2664,3120,3444,3960,4704,5100,5304,5724,5940,6384,8064,8580,9384,9660,11100,11400...
programs/oeis/207/A207168.asm
neoneye/loda
22
57319
<reponame>neoneye/loda<filename>programs/oeis/207/A207168.asm ; A207168: Number of n X 7 0..1 arrays avoiding 0 0 0 and 1 0 1 horizontally and 0 0 1 and 1 0 1 vertically ; 28,784,3808,11452,26908,54208,98224,164668,260092,391888,568288,798364,1092028,1460032,1913968,2466268,3130204,3919888,4850272,5937148,7197148,86477...
1.asm
AsadKhalil/Assembly_x86
0
57320
<gh_stars>0 [org 0x0100] ;This subroutine finds if a set of consecutive n number of zeros is present in the given sequence or not ;Name: <NAME> ;Roll Number: 13L-4233 ;Section: A jmp start sequence: times 32 db 01001111b, 01010101b, 0 , 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
libsrc/_DEVELOPMENT/stdlib/z80/__strtod_exponent.asm
meesokim/z88dk
0
57321
SECTION code_stdlib PUBLIC __strtod_exponent EXTERN asm0_atoi, l_eat_ddigits __strtod_exponent: ; hl = char * push bc call asm0_atoi ex de,hl ; de = decimal exponent call l_eat_ddigits ; move hl past trailing digits pop bc ret
examples/fib.asm
SleepingInsomniac/becpu
7
57322
loop: lda :x add :y sta :z lda :y sta :x lda :z sta :y jc :exit lda :z out jmp :loop exit: hlt x: 0 y: 1 z: 0
Framework/trackmo/framework/player_vars.asm
kosmonautdnb/TheLandsOfZador
0
57323
song_registers ds.b [SONG_STRUCTSIZE],00 song_trackstates ds.b [TRACK_STRUCTSIZE*3],00 song_ff0e ds.b SONG_MAXSPEED,$00 song_ff0f ds.b SONG_MAXSPEED,$00 song_ff10 ds.b SONG_MAXSPEED,$00 song_ff11 ds.b SONG_MAXSPEED,$00 song_ff12 EQU $17e0 ;ds.b SONG_MAXSPEED,$00
programs/oeis/126/A126275.asm
neoneye/loda
22
57324
<filename>programs/oeis/126/A126275.asm ; A126275: Moment of inertia of all magic squares of order n. ; 5,60,340,1300,3885,9800,21840,44280,83325,147620,248820,402220,627445,949200,1398080,2011440,2834325,3920460,5333300,7147140,9448285,12336280,15925200,20345000,25742925,32284980,40157460,49568540,60749925,73958560,89...
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_6473_1689.asm
ljhsiun2/medusa
9
57325
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r9 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0xfd56, %r13 nop nop xor %r9, %r9 mov (%r13), %ax nop nop nop sub $2315, %r9 lea addresses_A_ht+0x1ae56, %r9 nop nop nop nop nop cmp $23492, %rdx mov ...
data/maps/objects/CeladonMart2F.asm
opiter09/ASM-Machina
1
57326
<reponame>opiter09/ASM-Machina<gh_stars>1-10 CeladonMart2F_Object: db $f ; border block def_warps warp 12, 1, 4, CELADON_MART_1F warp 16, 1, 1, CELADON_MART_3F warp 1, 1, 0, CELADON_MART_ELEVATOR def_signs sign 14, 1, 5 ; CeladonMart2Text5 def_objects object SPRITE_CLERK, 5, 3, STAY, DOWN, 1 ; person ...
DM548/sorting_programs/smol_bois/mipil15.asm
RuneSemey/course-help
2
57327
.section .data file_stat: .space 144 #; Size of the fstat struct #; Strategy: #; Get file descriptor from input #; Allocate memory for whole file #; Read file into that memory #; count newlines #; Allocate memory for newlines * number sizes (in chars) #; copy file with padding into allocated memory region #; Sort usi...
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_1107_663.asm
ljhsiun2/medusa
9
57328
<reponame>ljhsiun2/medusa<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_WT_ht+0xb592, %r9 nop nop nop nop nop xor $9828, %rcx mov $0x6162636465666768, %r10 movq %r10, %xmm4 and $0xffffffffffffffc0, %r9 movaps %xmm4...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_65.asm
ljhsiun2/medusa
9
57329
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r15 push %r8 push %rax push %rcx push %rdi push %rsi lea addresses_WT_ht+0x179a4, %r15 xor %r8, %r8 mov (%r15), %esi add $9158, %r13 lea addresses_D_ht+0x15de4, %rsi lea addresses_UC_ht+0xba4, %rdi nop add %rax, %rax mov $81, %rcx rep movsw nop nop ...
flash.asm
TheStormkeeper/c64
11
57330
<reponame>TheStormkeeper/c64 ; dasm source processor 6502 org $0801 ; sys2061 sysline: .byte $0b,$08,$01,$00,$9e,$32,$30,$36,$31,$00,$00,$00 org $080d ; sys2061 loop: inc $d020 inc $d021 jmp loop
_build/dispatcher/jmp_ippsAESPack_e2487b09.asm
zyktrcn/ippcp
1
57332
<reponame>zyktrcn/ippcp extern m7_ippsAESPack:function extern n8_ippsAESPack:function extern y8_ippsAESPack:function extern e9_ippsAESPack:function extern l9_ippsAESPack:function extern n0_ippsAESPack:function extern k0_ippsAESPack:function extern ippcpJumpIndexForMergedLibs extern ippcpSafeInit:function segment .dat...
oeis/051/A051545.asm
neoneye/loda-programs
11
57334
<filename>oeis/051/A051545.asm ; A051545: Second unsigned column of triangle A051339. ; Submitted by <NAME> ; 0,1,15,191,2414,31594,434568,6314664,97053936,1576890000,27046454400,488849155200,9293295110400,185464792800000,3878247384345600,84822225638169600,1937048605944883200,46113230058645657600,1142623100211502694400...
assembly/demos/helloWorld/hello.asm
sabertazimi/hust-lab
29
57337
; Hello World .386 STACK SEGMENT USE16 STACK DB 200 DUP(0) STACK ENDS DATA SEGMENT USE16 MSG DB 'HELLO WORLD$' DATA ENDS CODE SEGMENT USE16 ASSUME CS:CODE, DS:DATA, SS:STACK START: MOV AX, DATA MOV DS, AX LEA DX, MSG MOV AH, 9 INT 21H ...
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0x84_notsx.log_21829_1254.asm
ljhsiun2/medusa
9
57338
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r14 push %rax push %rcx push %rdi push %rsi lea addresses_WC_ht+0x7ce4, %rsi lea addresses_A_ht+0x6b64, %rdi clflush (%rsi) nop nop nop nop nop xor $53028, %rax mov $21, %rcx rep movsb nop and %rsi, %rsi lea addresses_UC_ht+0x10328, %...
data/pokemon/dex_entries/slakoth.asm
AtmaBuster/pokeplat-gen2
6
57339
db "SLACKER@" ; species name db "The way this" next "#MON lolls" next "around make anyone" page "who watches it" next "feel like doing" next "the same.@"
Miscelaneo/Ejemplos/Ejemplos ASM 8086 - NASM/05matriz.asm
Savantage/ORGACOMPUTER
0
57340
<gh_stars>0 global _main extern _printf section .data matriz times 12 dw 2 LONG_ELEM equ 2 CANT_FIL equ 4 CANT_COL equ 3 elem db '%d ',0 crlf db 10,13,0 section .bss fil resw 1 col resw 1 section .text _main: ;Imprimo la matriz con los valores iniciales call printMat call printCRLF ;Modifico un ele...
programs/oeis/144/A144609.asm
jmorken/loda
1
57341
<reponame>jmorken/loda ; A144609: Sturmian word of slope Pi. ; 0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1 mov $3,2 mov $5,$0 lpb $3 mov $0,$5 sub $3...
oeis/104/A104587.asm
neoneye/loda-programs
11
57342
; A104587: Triangle read by rows, given by the matrix product A * B where A (A094727) = [1; 2, 3; 3, 4, 5; 4, 5, 6, 7;...] and B = [1; 1, 1; 1, 1, 1;...] (both are infinite lower triangular matrices with the other terms zero). ; Submitted by <NAME> ; 1,5,3,12,9,5,22,18,13,7,35,30,24,17,9,51,45,38,30,21,11,70,63,55,46,3...
ddragon_diag.asm
jwestfall69/ddragon-diag
0
57343
<reponame>jwestfall69/ddragon-diag include "ddragon.inc" include "ddragon_diag.inc" include "error_codes.inc" include "macros.inc" global main global auto_ic12_dead_output_passed global auto_work_ram_tests_passed global STR_ACTUAL global STR_ADDRESS global STR_EXPECTED global STR_FAIL global STR_HEADER gl...
Transynther/x86/_processed/NONE/_ht_/i9-9900K_12_0xca.log_21829_596.asm
ljhsiun2/medusa
9
57344
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_WT_ht+0xfc7f, %rsi lea addresses_UC_ht+0xe0f, %rdi nop nop nop and $11219, %r8 mov $10, %rcx rep movsl add %r9, %r9 lea addresses_WT_ht+0x188f, %rcx clflush (%rcx) and $27555, %r14 mo...
oeis/279/A279083.asm
neoneye/loda-programs
11
57345
<gh_stars>10-100 ; A279083: Numbers k such that there exists at least one tetrahedral number with exactly k divisors. ; Submitted by <NAME> ; 1,3,4,6,8,12,16,18,20,24,28,30,32,36,40 mov $5,$0 add $5,1 mov $7,$0 lpb $5 mov $0,$7 mov $4,0 sub $5,1 sub $0,$5 mov $1,1 sub $1,$0 mov $2,$0 lpb $0 mov $3,...
NandToTetris/projects/04/add/Add.asm
davejlin/coursera
0
57346
// Adds up two numbers // RAM[2] = RAM[0] + RAM[1] // Usage: put the values you which to add in RAM[0] and RAM[1] @R0 D=M @R1 D=D+M @R2 M=D (END) @END 0; JMP
oeis/003/A003971.asm
neoneye/loda-programs
11
57347
; A003971: Inverse Möbius transform of A003960. ; Submitted by <NAME> ; 1,2,3,3,4,6,5,4,7,8,7,9,8,10,12,5,10,14,11,12,15,14,13,12,13,16,15,15,16,24,17,6,21,20,20,21,20,22,24,16,22,30,23,21,28,26,25,15,21,26,30,24,28,30,28,20,33,32,31,36,32,34,35,7,32,42,35,30,39,40,37,28,38,40 add $0,1 mov $1,1 lpb $0 mov $3,$0 ad...
programs/oeis/246/A246302.asm
jmorken/loda
1
57348
<filename>programs/oeis/246/A246302.asm ; A246302: Numbers k such that cos(k) < cos(k+1) < cos(k+2) < cos(k+3) > cos(k+4). ; 3,10,16,22,28,35,41,47,54,60,66,72,79,85,91,98,104,110,116,123,129,135,142,148,154,160,167,173,179,185,192,198,204,211,217,223,229,236,242,248,255,261,267,273,280,286,292,299,305,311,317,324,330,...
add_2_16-bit_number.asm
amandewatnitrr/microprocessor
0
57349
ORG 0000H CLR C ;MAKE CY=0 MOV A,#20H ;LOWER BYTE OF OPERAND 1 IN A ADD A,#0DEH ;ADD LOWER BYTE OF OPERAND 2 WITH A MOV R1,A ;STORES LSB OF RESULT IN R1 MOV A,#65H ;HIGHER BYTE OF OPERAND 2 IN A ADDC A,#0ABH ; ADD WITH HIGHER BYTE OF OPERAND 1 MOV R0,A ;STORES MSB OF RESULT IN R0 END /*Another Method*/ ORG 0...
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca.log_21829_1827.asm
ljhsiun2/medusa
9
57350
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0x1163f, %r11 nop nop nop nop cmp $18069, %r13 mov $0x6162636465666768, %rbx movq %rbx, %xmm6 movups %xmm6, (%r11) nop nop nop add $33560, %rcx lea ad...
Appl/Calendar/Misc/miscDateArrows.asm
steakknife/pcgeos
504
57352
<filename>Appl/Calendar/Misc/miscDateArrows.asm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: Calendar/Misc FILE: miscDateArrows.asm AUTHOR: <NAME>, Oct 19, 1992 ROUTINES: Name Description ...
libsrc/_DEVELOPMENT/sound/bit/z80/asm_bit_beepfx/_bfx_9.asm
jpoikela/z88dk
640
57353
<reponame>jpoikela/z88dk ; BeepFX sound effect by shiru ; http://shiru.untergrund.net SECTION rodata_clib SECTION rodata_sound_bit PUBLIC _bfx_9 _bfx_9: ; Fat_beep_1 defb 1 ;tone defw 20,1000,200,0,63104 defb 0
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48_notsx.log_21829_857.asm
ljhsiun2/medusa
9
57354
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r15 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_WT_ht+0x1887e, %r14 clflush (%r14) nop nop nop nop dec %r15 vmovups (%r14), %ymm4 vextracti128 $1, %ymm4, %xmm4 vpextrq $0, %xmm4, %r11 nop and %r9, %r9 lea addresses_WT_ht+0x6ce0, %...
programs/oeis/081/A081603.asm
karttu/loda
0
57355
<reponame>karttu/loda<filename>programs/oeis/081/A081603.asm ; A081603: Number of 2's in ternary representation of n. ; 0,0,1,0,0,1,1,1,2,0,0,1,0,0,1,1,1,2,1,1,2,1,1,2,2,2,3,0,0,1,0,0,1,1,1,2,0,0,1,0,0,1,1,1,2,1,1,2,1,1,2,2,2,3,1,1,2,1,1,2,2,2,3,1,1,2,1,1,2,2,2,3,2,2,3,2,2,3,3,3,4,0,0,1,0,0,1,1,1,2,0,0,1,0,0,1,1,1,2,1,...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_5046_1173.asm
ljhsiun2/medusa
9
57356
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %r8 lea addresses_A_ht+0x101a4, %r14 nop nop nop nop and %r8, %r8 movb (%r14), %r11b nop nop nop nop nop cmp $44815, %r13 pop %r8 pop %r14 pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %r13 push %r...
Transynther/x86/_processed/NC/_un_/i9-9900K_12_0xa0_notsx.log_1_1128.asm
ljhsiun2/medusa
9
57357
<filename>Transynther/x86/_processed/NC/_un_/i9-9900K_12_0xa0_notsx.log_1_1128.asm .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r14 push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x1a61c, %rsi lea addresses_UC_ht+0x1c3f8, %rdi nop nop add $4129, %r12 mov $108, %rcx rep movsl nop no...
optimised/main.asm
PJBoy/SM-SPC
4
57359
; Build with: ; asar --fix-checksum=off main.asm SM.sfc ; where SM.sfc is your vanilla ROM with an sfc extension (asar requirement). ; The `--fix-checksum=off` is there because asar's checksum generation is incorrect (probably related to the bottom of this file) warnings disable W1018 ; "xkas-style conditio...
Tests/ARM/Immediates/Immediates.asm
georgjz/armips
1
57361
<reponame>georgjz/armips<filename>Tests/ARM/Immediates/Immediates.asm<gh_stars>1-10 .nds .create "output.bin",0 .thumb mov r1,0x00 ; min mov r2,0xFF ; max ; mov r3,-0x1 ; error: below min ; mov r4,0x100 ; error: above max cmp r1,0x00 ; min cmp r2,0xFF ; max ; cmp r3,-0x1 ; error: below min ;...
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1936.asm
ljhsiun2/medusa
9
57364
<filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1936.asm .global s_prepare_buffers s_prepare_buffers: push %r11 push %r15 push %r8 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x10c9b, %r15 clflush (%r15) and $27096, %rsi mov $0x6162636465666768, %rdi movq %rdi, (%r...
irclock.asm
JimmyDansbo/cx16stuff
0
57365
<reponame>JimmyDansbo/cx16stuff !cpu 65c02 *=$0801 ; Assembled code should start at $0801 ; (where BASIC programs start) ; The real program starts at $0810 = 2064 !byte $0C,$08 ; $080C - pointer to next line of BASIC code !byte $0A,$00 ; 2-byte line number ($000A = 10) !byte $9E ; SYS BASIC token !byte...
Monitor/tests/mockStdio.asm
Martin-H1/6502
3
57366
; ----------------------------------------------------------------------------- ; Definitions for the py65mon emulator ; ----------------------------------------------------------------------------- .alias py65_putc $f001 .alias py65_getc $f004 ; ; Data segments ; .text mockBiosInit: .scope `callBiosInit getch...
programs/oeis/105/A105150.asm
karttu/loda
0
57367
; A105150: Approximation to leading digit of n-th Fibonacci number. ; 0,1,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3,5,8,1,2,3 mov $1,$0 trn $0,1 lpb $0,1 mov $2,$0...
randomly-solved-programs/geting the number of 1 bits in a value.asm
informramiz/Assembly-Language-Programs
0
57368
.MODEL SMALL .STACK 100H .DATA INPUT_MSG DB 'Numbe of even bits are : $' OUTPUT_MSG DB 0AH,0DH,'characters entered :$' .CODE MAIN PROC ;making the DS to point to data segment MOV AX,@DATA MOV DS,AX MOV AX,30H MOV BX,8 MOV CL,16 TOP: ROL BX,1 JNC NEXT INC AX NEXT: LOOP T...
dv3/hd/direct.asm
olifink/smsqe
0
57369
<filename>dv3/hd/direct.asm ; DV3 Check Hard Disk for Direct Sector Open V3.00  1993 <NAME> section dv3 xdef hd_direct xref hd_fpart include 'dev8_keys_err' include 'dev8_dv3_keys' include 'dev8_dv3_hd_keys' ;+++ ; DV3 Check hard disk for direct sector open ; ; d1 c p sector length ; d2 c p density ; ...
thirdparty/ffmpeg/libavcodec/x86/vc1dsp_mc.asm
yashrajsingh1998/ApraPipes1
2,151
57371
;****************************************************************************** ;* VC1 motion compensation optimizations ;* Copyright (c) 2007 <NAME> <<EMAIL>> ;* ;* This file is part of FFmpeg. ;* ;* FFmpeg is free software; you can redistribute it and/or ;* modify it under the terms of the GNU Lesser General Public ;...
programs/oeis/039/A039208.asm
karttu/loda
0
57372
; A039208: Numbers n such that representation in base 11 has same number of 8's and 10's. ; 0,1,2,3,4,5,6,7,9,11,12,13,14,15,16,17,18,20,22,23,24,25,26,27,28,29,31,33,34,35,36,37,38,39,40,42,44,45,46,47,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,67,68,69,70,71,72,73,75,77,78,79,80,81,82,83 mov $1,$0 mov $2,$0 add $2...
Transynther/x86/_processed/AVXALIGN/_st_zr_sm_/i7-7700_9_0xca.log_15_1214.asm
ljhsiun2/medusa
9
57373
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %rbp push %rbx push %rdi push %rdx push %rsi // Store lea addresses_A+0x2333, %rbx cmp %rdx, %rdx movb $0x51, (%rbx) nop nop xor $21423, %rdx // Load lea addresses_PSE+0x16261, %rbp xor %r11, %r11 mov (...
programs/oeis/266/A266221.asm
neoneye/loda
22
57375
<reponame>neoneye/loda ; A266221: Total number of ON (black) cells after n iterations of the "Rule 7" elementary cellular automaton starting with a single ON (black) cell. ; 1,3,3,10,10,21,21,36,36,55,55,78,78,105,105,136,136,171,171,210,210,253,253,300,300,351,351,406,406,465,465,528,528,595,595,666,666,741,741,820,82...
release/src/router/gmp/source/mpn/pa32/sub_n.asm
zhoutao0712/rtn11pb1
184
57376
<gh_stars>100-1000 dnl HP-PA mpn_sub_n -- Subtract two limb vectors of the same length > 0 and dnl store difference in a third limb vector. dnl Copyright 1992, 1994, 2000, 2001, 2002 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl The GNU MP Library is free software; you can redi...
msdos/DOS/space.asm
Cth1003/pcTest
0
57377
times 4*512 db 0 %include "FAT_sector.asm" ;FAT 1 %include "FAT_sector.asm" ;FAT 2 db "DOS " ;FILENAME db "SYS" ;EXT db 0x27, 0x00, 0x00, 0x00, 0x00 db 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0xB5, 0xF7, 0x44 dw 2 ;Cluster dd 2048 ;File size,less than 8192 bytes(a cluster) db "COMMAND " ;FILENAME db "COM" ;EXT db...
BST.asm
furkansahinfs/Assembly-BST-with-MIPS
0
57380
.data # -9999 marks the end of the list firstList: .word 8, 3, 6, 10, 13, 7, 4, 5, -9999 maxInt: .word -9999 tree: .space 4 nullVal: .word 0 # other examples for testing your code secondList: .word 8, 3, 6, 6, 10, 13, 7, 4, 5, -9999 thirdList: .word 8, 3, 6, 10, 13, -9999, 7, 4, 5, -9999 # assertEquals data failf: .as...
iod/con2/java/procv.asm
olifink/smsqe
0
57381
<reponame>olifink/smsqe<gh_stars>0 ; Java initialise displays. ; ; based on ; ; Gold Card initialise QL Mode Displays 1.01  1992 <NAME> QJUMP ; section init xdef cn_procv xref gu_tpadd xref gu_thini xref ut_procdef include 'dev8_keys_java' include 'dev8_keys_con' include 'dev8_keys_sys' include 'dev8...
oeis/081/A081172.asm
neoneye/loda-programs
11
57382
<gh_stars>10-100 ; A081172: Tribonacci numbers: a(n) = a(n-1) + a(n-2) + a(n-3), with a(0) = 1, a(1) = 1, a(2) = 0. ; Submitted by <NAME>(s2) ; 1,1,0,2,3,5,10,18,33,61,112,206,379,697,1282,2358,4337,7977,14672,26986,49635,91293,167914,308842,568049,1044805,1921696,3534550,6501051,11957297,21992898,40451246,74401441,136...
libsrc/stdio/fputs.asm
jpoikela/z88dk
0
57383
<filename>libsrc/stdio/fputs.asm ; CALLER linkage for function pointers MODULE fputs SECTION code_clib PUBLIC fputs EXTERN asm_fputs_callee .fputs pop hl ;ret pop bc ;fp pop de ;s push de push bc push hl IF __CPU_INTEL__ call asm_fputs_callee ELSE push ix ; callers ix push bc po...
lib/test/sources/jump.asm
MircoT/js-pdp8
12
57384
<filename>lib/test/sources/jump.asm ORG 100 LDA X BSA CHK INC HLT X, AND Y Y, HEX 200 CHK, DEC 0 CIR SNA BUN CHK I ADD X BUN CHK I END
books_and_notes/professional_courses/Assembly_language_and_programming/sources/汇编语言程序设计教程第四版/codes/5_19.asm
gxw1/review_the_national_post-graduate_entrance_examination
640
57385
<reponame>gxw1/review_the_national_post-graduate_entrance_examination DATA SEGMENT DAT DW 18,8,28,48,38 DATA ENDS STACK SEGMENT STACK DW 200 DUP (?) STACK ENDS CODE SEGMENT ASSUME CS:CODE,DS:DATA,SS:STACK START: MOV AX,DATA MOV DS,AX ...
data.asm
kun1z/gameros
0
57387
graphic_man db 99h, 99h, 06h, 06h, 06h, 99h, 99h db 99h, 99h, 2Ch, 2Ch, 2Ch, 99h, 99h db 99h, 99h, 2Ch, 2Ch, 2Ch, 99h, 99h db 99h, 99h, 99h, 2Ch, 99h, 99h, 99h db 99h, 99h, 2Fh, 2Fh, 2Fh, 99h, 99h db 2Fh, 2Fh, 2Fh, 2Fh, 2Fh, 2Fh, 2Fh db 2Fh, ...
libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/obstack_printf.asm
meesokim/z88dk
0
57388
<reponame>meesokim/z88dk ; int obstack_printf(struct obstack *obstack, const char *format, ...) SECTION code_stdio PUBLIC _obstack_printf EXTERN asm_obstack_printf defc _obstack_printf = asm_obstack_printf
oeis/085/A085062.asm
neoneye/loda-programs
11
57389
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A085062: A085060(n)/9 - 1/3. ; Submitted by <NAME>(s4) ; 0,1,1,4,2,4,3,13,4,7,5,13,6,10,7,40,8,13,9,22,10,16,11,40,12,19,13,31,14,22,15,121,16,25,17,40,18,28,19,67,20,31,21,49,22,34,23,121,24,37,25,58,26,40,27,94,28,43,29,67,30,46,31,364,32,49,33,76,34,52,35,121,36,55 ...
boot/cpu_check.asm
spevans/hello-swift
0
57390
<reponame>spevans/hello-swift<gh_stars>0 ;;; boot/cpu_check.asm ;;; ;;; Copyright © 2015 <NAME>. All rights reserved. ;;; ;;; Check the CPU is sufficient for 64bit long mode FEATURE_BIT_LONG_MODE EQU 1 << 29 ;;; Returns carry set if cpu not good enough cpu_check: ;; check CPUID supported by seeing if ...
oeis/007/A007900.asm
neoneye/loda-programs
11
57392
<filename>oeis/007/A007900.asm ; A007900: Coordination sequence for D_4 lattice. ; 1,24,144,456,1056,2040,3504,5544,8256,11736,16080,21384,27744,35256,44016,54120,65664,78744,93456,109896,128160,148344,170544,194856,221376,250200,281424,315144,351456 mul $0,2 mov $2,$0 pow $0,2 add $0,2 mul $2,2 mul $0,$2 trn $0,1 add...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2087.asm
ljhsiun2/medusa
9
57393
<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2087.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r13 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_WT_ht+0x16ccf, %rsi lea addresses_WT_ht+0xba73, %rdi nop nop nop xor $64310, %r8 m...
assets/Graphics/testPong.asm
BeshoyMorad/The86-Pgame
1
57394
.model small .stack 64 .data ;data for the char to draw (x,y,char,color) charToDraw db ? charToDrawColor db ? charToDrawx db ? charToDrawy db ? ; colors WHITE EQU 0FH RED EQU 0CH YELLOW EQU 0EH BLACK EQU 0H GRAY EQU 7H LBLUE EQU 9H BLUE EQU 1H ; Variables for Gun ;iterators for draw gun ; gun starts at row 80d r...