max_stars_repo_path stringlengths 3 255 | max_stars_repo_name stringlengths 5 116 | max_stars_count int64 0 107k | id stringlengths 1 7 | content stringlengths 63 1.05M |
|---|---|---|---|---|
libsrc/stdio/ansi/f_ansi_lf.asm | jpoikela/z88dk | 640 | 206263 | <filename>libsrc/stdio/ansi/f_ansi_lf.asm
;
; Z80 ANSI Library
;
;---------------------------------------------------
; LF - chr(10) Line Feed
; Do also a Carriage return.
;
; <NAME> - 21/4/2000
;
; $Id: f_ansi_lf.asm,v 1.4 2016-04-04 18:31:22 dom Exp $
;
SECTION code_clib
PUBLIC ansi_LF
EXTERN __console_y... |
programs/oeis/181/A181286.asm | karttu/loda | 0 | 206265 | ; A181286: Partial sums of floor(n^2/3) (A000212).
; 0,0,1,4,9,17,29,45,66,93,126,166,214,270,335,410,495,591,699,819,952,1099,1260,1436,1628,1836,2061,2304,2565,2845,3145,3465,3806,4169,4554,4962,5394,5850,6331,6838,7371,7931,8519,9135,9780,10455,11160,11896,12664,13464,14297,15164,16065,17001,17973,18981,20026,21109,... |
programs/oeis/133/A133180.asm | neoneye/loda | 22 | 206267 | <reponame>neoneye/loda
; A133180: sum[k^6]/sum[k^2], {k, 1, A047380(n)}].
; 1,13,163,373,2191,3433,7411,10363,24583,31591,49981,61723,109513,130351,180793,210901,324013,370273,477463,539041,759811,846613,1042303,1151983,1533331,1679323,2002321,2180263,2785693,3013051,3509221
mov $2,$0
div $0,2
mov $3,$0
div $0,2
add $... |
source/words/structures/if.asm | paulscottrobson/rpl-65 | 1 | 206268 | ; *******************************************************************************************
; *******************************************************************************************
;
; Name : if.asm
; Purpose : If/Else/Endif
; Author : <NAME> (<EMAIL>)
; Date : 13th November 2019
;
; *******************... |
includes/utils.asm | joeldipops/SuperTestBoy | 1 | 206269 | IF !DEF(UTILS_INCLUDED)
UTILS_INCLUDED SET 1
INCLUDE "includes/ops.asm"
INCLUDE "includes/constants.asm"
;;;
; For sprite updates to work, we need to know where in memory they sit.
; Call this before using any sprite macros.
; @param \1 Memory address of sprite attributes before they are copied to V-RAM
;;;
setOA... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1368.asm | ljhsiun2/medusa | 9 | 206270 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1368.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r14
push %r15
push %rbp
push %rcx
// Store
lea addresses_D+0x6d24, %r14
nop
nop
dec %r10
movb $0x51, (%r14)
nop
nop... |
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0xca_notsx.log_21829_1296.asm | ljhsiun2/medusa | 9 | 206272 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NC/_zr_/i3-7100_9_0xca_notsx.log_21829_1296.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %rbp
push %rcx
push %rsi
lea addresses_normal_ht+0x114c1, %r12
nop
nop
nop
add %rbp, %rbp
vmovups (%r12), %ymm5
vextracti128 $1, %... |
libsrc/_DEVELOPMENT/math/float/math32/z80/f32_fssqr.asm | jpoikela/z88dk | 0 | 206273 | ;
; feilipu, 2019 May
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;
;-------------------------------------------------------------------------
; m32_fssqr - z8... |
examples/fibonacci.asm | yahiaetman/CMPN101-Assembler | 1 | 206274 | <reponame>yahiaetman/CMPN101-Assembler
mov A, 0
mov B, 1
out B ; fib(1) = 1 (out = 01h)
add A, B
xor A, B
xor B, A
xor A, B
out B ; fib(2) = 1 (out = 01h)
add A, B
xor A, B
xor B, A
xor A, B
out B ; fib(3) = 2 (out = 02h)
add A, B
xor A, B
xor B, A
xor A, B
out B ; fib(4) = 3 (out = 03h)
add A, B
xor A, B
... |
programs/oeis/138/A138711.asm | neoneye/loda | 22 | 206275 | <reponame>neoneye/loda<filename>programs/oeis/138/A138711.asm
; A138711: n-th run has length n-th positive triangular number, with digits 0 and 1 only, starting with 1.
; 1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1... |
bin/JWASM/Samples/Win16_1.asm | Abd-Beltaji/ASMEMU | 3 | 206276 | <reponame>Abd-Beltaji/ASMEMU
;--- a simple 16-bit Windows "hello world". Public Domain.
;--- assemble: JWasm Win16_1.asm
;--- link: wlink format windows file Win16_1.obj op st=5120,heapsize=1024
;---
;--- alternatively the MS OMF linker can be used as well:
;--- link16 /A:16 Win16_1.obj,,,,Win16_1.def;
;... |
ASM_x86/LinuxAPI_03_getpid.asm | XlogicX/Learn | 43 | 206277 | <gh_stars>10-100
;Example of the getpid API call. API calls found in this example program:
; getpid, getppid, exit
; High level description of what theis example program does:
; Uses the getpid API call to get it's current process ID.
; Stores this process ID number in memory (using pointer 'pid').
; Exits gracefully ... |
src/app/AppDrawLogo.asm | jhm-ciberman/calculator-asm | 2 | 206278 | proc AppDrawLogo
local x:DWORD, y:DWORD, scale:DWORD
mov [scale], 4
; x = (APP_WIDTH - logo_w * scale) / 2
mov eax, [_gr_logo_w]
imul [scale]
mov edx, eax
mov eax, [_gr_app_width]
sub eax, edx
shr eax, 1
mov [x], eax
; y = APP_HEIGHT / 4
mov eax, [_gr_app_height]
shr eax, 2
mov [y], ea... |
python_src/other/export/map_strings_en.asm | fjpena/sword-of-ianna-msx2 | 43 | 206279 | <filename>python_src/other/export/map_strings_en.asm
org $C000
map_strings: dw string_list
map_scripts: dw current_script_pointer
;LEVEL STRING POINTERS
string_list: dw string0, string1
; STRINGS
string0: db "JARKUM, GO TO THE FORTRESS OF KASHGAR, FIND THE MONOLITHS, AND LISTEN TO THE VOICE OF OUR ANCESTORS.",0
st... |
programs/oeis/187/A187366.asm | neoneye/loda | 22 | 206280 | ; A187366: One half of a trisection of A001700: binomial(6n+5,3(n+1))/2, n>=0.
; 5,231,12155,676039,38779380,2268783825,134564468610,8061900920775,486734856412028,29566145391215356,1804857108504066435,110628135069209194801,6804253717299758003900,419727621552972772561830,25956855321888352842417780
add $0,1
mul $0,3
mov... |
Borland/CBuilder5/Source/RTL/source/math/hypot.asm | TrevorDArcyEvans/DivingMagpieSoftware | 1 | 206281 | ;[]-----------------------------------------------------------------[]
;| HYPOT.ASM -- trigonometric function |
;[]-----------------------------------------------------------------[]
;
; C/C++ Run Time Library - Version 10.0
;
; Copyright (c) 1991, 2000 by Inprise Corporation... |
source/jni/u2/techno/koeb.asm | Falken42/SecondReality | 9 | 206282 | <reponame>Falken42/SecondReality
extrn _circle:byte
extrn _circle2:byte
code2 SEGMENT para public 'CODE'
ASSUME cs:code2
.386
LOCALS
include sin1024.inc
;################################################################
sizefade dw 0
rotspeed dw 0
palfader dw 0
palfader2 db 255
zumplane db 11h
ALI... |
_build/dispatcher/jmp_ippsECCPSignDSA_262b95c4.asm | zyktrcn/ippcp | 1 | 206283 | <gh_stars>1-10
extern m7_ippsECCPSignDSA:function
extern n8_ippsECCPSignDSA:function
extern y8_ippsECCPSignDSA:function
extern e9_ippsECCPSignDSA:function
extern l9_ippsECCPSignDSA:function
extern n0_ippsECCPSignDSA:function
extern k0_ippsECCPSignDSA:function
extern ippcpJumpIndexForMergedLibs
extern ippcpSafeInit:func... |
oeis/031/A031387.asm | neoneye/loda-programs | 11 | 206284 | <gh_stars>10-100
; A031387: a(n) = prime(6*n-3).
; Submitted by <NAME>
; 5,23,47,73,103,137,167,197,233,269,307,347,379,419,449,487,523,571,607,643,677,727,761,811,853,883,937,977,1019,1051,1093,1129,1187,1229,1279,1303,1367,1427,1453,1489,1543,1579,1613,1663,1709,1753,1801,1867,1901,1951,1999,2039,2087,2131,2179,2239,... |
source/some_lib/simple_amd64_sysv_nasm.asm | PyrekP/FastBuildTemplate | 23 | 206285 | bits 64
section .text
; In AMD64 SYSV ABI, params/return are as follows:
; rax rdi rsi rdx
; extern int simple_add(int a, int b, int *r)
global simple_add
simple_add:
mov eax, edi
add eax, esi ; result in RAX
mov [rdx], eax ; store / deref
ret
|
tmp1/c55x-sim2/foo/Debug/csl_uart_dma_example.asm | jwestmoreland/eZdsp-DBG-sim | 1 | 206287 | ;*******************************************************************************
;* TMS320C55x C/C++ Codegen PC v4.4.1 *
;* Date/Time created: Sat Sep 29 23:08:43 2018 *
;****************************************************************************... |
oeis/145/A145302.asm | neoneye/loda-programs | 11 | 206288 | ; A145302: a(n) = ((7 + sqrt(7))^n + (7 - sqrt(7))^n)/2.
; Submitted by <NAME>
; 1,7,56,490,4508,42532,406112,3899224,37532432,361686640,3487250816,33630672544,324364881344,3128620091968,30177356271104,291080943932800,2807684251672832,27082179878242048,261227779725129728
mov $1,2
lpb $0
sub $0,1
add $2,$1
mul $1... |
oeis/099/A099012.asm | neoneye/loda-programs | 11 | 206289 | <reponame>neoneye/loda-programs
; A099012: a(n) = 3^(n-1)*Fibonacci(n).
; Submitted by <NAME>
; 0,1,3,18,81,405,1944,9477,45927,223074,1082565,5255361,25509168,123825753,601059771,2917611090,14162371209,68745613437,333698181192,1619805064509,7862698824255,38166342053346,185263315578333,899287025215113,4365230915850336,... |
libsrc/stdio/__printf_print_aligned.asm | ahjelm/z88dk | 640 | 206290 | <reponame>ahjelm/z88dk<filename>libsrc/stdio/__printf_print_aligned.asm
MODULE __printf_print_aligned
SECTION code_clib
PUBLIC __printf_print_aligned
EXTERN __printf_doprint
EXTERN l_ge
EXTERN __printf_get_width
EXTERN __printf_is_padding_zero
EXTERN __printf_check_pad_right
; E... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_10_144.asm | ljhsiun2/medusa | 9 | 206292 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r15
push %rbp
push %rcx
push %rdi
// Load
lea addresses_WC+0x722, %rbp
sub $20850, %rcx
vmovups (%rbp), %ymm5
vextracti128 $0, %ymm5, %xmm5
vpextrq $0, %xmm5, %r15
nop
nop
sub ... |
oeis/145/A145429.asm | neoneye/loda-programs | 11 | 206293 | <reponame>neoneye/loda-programs<filename>oeis/145/A145429.asm
; A145429: Decimal expansion of Sum_{n > 0} n*(n!)^2/(2n)!.
; Submitted by <NAME>(s2)
; 1,0,6,9,7,3,3,1,9,2,0,5,2,0,4,8,4,1,1,2,4,3,1,2,8,5,0,1,6,9,8,2,5,6,8,2,9,3,9,6,4,5,9,1,6,6,2,4,2,8,3,1,2,3,9,0,1,5,5,2,9,9,8,5,6,4,1,8,0,5,1,5,1,3,6,1,4,1,1,9,7,4,1,5,2,... |
examples/records/records.asm | bttrx/hasm | 0 | 206294 | <reponame>bttrx/hasm<filename>examples/records/records.asm
//Generated with Hascal Studio v1.3
// Copyright (c) <NAME> 2020
// All rights reserved.
.import
import Kernel32.dll WriteFile
import Kernel32.dll GetStdHandle
import Kernel32.dll ExitProcess
.var
record two_strings
string s1 "This string have thr... |
LAB06/TASK02.asm | PrabalChowdhury/CSE-341-MICROPROCESSOR | 0 | 206295 | .MODEL SMALL
.STACK 100H
.DATA
P DB "Enter Three Numbers :$"
Q DB "Largest Number :$"
.CODE
MAIN PROC
MOV AX,@DATA
MOV DS,AX
LEA DX, P
MOV AH, 9
INT 21H
MOV AH, 1
INT 21H
MOV BH, AL
MOV AH, 1 ... |
src/tests/spectre_ret.asm | microsoft/sca-fuzzer | 2 | 206296 | <reponame>microsoft/sca-fuzzer<gh_stars>1-10
.intel_syntax noprefix
# random input - rax
IMUL edi, edi, 2891336453
ADD edi, 12345
MOV eax, edi
# speculative offset:
# these shifts generate a random page offset, 64-bit aligned
SHL rax, 58
SHR rax, 52
LFENCE
MOV rcx, r14
ADD rsp, 8 # ensure that the CALL and RET use ... |
bms/BmsDrawPtr.asm | osfree-project/FamilyAPI | 1 | 206297 | <gh_stars>1-10
;/*!
; @file
;
; @ingroup fapi
;
; @brief BmsDrawPtr DOS wrapper
;
; (c) osFree Project 2021, <http://www.osFree.org>
; for licence see licence.txt in root directory, or project website
;
; This is Family API implementation for DOS, used with BIND tools
; to link required API
;
; @author ... |
Systems Programming/Assignment 1/prog9.asm | neeladripal/bcse-lab | 0 | 206298 | <filename>Systems Programming/Assignment 1/prog9.asm<gh_stars>0
TITLE PROG9 {EXE} Loop until the user decides to quit
;--------------------------------------------
.MODEL SMALL
.STACK
;--------------------------------------------
.DATA
INPMSG DB "Enter q to quit: ", "$"
OUTMSG DB 0DH, 0AH, "Your character -> ", "$"
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1129.asm | ljhsiun2/medusa | 9 | 206300 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xd6d1, %rsi
lea addresses_WC_ht+0x5423, %rdi
nop
nop
nop
nop
nop
and %rbx, %rbx
mov $124, %rcx
rep movsb
nop
nop
xor %rdi, %rdi
lea addresses_D_... |
asm/playlzs.asm | dmsc/lzss-sap | 3 | 206301 | <reponame>dmsc/lzss-sap
;
; LZSS Compressed SAP player for 8 match bits
; -------------------------------------------
;
; (c) 2020 DMSC
; Code under MIT license, see LICENSE file.
;
; This player uses:
; Match length: 4 bits (2 to 17)
; Match offset: 4 bits (1 to 16)
; Min length: 2
; Total match bits: 12 bits
;
... |
libsrc/_DEVELOPMENT/ctype/c/sdcc_iy/iscntrl_fastcall.asm | meesokim/z88dk | 0 | 206302 |
; int iscntrl_fastcall(int c)
SECTION code_ctype
PUBLIC _iscntrl_fastcall
EXTERN asm_iscntrl, error_znc
_iscntrl_fastcall:
inc h
dec h
jp nz, error_znc
ld a,l
call asm_iscntrl
ld l,h
ret nc
inc l
ret
|
programs/oeis/069/A069097.asm | neoneye/loda | 22 | 206303 | <gh_stars>10-100
; A069097: Moebius transform of A064987, n*sigma(n).
; 1,5,11,22,29,55,55,92,105,145,131,242,181,275,319,376,305,525,379,638,605,655,551,1012,745,905,963,1210,869,1595,991,1520,1441,1525,1595,2310,1405,1895,1991,2668,1721,3025,1891,2882,3045,2755,2255,4136,2737,3725,3355,3982,2861,4815,3799,5060,4169,4... |
user/rm.asm | noyaviv/ass3 | 0 | 206305 |
user/_rm: file format elf64-littleriscv
Disassembly of section .text:
0000000000000000 <main>:
#include "kernel/stat.h"
#include "user/user.h"
int
main(int argc, char *argv[])
{
0: 7179 addi sp,sp,-48
2: f406 sd ra,40(sp)
4: f022 sd s0,32(sp)
6: ec26 ... |
oeis/203/A203147.asm | neoneye/loda-programs | 11 | 206306 | ; A203147: (n-1)-st elementary symmetric function of {11, 12, 13, 14, ..., 10 + n}.
; Submitted by <NAME>
; 1,23,431,7750,140274,2604744,50046408,998853264,20742534576,448372820160,10086271796160,235977273544320,5737221760152960,144817445022243840,3791415072241843200,102851265545431603200,2888120485072388966400,8386805... |
text/maps/pokemon_tower_2f.asm | adhi-thirumala/EvoYellow | 16 | 206308 | <filename>text/maps/pokemon_tower_2f.asm
_PokemonTower2Text_6062d::
text $53, ": Hey,"
line $52, "! What"
cont "brings you here?"
cont "Your #MON"
cont "don't look dead!"
para "I can at least"
line "make them faint!"
cont "Let's go, pal!"
done
_PokemonTower2Text_60632::
text "What?"
line "You stinker!"
p... |
programs/oeis/160/A160869.asm | karttu/loda | 1 | 206309 | <reponame>karttu/loda<filename>programs/oeis/160/A160869.asm
; A160869: a(n) = sigma(6^(n-1)).
; 1,12,91,600,3751,22932,138811,836400,5028751,30203052,181308931,1088123400,6529545751,39179682372,235085301451,1410533397600,8463265086751,50779784492892,304679288612371,1828077476115000,10968470088963751,65810836228506612
... |
c6ers/interlnk/driver/block.asm | minblock/msdos | 0 | 206310 | ;***
;* $Workfile: block.asm $
;* $Revision: 1.5 $
;* $Author: <NAME> $
;* $Date: 08 Aug 1989 16:44:52 $
;***
TITLE Permanent device driver code and data
PAGE 66, 132
INCLUDE drivers.mac
INCLUDE packets.mac
... |
tests/String/display_time.asm | ZubinGou/8086-emulator | 39 | 206311 | <reponame>ZubinGou/8086-emulator<gh_stars>10-100
NAME String
TITLE display_time
ASSUME CS:CODE, DS:DATA
DATA SEGMENT
MSG1 DB 'Current time is: $'
HR DB ?
MIN DB ?
SEC DB ?
MSEC DB ?
DATA ENDS
CODE SEGMENT
START: MOV AX, DATA
MOV DS, AX
MOV AH,2CH ; To get system ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1629.asm | ljhsiun2/medusa | 9 | 206312 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x8f44, %rsi
lea addresses_D_ht+0x6bf, %rdi
nop
nop
nop
nop
xor $53665, %r13
mov $49, %rcx
rep movsq
cmp $14779, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %r13
ret
.global s_faulty_load
s_faulty_load:
push %r14
push %... |
Testing-File/SLT.asm | srsarangi/riscv-emulator | 0 | 206314 | <filename>Testing-File/SLT.asm
@Assembly code to set x22 if 2<5
.main:
addi x20, x0, 2
addi x21, x0, 5
slt x22, x20, x21
.print x22
end |
sw/552tests/inst_tests/btr_8.asm | JPShen-UWM/ThreadKraken | 1 | 206315 | <filename>sw/552tests/inst_tests/btr_8.asm<gh_stars>1-10
// Test provided by Karu
// btr_8.asm
// Test all bits can reverse 2
slbi r1, 0xf0 // 1111 0000
slbi r1, 0xf0 // 1111 0000
btr r1, r1
halt
|
programs/oeis/016/A016204.asm | neoneye/loda | 22 | 206316 | <filename>programs/oeis/016/A016204.asm
; A016204: Expansion of 1/((1-x)(1-2x)(1-9x)).
; 1,12,115,1050,9481,85392,768655,6918150,62263861,560375772,5043383995,45390460050,408514148641,3676627354152,33089646220135,297806816046750,2680261344551821,24122352101228532,217101168911581075
lpb $0
mov $2,$0
sub $0,1
seq ... |
Code/Assembly/decrypt.asm | dks1018/CoffeeShopCoding | 0 | 206317 | ;Encrypt Function
push ebp
mov ebp,esp
mov eax, 4;this can be any number and will encrypt the number then store it in ebx
sub eax, 0x18
xor eax, 0x7a69
not eax
xor eax, 0x11e61
xor eax, 0x37
add eax, 0x26
mov ebx, eax
;Decrypt
sub eax, 0x26;this takes the encrypted number from eax and decrpts it, in the regist... |
oeis/104/A104639.asm | neoneye/loda-programs | 11 | 206318 | <reponame>neoneye/loda-programs
; A104639: Number of even digits in n^3.
; Submitted by <NAME>(s2)
; 0,1,1,2,1,2,1,1,1,3,0,2,1,3,0,3,1,2,2,4,2,4,2,3,2,1,2,2,3,4,1,3,0,2,3,4,2,3,0,5,3,4,1,3,1,1,3,2,2,4,2,5,3,3,2,2,1,1,2,5,4,4,4,5,4,4,3,3,3,4,0,3,2,5,3,3,2,3,2,4,2,2,1,3,3,4,3,4,3,4,0,4,3,4,1,4,2,2,2,6
add $0,1
pow $0,3
... |
data/pokemon/dex_entries/ursaring.asm | Dev727/ancientplatinum | 28 | 206321 | db "HIBERNANT@" ; species name
dw 511, 2770 ; height, weight
db "Although it has a"
next "large body, it is"
next "quite skilled at"
page "climbing trees. It"
next "eats and sleeps in"
next "the treetops.@"
|
solve/solve.asm | KipodAfterFree/KAF-2020-CHIP-8 | 1 | 206322 | ; Instructions:
; 50 push rax
; 5F pop rdi
;
; Compiled instruction lengths (for playing with offsets):
; Ld_reg_imm (on V1) = 5
; Ld_I_imm = 7
; And_reg_reg, Ld_reg_reg (with nonzero disps) = 8
; Shr = 9
; Rnd (on V1) = 18
; Cls = 44
define finalStepReg V6
define zeroreg V7
define onereg V8
define shouldDelayR... |
src/Shaders/FxDis/test_PS.asm | tgjones/slimshader-cpp | 20 | 206324 | <filename>src/Shaders/FxDis/test_PS.asm<gh_stars>10-100
//
// Generated by Microsoft (R) HLSL Shader Compiler 9.30.9200.16384
//
//
///
// Note: SHADER WILL ONLY WORK WITH THE DEBUG SDK LAYER ENABLED.
//
//
// Buffer Definitions:
//
// cbuffer cbuf0
// {
//
// float4 cool; // Offset: 0 Size:... |
software/pcx86/test/cpu/80186/jump1.asm | jriwanek-forks/pcjs | 711 | 206325 | ;00: 34 12
use16
start:
mov cx,0
mov bx,64
mov sp,01000h
mov ss,sp
push bx
jmp j00
; ja/jnbe
j00err:
jmp jerr
j00:
stc
ja j00err ; (1)
clc
ja j01
; jae/jnb/jnc
j01err:
jmp jerr
j01:
stc
jae j01err ; (2)
clc
jae j02
; jb/jnae/jc
j02err:
jmp jerr
j02:
jb j02err ; (3)
stc
jb j03
; jbe/jna
j03err:
jmp ... |
Lab 7/Lab_7.asm | Vladicka/Assembler | 0 | 206326 | <reponame>Vladicka/Assembler
.386
data segment
divider dw 10
err_msg db 'Error occured: your string can not be interpreted as hex number.',10,13,'$'
buff db 6 dup(?)
data ends
code segment use16
start:
assume cs:code, ds:data
mov ax, data
mov ds, ax
mov cl, 16
mov ch, 10
mov buff[5... |
tests/allinstructions.asm | rzumer/dez80 | 1 | 206328 | ADC A, 0x23
ADC A, (HL)
ADC A, (IX + 0x45)
ADC A, (IY + 0x45)
ADC A, A
ADC A, B
ADC A, C
ADC A, D
ADC A, E
ADC A, H
ADC A, L
ADC HL, BC
ADC HL, DE
ADC HL, HL
ADC HL, SP
ADD A, 0x23
ADD A, (HL)
ADD A, (IX + 0x45)
ADD A, (IY + 0x45)
ADD A, A
ADD A, B
ADD A, C
ADD A, D
ADD A, E
ADD A, H
ADD A, L
ADD HL, BC
ADD HL, DE
ADD ... |
kernel/int/idt.asm | sudoamin/mars-os | 3 | 206329 | section .text
extern int_handler
global vector0
global vector1
global vector2
global vector3
global vector4
global vector5
global vector6
global vector7
global vector8
; global vector9
global vector10
global vector11
global vector12
global vector13
global vector14
; global vector15
global vector16
global vector17
glo... |
savefile/maps/1670_NorthernEncampment.asm | stranck/fools2018-1 | 35 | 206330 | SECTION "Map_1670", ROM0[$B800]
Map_1670_Header:
hdr_tileset 8
hdr_dimensions 4, 4
hdr_pointers_a Map_1670_Blocks, Map_1670_TextPointers
hdr_pointers_b Map_1670_Script, Map_1670_Objects
hdr_pointers_c Map_1670_InitScript, Map_1670_RAMScript
hdr_palette $07
... |
non_regression/comm_x86_macosx.out.asm | LRGH/plasmasm | 1 | 206331 | <reponame>LRGH/plasmasm
.section __TEXT,__text,regular,pure_instructions
.align 4, 0x90
.globl _main
_main:
pushl %ebp
movl %esp, %ebp
pushl %esi
call L00001F89
L00001F89:
popl %eax
movl $0, %ecx
movl 119(%eax), %edx
movl 123(%eax), %eax
movl (%eax), %eax
sa... |
oeis/210/A210062.asm | neoneye/loda-programs | 11 | 206333 | ; A210062: Number of digits in 7^n.
; Submitted by <NAME>
; 1,1,2,3,4,5,6,6,7,8,9,10,11,11,12,13,14,15,16,17,17,18,19,20,21,22,22,23,24,25,26,27,28,28,29,30,31,32,33,33,34,35,36,37,38,39,39,40,41,42,43,44,44,45,46,47,48,49,50,50,51,52,53,54,55,55,56,57,58,59,60,61,61,62,63,64,65,66,66,67,68,69,70,71,71,72,73,74,75,76,7... |
Assembler/tests/doc-example.asm | asifmallik/SCALE-MAMBA | 196 | 206334 | <reponame>asifmallik/SCALE-MAMBA
ldms s2, -100
ldmc c1, 10
ldms s8, 20
addm s1,s2,c1
ldmc c2, 30
addc c3,c1,c2
adds s3,s1,s2
startopen 1, s3
stopopen 1, c4
adds s4, s1, s2
addm s5, s1, c4
startopen 1, s5
stopopen 1, c6
stmc c6, 50
addm s9, s2, c2
startopen 1, s9
stopopen 1, c5
ldms s7, 110
startopen 1, s7
stopopen 1, c... |
programs/oeis/080/A080476.asm | karttu/loda | 1 | 206335 | <filename>programs/oeis/080/A080476.asm
; A080476: Floor( geometric mean of next n numbers ).
; 1,2,4,8,12,18,24,32,40,50,60,72,84,98,112,128,144,162,180,200,220,242,264,288,312,338,364,392,420,450,480,512,544,578,612,648,684,722,760,800,840,882,924,968,1012,1058,1104,1152,1200,1250,1300,1352,1404,1458
add $0,1
mov $1... |
Transynther/x86/_processed/US/_zr_/i7-8650U_0xd2_notsx.log_2816_437.asm | ljhsiun2/medusa | 9 | 206336 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x7e3f, %rsi
lea addresses_WC_ht+0x13e1, %rdi
clflush (%rdi)
nop
xor $30733, %r12
mov $97, %rcx
rep movsl
add $36441, %rdi
lea addresses_WT_ht+0xea3f, %rcx
nop
nop
nop
add %r11, %r11
mo... |
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sdcc_iy/sp1_IterateUpdateRect.asm | jpoikela/z88dk | 640 | 206337 | ; void sp1_IterateUpdateRect(struct sp1_Rect *r, void *hook)
SECTION code_clib
SECTION code_temp_sp1
PUBLIC _sp1_IterateUpdateRect
EXTERN l0_sp1_IterateUpdateRect_callee
_sp1_IterateUpdateRect:
pop af
pop hl
pop ix
push ix
push hl
push af
jp l0_sp1_IterateUpdateRect_callee
|
uxos/trial/real/vga-clear.asm | CaysHub/OS_Test | 0 | 206338 | org 0x7c00
[bits 16]
mov ax, 0xB800
mov es, ax
mov si,0
l1:
mov ah, 0x07
mov al, ' '
mov [es:si], ax
add si,2
cmp si,4000
jl l1
mov [es:si],ax
stop: jmp stop
ti... |
praks4/yl1.asm | Leonid-98/AVR_ASM | 0 | 206339 | <gh_stars>0
;STACK
ldi r16, low(RAMEND)
ldi r17, high(RAMEND)
out SPL, r16
out SPH, r17
;UART
.equ BAUD_RATE = 9600
.equ CLK_FREQ = 2000000
.equ SAMPLES = 16
ldi r16, 1<<TXEN1 // Transmitter en
sts UCSR1B, r16
ldi r16, 1<<UCSZ11 | 1<<UCSZ10 // [bit 2:1] char size=8bit
sts UCSR1C, r16
ldi r16, low(CLK_FREQ / (BAUD_RAT... |
Transynther/x86/_processed/NONE/_st_/i7-7700_9_0x48.log_21829_302.asm | ljhsiun2/medusa | 9 | 206340 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xdd82, %r12
clflush (%r12)
nop
nop
nop
nop
inc %rdx
vmovups (%r12), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $0, %xmm4, %r13
nop
nop
nop
nop
nop
dec %r11
lea addresses_A_h... |
BootLoader/boot.asm | nujiy0324/OS_Dev | 0 | 206342 | <reponame>nujiy0324/OS_Dev
org 0x7c00
;;; define
stack_base equ 0x7c00
loader_base equ 0x1000
loader_offset equ 0x00
; PA = loader_base << 4 + loader_offset
root_dir_sectors equ 14
sector_num_of_root_dir_start equ 19
sector_num_of_FAT12_start equ 1
sector_balance equ 17
;;; tmp var
root_dir_size_for_loop dw root_d... |
firmware_with_notes.asm | ammaraskar/iClicker-base-reversing | 6 | 206343 | <reponame>ammaraskar/iClicker-base-reversing
ROM:0000 ; +-------------------------------------------------------------------------+
ROM:0000 ;
ROM:0000 ; Input MD5 : B1C88AE09535AE27B2DC644569FC01BF
ROM:0000 ; Input CRC32 : 35CB606F
ROM:0000
ROM:0000 ; File Name : C:\VMs\shared\iclicker\firmware.bin
ROM:0000 ; Form... |
src/z80asm/t/data/zx48_10.asm | andydansby/z88dk-mk2 | 1 | 206344 | <reponame>andydansby/z88dk-mk2<gh_stars>1-10
;****************************************
;** Part 10. FLOATING-POINT CALCULATOR **
;****************************************
XDEF L335B
XDEF L33A9
XDEF L33B4
XDEF L33C0
XDEF L3406
XDEF L346E
XDEF L34E9
XDEF L3... |
audio/music/unused/Radio/Hoenn/Route 113.asm | AtmaBuster/pokeplat-gen2-old | 2 | 206346 | Music_Route113:
musicheader 4, 1, Music_Route113_Ch1
musicheader 1, 2, Music_Route113_Ch2
musicheader 1, 3, Music_Route113_Ch3
musicheader 1, 4, Music_Route113_Ch4
Music_Route113_Ch1:
tempo 144
dutycycle $0
vibrato $12, $15
tone $0001
notetype $c, $64
note __, 2
Music_Route113_Ch1_loop_main:
Music_Route113_... |
target/cos_117/disasm/iop_overlay1/CONCIO.asm | jrrk2/cray-sim | 49 | 206347 | <filename>target/cos_117/disasm/iop_overlay1/CONCIO.asm
@@@@@@@@@@@@@@@@@@@@
@@ Gets loaded to 0x6150 (0x6156) 0x668b
@@ Input: none????
@@ OR[257]: pointer to some kind of a 'concentrator ordinal' desc.
@@ offset 0: some bit-field
@@ bit 15 - 1: concentrator active
@@ bit 14 - 1: ini... |
TinyC/ch4/pcode_2.asm | zh921/TinyC | 0 | 206348 | var a, b, c
push 1
push 2
$sum
exit 0
FUNC @sum:
arg a, b
push a
push b
add
ret ~
ENDFUNC
|
tvnoise.asm | gasman/kisskill | 2 | 206349 | <gh_stars>1-10
tvnoise
; set page 7 screen to white
ld bc,0x7ffd
ld a,0x07
out (c),a
ld hl,0xd800
ld de,0xd801
ld bc,0x02ff
ld (hl),0x3f
ldir
; set page 5 screen to black (with white ink)
ld hl,0x4000
ld de,0x4001
ld bc,0x1800
ld (hl),l
ldir
ld bc,0x02ff
ld (hl),0x07
ldir
ld b,120 ; was 50
noisewait... |
assembly/exemplos/src/pinta_pixel.asm | AbnerLimaa/arquitetura-de-computadores | 0 | 206351 | org 0x7c00
bits 16
mov ax, 0x00
mov ds, ax
cli
main:
mov al, 0x13
int 0x10
mov ax, 0xA000
mov es, ax
mov cx, 64000
mov bx, 0
.print_pixel:
mov di, bx
mov [es:di], byte 40
inc bx
dec cx
jnz .print_pixel
hlt
times 510 - ($-$$) db 0
dw 0xAA55 |
programs/oeis/076/A076897.asm | neoneye/loda | 22 | 206352 | <reponame>neoneye/loda
; A076897: a(1)=1, a(n)=n-a(floor(3n/4)).
; 1,1,2,2,3,4,4,4,5,6,7,7,8,8,8,9,10,10,11,12,13,13,13,14,15,15,15,15,16,17,18,18,19,19,20,21,22,23,23,23,24,24,25,25,26,27,27,27,28,28,28,29,30,31,31,32,33,33,34,34,35,35,36,37,38,38,39,40,41,41,41,41,42,43,43,43,44,45,45,46,47,47,48,48,49,49,49,50,51,51... |
programs/oeis/194/A194151.asm | neoneye/loda | 22 | 206353 | <filename>programs/oeis/194/A194151.asm
; A194151: Beatty sequence for (1/2)*sqrt(5); complement of A194152.
; 1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,38,39,40,41,42,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,76,77
add $0,1
... |
test/asm/mov.asm | nigelperks/BasicAssembler | 0 | 206355 | <filename>test/asm/mov.asm
IDEAL
CR equ 0Dh
DISP8 equ 66h
DISP16 equ 1234h
SEGMENT image
ORG 0100h
ASSUME CS:image, DS:image, SS:image, ES:image
start:
; MOV r8, r/m8
mov al, [bx+si]
mov ah, [bx+di]
mov bl, [bp+si]
mov bh, [bp+di]
... |
daily_tasks/Day1/Assembly/ARM/sum_arm.asm | abinashprabakar/Advanced-C | 0 | 206359 | .global _start
_start:
mov r0,#0 # i = 0
mov r1,#0 # sum = 0
.loop: # loop
cmp r0,#9 # i < 10
bgt .last
add r1,r1,r0 # sum += i
add r0,r0,#1 # i++
b .loop # goback to loop if i<10
.last:
|
programs/oeis/246/A246817.asm | neoneye/loda | 22 | 206360 | ; A246817: Possible number of trailing zeros in hyperfactorials (A002109).
; 0,5,15,30,50,100,130,165,205,250,350,405,465,530,600,750,830,915,1005,1100,1300,1405,1515,1630,1750,2125,2255,2390,2530,2675,2975,3130,3290,3455,3625,3975,4155,4340,4530,4725,5125,5330,5540,5755,5975,6425,6655,6890,7130,7375,8125,8380,8640,890... |
programs/oeis/316/A316828.asm | karttu/loda | 1 | 206362 | <gh_stars>1-10
; A316828: Image of the Thue-Morse sequence A010060 under the morphism {1 -> 1,2; 0 -> 0,2}.
; 0,2,1,2,1,2,0,2,1,2,0,2,0,2,1,2,1,2,0,2,0,2,1,2,0,2,1,2,1,2,0,2,1,2,0,2,0,2,1,2,0,2,1,2,1,2,0,2,0,2,1,2,1,2,0,2,1,2,0,2,0,2,1,2,1,2,0,2,0,2,1,2,0,2,1,2,1,2,0,2,0,2,1,2,1,2,0,2,1,2,0,2,0,2,1,2,0,2,1,2,1,2,0,2,1,... |
Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0x84_notsx.log_493_2256.asm | ljhsiun2/medusa | 9 | 206364 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r13
push %r8
push %r9
push %rbx
push %rdi
push %rsi
// Store
lea addresses_RW+0x221, %r8
sub $44417, %rbx
movb $0x51, (%r8)
add $64492, %rbx
// Load
mov $0x21cfec00000000f1, %r13
nop
no... |
ArrSum.asm | Sahilsinggh/MP_SEM4 | 1 | 206365 | %macro print 2
mov eax, 4
mov ebx, 1
mov ecx, %1
mov edx, %2
int 80h
%endmacro
%macro exit 0
mov eax, 1
mov ebx, 0
int 80h
%endmacro
section .data
msg: db "Sum = "
len: equ $-msg
newLine: db 10
arr: dd 112,-113,-9,1,2,3,4,7,1
n: equ 9
section .bss
sum: resb 1
... |
General/Sprites/Knuckles/Map - SStage Knuckles.asm | NatsumiFox/AMPS-Sonic-3-Knuckles | 5 | 206366 | dc.w word_AD332-Map_SStageKnuckles
dc.w word_AD3BA-Map_SStageKnuckles
dc.w word_AD370-Map_SStageKnuckles
dc.w word_AD35C-Map_SStageKnuckles
dc.w word_AD348-Map_SStageKnuckles
dc.w word_AD334-Map_SStageKnuckles
dc.w word_AD37E-Map_SStageKnuckles
dc.w word_AD392-Map_SStageKnuckles
dc.w word_AD3A6-Map_SS... |
45/runtime/rt/mtfloat.asm | minblock/msdos | 0 | 206367 | <gh_stars>0
TITLE MTFLOAT - Floating call helper functions
;***
; MTFLOAT - Float call helper functions
;
; Copyright <C> 1986, Microsoft Corporation
;
;Purpose:
; The majority of floating point math support for the runtime is via
; 'Float Calls', i.e., calls to floating point routines at a level
; that utilize an 80[... |
programs/oeis/143/A143999.asm | karttu/loda | 1 | 206368 | <reponame>karttu/loda<gh_stars>1-10
; A143999: Rectangular array by antidiagonals: label each unit square in the first quadrant lattice by its northeast vertex (x,y) and mark squares for which (x,y) is congruent mod 4 to one of the following: (1,1), (2,3), (3,2), (4,0); then R(m,n) is the number of UNmarked squares in ... |
Library/SpecUI/CommonUI/CComp/copenCtrlClass.asm | steakknife/pcgeos | 504 | 206369 | <reponame>steakknife/pcgeos<filename>Library/SpecUI/CommonUI/CComp/copenCtrlClass.asm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
(c) Copyright GeoWorks 1996. All Rights Reserved.
GEOWORKS CONFIDENTIAL
PROJECT: GEOS
MODULE: CommonUI/COpen (common code for several specific ... |
igzip/igzip_decode_block_stateless.asm | tsg-/ceph-isa-l | 0 | 206370 | default rel
%include "reg_sizes.asm"
%define DECOMP_OK 0
%define END_INPUT 1
%define OUT_OVERFLOW 2
%define INVALID_BLOCK -1
%define INVALID_SYMBOL -2
%define INVALID_LOOKBACK -3
%define ISAL_DECODE_LONG_BITS 12
%define ISAL_DECODE_SHORT_BITS 10
%define MAX_LONG_CODE_LARGE (288 + (1 << (15 - ISAL_DECODE_LONG_BITS))... |
libsrc/graphics/gray/zx81/g_clg.asm | andydansby/z88dk-mk2 | 1 | 206371 | ;
; ZX 81 pseudo-Gray Library Functions
;
; Written by <NAME> - Oct 2007
;
; $Id: g_clg.asm,v 1.1 2007/10/25 14:53:04 stefano Exp $
;
;
;Usage: g_clg(GrayLevel)
XLIB g_clg
XREF base_graphics
XREF graybit1
XREF graybit2
.g_clg
pop hl
pop bc
ld a,c ;GrayLevel
push bc
push hl
ld... |
libsrc/_DEVELOPMENT/l/sccz80/5-z80/i64/l_i64_pop.asm | ahjelm/z88dk | 640 | 206373 | <reponame>ahjelm/z88dk
SECTION code_l_sccz80
PUBLIC l_i64_pop
EXTERN __i64_acc
; Pop what was TOS into the accumulator
; Entry: stack: defw ret address
; defs 8 - long
;
; hl is preserved
l_i64_pop:
pop de
ld c,l
ld b,h
pop hl
ld (__i64_acc+6),hl
pop hl
ld (__i64_acc+4),hl
pop hl
ld (_... |
programs/oeis/010/A010018.asm | karttu/loda | 1 | 206375 | <reponame>karttu/loda<gh_stars>1-10
; A010018: a(0) = 1, a(n) = 28*n^2 + 2 for n>0.
; 1,30,114,254,450,702,1010,1374,1794,2270,2802,3390,4034,4734,5490,6302,7170,8094,9074,10110,11202,12350,13554,14814,16130,17502,18930,20414,21954,23550,25202,26910,28674,30494,32370,34302,36290,38334,40434,42590,44802,47070,49394,5177... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2823.asm | ljhsiun2/medusa | 9 | 206376 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r14
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x4b1e, %rbp
nop
nop
sub %rsi, %rsi
vmovups (%rbp), %ymm6
vextracti128 $1, %ymm6, %xmm6
vpextrq $1, %xmm6, %r11
add %r10, %r10
lea addresses_UC_ht+0x3f98, %rsi
... |
common/draw.asm | felipemfp/stunt-cycle | 5 | 206377 | <gh_stars>1-10
.macro draw_pixel(%x, %y, %color)
add $t0, $zero, MAX_WIDTH
add $t1, $zero, DISPLAY_ADDRESS
mul $t2, $t0, %y
add $t2, $t2, %x
mul $t2, $t2, 4
add $t2, $t2, $t1
lw $t3, %color
sw $t3, 0($t2)
.end_macro
.macro draw_horizontal_line(%from, %to, %y, %color)
add $t0, $zero, MAX_WIDTH
add $... |
oeis/032/A032807.asm | neoneye/loda-programs | 11 | 206380 | ; A032807: Numbers whose set of base-7 digits is {2,3}.
; Submitted by <NAME>
; 2,3,16,17,23,24,114,115,121,122,163,164,170,171,800,801,807,808,849,850,856,857,1143,1144,1150,1151,1192,1193,1199,1200,5602,5603,5609,5610,5651,5652,5658,5659,5945,5946,5952,5953,5994,5995,6001,6002,8003,8004,8010,8011,8052,8053,8059,8060,... |
src/irq.asm | drwuro/teleporter64 | 3 | 206381 |
;-------------------------------
!zone
;-- setup irq handling at irqLine
;--
irq_setup
sei ; turn off interrupts
lda #$7F
ldx #$01
sta $DC0D ; turn off CIA 1 interrupts
sta $DD0D ; turn off CIA 2 interrupts
stx $D01A ; turn on raster interrupt... |
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_2312.asm | ljhsiun2/medusa | 9 | 206382 | .global s_prepare_buffers
s_prepare_buffers:
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x106ac, %rsi
lea addresses_WT_ht+0x12f7e, %rdi
clflush (%rsi)
nop
nop
nop
xor %rdx, %rdx
mov $115, %rcx
rep movsq
nop
nop
nop
nop
nop
mfence
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
ret
.global s... |
src/test/resources/data/potests/test60.asm | cpcitor/mdlz80optimizer | 36 | 206383 | ; Test: test for some SDCC-specific optimizations
ld hl, var1
ld iy, var2
ld a, (iy)
add a, 10
ld (hl), a
ld a, (iy+1)
adc a, 0
inc hl
ld (hl), a
ld hl, var3
ld iy, var4
ld a, (iy)
add a, 10
ld (hl), a
ld a, (iy+1)
adc a, 0
inc hl
ld (hl), a
... |
programs/oeis/316/A316342.asm | neoneye/loda | 22 | 206384 | <reponame>neoneye/loda
; A316342: Fibonacci word A003849 with first two terms replaced by 2's.
; 2,2,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1
lpb $0
pow $0,3
div ... |
programs/oeis/121/A121173.asm | karttu/loda | 0 | 206385 | <filename>programs/oeis/121/A121173.asm
; A121173: Sequence S with property that for n in S, a(n) = a(1) + a(2) +...+ a(n-1) and for n not in S, a(n) = n+1.
; 2,2,4,8,6,22,8,52,10,114,12,240,14,494,16,1004,18,2026,20,4072,22,8166,24,16356,26,32738,28,65504,30,131038,32,262108,34,524250,36,1048536,38,2097110,40,4194260,... |
Asmt5/Asmt5_2.asm | wstern1234/COMSC-260 | 0 | 206386 | ; Asmt5_2.asm - pseudocode to MASM practice
INCLUDE Irvine32.inc
.data
val1 DWORD 3
X DWORD 4
.code
main PROC
.if ( ebx > ecx ) || ( ebx > val1 )
mov X, 1
.else
mov X, 2
.endif
INVOKE ExitProcess, 0
main ENDP
END main |
data/inc/macros_inc.asm | alttpo/go65c816 | 6 | 206387 | ; Set 8-bit accumulator
setaxs .macro
SEP #$30 ; set A&X short
.as
.xs
.endm
; Set 16-bit accumulator
setaxl .macro
REP #$30 ; set A&X long
.al
.xl
... |
lab8/lr08_transp_matrix.asm | VladimirMel/Assembler | 0 | 206388 | <reponame>VladimirMel/Assembler<filename>lab8/lr08_transp_matrix.asm<gh_stars>0
SSEG SEGMENT PARA STACK 'STACK'
DB 200h dup (?)
SSEG ENDS
DSEG SEGMENT PARA PUBLIC 'DATA'
N DW 5
Y DB '54321'
DB '54321'
DB '54321'
DB '54321'
DB '54321'
DSEG ENDS
CSEG SEGMENT PARA 'CODE'
ASSUME CS:CSEG, DS:DSEG, S... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_603.asm | ljhsiun2/medusa | 9 | 206389 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xb7fb, %rsi
lea addresses_A_ht+0x92fb, %rdi
and $2014, %r14
mov $41, %rcx
rep movsw
nop
nop
inc %rcx
lea addresses_normal_ht+0x2c63, %rcx
nop
add $32889, %r12
mov $0x616263646... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.