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 |
|---|---|---|---|---|
array/a002.asm | czfshine/assembly-exercise | 1 | 207242 | ; 8086 assembly file
; by:czfshine
; date: 2018/05/17 10:47:16
; The Main Data segment
DATA SEGMENT
len equ 100DH
DATA ENDS
STACK SEGMENT
DW 256 DUP(?)
STACK ENDS
fun segment
;把ax和dx里较小的数送入ax内
minw PROC FAR
cmp ax,dx
jl return
mov ax,dx
return:
RET
minw ENDP
... |
src/third_party/nasm/test/pinsr64.asm | Mr-Sheep/naiveproxy | 2,219 | 207243 | ;Testname=test; Arguments=-O0 -fbin -opinsr64.bin; Files=stdout stderr pinsr64.bin
bits 64
pinsrw mm0,eax,0
pinsrw mm1,si,0
pinsrw mm2,[rcx],0
pinsrw mm3,word [rcx],0
pinsrb xmm0,eax,0
pinsrb xmm1,sil,0
; pinsrb xmm1,bh,0
pinsrb xmm2,[rcx],0
pinsrb xmm3,byte [rcx],0
pinsrw xmm0,eax,0
pinsrw xmm1,si,0
pin... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1626.asm | ljhsiun2/medusa | 9 | 207244 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1626.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1cf50, %rsi
nop
nop
xor %r14, %r14
mov $0x6162636465666768, %r8
movq %r8, %... |
malban/Release/VRelease/Release.History/VRelease_2017_03_09/objects.asm | mikepea/vectrex-playground | 5 | 207245 | u_offset1 = -TYPE ; behaviour offset is determined by next structure element
; all behaviour routines leave
; with u pointed to the next object structure (or 0)
; GENERAL Object functions
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;... |
programs/oeis/014/A014710.asm | karttu/loda | 0 | 207246 | <filename>programs/oeis/014/A014710.asm
; A014710: The regular paper-folding (or dragon curve) sequence.
; 2,2,1,2,2,1,1,2,2,2,1,1,2,1,1,2,2,2,1,2,2,1,1,1,2,2,1,1,2,1,1,2,2,2,1,2,2,1,1,2,2,2,1,1,2,1,1,1,2,2,1,2,2,1,1,1,2,2,1,1,2,1,1,2,2,2,1,2,2,1,1,2,2,2,1,1,2,1,1,2,2,2,1,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,1,2,2,1,1,2,2,2,1... |
oeis/164/A164894.asm | neoneye/loda-programs | 11 | 207247 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A164894: Base-10 representation of the binary string formed by appending 10, 100, 1000, 10000, ..., etc., to 1.
; 1,6,52,840,26896,1721376,220336192,56406065280,28879905423616,29573023153783296,60565551418948191232,248076498612011791288320,2032242676629600594233921536,3... |
oeis/019/A019785.asm | neoneye/loda-programs | 11 | 207248 | <reponame>neoneye/loda-programs
; A019785: Decimal expansion of sqrt(e)/12.
; 1,3,7,3,9,3,4,3,9,2,2,5,0,1,0,6,7,8,9,0,4,0,5,4,2,3,2,3,1,7,8,4,6,9,6,4,3,0,4,4,8,1,3,4,1,7,2,5,8,4,5,6,6,7,6,3,1,2,5,6,6,0,9,3,0,3,3,8,8,4,1,8,4,3,2,8,5,1,3,0,0,7,1,9,3,9,8,0,4,3,3,3,8,0,3,0,5,5,3,5
add $0,1
mov $2,1
mov $3,$0
mul $3,5
lpb ... |
binutils-2.21.1/gcc-4.5.1/gcc/config/sh/crt1.asm | cberner12/xv6 | 51 | 207249 | <reponame>cberner12/xv6
/* Copyright (C) 2000, 2001, 2003, 2004, 2005, 2006, 2009
Free Software Foundation, Inc.
This file was pretty much copied from newlib.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published b... |
src/entity_macros.asm | Pentacour/viruslqp79_msx | 4 | 207250 | ;==================================
;::MDEC_CURRENT_NUMBER_OF_ZOMBIES
;==================================
macro MDEC_CURRENT_NUMBER_OF_ZOMBIES
LD a, [MWORK.CURRENT_NUMBER_OF_ZOMBIES]
DEC a
LD [MWORK.CURRENT_NUMBER_OF_ZOMBIES], a
endmacro
;==================================
;::MDEC_CURRENT_NUMB... |
programs/oeis/239/A239138.asm | neoneye/loda | 22 | 207251 | <reponame>neoneye/loda
; A239138: The sequence S = a(1), a(2), ... is defined by a(1)=1, if d,e,f are consecutive digits then we do not have d <= e > f, and S is always extended with the smallest integer not yet present in S.
; 1,2,3,4,5,6,7,8,9,99,999,9999,99999,999999,9999999,99999999,999999999,9999999999,99999999999... |
my Projects/EEPROM write and read/eeprom.asm | simonbrennan/PicMicroASM | 1 | 207252 | ; **********************************************************
; * Name : <NAME> *
; * Student Number : 2021282 *
; * Date : 26/05/2003 *
; * Description : This program is a prototype prog to *
; * write and read to an from eeprom memory *
; * *
; * Inputs : Address 03h -> St... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1812.asm | ljhsiun2/medusa | 9 | 207253 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x1a426, %r9
nop
nop
nop
nop
add $59451, %r14
movw $0x6162, (%r9)
nop
nop
nop
inc %r14
lea addresses_WT_ht+0xf464, %rsi
lea addresses_WT_ht+0x8e1e, %r... |
libsrc/_DEVELOPMENT/ctype/c/sccz80/isxdigit.asm | meesokim/z88dk | 0 | 207254 | <reponame>meesokim/z88dk<gh_stars>0
; int isxdigit(int c)
SECTION code_ctype
PUBLIC isxdigit
EXTERN asm_isxdigit, error_zc
isxdigit:
inc h
dec h
jp nz, error_zc
ld a,l
call asm_isxdigit
ld l,h
ret c
inc l
ret
|
programs/oeis/095/A095807.asm | neoneye/loda | 22 | 207255 | <gh_stars>10-100
; A095807: Number of integers from 0 to 10^n-1 which contain at least one decimal digit = 0.
; 1,10,181,2620,33571,402130,4619161,51572440,564151951,6077367550,64696307941,682266771460,7140400943131,74263608488170,768372476393521,7915352287541680,81238170587875111,831143535290875990,8480291817617883901... |
rm.asm | PieMyth/cs333 | 0 | 207256 | <gh_stars>0
_rm: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a:... |
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0xca_notsx.log_15290_725.asm | ljhsiun2/medusa | 9 | 207257 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0xca_notsx.log_15290_725.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1992d, %rsi
lea addresses_UC_ht+0x8a91, %rdi
nop
nop
nop
nop
nop
cmp %... |
boot/bootloader.asm | Phant0mas/Manolix | 0 | 207258 | ; =============================================================================
; Copyright (C) 2015 <NAME> -- see LICENSE.TXT
; =============================================================================
;;; The kernel bootloader.
[org 0x7c00]
[bits 16]
jmp 0x0000:start
KERNEL_OFFSET equ 0x1000
st... |
media_driver/agnostic/gen10/vp/kernel/Source/Compute_Lumakey.asm | ashakhno/media-driver | 660 | 207259 | /*
* Copyright (c) 2017, Intel Corporation
*
* 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, copy, modify, merge, publi... |
6502DotNet/Examples/vcs/pocbackgroundcyclecompiled.asm | Yttrmin/CSharpTo2600 | 7 | 207260 | .cpu "6502"
.format "flat"
* = $F000
INT_RESERVED_1 = $80
INT_RESERVED_2 = $81
BackgroundColor = $82
Increment = $84
INT_Byte_SIZE = 1
// When unoptimized, locals have the same behavior as globals: they occupy their own exclusive address.
LOCAL_Main_00 = $85
LOCAL_Main_01 = $86
LOCAL_Main_02 = $87
LOCAL_Main_03 = $8... |
CmockaHostUnitTestPkg/Library/UnitTestLibcmocka/IA32/cmockaFuncTemplateMsvc.nasm | matthewfcarlson/edk2-staging | 0 | 207261 | <reponame>matthewfcarlson/edk2-staging
;------------------------------------------------------------------------------
;
; Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
;------------------------------------------------------------------------------... |
stressfs.asm | NaorAbu/Ass1 | 0 | 207262 |
_stressfs: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "fs.h"
#include "fcntl.h"
int
main(int argc, char *argv[])
{
0: 55 push %ebp
int fd, i;
char path[] = "stressfs0";
1: b8 73 74 72 65 mov $0x65727473,%eax
{
6: 89 e5 ... |
examples/test.asm | hildjj/lc3asm.js | 0 | 207263 | <filename>examples/test.asm
.ORIG x3000
AND R2,R2,#0
LD R4, IN1
LD R5, IN2
LOOP ADD R2,R2,R4
ADD R5,R5,#-1
BRp LOOP
ST R2, OUT
HALT
IN1 .BLKW 2
IN2 .BLKW 2
OUT: .BLKW 2
s .STRINGZ "foo"
.END |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_1062.asm | ljhsiun2/medusa | 9 | 207264 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r8
push %rcx
push %rdx
push %rsi
lea addresses_D_ht+0x171ca, %rdx
nop
nop
and %r10, %r10
movb (%rdx), %r12b
nop
nop
nop
nop
nop
sub $45420, %r8
lea addresses_WT_ht+0x1769e, %r11
nop
nop
cmp %rsi, %rsi
movb $0x61, (%r11)
nop
... |
Ch2/Experiments/Exp2.3/signalGen/D_randGen/src/rand.asm | haizzus/TMS320C5505 | 1 | 207265 | ; /*
; * rand.asm
; *
; * Created on: May 5, 2012
; * Author: BLEE
; *
; * Description: mod-20 random number generator with 12-bit dynamic range
; *
; * For the book "Real Time Digital Signal Processing:
; * Fundamentals, Implementation and Application, 3rd Ed"
; * By <N... |
boot/loader/stage1/a20.asm | jocke-legacy/stark | 1 | 207266 | bits 16
global enable_a20
section .text
enable_a20:
; do fast a20
in al, 0x92
or al, 2
out 0x92, al
ret
|
bootmgr/stage1/mbr.asm | avdgrinten/windozz | 1 | 207267 |
; The Windozz Project
; Copyright (C) 2018-2019 by the Windozz authors.
bits 16
org 0
main:
; relocate MBR to 0x0060:0x0000
cli
cld
xor ax, ax
mov ss, ax
mov sp, ax
mov ds, ax
mov es, ax
mov si, 0x7c00
mov di, 0x0600
mov cx, 512
rep movsb
jmp 0x0060:.next
.next:
... |
cat.asm | srally/CS350 | 0 | 207268 |
_cat: file format elf32-i386
Disassembly of section .text:
00000000 <cat>:
char buf[512];
void
cat(int fd)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 ec 18 sub $0x18,%esp
int n;
while((n = read(fd, buf, sizeof(buf))) > 0)
6: eb 15 ... |
THE1/the1.asm | frozsgy/ceng336-hw | 1 | 207269 | LIST P=18F8722
#INCLUDE <p18f8722.inc>
CONFIG OSC=HSPLL, FCMEN=OFF, IESO=OFF,PWRT=OFF,BOREN=OFF, WDT=OFF, MCLRE=ON, LPT1OSC=OFF, LVP=OFF, XINST=OFF, DEBUG=OFF
var1 udata 0x20 ;Number1
var1
var2 udata 0x21 ;Number2
var2
var3 udata 0x22 ; result
var3
UDATA_ACS
t1 res 1 ; used in delay
t2 res 1 ; used in de... |
oeis/190/A190512.asm | neoneye/loda-programs | 11 | 207270 | ; A190512: Number of one-sided n-step prudent walks, avoiding single west step only, i.e., two or more consecutive west steps are permitted.
; Submitted by <NAME>(s2)
; 1,2,5,11,24,53,117,258,569,1255,2768,6105,13465,29698,65501,144467,318632,702765,1549997,3418626,7540017,16630031,36678688,80897393,178424817,393528322... |
asm/fpga/demos/text_mode_attrib.asm | fcatrin/clc88 | 6 | 207272 |
COLS = 80
ROWS = 30
THIS_SCREEN_SIZE = COLS*ROWS
FONT_ROM_ADDR = $e000
BORDER_COLOR = $2167
DLIST_ADDR = $0200
text_location = $0400
attr_location = text_location + THIS_SCREEN_SIZE/2
org $f000
demo:
mwa #palette_dark SRC_ADDR
jsr gfx_upload_palette
mwa #BORDER_COLOR VBORDER
mwa #$00... |
programs/oeis/056/A056489.asm | neoneye/loda | 22 | 207273 | <gh_stars>10-100
; A056489: Number of periodic palindromes using exactly three different symbols.
; 0,0,0,3,6,21,36,93,150,345,540,1173,1806,3801,5796,11973,18150,37065,55980,113493,171006,345081,519156,1044453,1569750,3151785,4733820,9492213,14250606,28550361,42850116,85798533,128746950,257690505,386634060,773661333,1... |
Transynther/x86/_processed/US/_st_/i7-8650U_0xd2.log_6236_667.asm | ljhsiun2/medusa | 9 | 207274 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x3505, %r15
nop
nop
nop
nop
add %rbx, %rbx
mov $0x6162636465666768, %rdi
movq %rdi, (%r15)
nop
nop
nop
nop
nop
cmp $22430, %r9
lea addresses_A_ht+0x135bf, %rsi
... |
Assembly/Exercise code/9_0.asm | XU-99/ONE | 1 | 207275 | TITLE 判斷式
INCLUDE Irvine32.inc
.data
Max byte 0
Min byte 0
ads_A dword ?
ads_B dword ?
arrayA byte 1,3,5,7,9
arrayB byte 8,6,4,2,0
arrayC byte 5 dup(0)
.code
main PROC
call Clrscr
call Dmem
call Waitmsg
mov esi,offset arrayA
mov ads_A,esi
mov esi,off... |
user/zombie.asm | joshiamey/xv6-riscv-fall19 | 1 | 207276 | <gh_stars>1-10
user/_zombie: file format elf64-littleriscv
Disassembly of section .text:
0000000000000000 <main>:
#include "kernel/stat.h"
#include "user/user.h"
int
main(void)
{
0: 1141 addi sp,sp,-16
2: e406 sd ra,8(sp)
4: e022 sd s0,0(sp)
6: 0800 ... |
Sem4/AEIE_LAB/my1sim85-0.6.2/asm/math-multiply.asm | SOUMEE2000/Heritage-CSE-Codes | 0 | 207277 | <reponame>SOUMEE2000/Heritage-CSE-Codes<filename>Sem4/AEIE_LAB/my1sim85-0.6.2/asm/math-multiply.asm
; showing 8-bit multiplication
; - done in sub-routine
; - input: multiplicand in b and multiplier in c
; - result: 16-bit in register pair bc
org 0000h
lxi sp,4000h
mvi b,10h
mvi c,10h
call do_mult
hlt
do_mult:
push h... |
sys/hal/x86/hal_asm.asm | DarkAutomata/DarkOs | 2 | 207278 | ; Copyright (c) 2016, <NAME>
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; * Redistributions of source code must retain the above copyright notice, this
; list of conditions and t... |
Kernel/asm/libasm.asm | fsammart/SistemasOperativos | 0 | 207279 | GLOBAL cpuVendor
GLOBAL outputb
GLOBAL inputb
GLOBAL timerTickHandler
EXTERN timerTickHandlerC
GLOBAL sti
GLOBAL keyboardHandler
EXTERN keyboardHandlerC
GLOBAL test
GLOBAL mouse_handler
EXTERN mouse_handlerC
GLOBAL sys_callHandler
EXTERN sys_call_runC
GLOBAL cli
GLOBAL updateCR3
GLOBAL pageFaultHandler
... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_206.asm | ljhsiun2/medusa | 9 | 207281 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_206.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1ed38, %r10
nop
sub $9710, %r15
mov $0x6162636465666... |
oeis/081/A081489.asm | neoneye/loda-programs | 11 | 207282 | ; A081489: a(n) = n*(2*n^2 -3*n +7)/6 = C(n, 1) + C(n, 2) + 2*C(n, 3).
; 1,3,8,18,35,61,98,148,213,295,396,518,663,833,1030,1256,1513,1803,2128,2490,2891,3333,3818,4348,4925,5551,6228,6958,7743,8585,9486,10448,11473,12563,13720,14946,16243,17613,19058,20580,22181,23863,25628,27478,29415,31441,33558,35768,38073,40475,42... |
oeis/097/A097315.asm | neoneye/loda-programs | 11 | 207284 | ; A097315: Pell equation solutions (3*b(n))^2 - 10*a(n)^2 = -1 with b(n) = A097314(n), n >= 0.
; Submitted by <NAME>(s3)
; 1,37,1405,53353,2026009,76934989,2921503573,110940200785,4212806126257,159975692596981,6074863512559021,230684837784645817,8759948972303982025,332647376109766671133,12631840343198829521029,47967728... |
kernel/misc.nasm | r-tty/radios | 0 | 207285 | ;-------------------------------------------------------------------------------
; misc.nasm - miscellaneous kernel routines.
;-------------------------------------------------------------------------------
module kernel.misc
%include "sys.ah"
%include "errors.ah"
%include "biosdata.ah"
%include "pool.ah"
%include "c... |
documents/manuals/intel/80386/ops/LOADALL/386load.asm | jriwanek-forks/pcjs | 711 | 207287 | Page 60,132
;---------------------------------------------------------------
; BEGIN LISTING 2
;---------------------------------------------------------------
;
; 386LOAD.ASM
;
; Copyright (c) 1991, 1995-Present <NAME>
;
; You have my permission to copy and distribute t... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_2877_396.asm | ljhsiun2/medusa | 9 | 207291 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0xb83e, %rdi
nop
nop
cmp $26396, %rdx
mov (%rdi), %r12
nop
nop
nop
sub %r8, %r8
lea addresses_D_ht+0xcd3e, %r10
nop
nop
nop
nop
add %r11, %r11
mov $0x6162636465666768... |
chap15/ex14/cond_vmaskmov.asm | JamesType/optimization-manual | 374 | 207293 | <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... |
kernel/sprites/spriteaccess.asm | paulscottrobson/eris | 13 | 207295 | ; *****************************************************************************
; *****************************************************************************
;
; Name: spriteaccess.asm
; Purpose: Sprite Modifier Code
; Created: 26th March 2020
; Reviewed: TODO
; Author: <NAME> (<EMAIL>)
;
; ******************... |
libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/exp.asm | witchcraft2001/z88dk | 640 | 207296 | <reponame>witchcraft2001/z88dk
SECTION code_fp_math16
PUBLIC expf16
EXTERN _m16_expf
defc expf16 = _m16_expf
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _expf16
EXTERN cm16_sdcc_exp
defc _expf16 = cm16_sdcc_exp
ENDIF
|
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xca_notsx.log_21829_557.asm | ljhsiun2/medusa | 9 | 207297 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x17c63, %r13
cmp $40252, %r14
vmovups (%r13), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $0, %xmm5, %r8
nop
nop
xor %rbx, %rbx
lea addr... |
libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/ungetc_unlocked_callee.asm | meesokim/z88dk | 0 | 207298 | <filename>libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/ungetc_unlocked_callee.asm
; int ungetc_unlocked_callee(int c, FILE *stream)
SECTION code_stdio
PUBLIC _ungetc_unlocked_callee
EXTERN asm_ungetc_unlocked
_ungetc_unlocked_callee:
pop af
pop hl
pop ix
push af
jp asm_ungetc_unlocked
|
programs/oeis/178/A178226.asm | neoneye/loda | 22 | 207299 | ; A178226: Characteristic function of A154809 (numbers that are not binary palindromes)
; 0,0,1,0,1,0,1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0
mov $1,$0
seq $1,30101 ; a(n)... |
Borland/CBuilder5/Source/RTL/source/cstrings/qstpcpy.asm | TrevorDArcyEvans/DivingMagpieSoftware | 1 | 207300 | <reponame>TrevorDArcyEvans/DivingMagpieSoftware
;[]-----------------------------------------------------------------[]
;| QSTPCPY.ASM -- copy string src to string dest (quick version) |
;[]-----------------------------------------------------------------[]
DWALIGN equ 1 ; set to 1 to enable dword... |
libsrc/_DEVELOPMENT/adt/b_vector/c/sdcc_iy/b_vector_reserve_callee.asm | meesokim/z88dk | 0 | 207301 |
; int b_vector_reserve_callee(b_vector_t *v, size_t n)
SECTION code_adt_b_vector
PUBLIC _b_vector_reserve_callee
_b_vector_reserve_callee:
pop af
pop hl
pop bc
push af
INCLUDE "adt/b_vector/z80/asm_b_vector_reserve.asm"
|
lab2/testcase/shuffle.asm | may811204/EE460NCompArchi | 0 | 207302 | .ORIG X3000
LEA R0, FIRSTADDR
LEA R1, MASKADDR
LEA R2, THREE
LEA R3, FOUR
LDW R0, R0, #0 ;R0 = 0x4000
LDW R1, R1, #0 ;R1 = 0x4004
INPUTDATA LEA R7, DATA
LDB R7, R7, #0
STB R7, R0, #0
LEA R7, DATA
LDB R7, R7, #2
STB R7, R0, #1
LEA R7, DATA
LDB R7, R7, #4
STB R7, R0, #2
LEA... |
smsq/gold/par/sched.asm | olifink/smsqe | 0 | 207303 | <reponame>olifink/smsqe
; Gold Card PAR scheduler routine V2.03 1994 <NAME>
section par
xdef par_sched
xdef par_oopr
xdef par_actv
xref iob_gbyt
include 'dev8_keys_err'
include 'dev8_keys_68000'
include 'dev8_keys_k'
include 'dev8_keys_par'
include 'dev8_smsq_gold_keys'
reglist reg d0/d1/d2/a0/a2... |
base/mvdm/wow16/drivers/keyboard/kbdlocal.asm | npocmaka/Windows-Server-2003 | 17 | 207304 | <reponame>npocmaka/Windows-Server-2003
;++
;
; WOW v1.0
;
; Copyright (c) 1991, Microsoft Corporation
;
; KBDLOCAL.ASM
;
; Win16 KEYBOARD APIS that are 'internal'
; We make these apis a 'nop'. Relevant code has been copied from WIN31.
; The intention here is to maintain the stack. Any arguments to... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_202.asm | ljhsiun2/medusa | 9 | 207305 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r8
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x370b, %rdi
nop
nop
nop
nop
nop
add $27771, %rbp
mov (%rdi), %r11w
sub $49215, %rdi
lea addresses_D_ht+0x1e8b, %rbx
nop
nop
nop
nop
cmp %r8, %r8
movw $0x6162, (%rbx)
nop
nop
and... |
programs/oeis/034/A034009.asm | neoneye/loda | 22 | 207306 | <gh_stars>10-100
; A034009: Convolution of A000295(n+2) (n>=0) with itself.
; 1,8,38,140,443,1268,3384,8584,20965,49744,115402,262996,590831,1311900,2884956,6293040,13633305,29362200,62916910,134220380,285215651,603983108,1275072128,2684358680,5637149133,11811165088,24696067474,51539613604,107374189015,223338306604,463... |
smsq/mem/xtpa.asm | olifink/smsqe | 0 | 207307 | <filename>smsq/mem/xtpa.asm
; Extend transient program area V2.01 1986 <NAME> QJUMP
section mem
xdef mem_xtpa ; extend tpa
xref mem_rusb ; round up slave block allocation
xref mem_grsb ; grab system slave blocks (a0 by d1)
xref sb_mdown
include 'dev8_keys_sys'
include 'dev8_keys_e... |
Transynther/x86/_processed/US/_ht_zr_un_/i7-7700_9_0x48_notsx.log_21829_1574.asm | ljhsiun2/medusa | 9 | 207308 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xa6fa, %r15
add %r10, %r10
mov (%r15), %bp
dec %r11
lea addresses_normal_ht+0xeb7a, %rbx
nop
nop
nop
nop
nop
add $4742, %r12
mov $0x6162636465666768, %r10
movq %r10,... |
text/maps/viridian_mart.asm | adhi-thirumala/EvoYellow | 0 | 207309 | <filename>text/maps/viridian_mart.asm
_ViridianMartText1::
text "Okay! Say hi to"
line "PROF.OAK for me!"
done
_ViridianMartText4::
text "Hey! You came from"
line "PALLET TOWN?"
done
ViridianMartParcelQuestText::
text "You know PROF."
line "OAK, right?"
para "His order came in."
line "Will you take it"
co... |
q3osc/ccrmamod/ui/ui_syscalls.asm | martinez-zea/localconflict | 1 | 207310 | code
equ trap_Error -1
equ trap_Print -2
equ trap_Milliseconds -3
equ trap_Cvar_Set -4
equ trap_Cvar_VariableValue -5
equ trap_Cvar_VariableStringBuffer -6
equ trap_Cvar_SetValue -7
equ trap_Cvar_Reset -8
equ trap_Cvar_Create -9
equ trap_Cvar_InfoStringBuffer -10
equ t... |
src/sys/amd64/linux32/linux32_locore.asm | lastweek/source-freebsd | 0 | 207311 | <gh_stars>0
/* $FreeBSD$ */
#include "linux32_assym.h" /* system definitions */
#include <machine/asmacros.h> /* miscellaneous asm macros */
#include <amd64/linux32/linux32_syscall.h> /* system call numbers */
.data
.globl linux_platform
linux_platform:
.asciz "i686"
.text
.code32
/*
* To avoid excess stac... |
programs/oeis/314/A314117.asm | jmorken/loda | 1 | 207312 | <reponame>jmorken/loda<gh_stars>1-10
; A314117: Coordination sequence Gal.6.330.4 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,5,11,16,21,26,32,37,42,47,53,58,63,69,74,79,84,90,95,100,105,111,116,121,127,132,137,142,148,153,158,... |
Aurora/Aurora/_fast_cpy.asm | manaskamal/aurora-xeneva | 8 | 207313 | ;----------------------------------------------------------------------------------------
; Copyright (C) <NAME> 2021
;
; memcpy -- fast_memcpy operation
;
; /PROJECT - Xeneva v1.0
; /AUTHOR - <NAME>
;
;-----------------------------------------------------------------------------------------
section .text
[BITS 6... |
source/command/input/handler.asm | mega65dev/rom-assembler | 0 | 207314 | ; ********************************************************************************************
; ********************************************************************************************
;
; Name : handler.asm
; Purpose : ..
; Created : 15th Nov 1991
; Updated : 4th Jan 2021
; Authors : <NAME>
;
; *****... |
ugbc/src/hw/ted/get_image.asm | Samuel-DEVULDER/ugbasic | 0 | 207315 | ; /*****************************************************************************
; * ugBASIC - an isomorphic BASIC language compiler for retrocomputers *
; *****************************************************************************
; * Copyright 2021 <NAME> (<EMAIL>)
; *
; * Licensed under the Apache Lice... |
oeis/040/A040788.asm | neoneye/loda-programs | 11 | 207316 | <reponame>neoneye/loda-programs
; A040788: Continued fraction for sqrt(817).
; Submitted by Jon Maiga
; 28,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1,2,1,1,56,1,1
seq $0,40258 ; Continued f... |
oeis/078/A078896.asm | neoneye/loda-programs | 11 | 207317 | <reponame>neoneye/loda-programs
; A078896: Number of times the smallest prime factor of n is a factor in all numbers <=n; a(1)=1.
; Submitted by <NAME>(s1)
; 1,1,1,3,1,4,1,7,4,8,1,10,1,11,6,15,1,16,1,18,9,19,1,22,6,23,13,25,1,26,1,31,15,32,8,34,1,35,18,38,1,39,1,41,21,42,1,46,8,47,23,49,1,50,13,53,27,54,1,56,1,57,30,63... |
Student/examples/Correct/CPRL0/Correct_111.asm | SoftMoore/CPRL-Kt | 6 | 207318 | PROGRAM 8
LDGADDR 0
LDCINT 5
STOREW
LDGADDR 4
LDCINT 2
STOREW
LDCSTR " x = "
PUTSTR
LDGADDR 0
LOADW
PUTINT
PUTEOL
LDCSTR " y = "
PUTSTR
LDGADDR 4
LOADW
PUTINT
PUTEOL
LDCSTR " x + y = "
PUTSTR
LDGADDR 0
LOADW
LDGADDR 4
LOADW
ADD
... |
libsrc/z80_crt0s/z80/sccz80/l_long_lneg.asm | jpoikela/z88dk | 38 | 207320 | <gh_stars>10-100
; Z88 Small C+ Run Time Library
; Long functions
;
SECTION code_crt0_sccz80
PUBLIC l_long_lneg
; deHL = !deHL
; set carry if result true and return val in dehl
.l_long_lneg
ld a,h
or l
or e
or d
jr z,l_long_lneg1
... |
Ouroboros/External/libjpegTurbo/simd/jiss2fst.asm | jiangzhu1212/oooii | 0 | 207321 | ;
; jiss2fst.asm - fast integer IDCT (SSE2)
;
; Copyright 2009 Pierre Ossman <<EMAIL>> for Cendio AB
;
; Based on
; x86 SIMD extension for IJG JPEG library
; Copyright (C) 1999-2006, MIYASAKA Masaru.
; For conditions of distribution and use, see copyright notice in jsimdext.inc
;
; This file should be assembl... |
travis/test/time.asm | johannkoenig/nasm | 1,052 | 207322 | <gh_stars>1000+
; Not automatically testable because it is not constant
;
; FIXME: Need to adjust code and all this macros for
; --reproducible NASM option.
;
db __DATE__, 13, 10
db __TIME__, 13, 10
db __UTC_DATE__, 13, 10
db __UTC_TIME__, 13, 10
align 4
dd __DATE_NUM__
dd __TIME_NUM__
dd __UTC_DATE_NUM__
dd ... |
oeis/262/A262402.asm | neoneye/loda-programs | 11 | 207324 | ; A262402: a(n) = number of triangles that can be formed from the points of a 3 X n grid.
; Submitted by <NAME>(l1)
; 0,18,76,200,412,738,1200,1824,2632,3650,4900,6408,8196,10290,12712,15488,18640,22194,26172,30600,35500,40898,46816,53280,60312,67938,76180,85064,94612,104850,115800,127488,139936,153170,167212,182088,19... |
src/xyswinger_fadeout.asm | onslaught-demogroup/ons_paddo_music_disk | 0 | 207325 | <filename>src/xyswinger_fadeout.asm
.var xys_map_buf = $a000
xys_fadeout:
ldx #$00
clc
!loop:
.for(var i = 0;i < xys_logo_height;i++){
lda #$0
sta xys_logo_base + (i * $100) + $80,x
lda xys_logo_base + (i * $100) + $81,x
adc #$20
tay
lda xys_clut,y
... |
oeis/124/A124199.asm | neoneye/loda-programs | 11 | 207327 | ; A124199: Primes of the form k(k+1)/2-2 (i.e., two less than triangular numbers).
; Submitted by <NAME>
; 13,19,43,53,89,103,151,229,251,349,433,463,593,701,739,859,1033,1223,1429,1483,1709,1889,1951,2143,2699,3001,3079,3319,3739,4003,4093,4463,4751,5563,5669,6553,7019,7873,8513,9043,10009,10151,10729,11173,11779,1193... |
07/asm/StackTest.asm | Bozar/Nand2Tetris | 3 | 207328 | <filename>07/asm/StackTest.asm
@256
D=A
@SP
M=D
@17
D=A
@SP
A=M
M=D
@SP
M=M+1
@17
D=A
@SP
A=M
M=D
@SP
M=M+1
@SP
M=M-1
@SP
A=M
D=M
@SP
M=M-1
@SP
A=M
D=M-D
@ARITHMETIC_TRUE_0
D;JEQ
@0
D=A
@ARITHMETIC_END_0
0;JMP
(ARITHMETIC_TRUE_0)
@0
D=!A
(ARITHMETIC_END_0)
@SP
A=M
M=D
@SP
M=M+1
@17
D=A
@SP
A=M
M=D
@SP
M=M+1
@16
D=A
@SP... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_1989.asm | ljhsiun2/medusa | 9 | 207329 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r8
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x19869, %rsi
lea addresses_normal_ht+0x27c1, %rdi
clflush (%rdi)
nop
nop
xor $2710, %r8
mov $56, %rcx
rep movsw
nop
nop
xor %r14, %r14
lea addresses_WT_ht+0x5f1, %rcx
nop
nop
... |
oeis/292/A292412.asm | neoneye/loda-programs | 11 | 207331 | ; A292412: Numbers of the form Fibonacci(2*k-1) or Lucas(2*k-1); i.e., union of sequences A001519 and A002878.
; Submitted by <NAME>(s1)
; 1,1,2,4,5,11,13,29,34,76,89,199,233,521,610,1364,1597,3571,4181,9349,10946,24476,28657,64079,75025,167761,196418,439204,514229,1149851,1346269,3010349,3524578,7881196,9227465,206332... |
Library/Text/TextLine/tlLargePosition.asm | steakknife/pcgeos | 504 | 207332 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: tlLargePosition.asm
AUTHOR: <NAME>, Dec 26, 1991
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Desc... |
src/main/fragment/mos6502-common/vdum1=pduz2_derefidx_vbuyy.asm | jbrandwood/kickc | 2 | 207333 | <filename>src/main/fragment/mos6502-common/vdum1=pduz2_derefidx_vbuyy.asm
lda ({z2}),y
sta {m1}
iny
lda ({z2}),y
sta {m1}+1
iny
lda ({z2}),y
sta {m1}+2
iny
lda ({z2}),y
sta {m1}+3
|
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48_notsx.log_21829_1551.asm | ljhsiun2/medusa | 9 | 207334 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1b924, %rdx
nop
nop
nop
nop
mfence
movups (%rdx), %xmm7
vpextrq $1, %xmm7, %rdi
nop
nop
nop
nop
nop
xor %r8, %r8
lea addresses_UC_ht+0x1b835, %rsi
lea addresses_D_ht+0x7975, ... |
programs/oeis/275/A275535.asm | karttu/loda | 0 | 207335 | ; A275535: a(n) = the smallest positive multiple of n that is the sum of more than 1 consecutive positive integers.
; 3,6,3,12,5,6,7,24,9,10,11,12,13,14,15,48,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,96,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,192,65,66,67
mov $1... |
programs/oeis/207/A207597.asm | neoneye/loda | 22 | 207336 | ; A207597: Number of n X 6 0..1 arrays avoiding 0 0 0 and 0 1 0 horizontally and 0 0 1 and 1 0 1 vertically.
; 25,625,3025,9025,21025,42025,75625,126025,198025,297025,429025,600625,819025,1092025,1428025,1836025,2325625,2907025,3591025,4389025,5313025,6375625,7590025,8970025,10530025,12285025,14250625,16443025,18879025... |
src/kernel.asm | ploe/stix | 1 | 207337 | <filename>src/kernel.asm
INCLUDE "hardware.inc"
INCLUDE "kernel.inc"
INCLUDE "actor.inc"
INCLUDE "display.inc"
INCLUDE "blob.inc" ; shouldn't really be here
SECTION "Kernel WRAM Data", WRAM0
Kernel_ConsoleVersion:: db
Kernel_WaitingForVblank: db
SECTION "Kernel ROM0", ROM0
Kernel_MemCpy::
; Copies num number of by... |
os/os8.asm | besm6/micro-besm | 24 | 207338 | <reponame>besm6/micro-besm
*NAME OC-8 (besmextr)
*TIME:24.00
*EXPRESS
*PAGE:999,LIST
*LIBRA:23
*DISC:705/SYSTEM,LCROSS
*FILE:LIB,67
*FILE:MEM,30,W
*PERSO:67
*TAKE TAPE:67
* *DISC:705/SYSTEM,WORKIN
* *FILE:LCROSS - PERSO ACCEMБЛEP+ЗAГPYЗЧИK+ЭMYЛЯTOP
* *FILE:ASSEM - OПИCAHИE И TEKCTЫ A... |
asm/mxesrvld.asm | rscott-rocket/mxe | 8 | 207339 | MXESRVLD TITLE 'MXE - SERVER LOGDATA TASK'
*--------+---------+---------+---------+---------+---------+---------+-
* Name : MXESRVLD
*
* Function : MXE Server LogData task
*
* Wake up periodically and drain the LOGDATA queue
* and WTO the results
*
* ... |
oeis/236/A236286.asm | neoneye/loda-programs | 11 | 207340 | <reponame>neoneye/loda-programs
; A236286: a(n) = tau(n)^sigma(n) / tau(n)^n, where tau(n) = A000005(n) = the number of divisors of n and sigma(n) = A000203(n) = the sum of divisors of n.
; Submitted by <NAME>
; 1,2,2,27,2,4096,2,16384,81,65536,2,2821109907456,2,1048576,262144,30517578125,2,21936950640377856,2,13162170... |
oeis/085/A085385.asm | neoneye/loda-programs | 11 | 207342 | <filename>oeis/085/A085385.asm
; A085385: Binomial transform of hexagonal pyramidal numbers A002412.
; Submitted by <NAME>
; 0,1,9,46,184,640,2032,6048,17152,46848,124160,321024,813056,2023424,4960256,12001280,28704768,67960832,159449088,371064832,857210880,1967128576,4486856704,10177478656,22968008704,51589939200,1153... |
FasterIntV5.asm | alexandrnikitin/MakingIntParseFaster.NET | 0 | 207343 | 0:000> !U /d 00007ff838540900
Normal JIT generated code
MakingIntParseFaster.V5.FasterInt.ParseInt32Fast(System.String, System.Globalization.NumberFormatInfo)
Begin 00007ff838540900, size 1a3
C:\Projects\my\MakingIntParseFaster.NET\MakingIntParseFaster\V5\FasterInt.cs @ 17:
>>> 00007ff8`38540900 4156 push ... |
data/pokemon/dex_entries/ludicolo.asm | AtmaBuster/pokeplat-gen2 | 6 | 207345 | <filename>data/pokemon/dex_entries/ludicolo.asm
db "CAREFREE@" ; species name
db "If this #MON"
next "hears festive"
next "festive music, it"
page "begins moving in"
next "rhythm in order to"
next "amplify its power.@"
|
libsrc/target/zx81/graphics_phrg/hrg_on.asm | Frodevan/z88dk | 640 | 207346 | ;--------------------------------------------------------------
; ZX81 Pseudo - HRG library
; by <NAME>, Mar. 2020
;--------------------------------------------------------------
;
; Set HRG mode
;
; $Id: hrg_on.asm $
;
MODULE __pseudohrg_hrg_on
SECTION code_graphics
; PUBLIC hrgmode
PUBLIC hrg_on
PUBLIC _h... |
oeis/135/A135520.asm | neoneye/loda-programs | 11 | 207347 | <reponame>neoneye/loda-programs
; A135520: a(n) = 4*a(n-2).
; 2,1,8,4,32,16,128,64,512,256,2048,1024,8192,4096,32768,16384,131072,65536,524288,262144,2097152,1048576,8388608,4194304,33554432,16777216,134217728,67108864,536870912,268435456,2147483648,1073741824,8589934592,4294967296,34359738368,17179869184,137438953472,... |
src/data/flyover-text-poo.asm | Iemnur/Mother2GbaTranslation | 149 | 207348 | <gh_stars>100-1000
.loadtable "data/flyover-table.tbl"
// Does 09 work for linebreaks? Existing bin used the system here
db 02h, 00h
db 01h, 44h
.strn "The palace of \cpoo"
db 02h, 04h
db 01h, 50h
.str "The Crown Prince\n" |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0xca_notsx.log_21829_623.asm | ljhsiun2/medusa | 9 | 207349 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x745, %rdi
cmp %r8, %r8
movl $0x61626364, (%rdi)
cmp %r13, %r13
lea addresses_WC_ht+0x19b45, %rdi
sub $48238, %r11
movl $0x61626364, (%rdi)
cmp $21117, %r15... |
lib/src/xr/x86/xrnstrlen.asm | zanud/xds-2.60 | 53 | 207350 | <reponame>zanud/xds-2.60<gh_stars>10-100
; COPYRIGHT (c) 1995,99,2002 XDS. All Rights Reserved.
; Implementation for X2C_LENGTH function
cpu 386
bits 32
%ifdef OS2
section .text use32 global align=4 FLAT global 'CODE'
%else
section .text use32 global align=16 ... |
unittests/ASM/STOSQ2.asm | cobalt2727/FEX | 628 | 207351 | <gh_stars>100-1000
%ifdef CONFIG
{
"Match": "All",
"RegData": {
"RAX": "0xDEADBEEFBAD0DAD1"
},
"MemoryRegions": {
"0x100000000": "4096"
}
}
%endif
; Starting address to store to
mov rdi, 0xe8000000
; Store value
mov rax, 0xDEADBEEFBAD0DAD1
mov [rdi], rax
; Set counter to zero
mov ecx, 0
; Set store... |
VirtualBox-5.0.0/src/VBox/Disassembler/testcase/tstAsmMovzx-1.asm | egraba/vbox_openbsd | 1 | 207355 | <reponame>egraba/vbox_openbsd
; $Id: tstAsmMovzx-1.asm $
;; @file
; Disassembly testcase - Valid movzx sequences and related instructions.
;
; This is a build test, that means it will be assembled, disassembled,
; then the disassembly output will be assembled and the new binary will
; compared with the original.
;
;
;... |
scripts_br/results.asm | hansbonini/smd_beyondoasis | 2 | 207356 | origin $003F4200
text_results:
gameResults("MELHORES RESULTADOS")
gameResults("HORAS")
gameResults("h m s")
gameResults("NIVEL")
gameResults("<NAME>")
gameResults("<NAME>")
gameResults("ABATES")
gameResults("MORTES")
gameResults("JÓIAS")
gameResults("/60")
gameResults("CLASSE")
origin $00384300
text_best_results:
ga... |
Microprocessor_Interfacing_CSE_2006/Arithmetic_Calculations_Lab_2/multiplication.asm | aadhityasw/VIT-Labs | 2 | 207357 | <filename>Microprocessor_Interfacing_CSE_2006/Arithmetic_Calculations_Lab_2/multiplication.asm<gh_stars>1-10
CODE SEGMENT
ASSUME cs:code
START:
mov cx, 3245H
mov ax, cx
mov bx, 4321H
mul bx
hlt
CODE ENDS
END START |
utility/String.asm | puzzud/puzl6502 | 0 | 207358 | ;------------------------------------------------------------------
!zone IntegerToString
INTEGER_TO_STRING_MAX_LENGTH = 5
IntegerToStringBuffer = ramCounter
!set ramCounter = ramCounter+INTEGER_TO_STRING_MAX_LENGTH+1
IntegerToStringOutput = ramCounter
!set ramCounter = ramC... |
aom_20170505/aom_dsp/x86/sad_sse2.asm | rainliu/aom_analyzer | 0 | 207362 | ;
; Copyright (c) 2016, Alliance for Open Media. All rights reserved
;
; This source code is subject to the terms of the BSD 2 Clause License and
; the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
; was not distributed with this source code in the LICENSE file, you can
; obtain it at ww... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.