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 |
|---|---|---|---|---|
Tilija_h1.asm | praveshtilija/MIPSIntro | 0 | 42009 | #########################################################################
# Name: <NAME>
#
# Last modified date: 11/27/2018
#
# Program Name: Tilija_h1.s
#
# Description: This program prompts the user for two integers and
# does a computation
#
# Pseudocode: cout<< "Enter first int in the range -30 to -10: "
# cin ... |
Sem4/COMP LAB/L3/2.asm | ashiishjn/MIT-LAB | 1 | 42010 | <reponame>ashiishjn/MIT-LAB<gh_stars>1-10
;Program to add two 8-bit decimal numbers from DS to DS
Code Segment
num1 dB 25H
num2 dB 25H
sum dB 0H
carry dB 0H
Code ends
Data Segment
Assume CS:Code, DS:Data
Start:
MOV AX,Data
MOV DS,AX
MOV AL, num1
MOV BL, num2
CLC
ADC AL, BL
DAA
MOV sum, AL
ADC carry, 0
MOV AH, 4CH
... |
libsrc/_DEVELOPMENT/arch/ts2068/display/c/sdcc/tshc_pxy2aaddr.asm | jpoikela/z88dk | 640 | 42011 | <gh_stars>100-1000
; void *tshc_pxy2aaddr(uchar x, uchar y)
SECTION code_clib
SECTION code_arch
PUBLIC _tshc_pxy2aaddr
EXTERN asm_tshc_pxy2aaddr
_tshc_pxy2aaddr:
pop af
pop hl
push hl
push af
jp asm_tshc_pxy2aaddr
|
programs/oeis/010/A010035.asm | karttu/loda | 1 | 42012 | ; A010035: a(n) = 2*3^(2*n)-3^n.
; 1,15,153,1431,13041,117855,1062153,9563751,86086881,774821295,6973509753,62761942071,564858541521,5083730062335,45753580126953,411782249840391,3706040334656961
mov $2,3
pow $2,$0
mov $1,$2
sub $2,1
mov $0,$1
add $0,$2
mul $1,$0
|
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_12056_1245.asm | ljhsiun2/medusa | 9 | 42013 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x3f54, %rdi
nop
nop
nop
nop
and %r9, %r9
movb (%rdi), %r11b
nop
cmp %rsi, %rsi
lea addresses_WT_ht+0x16ad4, %rbp
nop
nop
nop
xor %rax, %rax
mov $0x616... |
_incObj/22 Buzz Bomber.asm | kodishmediacenter/msu-md-sonic | 9 | 42014 | <reponame>kodishmediacenter/msu-md-sonic<filename>_incObj/22 Buzz Bomber.asm
; ===========================================================================
; ---------------------------------------------------------------------------
; Object 22 - Buzz Bomber enemy (GHZ, MZ, SYZ)
; --------------------------------------... |
6. Input two numbers after ? and out put their sum.asm | arfin97/Assembly | 1 | 42015 | <reponame>arfin97/Assembly
;Write a program to (a) display a "?", (b) read two decimal digits who.se sum "is less than 10, (c) display them and their sum on the next line, with an appropriate message.
.model small
.stack 100h
.data
msg1 db 'the num of $'
msg2 db ' and $'
msg3 db ' is $'
.code
main proc
;... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_1_49.asm | ljhsiun2/medusa | 9 | 42016 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x167fa, %rsi
lea addresses_UC_ht+0x1e63a, %rdi
nop
nop
and %r10, %r10
mov $113, %rcx
rep movsq
nop
nop
nop
nop
nop
dec %rbp
lea addresses_D_ht+0x843a, %r14
nop
nop
nop
nop
nop
inc ... |
PRG/objects/C733.asm | narfman0/smb3_pp1 | 0 | 42018 | <reponame>narfman0/smb3_pp1
.byte $01 ; Unknown purpose
.byte OBJ_AUTOSCROLL, $00, $51
.byte OBJ_BUZZYBEATLE, $18, $09
.byte OBJ_BUZZYBEATLE, $1B, $09
.byte OBJ_REDPIRANHA, $20, $0C
.byte OBJ_REDPIRANHA, $25, $10
.byte OBJ_VENUSFIRETRAP, $29, $12
.byte OBJ_REDPIRANHA, $2E, $12
.byte OBJ_CHEEPCHEEPPOOL2POOL2, ... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2949.asm | ljhsiun2/medusa | 9 | 42019 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r15
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x1e549, %rax
add $24435, %rbx
mov (%rax), %r15d
nop
and $7694, %r14
lea addresses_WT_ht+0x15369, %rdx
nop
nop
nop
xor $22071, %rbp
movw $0x6162, (%rdx)
nop... |
kernel/src/arch/riscv32/boot/entry.asm | Hoblovski/RustOS | 0 | 42020 | .section .text.entry
.globl _start
_start:
lui sp, %hi(bootstacktop)
addi sp, sp, %lo(bootstacktop)
call rust_main
.section .bss
.align 12 #PGSHIFT
.global bootstack
bootstack:
.space 4096 * 16 #KSTACKSIZE
.global bootstacktop
bootstacktop:
|
oeis/057/A057003.asm | neoneye/loda-programs | 11 | 42021 | ; A057003: Write the natural numbers in groups: 1; 2,3; 4,5,6; 7,8,9,10; ... and multiply the members of each group.
; Submitted by <NAME>(s4)
; 1,6,120,5040,360360,39070080,5967561600,1220096908800,321570878428800,106137499051584000,42873948150095462400,20803502274492921984000,11938961126118491232768000,79984876947381... |
Working Disassembly/Levels/MHZ/Misc Object Data/Map - Knuckles Peering.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 42022 | <reponame>TeamASM-Blur/Sonic-3-Blue-Balls-Edition
Map_66A52: dc.w word_66A5C-Map_66A52
dc.w word_66A6A-Map_66A52
dc.w word_66A78-Map_66A52
dc.w word_66A86-Map_66A52
dc.w word_66A94-Map_66A52
word_66A5C: dc.w 2
dc.b $F0, 6, 0, 0, $FF, $FC
dc.b 8, 4, 0, 6, $FF, $F4
word_66A6A: dc.w 2
dc.... |
c2000/C2000Ware_1_00_06_00/libraries/math/CLAmath/c28/source/CLAdiv.asm | ramok/Themis_ForHPSDR | 0 | 42023 | ;;#############################################################################
;; FILE: CLAdiv.asm
;;
;; DESCRIPTION: CLA divide function using Newton Raphson Approximation
;;
;; Group: C2000
;; Target Family: C28x+CLA
;;
;;#############################################################################
;... |
source/tokeniser/tokenise/tokstring.asm | paulscottrobson/6502-basic | 3 | 42024 | <reponame>paulscottrobson/6502-basic
; ************************************************************************************************
; ************************************************************************************************
;
; Name: tokstring.asm
; Purpose: Tokenise Quoted String
; Created: 9th March 20... |
src/intel/tools/tests/gen7/and.asm | SoftReaper/Mesa-Renoir-deb | 0 | 42025 | and(1) g11<1>UD g0.2<0,1,0>UD 0x007f0000UD { align1 1N };
and(1) g12.2<1>UD g0.2<0,1,0>UD 0x0000f000UD { align1 WE_all 1N };
and(8) g13<1>UD g6<0>UD g5.4<0>.zUD { align16 1Q };
and(8) g59<1>.xUD g38<4>.xUD 0x00000001UD { align16 1... |
tests/devices/single_device.asm | cizo2000/sjasmplus | 220 | 42026 | ; when only single DEVICE directive is used in whole source, the DEVICE becomes "global"
; do device-only things before declaring actual DEVICE
ORG 0x8000
binStart:
BLOCK 8, 8 ; 8x value 8
binEnd:
SAVEBIN "single_device.bin", 0x8000, binEnd-binStart
; set ZX48 as global device
DEV... |
Hardware/tests/viaTest.asm | Martin-H1/6502 | 3 | 42027 | ; -----------------------------------------------------------------------------
; Test for sbc 2.7 onboard video. Must be run on real hardware.
; <NAME> <<EMAIL>>
; -----------------------------------------------------------------------------
.org $8000
.outfile "tests/viaTest.rom"
.alias RamSize $7EFF ; default $... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_884.asm | ljhsiun2/medusa | 9 | 42028 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1a65a, %rbx
cmp $61367, %rcx
movl $0x61626364, (%rbx)
nop
add %r12, %r12
lea addresses_D_ht+0x8c7a, %r15
nop
nop
nop
nop
xor $55996, %r11
mov (%r15)... |
src/kernel/kernel_cseg.asm | rostislav-nikitin/socOS | 1 | 42029 | .include "m8def.inc"
; extensions
.macro m_init_stack
ldi r16, low(RAMEND)
out SPL, r16
ldi r16, high(RAMEND)
out SPH, r16
.endm
.macro m_init_interrupts
m_save_r16_registers
.equ SREG_I_BIT = 0x07
in r16, SREG
ori r16, (1 << SREG_I_BIT)
out SREG, r16
m_restore_r16_registers
.endm
.macro m_save_SREG_reg... |
LAB3/q1.asm | Avigdor-Kolonimus/ASM | 0 | 42030 | <reponame>Avigdor-Kolonimus/ASM
dseg segment
dseg ends
sseg segment stack
dw 100h dup(?)
sseg ends
cseg segment
assume ds:dseg,cs:cseg,ss:sseg
check proc
;check that character is number
cmp al,'9'
ja P1
sub al,'0'
ret
;check that character is upper letter
P1: cmp al,'Z'
ja P2
sub al,37h... |
file.asm | nippur72/asmproc | 9 | 42031 | <filename>file.asm
LDA 5
CALL PEGJS --TRACE GRAMMAR.PEGJS
CALL TSC
REM NODE PARSE_GRAMMAR
NODE ASMPROC2 -I TEST\TEST1.LM -O TEST\TEST1.ASM
BYTE 99,97,108,108,32,112,101,103,106,115,32,45,45,116,114,97,99,101,32,103,114,97,109,109,97,114,46,112,101,103,106,115,13,10,99,97,108,108,32,116,115,99,32,13,10,114,101,109... |
programs/oeis/284/A284965.asm | neoneye/loda | 22 | 42032 | ; A284965: a(n) is the number of self-conjugate partitions of n which represent Chomp positions with Sprague-Grundy value 1.
; 0,0,0,0,0,1,0,2,0,2,0,3,0,3,0,4,0,4,0,5,0,5,0,6,0,6,0,7,0,7,0,8,0,8,0,9,0,9,0,10,0,10,0,11,0,11,0,12,0,12,0,13,0,13,0,14,0,14,0,15,0,15,0,16,0,16,0,17,0
add $0,2
mov $1,$0
mul $0,2
div $1,2
mo... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_386.asm | ljhsiun2/medusa | 9 | 42033 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xe477, %r10
nop
and %rsi, %rsi
movb $0x61, (%r10)
nop
nop
nop
nop
nop
dec %rbp
lea addresses_D_ht+0x6567, %r13
add %rdi, %rdi
mov (%r13), %rcx
nop
nop
nop
nop
nop
and %rcx, %rcx
pop %rsi
pop %rd... |
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2.log_256_1013.asm | ljhsiun2/medusa | 9 | 42035 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xf9f9, %rsi
nop
nop
nop
xor %r15, %r15
mov $0x6162636465666768, %rdx
movq %rdx, %xmm5
and $0xffffffffffffffc0, %rsi
movaps %xmm5, (%rsi)
nop
nop
n... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_1004.asm | ljhsiun2/medusa | 9 | 42036 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r8
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xbf75, %r12
add $54242, %r15
vmovups (%r12), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $1, %xmm5, %r8
nop
nop
nop
sub $58772, %r11
lea addresses_normal_ht+0x1b775,... |
src/shaders/post_processing/gen5_6/Common/readSampler16x1.asm | tizenorg/platform.upstream.libva-intel-driver | 0 | 42037 | <filename>src/shaders/post_processing/gen5_6/Common/readSampler16x1.asm
/*
* All Video Processing kernels
* Copyright © <2010>, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Eclipse Public License (EPL), version 1.0. The full text of the EPL is at
* http://www.opensourc... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_722.asm | ljhsiun2/medusa | 9 | 42038 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r12
push %r8
push %rbp
push %rsi
// Load
lea addresses_WC+0x4f10, %rbp
nop
nop
nop
nop
inc %r11
mov (%rbp), %r8
cmp $21729, %r12
// Faulty Load
lea addresses_normal+0x189b8, %r8
nop
nop
nop
nop
xor %rs... |
base/mvdm/dos/v86/doskrnl/dos/file.asm | npocmaka/Windows-Server-2003 | 17 | 42039 | <reponame>npocmaka/Windows-Server-2003
TITLE FILE - Pathname related system calls
NAME FILE
;** FILE.ASM - Pathname Related System Calls
;
; $Open
; $Creat
; $ChMod
; $Unlink
; $Rename
; $CreateTempFile
; $CreateNewFile
; $Extended_Op... |
programs/oeis/055/A055631.asm | neoneye/loda | 22 | 42040 | ; A055631: Sum of Euler's totient function phi of distinct primes dividing n.
; 0,1,2,1,4,3,6,1,2,5,10,3,12,7,6,1,16,3,18,5,8,11,22,3,4,13,2,7,28,7,30,1,12,17,10,3,36,19,14,5,40,9,42,11,6,23,46,3,6,5,18,13,52,3,14,7,20,29,58,7,60,31,8,1,16,13,66,17,24,11,70,3,72,37,6,19,16,15,78,5,2,41,82,9,20,43,30,11,88,7,18,23,32,47... |
programs/oeis/329/A329422.asm | neoneye/loda | 22 | 42041 | ; A329422: Maximum length of a binary n-similar word.
; 3,9,17,25,33,41,49,57,65,75
mul $0,2
mov $1,$0
lpb $1
sub $1,1
add $0,$1
div $1,8
lpe
mul $0,2
add $0,3
|
nyancat/nyancat.asm | frank-deng/fun-ucdos | 16 | 42042 | %define MusicDelay 1
%define FrameDelay 0
org 100h
jmp start
;Data area
FrameIdx:
db 0
CurrentMusicNote:
dw 0
FrameDelayTicks:
db 0
MusicDelayTicks:
db 0
PrevTimerLo:
dw 0
PrevTimerHi:
dw 0
FrameData:
%include "frames.inc"
%include "music.inc"
;Code starts
start:
;Initialize timer
mov ax,... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48.log_21829_393.asm | ljhsiun2/medusa | 9 | 42043 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r8
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x178b8, %r8
nop
nop
nop
nop
nop
dec %r11
movb (%r8), %r10b
nop
inc %r8
lea addresses_WT_ht+0x1c17f, %r9
nop
nop
nop
sub $20169, %rbx
movw $0x6162, (%r9... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_409.asm | ljhsiun2/medusa | 9 | 42044 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r15
push %r8
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xb007, %r13
clflush (%r13)
nop
nop
and %r8, %r8
mov $0x6162636465666768, %rbx
movq %rbx, (%r13)
nop
nop
nop
nop
sub $7786, %r15
lea addresses_UC_ht+0x188cb, ... |
bdshemu_test/basic/test_64_string.asm | andreaswimmer/bddisasm | 1 | 42045 |
bits 64
lea rsi, [rel _xxx]
lea rdi, [rel _yyy]
movsb
movsb
movsb
movsb
movsd
sub rsi, 8
sub rdi, 8
mov ecx, 4
rep movsq
lea rsi, [rel _xxx]
lea rdi, [rel _yyy]
xor ecx, ecx
repz cmpsb
mov e... |
L2/L2.asm | Bardin08/CA_Labs | 0 | 42047 | <gh_stars>0
TITLE Lab-2
;------------------------------------------------------------------------------
;ЛР №2
;------------------------------------------------------------------------------
; Архітектура комп'ютера.
; Завдання: Основи розробки і налагодження
; ВУЗ: НТУУ "КПІ"
; Факультет: ФІОТ
; Курс... |
src/asm/fizzbuzz68000.asm | Sausty/UltimateFizzbuzzDatabase | 1 | 42049 | <reponame>Sausty/UltimateFizzbuzzDatabase<filename>src/asm/fizzbuzz68000.asm
;
; FizzBuzz for Motorola 68000 under AmigaOs 2+ by Thorham
;
; Uses counters instead of divisions.
;
_LVOOpenLibrary equ -552
_LVOCloseLibrary equ -414
_LVOVPrintf equ -954
execBase=4
start
move.l execBase,a6
lea dosName,a1... |
lab02/lab2/cat.asm | ahchu1993/opsys | 0 | 42051 | <gh_stars>0
_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 28 sub $0x28,%esp
int n;
while((n = read(fd, buf, sizeof(buf))) > 0)
... |
ui.asm | pietroluongo/x86-calc | 0 | 42052 | <filename>ui.asm<gh_stars>0
extern _bin2ascii
global _printNewline, _printFirstInputRequest, _printSecondInputRequest, _printOperatorRequest, _printResultMsg, _printErrorMsg
_printNewline:
MOV DX, CLEAR_LINE
JMP doSyscall
_printFirstInputRequest:
MOV DX, FIRST_NUMBER_MSG
JMP doSyscall
... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca_notsx.log_5_373.asm | ljhsiun2/medusa | 9 | 42055 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x1c11a, %rdi
nop
nop
nop
xor %rax, %rax
mov (%rdi), %edx
nop
add %r8, %r8
lea addresses_A_ht+0x40da, %r15
nop
nop
xor %r10, %r10
movups (%r15), %xmm0
vpextrq $1,... |
Sources/BIOS/tst.asm | romychs/Orion-PRO | 0 | 42056 | <filename>Sources/BIOS/tst.asm
; =======================================
; Модуль тестирования компьютера
; TST02.AS 21.05.96
; TST03.AS 05.06.96
; TST.AS 01.06.97
; V2.10 17.04.00
; =======================================
TSTST EQU TSTR2>=0x8000 ; Признак отладки
... |
final_lab/fibo.asm | yuqi-lee/COD_2020 | 0 | 42057 | .text
.globl main
main:
# t4 指向 IO 输入
# t5 指向 IO 输出
addi $t4,$0,1025
addi $t5,$0,1026
# 读取 f0 、f1,放入t0、t1
lw $t0,0($t4)
lw $t1,0($t4)
addi $t3,$0,10
loop:
add $t0,$t0,$t1
sw $t0,0($t5)
add $t1,$t0,$t1
sw $t1,0($t5)
addi $t3,$t3, -1
beq $t3, $0, fi... |
Histogram/testdata1.asm | adithyabsk/LC3Programs | 1 | 42058 | <filename>Histogram/testdata1.asm
.ORIG x4000
.FILL #8042
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
.FILL #0
... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_483.asm | ljhsiun2/medusa | 9 | 42059 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x18a5f, %r12
nop
nop
sub $50444, %rdi
movups (%r12), %xmm7
vpextrq $1, %xmm7, %r14
nop
xor $8549, %rbx
lea addresses_UC_ht+0x4e93, %rdi
nop
nop
nop
xor %rbx, %rbx
mov (%rdi), ... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1220.asm | ljhsiun2/medusa | 9 | 42060 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xdadb, %rax
nop
nop
nop
nop
add $62750, %rdx
mov $0x6162636465666768, %r13
movq %r13, (%rax)
nop
nop
nop
nop
dec %rcx
lea addresses_WC_ht+0x12263, %r11
nop
nop
nop
nop
no... |
OptiForth56d.asm | bitflipser/OptiForth | 3 | 42061 | <reponame>bitflipser/OptiForth
;***********************************************************************************
; *
; Filename: OptiForth56d.asm *
; Date: 10.01.2022 ... |
programs/oeis/341/A341522.asm | karttu/loda | 1 | 42062 | ; A341522: a(n) = A156552(3*A005940(1+n)).
; 2,5,6,11,10,13,14,23,18,21,22,27,26,29,30,47,34,37,38,43,42,45,46,55,50,53,54,59,58,61,62,95,66,69,70,75,74,77,78,87,82,85,86,91,90,93,94,111,98,101,102,107,106,109,110,119,114,117,118,123,122,125,126,191,130,133,134,139,138,141,142,151,146,149,150,155,154,157,158,175,162,16... |
tests/lua_examples/lua_inctext.asm | fengjixuchui/sjasmplus | 220 | 42063 | <reponame>fengjixuchui/sjasmplus<filename>tests/lua_examples/lua_inctext.asm
; setup Lua "inc_text" functionality
INCLUDELUA "lua_inctext.lua"
OUTPUT "lua_inctext.bin"
ORG 0x8000
ld hl,Text1 ; using labels defined from the text file (included below)
ld de,Text2... |
mc-sema/validator/x86_64/tests/CVTPS2PDrm.asm | randolphwong/mcsema | 2 | 42064 | <reponame>randolphwong/mcsema<filename>mc-sema/validator/x86_64/tests/CVTPS2PDrm.asm
BITS 64
;TEST_FILE_META_BEGIN
;TEST_TYPE=TEST_F
;TEST_IGNOREFLAGS=
;TEST_FILE_META_END
mov ecx, 2
cvtsi2ss xmm0, ecx
mov rax, rsp
sub rax, 16
and rax, -16
xchg rax, rsp
movaps [rsp], xmm0
;TEST_BEGIN_RECORDING
cvtps2pd xmm0, xmm0
;T... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_1387.asm | ljhsiun2/medusa | 9 | 42065 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x4c72, %rdi
nop
nop
nop
nop
nop
add %r12, %r12
movl $0x61626364, (%rdi)
inc %r14
lea addresses_A_ht+0x16cf8, %rcx
nop
nop
nop
nop
nop
inc %rdi
mov $0... |
asg/asm/tinycthread.asm | asgkafka/librdkafka | 0 | 42066 | *PROCESS DUPALIAS
*
* Compiled by DCC Version 2.25.07 Mar 6 2021 08:51:07
* on Fri Apr 30 15:36:25 2021
*
WXTRN @@ZARCH#
*
*
*
* Code Section
*
@CODE ALIAS C'@TINYCTHREAD'
@CODE CSECT
@CODE AMODE ANY
@CODE RMODE ANY
@DATA ALIAS C'@tinycthread'
pthread_join ALIAS C'@@PT3J'
... |
resources/asm/test01-hello-w.asm | aa-dav/SimpX | 0 | 42067 | <gh_stars>0
; **************************************************
; * test01.asm - тест вывода строк (Hello, world!) *
; **************************************************
#include "simple_lib.inc"
; Строки с приветствиями
strHello dw "Hello, world!" 13 0
strWelcome dw "Welcome to the future" 13 9 "of the past..." 13... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_138.asm | ljhsiun2/medusa | 9 | 42068 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x73be, %rsi
lea addresses_normal_ht+0x185e, %rdi
nop
nop
xor %r8, %r8
mov $51, %rcx
rep movsq
nop
and $46720, %r8
lea addresses_normal_ht+0x11cae, %r14
nop
nop
nop
nop
nop
dec ... |
programs/oeis/003/A003153.asm | neoneye/loda | 22 | 42069 | <filename>programs/oeis/003/A003153.asm
; A003153: a(n) = integer nearest n*(1+sqrt(2)).
; 2,5,7,10,12,14,17,19,22,24,27,29,31,34,36,39,41,43,46,48,51,53,56,58,60,63,65,68,70,72,75,77,80,82,84,87,89,92,94,97,99,101,104,106,109,111,113,116,118,121,123,126,128,130,133,135,138,140,142,145,147,150,152,155,157,159,162,164,1... |
kernel.asm | BortoBoy/xv6-public | 0 | 42070 |
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... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_7807_1038.asm | ljhsiun2/medusa | 9 | 42071 | <filename>Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_7807_1038.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r15
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1dc12, %rcx
nop
nop
nop
nop
nop
inc %r8
movw $0x6162, (%rcx)
nop
nop
nop
nop
nop
sub %rcx, %rcx
... |
libsrc/_DEVELOPMENT/math/float/math32/lm32/c/sccz80/tan.asm | Frodevan/z88dk | 640 | 42072 | <reponame>Frodevan/z88dk<gh_stars>100-1000
SECTION code_fp_math32
PUBLIC tan
EXTERN _m32_tanf
defc tan = _m32_tanf
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _tan
EXTERN cm32_sdcc_tan
defc _tan = cm32_sdcc_tan
ENDIF
|
Driver/Video/VidCom/vidcomUtils.asm | steakknife/pcgeos | 504 | 42073 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1989 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Video drivers
FILE: vidcomUtils.asm
ROUTINES:
Name Description
---- -----------
GBL CheckCursorCollision Check for a cursor collision
... |
Transynther/x86/_processed/NC/_ht_un_/i7-7700_9_0x48.log_21829_664.asm | ljhsiun2/medusa | 9 | 42075 | <filename>Transynther/x86/_processed/NC/_ht_un_/i7-7700_9_0x48.log_21829_664.asm
.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_D_ht+0x1c4e4, %rsi
lea addresses_A_ht+0x67d8, %rdi
nop
nop
nop
nop
nop
sub %rbp, %rbp
mov $118, %rcx
... |
tests/nasm/comiss.asm | brenden7158/v86 | 12,700 | 42076 | <reponame>brenden7158/v86
global _start
section .data
align 16
controlword:
dw 0
dwordmxcsr:
dw 0
dword0:
dd 1000.0
dword1:
dd 5.0
dword2:
dd 3000.0
dwSNaN:
dd __SNaN__
dwQNaN:
dd __QNaN__
; Moves EFLAGS into specified register
%macro moveflags 1
pushf
and dword [esp], 0x45
pop eax
movd %1, eax
%endm... |
deps/openssl/asm/x86-win32-masm/sha/sha256-586.asm | sgallagher/node | 2 | 42078 | TITLE sha512-586.asm
IF @Version LT 800
ECHO MASM version 8.00 or later is strongly recommended.
ENDIF
.586
.MODEL FLAT
OPTION DOTNAME
IF @Version LT 800
.text$ SEGMENT PAGE 'CODE'
ELSE
.text$ SEGMENT ALIGN(64) 'CODE'
ENDIF
ALIGN 16
_sha256_block_data_order PROC PUBLIC
$L_sha256_block_data_order_begin::
push ebp
push... |
Library/Text/TextTrans/ttQuick.asm | steakknife/pcgeos | 504 | 42079 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1989 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Text/TextTrans
FILE: ttQuick.asm
AUTHOR: <NAME>, Oct 25, 1989
METHODS:
Name Description
---- -----------
REVISION HISTORY:
Name Date ... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_703.asm | ljhsiun2/medusa | 9 | 42080 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_703.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x6a9f, %rsi
lea addresses_A_ht+0x1838f, %rdi
nop
cmp %r11, %r11
mov $6, %rcx
r... |
Virus.Win32.Bi-Perm/demo/pdemo.asm | TheWover/Vx-Engines | 4 | 42081 | <gh_stars>1-10
; BI-PERM Demo
; Program that infinitly permutates (till memory end)
.686
.model flat, stdcall
.code
;===============================================================================
;usefull macros
;===============================================================================
include... |
libsrc/oz/ozscreen/ozfast.asm | grancier/z180 | 0 | 42082 | <reponame>grancier/z180
;
; Sharp OZ family functions
;
; ported from the OZ-7xx SDK by by <NAME>
; by <NAME> - Oct. 2003
;
;
; display blanking control functions
; LCDStatus is 0c024h in the OS;
;
; ozslow is same than ozunblankscreen
;
;
; ------
; $Id: ozfast.asm,v 1.3 2016/06/28 14:48:17 dom Exp $
;
SECTIO... |
vbox/src/VBox/Runtime/common/string/memrchr.asm | Nurzamal/rest_api_docker | 0 | 42083 | ; $Id: memrchr.asm 69219 2017-10-24 15:01:30Z vboxsync $
;; @file
; IPRT - No-CRT memrchr - AMD64 & X86.
;
;
; Copyright (C) 2006-2017 Oracle Corporation
;
; This file is part of VirtualBox Open Source Edition (OSE), as
; available from http://www.virtualbox.org. This file is free software;
; you can redistribute it a... |
data/battle/ai/sunny_day_moves.asm | Dev727/ancientplatinum | 6 | 42085 | ; AI_SMART prefers these moves during harsh sunlight.
SunnyDayMoves:
dw FIRE_PUNCH
dw EMBER
dw FLAMETHROWER
dw FIRE_SPIN
dw FIRE_BLAST
dw SACRED_FIRE
dw MORNING_SUN
dw SYNTHESIS
dw -1 ; end
|
libsrc/_DEVELOPMENT/stdio/c/sdcc_iy/ftell_fastcall.asm | teknoplop/z88dk | 0 | 42087 |
; unsigned long ftell_fastcall(FILE *stream)
INCLUDE "clib_cfg.asm"
SECTION code_clib
SECTION code_stdio
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
IF __CLIB_OPT_MULTITHREAD & $02
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PUBLIC _ftell_fastcall
EXTERN asm_ftell
_ftell_fastcall:
push hl
pop ix
jp asm_ftell
;;;;;;;;;... |
payloads/signal_peptide.asm | jakiki6/dnasm | 7 | 42088 | <gh_stars>1-10
; payload
; exec: mrna
; type: protein
; desc:
; Signal peptide, attaches to protein to transport it to the surface of a cell.
; Use it before the protein you wanna transport
; related: sarscov2
bases AΨGΨΨCGΨGΨΨCCΨGGΨGCΨGCΨGCCΨCΨGGΨGΨCCAGCCAGΨGΨGΨ
|
Embedded LABs/Embedded lab 1/6a2.asm | amritphuyal/LATEX | 1 | 42089 | ORG 00H
MOV 60H,#0A5H
MOV 61H,#0FDH
MOV 62H,#67H
MOV 63H,#42H
MOV 64H,#0DFH
MOV 65H,#9AH
MOV 66H,#84H
MOV 67H,#1BH
MOV 68H,#0C7H
MOV 69H,#31H
MOV R0,#60H
MOV R6,#09H
AGN: ACALL F_LARGE
MOV @R0,A
INC R0
DJNZ R6,AGN
AGAIN: MOV R1,#0AH
MOV R0,#60H
LOOP: MOV A,@R0
MOV P0,A
ACALL... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_1158.asm | ljhsiun2/medusa | 9 | 42090 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xd73d, %rsi
lea addresses_WC_ht+0x878d, %rdi
sub $49926, %r13
mov $124, %rcx
rep movsw
nop
nop
nop
nop
cmp %r8, %r8
pop %rsi
pop %rdi
pop %rcx
pop %r8
pop %r13
ret
.global s_faulty_load
s_faulty_load:... |
uw2/call-eop-mouseLookOrMoveCursor.asm | JohnGlassmyer/UltimaHacks | 68 | 42091 | %include "../UltimaPatcher.asm"
%include "include/uw2.asm"
%include "include/uw2-eop.asm"
defineAddress 16, 0x0A9B, moveCursor
defineAddress 16, 0x0AE3, doneMovingCursor
%assign var_mouseYDelta -0x0C
%define pushYDelta push word [bp+var_mouseYDelta]
%include "../uw1/call-eop-mouseLookOrMoveCursor.asm"
|
libtool/src/gmp-6.1.2/mpn/arm/neon/popcount.asm | kroggen/aergo | 1,602 | 42092 | <filename>libtool/src/gmp-6.1.2/mpn/arm/neon/popcount.asm
dnl ARM Neon mpn_popcount -- mpn bit population count.
dnl Copyright 2013 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under the terms... |
Transynther/x86/_processed/NONE/_st_un_/i7-7700_9_0x48.log_15_1141.asm | ljhsiun2/medusa | 9 | 42093 | <filename>Transynther/x86/_processed/NONE/_st_un_/i7-7700_9_0x48.log_15_1141.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r9
push %rbp
push %rcx
push %rdx
push %rsi
lea addresses_UC_ht+0x9fb1, %r12
nop
nop
nop
add %rbp, %rbp
movl $0x61626364, (%r12)
nop
nop
nop
nop
xor %r9, %... |
Test/Z80/assembler.asm | sparks-c16/zasm | 43 | 42095 | <reponame>sparks-c16/zasm<filename>Test/Z80/assembler.asm
#target bin
#code ram,65268,$10000-65268
print_str:
ld a, 0
ld (cursor),a
strloop:
ld hl, string
ld a, (cursor)
ld e, a
ld d, 0 ;loads char position
add hl, de ;finds position
ld a, (hl) ;loads character
cp 0
jp z, end ... |
CascLib/src/CascRootFile_MNDX_x86.asm | kvipka/ghostpp | 49 | 42097 | .686P
.MODEL FLAT
ASSUME FS: NOTHING
; ---------------------------------------------------------------------------
TMndxFindResult struc ; (sizeof=0x1C) ; XREF: GAME_OBJECT_03F7E848::sub_E94500_r
szSearchMask dd ? ; XREF: TMndxFindResult__SetPath+2D_w
; TM... |
libsrc/sprites/software/sp1/spectrum/updater/sp1_DrawUpdateStructAlways.asm | jpoikela/z88dk | 38 | 42098 | <gh_stars>10-100
; sp1_DrawUpdateStructAlways(struct sp1_update *u)
; 12.2006 aralbrec, Sprite Pack v3.0
; sinclair spectrum version
; FASTCALL
PUBLIC sp1_DrawUpdateStructAlways
EXTERN SP1DrawUpdateStruct
; Draws the update struct no matter what, including
; structs removed from the engine. Validates char
; if it ... |
oeis/284/A284604.asm | neoneye/loda-programs | 11 | 42099 | <reponame>neoneye/loda-programs<filename>oeis/284/A284604.asm
; A284604: Quadratic recurrence: a(n+2) = a(n+1)^2 + a(n)^2 + 1, with a(0) = a(1) = 1.
; Submitted by <NAME>
; 1,1,3,11,131,17283,298719251,89233191216703091,7962562414716697755180182566955283,63402400208259008611705446682872670539115181497111590988296570564... |
sources/ippcp/asm_intel64/aes_keyexp_128.asm | mythi/ipp-crypto | 0 | 42100 | <gh_stars>0
;===============================================================================
; Copyright 2020 Intel Corporation
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://... |
tools-src/gnu/gcc/gcc/config/mn10200/lib1funcs.asm | enfoTek/tomato.linksys.e2000.nvram-mod | 80 | 42101 | <gh_stars>10-100
/* libgcc routines for Matsushita mn10200.
Copyright (C) 1997 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version... |
oeis/213/A213549.asm | neoneye/loda-programs | 11 | 42103 | ; A213549: Principal diagonal of the convolution array A213548.
; 1,12,53,155,360,721,1302,2178,3435,5170,7491,10517,14378,19215,25180,32436,41157,51528,63745,78015,94556,113597,135378,160150,188175,219726,255087,294553,338430,387035,440696,499752,564553,635460,712845,797091,888592,987753,1094990,1210730,1335411,146948... |
Opus/asm/searchn.asm | Computer-history-Museum/MS-Word-for-Windows-v1.1 | 2 | 42104 | <gh_stars>1-10
; SEARCHN.ASM -- hand native search routines
;
.xlist
memS = 1
?WIN = 1
?PLM = 1
?NODATA = 1
?TF = 1
include w2.inc
include cmacros.inc
include consts.inc
include structs.inc
.list
createSeg search_PCODE,search,byte,public,CODE
createSeg _DATA,data,word,public,DATA,DGROUP
defGrp DGROUP,DA... |
libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_fillTileAttrH_callee.asm | grancier/z180 | 0 | 42105 | ; ----------------------------------------------------------------
; Z88DK INTERFACE LIBRARY FOR THE BIFROST*2 ENGINE
;
; See "bifrost2.h" for further details
; ----------------------------------------------------------------
; void void BIFROST2_fillTileAttrH(unsigned int lin,unsigned int col,unsigned int attr)
; cal... |
oeis/345/A345031.asm | neoneye/loda-programs | 11 | 42106 | <reponame>neoneye/loda-programs
; A345031: a(n) = 6*a(n-1) - 7*a(n-2) - 2*a(n-3) for n >= 3, with a(0) = a(1) = 0, a(2) = 1.
; Submitted by <NAME>
; 0,0,1,6,29,130,565,2422,10317,43818,185845,787710,3337709,14140594,59904181,253765510,1074982605,4553728698,19289962933,81713711502,346145071085,1466294520130,621132420018... |
libsrc/_DEVELOPMENT/adt/p_forward_list_alt/z80/asm_p_forward_list_alt_push_front.asm | jpoikela/z88dk | 640 | 42107 |
; ===============================================================
; Dec 2013
; ===============================================================
;
; void p_forward_list_alt_push_front(p_forward_list_alt_t *list, void *item)
;
; Add item to the front of the list.
;
; =====================================================... |
engine/math/mMathAMD_ASM.asm | ClayHanson/B4v21-Public-Repo | 1 | 42108 | ;-----------------------------------------------------------------------------
; Torque Game Engine
; Copyright (C) <EMAIL>, Inc.
;-----------------------------------------------------------------------------
segment .data
matA dd 0
result dd 0
matB dd 0
segment .text
%macro export_fn 1
%ifdef LINUX
... |
src/test/ref/kickasm-uses-prevent-deletion.asm | jbrandwood/kickc | 2 | 42109 | // Ensure that an inline kickasm uses-clause is anough to prevent a function from being deleted
// Commodore 64 PRG executable file
.file [name="kickasm-uses-prevent-deletion.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [star... |
Working Disassembly/General/Title/Map - S3 Tails Plane.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 42111 | dc.w word_4FF4-Map_TitleTailsPlane
dc.w word_5002-Map_TitleTailsPlane
dc.w word_5010-Map_TitleTailsPlane
dc.w word_501E-Map_TitleTailsPlane
dc.w word_502C-Map_TitleTailsPlane
dc.w word_503A-Map_TitleTailsPlane
word_4FF4: dc.w 2
dc.b $F4, $E, 0, $84, $FF, $E8
dc.b $F4, 6, 0, $9C, 0, 8
word... |
release/src/router/gmp/source/mpn/ia64/lorrshift.asm | zhoutao0712/rtn11pb1 | 184 | 42112 | <reponame>zhoutao0712/rtn11pb1<filename>release/src/router/gmp/source/mpn/ia64/lorrshift.asm
dnl IA-64 mpn_lshift/mpn_rshift.
dnl Copyright 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation,
dnl Inc.
dnl This file is part of the GNU MP Library.
dnl The GNU MP Library is free software; you can redistri... |
data/baseStats/jolteon.asm | adhi-thirumala/EvoYellow | 0 | 42113 | db DEX_JOLTEON ; pokedex id
db 65 ; base hp
db 65 ; base attack
db 60 ; base defense
db 130 ; base speed
db 110 ; base special
db ELECTRIC ; species type 1
db ELECTRIC ; species type 2
db FULL_HEAL ; catch rate
db 197 ; base exp yield
INCBIN "pic/ymon/jolteon.pic",0,1 ; 66, sprite dimensions
dw JolteonPicFront
dw Jolte... |
third_party/virtualbox/src/VBox/VMM/VMMR0/TRPMR0A.asm | Fimbure/icebox-1 | 521 | 42115 | <filename>third_party/virtualbox/src/VBox/VMM/VMMR0/TRPMR0A.asm
; $Id: TRPMR0A.asm $
;; @file
; TRPM - Host Context Ring-0
;
;
; Copyright (C) 2006-2017 Oracle Corporation
;
; This file is part of VirtualBox Open Source Edition (OSE), as
; available from http://www.virtualbox.org. This file is free software;
; you can... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1107.asm | ljhsiun2/medusa | 9 | 42116 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xca97, %r8
nop
sub %rbx, %rbx
movw $0x6162, (%r8)
nop
sub %r11, %r11
lea addresses_normal_ht+0x6b97, %r14
nop
and $28176, %r9
and $0xffffffffffffffc0, %r14
movaps (%r... |
unidad01/MTX4_2/bootsect_for_ELF_32/bootblock.asm | CuetoA/rtos-class | 1 | 42117 | <gh_stars>1-10
bootblock.o: file format elf32-i386
Disassembly of section .text:
00007c00 <start>:
# with %cs=0 %ip=7c00.
.code16 # Assemble for 16-bit mode
.globl start
start:
cli # BIOS enabled interrupts; disable
7c00: fa cli
# Ze... |
Histogram/hist.asm | adithyabsk/LC3Programs | 1 | 42119 | ;--------------------------------------------------------------------------
;
; Program: hist.asm
; Name: <NAME>
; Date: 7 Nov 2017
; Version: 1.0
;
; Description: A histogram plotter for the PennSim application
; that uses data loaded from x4000 and onwards
;
;---------------------------------------------... |
oeis/073/A073617.asm | neoneye/loda-programs | 11 | 42120 | <gh_stars>10-100
; A073617: Consider Pascal's triangle A007318; a(n) = product of terms at +45 degrees slope with the horizontal.
; Submitted by <NAME>
; 1,1,1,2,3,12,30,240,1050,16800,132300,4233600,61122600,3911846400,104886381600,13425456844800,674943865596000,172785629592576000,16407885372638760000,8400837310791045... |
pwnlib/shellcraft/templates/powerpc/linux/sched_setparam.asm | IMULMUL/python3-pwntools | 325 | 42121 | <%
from pwnlib.shellcraft.powerpc.linux import syscall
%>
<%page args="pid, param"/>
<%docstring>
Invokes the syscall sched_setparam. See 'man 2 sched_setparam' for more information.
Arguments:
pid(pid_t): pid
param(sched_param): param
</%docstring>
${syscall('SYS_sched_setparam', pid, param)}
|
programs/oeis/008/A008837.asm | neoneye/loda | 22 | 42122 | <filename>programs/oeis/008/A008837.asm
; A008837: a(n) = p*(p-1)/2 for p = prime(n).
; 1,3,10,21,55,78,136,171,253,406,465,666,820,903,1081,1378,1711,1830,2211,2485,2628,3081,3403,3916,4656,5050,5253,5671,5886,6328,8001,8515,9316,9591,11026,11325,12246,13203,13861,14878,15931,16290,18145,18528,19306,19701,22155,24753,... |
lib/target/pc88/classic/bootstrap.asm | dp304/z88dk | 4 | 42123 | ;
; Disk bootstrap for the pc88
;
SECTION BOOTSTRAP
EXTERN __DATA_END_tail
; The code is loaded to $c000 by default, we copy up
org $f000
di
ld hl,$c000
ld de,$f000
ld bc,512
ldir
jp entry
entry:
ld hl,CRT_ORG_CODE
ld b, +((__DATA_END_tail - CRT_ORG_CODE) / 256) + 1
ld c,0
ld de,2 ;Start sector 2, t... |
target/cos_117/disasm/iop_overlay1/STMSG.asm | jrrk2/cray-sim | 49 | 42124 | <reponame>jrrk2/cray-sim
0x0000 (0x000000) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0001 (0x000002) 0x291C- f:00024 d: 284 | OR[284] = A
0x0002 (0x000004) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0003 (0x000006) 0x2932- f:00024 d: 306 | OR[306... |
programs/oeis/223/A223544.asm | karttu/loda | 0 | 42125 | ; A223544: Triangle T(n,k), 0 < k <= n, T(n,1) = n - 1, T(n,k) = T(n,k-1) + n; read by rows.
; 0,1,3,2,5,8,3,7,11,15,4,9,14,19,24,5,11,17,23,29,35,6,13,20,27,34,41,48,7,15,23,31,39,47,55,63,8,17,26,35,44,53,62,71,80,9,19,29,39,49,59,69,79,89,99,10,21,32,43,54,65,76,87,98,109,120,11,23,35,47,59,71,83,95,107,119,131,143,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.