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 |
|---|---|---|---|---|
oeis/030/A030944.asm | neoneye/loda-programs | 11 | 59100 | <reponame>neoneye/loda-programs
; A030944: [ exp(4/11)*n! ].
; Submitted by <NAME>
; 1,2,8,34,172,1035,7250,58002,522021,5220213,57422352,689068235,8957887058,125410418819,1881156282285,30098500516564,511674508781588,9210141158068592,174992682003303265,3499853640066065319
add $0,1
mov $2,1
lpb $0
mul $1,8
mul $2,$... |
Tareas/Ensamblador/tasm/BIN/helloworld.asm | TEC-2014092195/IC3101-Arquitectura_De_Computadores | 0 | 59102 | <reponame>TEC-2014092195/IC3101-Arquitectura_De_Computadores
.MODEL MEDIUM
.STACK 200H
.CODE
START:
mov ax, 0003h
int 10h
mov bx, 0b800h
mov es, bx
mov bx, 0
mov ah, 1
mov cx, 100
startloop:
mov es:[bx], ah
add bx, 2
loop startloop
mov ax, 0100h
int 21h
mov ax, 4c00h
int 21h
END START |
oeis/170/A170756.asm | neoneye/loda-programs | 11 | 59103 | <gh_stars>10-100
; A170756: Expansion of g.f.: (1+x)/(1-36*x).
; 1,37,1332,47952,1726272,62145792,2237248512,80540946432,2899474071552,104381066575872,3757718396731392,135277862282330112,4870003042163884032,175320109517899825152,6311523942644393705472,227214861935198173396992,8179735029667134242291712,29447046106801683... |
deps/libco/doc/amd64.asm | btrask/libasync | 2 | 59104 | ; SystemV ABI:
; return = rax
; arguments = rdi,rsi,rdx,rcx,r8,r9
; non-volatile registers = rbp,rbx,r12-r15
co_swap_systemV(to = rdi, from = rsi):
mov [rsi],rsp
mov rsp,[rdi]
pop rax
mov [rsi+ 8],rbp
mov [rsi+16],rbx
mov [rsi+24],r12
mov [rsi+32],r13
mov [rsi+40],r14
mov [rsi+48],r15
mov rbp,[rd... |
cmd/command/stub.asm | minblock/msdos | 0 | 59105 | <filename>cmd/command/stub.asm
page ,132
title Command Stub
;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991
; * All Rights Reserved.
; */
;
; Revision History
; ================
;
; M003 SR 07/16/90 Check if UMB loading enabl... |
oeis/303/A303108.asm | neoneye/loda-programs | 11 | 59106 | <reponame>neoneye/loda-programs
; A303108: a(n) = (2*n-1)*a(n-1) - (n-2)!, with a(1) = 2, n > 1.
; Submitted by <NAME>
; 2,5,24,166,1488,16344,212352,3184560,54132480,1028476800,21597649920,496742319360,12418518067200,335299508812800,9723679528550400,301433978206771200,9947319973149081600,348156178137427968000,12881778... |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0xca_notsx.log_21829_221.asm | ljhsiun2/medusa | 9 | 59107 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x991f, %rdx
nop
nop
nop
add %rbx, %rbx
movw $0x6162, (%rdx)
cmp %r15, %r15
lea addresses_normal_ht+0x13f9f, %r14
nop
xor ... |
src/kernel/kernel.fat16.asm | asmCcoder/dzOS | 1 | 59108 | ;******************************************************************************
; kernel.fat16.asm
;
; Kernel's FAT16 routines
; for dastaZ80's dzOS
; by <NAME> (May 2019)
;
; Version 1.0.0
; Created on 08 May 2019
; Last Modification 08 May 2019
;************************************************************************... |
c2000/C2000Ware_1_00_06_00/libraries/dsp/FixedPoint/c28/source/RFFT32_brev_RT.asm | ramok/Themis_ForHPSDR | 0 | 59110 | ;;;#############################################################################
;;! \file source/RFFT32_brev_RT.asm
;;!
;;! \brief Real-Time storage of acquired data samples in bit reversed order
;;!
;;! \date Jan 11, 2010
;;!
;;
;; Group: C2000
;; Target Family: C28x
;;
;;#########################... |
Appl/GeoDex/Misc/miscTopColorBitmap.asm | steakknife/pcgeos | 504 | 59111 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: GeoDex
MODULE: Misc
FILE: miscTopColorBitmap.asm
AUTHOR: <NAME>, 2/6/90
REVISION HISTORY:
Name Date Description
---- ---- -----... |
8088/mandel/mandel_quadtree.asm | reenigne/reenigne | 92 | 59112 | <filename>8088/mandel/mandel_quadtree.asm<gh_stars>10-100
; Allocate a block, return in bx
allocate:
mov bx,[freeList]
mov ax,[bx]
mov [freeList],ax
ret
; Deallocate leaf block bx
deallocate:
mov ax,[freeList]
mov [bx],ax
mov [freeList],bx
ret
; Splits unsplit leaf block bx
split:
mov cl,[bx]
mov ... |
projects/07/StackArithmetic/StackTest/try_random_assemb.asm | Youngermaster/Nand2Tetris-Solutions | 0 | 59113 | <reponame>Youngermaster/Nand2Tetris-Solutions<filename>projects/07/StackArithmetic/StackTest/try_random_assemb.asm
//@-91
//@65446
//@-91
//@32767
//@65535
//@65525
//@15500
//@16383
//@32767
//@32768 -> this jumps to 16
//@-32768
//@90
//D=!A
//@0
//M=D
//@32767
//D=A
//@1
//D=D+A
//@0
//M=D
//@32767
@0
D=!A
@0
... |
oeis/348/A348543.asm | neoneye/loda-programs | 11 | 59115 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A348543: Number of partitions of n into 3 parts with at least 1 odd part.
; Submitted by <NAME>(s1)
; 0,0,1,1,2,2,4,4,7,6,10,9,14,12,19,16,24,20,30,25,37,30,44,36,52,42,61,49,70,56,80,64,91,72,102,81,114,90,127,100,140,110,154,121,169,132,184,144,200,156,217,169,234,182... |
tests/relocate/relocation_low_memory_warning.asm | fengjixuchui/sjasmplus | 220 | 59116 | ORG 0
RELOCATE_START
; this would trigger warning in regular mode
; but low-mem access warning is suppressed in relocation mode
label1: ld a,(label1)
RELOCATE_END
RELOCATE_TABLE
ASSERT 0 == __WARNINGS__
|
计算机组成原理课程设计/汇编工具及测试用例/单级中断测试程序.asm | hzjane/HUSTER-CS | 461 | 59118 | .text
addi $sp, $zero, 2000
#############################################################
#走马灯测?,测试addi,andi,sll,srl,sra,or,ori,nor,syscall LED按走马灯方式来回显示数据
#############################################################
.text
START:
addi $s0,$zero,1
sll $s3, $s0, 31 # $s3=0x80000000
sra $s3, $s3, 31 # $s... |
8mouse/pm/gdt.asm | SwordYork/slef | 8 | 59121 | gdt_start:
gdt_null:
dd 0x0
dd 0x0
gdt_core:
dw 0xffff ;0:15 limit
dw 0x0 ;15:00 Base 1
db 0x0 ;16:23 Base 2
db 10011010b ; Type
db 11001111b ;code seg
db 0x0 ;24:31 Base 3
; dw 0xffff,0x0000,0x9a00,0x0047
gdt_data:
dw 0xffff
dw 0x0
db 0x0
db 10010010b
db 11001111b
db 0x0
gdt_end:
... |
tools-src/gnu/gcc/gcc/config/cris/mulsi3.asm | enfoTek/tomato.linksys.e2000.nvram-mod | 80 | 59122 | ;; This code used to be expanded through interesting expansions in
;; the machine description, compiled from this code:
;;
;; #ifdef L_mulsi3
;; long __Mul (unsigned long a, unsigned long b) __attribute__ ((__const__));
;;
;; /* This must be compiled with the -mexpand-mul flag, to synthesize the
;; multiplication f... |
_build/dispatcher/jmp_ippsGFpECESEncrypt_SM2_41390d7f.asm | zyktrcn/ippcp | 1 | 59123 | <reponame>zyktrcn/ippcp
extern m7_ippsGFpECESEncrypt_SM2:function
extern n8_ippsGFpECESEncrypt_SM2:function
extern y8_ippsGFpECESEncrypt_SM2:function
extern e9_ippsGFpECESEncrypt_SM2:function
extern l9_ippsGFpECESEncrypt_SM2:function
extern n0_ippsGFpECESEncrypt_SM2:function
extern k0_ippsGFpECESEncrypt_SM2:function
ex... |
oeis/097/A097064.asm | neoneye/loda-programs | 11 | 59125 | ; A097064: Expansion of (1-4x+6x^2)/(1-2x)^2.
; 1,0,2,8,24,64,160,384,896,2048,4608,10240,22528,49152,106496,229376,491520,1048576,2228224,4718592,9961472,20971520,44040192,92274688,192937984,402653184,838860800,1744830464,3623878656,7516192768
mov $2,1
lpb $0
sub $0,$2
add $2,1
pow $2,$0
mul $2,$0
lpe
mov $0,... |
Studio2/data/am4kbas_2020.asm | ajavamind/rca-studio2 | 15 | 59126 | <reponame>ajavamind/rca-studio2
; Origin set to 00000H, EOF = 00FFFH
ORG 00000H
; CPU Type:
CPU 1802
; Labels:
R002C EQU 002CH
R002D EQU 002DH
R003E EQU 003EH
R004A EQU 004AH
R005C EQU 005CH
R006C EQU 006CH
R0074 EQU 0074H
R007A EQU 007AH
R0088 EQU 0088H
R00A3 EQU 00A3H
R00A8 EQU 00A8H
R00C2 EQU 00C2H
R00DA EQU ... |
6/filereader/filereader_2nasm.asm | 91fc7b/SLAE | 0 | 59127 | global _start
section .text
_start:
xor eax,eax
xor ebx,ebx
xor ecx,ecx
xor edx,edx
jmp two
one:
pop ebx
mov al,0x5
xor ecx,ecx
int 0x80
mov esi,eax
jmp read
exit:
mov al,0x1
xor ebx,ebx
int 0x80
read:
mov ebx,esi
mov al,0x3
sub esp,0x1
lea ecx,[esp]
mov dl,0x... |
oeis/316/A316826.asm | neoneye/loda-programs | 22 | 59128 | <filename>oeis/316/A316826.asm
; A316826: Image of 3 under repeated application of the morphism 3 -> 3,2, 2 -> 1,0,2,0,1,2, 1 -> 1,0,1,2, 0 -> 0,2.
; 3,2,1,0,2,0,1,2,1,0,1,2,0,2,1,0,2,0,1,2,0,2,1,0,1,2,1,0,2,0,1,2,1,0,1,2,0,2,1,0,1,2,1,0,2,0,1,2,0,2,1,0,2,0,1,2,1,0,1,2,0,2,1,0,2,0,1,2,0,2,1,0,1,2,1,0,2,0,1,2,0,2,1,0,2,... |
libsrc/gfx/narrow/bksave.asm | ahjelm/z88dk | 640 | 59129 | <filename>libsrc/gfx/narrow/bksave.asm
;
; Fast background save
;
; Generic version (just a bit slow)
;
; $Id: bksave.asm,v 1.7 2016-07-02 09:01:35 dom Exp $
;
IF !__CPU_INTEL__ & !__CPU_GBZ80__
SECTION smc_clib
PUBLIC bksave
PUBLIC _bksave
EXTERN pixeladdress
.bksave
._bksave
p... |
util/thg/rthg.asm | olifink/smsqe | 0 | 59131 | <filename>util/thg/rthg.asm
* Remove Thing from list v0.00 Feb 1988 J.R.Oakley QJUMP
*
section thing
*
include 'dev8_mac_assert'
include 'dev8_keys_chp'
include 'dev8_keys_err'
include 'dev8_keys_qlv'
include 'dev8_keys_sys'
include 'dev8_keys_... |
source/library/patchable_data.asm | cppchriscpp/ld50 | 1 | 59132 | <filename>source/library/patchable_data.asm
; This is done in assembly so we can be a little more sure about where the linker will put this data.
; If it gets moved around, the application patcher will no longer work.
; NOTE: If you're editing the raw code of your own game you can ignore the warnings in this file, and... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_205.asm | ljhsiun2/medusa | 9 | 59133 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1cee6, %rsi
nop
nop
nop
nop
nop
sub %r11, %r11
movl $0x61626364, (%rsi)
nop
add %r15, %r15
lea addresses_UC_ht+0xfc1e, %r15
nop
nop
xor $48875, %rbx
movl $0x61626364, (%r15)
... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2364.asm | ljhsiun2/medusa | 9 | 59135 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2364.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xe974, %rcx
nop
nop
nop
nop
inc %r11
mov (%rcx), %r9
xor %r11, %... |
chapter17/17.4(1).asm | bgst009/AssemblyLanguage | 0 | 59138 | <filename>chapter17/17.4(1).asm<gh_stars>0
assume cs:code,ss:stack,ds:data
data segment
data ends
stack segment
stack ends
code segent
start:
mov ax,0
mov es,ax
mov bx,200h
mov ah,2
mov al,1
mov ch,0
mov cl,1
mov dh,0
mov dl,0
int 13h
mov ax,4c00h
int 21h
code ends
e... |
pkgs/tools/yasm/src/modules/parsers/nasm/tests/strucalign.asm | manggoguy/parsec-modified | 2,151 | 59139 | struc bug
times (64-$) resb 1
.member:
times (128-($-$$)) resb 1
.member2:
alignb 256
.member3:
[align 512]
endstruc
dd bug
dd bug.member
dd bug.member2
dd bug.member3
dd bug_size
|
samcoupe/bootstrap.asm | juzzas/saa1099_playtunes | 0 | 59142 | ; z88dk/bin/z80asm.exe --cpu=z80 --list -b bootstrap.z80
; z88dk/bin/appmake.exe +hex -b bootstrap.bin -o bootstrap.hex --org 0x8000
defc VMPR = 252
defc HMPR = 251
defc LMPR = 250
; The ROM normally keeps the machine stack and system variables in section B at
; 4000H-5CD0H, so that they are not paged out when the s... |
programs/oeis/002/A002624.asm | karttu/loda | 0 | 59144 | <reponame>karttu/loda<filename>programs/oeis/002/A002624.asm<gh_stars>0
; A002624: Expansion of (1-x)^(-3) * (1-x^2)^(-2).
; 1,3,8,16,30,50,80,120,175,245,336,448,588,756,960,1200,1485,1815,2200,2640,3146,3718,4368,5096,5915,6825,7840,8960,10200,11560,13056,14688,16473,18411,20520,22800,25270,27930,30800,33880,37191,40... |
Library/User/Gen/genPathUtils.asm | steakknife/pcgeos | 504 | 59145 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: genPathUtils.asm
AUTHOR: <NAME>, Jan 7, 1992
ROUTINES:
Name Description
---- -----------
GenPathSet Set the object's current pat... |
programs/oeis/021/A021979.asm | karttu/loda | 0 | 59146 | <gh_stars>0
; A021979: Decimal expansion of 1/975.
; 0,0,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1,0,2,5,6,4,1
mov $2,1
lpb $0,1
sub $0,1
trn $0,1
sub $3,3
add $2,$3
mov... |
oeis/076/A076131.asm | neoneye/loda-programs | 11 | 59147 | <filename>oeis/076/A076131.asm<gh_stars>10-100
; A076131: a(n) = 2^n*a(n-1)+1, a(0) = 0.
; 0,1,5,41,657,21025,1345601,172236929,44092653825,22575438758401,23117249288602625,47344126543058176001,193921542320366288900097,1588605274688440638669594625,26027708820495411423962638336001,852875962629993641540407732994080769,55... |
src/XenobladeChroniclesX/Mods/BattleDamageModGround/patch_dmg.asm | lilystudent2016/cemu_graphic_packs | 1,002 | 59148 | [XCX_DAMAGES] ####################################################################################################################################
moduleMatches = 0xF882D5CF, 0x30B6E091 ; 1.0.1E, 1.0.2U
.origin = codecave
.int $mult
0x025D896C = mulli r4, r31, $mult
[XCX_DAMAGES_1U] ################################... |
programs/oeis/061/A061238.asm | neoneye/loda | 22 | 59149 | ; A061238: Prime numbers == 2 (mod 9).
; 2,11,29,47,83,101,137,173,191,227,263,281,317,353,389,443,461,479,569,587,641,659,677,821,839,857,911,929,947,983,1019,1091,1109,1163,1181,1217,1289,1307,1361,1433,1451,1487,1523,1559,1613,1667,1721,1811,1847,1901,1973,2027,2063,2081,2099,2153,2207,2243,2297,2333,2351,2423,2441,... |
src/titlep.asm | dshadoff/Star-Spores_TRS-80_Mod1 | 1 | 59150 | ORG 6780H
DISTRB EQU 4F00H
LOWCAS EQU 6215H
DEMOF EQU 60F2H
NOPLAY EQU 6100H
MOVE EQU 54A0H
FIXSTR LD HL,3C00H
LD (HL),0FFH
LD A,(HL)
CP 0FFH
JR NZ,NOLOW
LD A,1
LD (LOWCAS),A
JR START
NOLOW XOR A
LD (LOWCAS),A
START LD A,9
LD (NUMLO),A
ADD A,50
LD (NUMHI),A
LD HL,80H
LD (SOUND1),HL
LD (SOUND2),HL
XOR A... |
v0.1/Source/datetime.asm | sjmeunier/cros | 0 | 59151 | <reponame>sjmeunier/cros
;-----------------------------------------------------
;Check if year is leap year
;I: ax year
;O: carry set if leap year
;-----------------------------------------------------
_is_leap_year
push dx
push cx
cmp ax, 0x190
jb ily_end ;exit if error
push ax
mov cx... |
win64/lesson21.asm | mashingan/notes-asmtutor | 1 | 59152 | format PE64 console
entry start
include 'win64w.inc'
section '.data' data readable writeable
stdout dq ?
msg db 'Seconds since 1 January 1970: ', 0h
milsec db 'milliseconds: ', 0h
section '.text' code readable executable
start:
fastcall setStdout
enter 2*sizeof.FILETIME+2*sizeof.SYSTEMTIME, 0
... |
boot/32bit-printing.asm | prithivi-maruthachalam/PrOS | 1 | 59154 | [bits 32] ;instruct assembler to use 32-bit mode
VIDEO_MEMORY equ 0xb8000
WHITE_ON_BLACK equ 0x0f ;color byte
pm_print_string:
pusha
mov edx,VIDEO_MEMORY
pm_print_string_loop:
mov al, [ebx] ;char at ebx
mov ah, WHITE_ON_BLACK ;color attributes in ah
cmp al, 0
je pm_print_... |
Decrunchlinker.asm | RichardTND/ShockRaid | 0 | 59155 | <reponame>RichardTND/ShockRaid
;Decrunch text linker
!to "shockraidpiclinker.prg",cbm
*=$0801
!bin "shockraidpiclinker.exo",,2
lda #$00
sta $d020
sta $d021
lda #$14
sta $d018
ldx #$00
clrscr
lda #$20
sta $0400,x
sta $0500,x
sta $0600,x
sta $06e8,x
inx
bne clrscr
ldx #$00
getdata
... |
EE2016/LAB 1/8BitMultiplier.asm | HR-1-1/CourseWork | 0 | 59156 | <reponame>HR-1-1/CourseWork
;
; 8BitMultiplier.asm
;
; Created: 9/1/2021 3:00:02 PM
; Author : Harish
;
.CSEG
LDI ZL, LOW(NUM<<1)
LDI ZH, HIGH(NUM<<1)
LPM R16, Z+
LPM R17, Z
MUL R16, R17 ; Result stored in R1-R0
NOP
NUM: .db 0xFF, 0x01
|
oeis/140/A140406.asm | neoneye/loda-programs | 11 | 59157 | ; A140406: a(n) = binomial(n+6, 6)*8^n.
; 1,56,1792,43008,860160,15138816,242221056,3598712832,50381979648,671759728640,8598524526592,106309030510592,1275708366127104,14915974742409216,170468282770391040,1909244767028379648,21001692437312176128,227312435792084729856,2424665981782237118464,25522799808234074931200,265437... |
programs/oeis/090/A090327.asm | neoneye/loda | 22 | 59160 | <filename>programs/oeis/090/A090327.asm<gh_stars>10-100
; A090327: Number of rules of a context-free grammar in Chomsky normal form that generates all permutations of n symbols.
; 1,4,11,30,83,234,671,1950,5723,16914,50231,149670,446963,1336794,4002191,11990190,35937803,107747874,323112551,969075510,2906702243,87190581... |
src/common/jobQ.asm | electrondave/wgnet | 0 | 59161 | ;*******************************************************************************
; JOB QUEUE *
; Filename: jobQ.asm *
; Date: April 24, 2018 *
; ... |
unittests/ASM/X87_F64/D9_C8_F64.asm | Seas0/FEX | 0 | 59162 | %ifdef CONFIG
{
"RegData": {
"RAX": ["0x3ff0000000000000"],
"RBX": ["0x4000000000000000"]
},
"Env": { "FEX_X87REDUCEDPRECISION" : "1" }
}
%endif
mov rdx, 0xe0000000
mov eax, 0x3f800000 ; 1.0
mov [rdx + 8 * 0], eax
mov eax, 0x40000000 ; 2.0
mov [rdx + 8 * 1], eax
fld dword [rdx + 8 * 0]
fld dword [rdx... |
programs/oeis/000/A000392.asm | karttu/loda | 0 | 59163 | ; A000392: Stirling numbers of second kind S(n,3).
; 0,0,0,1,6,25,90,301,966,3025,9330,28501,86526,261625,788970,2375101,7141686,21457825,64439010,193448101,580606446,1742343625,5228079450,15686335501,47063200806,141197991025,423610750290,1270865805301,3812664524766,11438127792025,34314651811530,102944492305501,3088345... |
nex_example.asm | Threetwosevensixseven/ZeusNexFileExample | 4 | 59165 | /* nex_example.asm
This ZX Spectrum Next demo demonstrates creating .NEX files in Zeus, running NextBASIC commands from asm, calling
the esxDOS and NextZXOS APIs, printing using NextBASIC 51 column mode from asm, using Zeus to append private data to
a .NEX file, and reading that private data from asm. Plus several oth... |
engine/battle/move_effects/thief.asm | Dev727/ancientplatinum | 28 | 59166 | <filename>engine/battle/move_effects/thief.asm
BattleCommand_Thief:
; thief
ldh a, [hBattleTurn]
and a
jr nz, .enemy
; The player needs to be able to steal an item.
call .playeritem
ld a, [hl]
and a
ret nz
; The enemy needs to have an item to steal.
call .enemyitem
ld a, [hl]
and a
ret z
; Can't steal ... |
oeis/264/A264744.asm | neoneye/loda-programs | 11 | 59167 | <reponame>neoneye/loda-programs<filename>oeis/264/A264744.asm<gh_stars>10-100
; A264744: Exponent of the prime power A264734(n).
; 1,1,1,2,1,2,3,1,4,1,1,1,1
trn $0,1
seq $0,204818 ; Final nonzero digit of n^n in base 8.
seq $0,29064 ; Expansion of 1/((1-x)*(1-x^4)*(1-x^5)*(1-x^7)).
|
libsrc/_DEVELOPMENT/arch/zx/display/z80/asm_zx_aaddr2saddr.asm | jpoikela/z88dk | 640 | 59168 |
; ===============================================================
; Jun 2007
; ===============================================================
;
; void *zx_aaddr2saddr(void *attraddr)
;
; Attribute address to screen address.
;
; ===============================================================
INCLUDE "config_private.... |
de1-soc-proc/mem/asm13-5.asm | omicronns/classes-sys-rek | 1 | 59169 | movi r0, 0
movi r1, 4
addi r0, 1
mov r2, r0
and r2, r1
jzi r2, 2
movi r3, 1
ji 7
|
asm.asm | leonardo-ono/asm4mo | 10 | 59171 | ;===============================================================================
; class Main
;===============================================================================
bits 16
org 32768
; entry point
; ----------------------------------------------------------------------
jmp Main.main
; private properti... |
oeis/155/A155040.asm | neoneye/loda-programs | 11 | 59172 | <reponame>neoneye/loda-programs
; A155040: A symmetric (1,-1)-triangle.
; Submitted by <NAME>(s2)
; 1,1,1,1,-1,1,1,-1,-1,1,1,-1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,-1,1,-1,1,1,-1,1,-1,-1,1,-1,1,1,-1,1,-1,1,-1,1,-1,1,1,-1,1,-1,1,1,-1,1,-1,1,1,-1,1,-1,1,-1,1,-1,1,-1,1,1,-1,1,-1,1,-1,-1,1,-1,1,-1,1,1,-1,1,-1,1,-1,1,-1,1
seq $0,1... |
project/notes.asm | HKhademian/AssemblyDandamudi | 1 | 59173 | <filename>project/notes.asm
%ifndef NOTES_ASM
%define NOTES_ASM
section .text
DB 'A4', 0, 0, 0, 0, 0, 0;, 0, 0
note_names:
db 0xe2, 0x99, 0xa9, 0
db 0xe2, 0x99, 0xaa, 0
db 0xe2, 0x99, 0xab, 0
db 0xe2, 0x99, 0xac, 0
db 0xe2, 0x99, 0xad, 0
db 0xe2, 0x99, 0xae, 0
db 0xe2, 0x99, 0xaf, 0
db 'A♩', 0, 0
db... |
oeis/093/A093042.asm | neoneye/loda-programs | 11 | 59174 | ; A093042: Jacobsthal(n)*Fibonacci(n).
; Submitted by <NAME>
; 0,1,1,6,15,55,168,559,1785,5814,18755,60787,196560,636323,2058797,6663030,21561015,69774527,225792504,730684103,2364536625,7651812246,24761766811,80130789371,259308635040,839140445275,2715515402053
mov $1,2
pow $1,$0
seq $0,45 ; Fibonacci numbers: F(n) = F... |
Assembly/Project/Cop.asm | Myself086/Project-Nested | 338 | 59175 |
// ---------------------------------------------------------------------------
Cop__Table:
.fill16 0x100, Cop__Error
.macro Cop__Table ID, Address
.pushaddr
.addr Cop__Table+{0}*2
.data16 {1}
.pulladdr
.endm
Cop__Table 0x00, Cop__Wait4Interrupt
Cop__Table 0x01, Cop__Wait4VBlank
Cop__Table 0x02, ... |
programs/oeis/109/A109238.asm | neoneye/loda | 22 | 59176 | ; A109238: a(n) = floor(n*(e^2+1)/2).
; 4,8,12,16,20,25,29,33,37,41,46,50,54,58,62,67,71,75,79,83,88,92,96,100,104,109,113,117,121,125,130,134,138,142,146,151,155,159,163,167,171,176,180,184,188,192,197,201,205,209,213,218,222,226
seq $0,182767 ; Beatty sequence for 1+e^2.
add $1,$0
div $1,2
mov $0,$1
|
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_939.asm | ljhsiun2/medusa | 9 | 59177 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x145b0, %r13
and $20529, %r9
vmovups (%r13), %ymm0
vextracti128 $0, %ymm0, %xmm0
vpextrq $0, %xmm0, %rdi
nop
add $27483, %r8
lea addresses_A_ht+0x... |
programs/oeis/120/A120573.asm | jmorken/loda | 1 | 59178 | ; A120573: a(n) = n^5 + 3n^3 + 2n = n(n^2+1)(n^2+2).
; 6,60,330,1224,3510,8436,17850,34320,61254,103020,165066,254040,377910,546084,769530,1060896,1434630,1907100,2496714,3224040,4111926,5185620,6472890,8004144,9812550,11934156,14408010,17276280,20584374,24381060,28718586,33652800,39243270,45553404,52650570,60606216,69... |
LCD_SevenSegment_Example.asm | esragarip28/Assembly_Intel_8086_Simple_Examples | 0 | 59180 | <filename>LCD_SevenSegment_Example.asm
org 100h
#start=Emulation_Kit.exe#
mov di,0
Main:
inc di
cmp di,20 ;di-20
jg BiggerThanTwenty
mov ax,di
mov bl,0Ah
div bl
mov divisionResult[0],al
mov divisionResult[1],ah
mov ax,0
call Write ;print tries number
mov bx,0
mov ah, 00h ; inte... |
Transynther/x86/_processed/NC/_st_zr_/i7-8650U_0xd2.log_183_743.asm | ljhsiun2/medusa | 9 | 59181 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xdc1, %rsi
lea addresses_D_ht+0x18d27, %rdi
nop
nop
nop
cmp %rbx, %rbx
mov $90, %rcx
rep movsq
nop
nop
nop
nop
nop
sub $19772, %r14
lea addresses_UC_ht+0x16877, %rbx
nop
sub $2328, %rsi
movups (%rbx), %xmm... |
oeis/138/A138670.asm | neoneye/loda-programs | 11 | 59182 | <reponame>neoneye/loda-programs<filename>oeis/138/A138670.asm
; A138670: Indices of 0's in Stewart's choral sequence.
; Submitted by <NAME>(s4)
; 0,1,3,4,6,9,10,12,13,15,18,19,21,24,27,28,30,31,33,36,37,39,40,42,45,46,48,51,54,55,57,58,60,63,64,66,69,72,73,75,78,81,82,84,85,87,90,91,93,94,96,99,100,102
mov $1,1
mov $2... |
function/pallin.asm | zaoad/assembly- | 0 | 59183 | segment .data
scfmt : dq "%lld" ,0
stringfmt: dq "%s" ,0
newline : dq "" ,10, 0
prfmt: dq "%lld" ,10, 0
printpal: dq "%s is pallindrome", 10, 0
printnotpal: dq "%s is not pallindrome" ,10 ,0
segment .bss
s: resq 100
l: resq 1
segment .text
global main
extern scanf
extern printf,gets
main:
push rbp
mov rbp ... |
programs/oeis/038/A038040.asm | karttu/loda | 1 | 59184 | <reponame>karttu/loda
; A038040: a(n) = n*d(n), where d(n) = number of divisors of n (A000005).
; 1,4,6,12,10,24,14,32,27,40,22,72,26,56,60,80,34,108,38,120,84,88,46,192,75,104,108,168,58,240,62,192,132,136,140,324,74,152,156,320,82,336,86,264,270,184,94,480,147,300,204,312,106,432,220,448,228,232,118,720,122,248,378,4... |
languages/test.asm | F0xedb/source-marking-system | 0 | 59185 | <reponame>F0xedb/source-marking-system<filename>languages/test.asm
global _start
section .text:
_start:
mov eax, 0x4 ; use the write syscall
mov ebx, 1
mov ecx, message
mov edx, len
int 0x80
mov eax, 0x1 ; use exit syscall
mov ebx, 0
int 0x80
section .data:
message:... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48.log_21829_2766.asm | ljhsiun2/medusa | 9 | 59186 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xa399, %r9
nop
sub %rsi, %rsi
and $0xffffffffffffffc0, %r9
vmovaps (%r9), %ymm6
vextracti128 $0, %ymm6, %xmm6
vpextrq $0, %xmm6, %r13
nop
dec %r14
lea addresses_normal_h... |
programs/oeis/160/A160385.asm | karttu/loda | 0 | 59187 | <gh_stars>0
; A160385: Number of nonzero digits in base-4 representation of n.
; 0,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,3,3,3,2,3,3,3,2,3,3,3,1,2,2,2,2,3,3,3,2,3,3,3,2,3,3,3,1,2,2,2,2,3,3,3,2,3,3,3,2,3,3,3,1,2,2,2,2,3,3,3,2,3,3,3,2,3,3,3,2,3,3,3,3,4,4,4,3,4,4,4,3,4,4,4,2,3,3,3,3,4,4,4,3,4,4,4,3,4,4,4,2,3,3,3,3,4,4,4... |
oeis/238/A238538.asm | neoneye/loda-programs | 11 | 59189 | <filename>oeis/238/A238538.asm
; A238538: A fourth-order linear divisibility sequence: a(n) = (2^n + 1)*(2^(3*n) - 1)/ ( (2 + 1)*(2^3 - 1) ).
; Submitted by <NAME>(s1)
; 1,15,219,3315,51491,811395,12882499,205321155,3278747331,52408827075,838132189379,13406842675395,214483303960771,3431523432591555,54902699475185859,87... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1577.asm | ljhsiun2/medusa | 9 | 59190 | .global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x15f67, %rsi
lea addresses_UC_ht+0x11f97, %rdi
nop
nop
nop
nop
nop
inc %r8
mov $109, %rcx
rep movsb
sub %rax, %rax
lea addresses_A_ht+0x19857, %rsi
lea addresses_normal_ht+0xad97, %rdi
... |
BOTAO_TOGGLE.asm | alvir218/exercicios | 1 | 59191 | ;programador: <NAME>
;professor: <NAME>
;instituicao de ensino: escola superior politecnica uninter
;disciplina: microprocessadores e microcontroladores
;ide: mplab 7
;microcontrolador: pic16f877a
;dev kit: HJ_5G
;exercicio:
;botao em modo toggle
;aperta o botao o led liga
;aperta o mesmo botao o led apaga
;APERTA... |
oeis/063/A063223.asm | neoneye/loda-programs | 11 | 59192 | <reponame>neoneye/loda-programs
; A063223: Dimension of the space of weight 2n cuspidal newforms for Gamma_0( 59 ).
; Submitted by <NAME>(s2)
; 5,14,24,34,44,52,64,72,82,92,102,110,122,130,140,150,160,168,180,188,198,208,218,226,238,246,256,266,276,284,296,304,314,324,334,342,354,362,372,382,392,400,412,420,430,440,450... |
programs/oeis/344/A344404.asm | neoneye/loda | 22 | 59193 | <gh_stars>10-100
; A344404: a(n) = Sum_{d|n} floor(n/d^2).
; 1,2,3,5,5,7,7,10,10,12,11,16,13,17,16,21,17,24,19,26,23,27,23,33,26,32,30,36,29,41,31,42,36,42,36,52,37,47,43,53,41,57,43,57,51,57,47,69,50,64,56,68,53,74,57,74,63,72,59,87,61,77,71,85,67,90,67,89,76,90,71
add $0,1
mov $2,$0
lpb $0
mov $3,$2
add $6,$0
... |
programs/oeis/246/A246017.asm | neoneye/loda | 22 | 59195 | ; A246017: Partial sums of A246016.
; 1,2,1,2,3,2,3,4,3,4,3,2,3,4,3,4,5,4,5,6,5,4,5,4,5,6,5,6,7,6,7,8,7,8,7,6,7,8,7,8,7,6,7,6,5,6,5,4,5,6,5,6,7,6,7,8,7,8,7,6,7,8,7,8,9,8,9,10,9,8,9,8,9,10,9,10,11,10,11,12,11,10,11,10,9,10,9,8,9,8,9,10,9,8,9,8,9,10,9,10
lpb $0
mov $2,$0
sub $0,1
seq $2,246016 ; a(n) = (-1)^A05594... |
test/screen_timing/screen_timing.asm | kosarev/zx | 6 | 59196 |
; ZX Spectrum Emulator.
;
; Copyright (C) 2017-2019 <NAME>.
; <EMAIL>
;
; Published under the MIT license.
; This test is supposed to make visible possible defects in ULA
; emulation with regard to how it renders border areas. It
; proceeds in two steps. First, it makes sure that the ISR code
; gets c... |
programs/oeis/089/A089013.asm | jmorken/loda | 1 | 59197 | ; A089013: a(n) = (A088567(8n) mod 2).
; 1,0,0,1,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,1,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,1,0,1,1,1,0,0,1,0,0,1,1,1,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,1,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,1,0,0,1,1,0,0,0,1
mov $3,1
lpb $3
mul $0,2
mov $1,1
mov $2,$0
sub $3,1
... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2.log_114_1065.asm | ljhsiun2/medusa | 9 | 59198 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x10c6b, %rsi
lea addresses_D_ht+0x103e1, %rdi
clflush (%rsi)
and %r13, %r13
mov $10, %rcx
rep movsl
nop
nop
nop
nop
nop
add $48409, %r10
lea addresses_WC_ht+0x11fe1, %rsi
lea addresses_... |
programs/oeis/116/A116149.asm | karttu/loda | 1 | 59200 | <reponame>karttu/loda<filename>programs/oeis/116/A116149.asm
; A116149: a(n) = sum of n consecutive cubes after n^3.
; 8,91,405,1196,2800,5643,10241,17200,27216,41075,59653,83916,114920,153811,201825,260288,330616,414315,512981,628300,762048,916091,1092385,1292976,1520000,1775683,2062341,2382380,2738296,3132675,3568193... |
boot.asm | bplaat/plaatos8086 | 2 | 59201 | <reponame>bplaat/plaatos8086
BITS 16
ORG 0x7c00
_start:
; Clear interrupts for now
cli
; Set data segment right
mov ax, 0
mov dx, ax
; Set up right graphics mode
mov ah, 0x00
mov al, 0x03
int 0x10
; Enable A20 line
enable_a20:
in al, 0x92
test al, 2
jnz .s... |
engine/events/battle_tower/get_trainer_class.asm | Dev727/ancientplatinum | 28 | 59203 | <reponame>Dev727/ancientplatinum<filename>engine/events/battle_tower/get_trainer_class.asm
GetMobileOTTrainerClass: ; mobile function
ld h, b
ld l, c
call .GetMobileOTTrainerClass
ld c, a
ret
.GetMobileOTTrainerClass:
ld a, [hli]
xor [hl]
ld c, a
jr z, .skip_male_trainers
srl c
srl c
.male_trainer_loop
srl... |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_908_1597.asm | ljhsiun2/medusa | 9 | 59204 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_908_1597.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r14
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xcac3, %rsi
lea addresses_D_ht+0x9db7, %rdi
nop
nop
dec %r11
... |
test/asm_exe/segname2.asm | nigelperks/BasicAssembler | 0 | 59206 | <reponame>nigelperks/BasicAssembler<gh_stars>0
IDEAL
ASSUME CS: SEG1
; forward references to segments are not allowed yet
SEGMENT SEG1
ENDS SEG1
SEGMENT SEG2
ENDS SEG2
SEGMENT SEG3
ENDS SEG3
SEGMENT SEG4
ENDS SEG4
SEGMENT _STACK STACK
ENDS _STACK
ASSUME CS: SEG1
SEGMENT SEG1
start:
mov ax, SEG1
mov... |
libsrc/gfx/narrow/undrawto.asm | ahjelm/z88dk | 640 | 59207 | <gh_stars>100-1000
; ----- void undrawto(int x2, int y2)
IF !__CPU_INTEL__ & !__CPU_GBZ80__
SECTION code_graphics
PUBLIC undrawto
PUBLIC _undrawto
EXTERN asm_undrawto
.undrawto
._undrawto
pop af ; ret addr
pop de ; y2
pop hl
push hl
push de
l... |
programs/oeis/211/A211065.asm | neoneye/loda | 22 | 59208 | <filename>programs/oeis/211/A211065.asm<gh_stars>10-100
; A211065: Number of 2 X 2 matrices having all terms in {1,...,n} and odd determinant.
; 0,6,40,96,288,486,1056,1536,2800,3750,6120,7776,11760,14406,20608,24576,33696,39366,52200,60000,77440,87846,110880,124416,154128,171366,208936,230496,277200,303750,360960,3932... |
oeis/052/A052517.asm | neoneye/loda-programs | 11 | 59210 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A052517: Number of ordered pairs of cycles over all n-permutations having two cycles.
; Submitted by <NAME>
; 0,0,2,6,22,100,548,3528,26136,219168,2053152,21257280,241087680,2972885760,39605518080,566931294720,8678326003200,141468564787200,2446811181158400,4475397611704... |
asm/dos_add_hole_to_map_doors.asm | Iemnur/DSVEdit | 70 | 59211 | <reponame>Iemnur/DSVEdit
.nds
.relativeinclude on
.erroronwarning on
; This adds a single pixel hole to all doors drawn on the map to increase visibility, like in PoR and OoE.
@Overlay41Start equ 0x02308920
@FreeSpace equ @Overlay41Start + 0x108
.open "ftc/arm9.bin", 02000000h
.org 0x020240B0
; Handles drawing le... |
oeis/011/A011587.asm | neoneye/loda-programs | 11 | 59213 | <gh_stars>10-100
; A011587: Legendre symbol (n,29).
; Submitted by <NAME>
; 0,1,-1,-1,1,1,1,1,-1,1,-1,-1,-1,1,-1,-1,1,-1,-1,-1,1,-1,1,1,1,1,-1,-1,1,0,1,-1,-1,1,1,1,1,-1,1,-1,-1,-1,1,-1,-1,1,-1,-1,-1,1,-1,1,1,1,1,-1,-1,1,0,1,-1,-1,1,1,1,1,-1,1,-1,-1,-1,1,-1,-1,1,-1,-1,-1,1,-1,1
pow $0,14
mod $0,29
mov $3,1
lpb $3
clr... |
projects/Links_Awakening_gb.windfish/disassembly/bank_06.asm | jverkoey/awaken | 68 | 59214 | <reponame>jverkoey/awaken<filename>projects/Links_Awakening_gb.windfish/disassembly/bank_06.asm
SECTION "ROM Bank 06", ROMX[$4000], BANK[$06]
db $50, $00, $52, $00, $54, $00, $56, $00
db $50, $00, $52, $00, $54, $00, $56, $00
db $58, $00, $5A, $00, $5C, $00, $5E, $00
db $5A, $20, $58, $20, $5E,... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_731.asm | ljhsiun2/medusa | 9 | 59215 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1e59c, %r9
nop
nop
nop
nop
cmp %rdx, %rdx
movups (%r9), %xmm3
vpextrq $1, %xmm3, %r8
nop
nop
nop
nop
nop
inc %r11
lea addresses_UC_ht+0xa19c, %rsi
lea addresses_WT_ht+0x12... |
test/newrdwr.asm | bitwiseworks/nasm-os2 | 3 | 59216 | ;Testname=test; Arguments=-fbin -onewrdwr.bin; Files=stdout stderr newrdwr.bin
bits 64
rdfsbase eax
rdfsbase rax
rdgsbase eax
rdgsbase rax
rdrand ax
rdrand eax
rdrand rax
wrfsbase eax
wrfsbase rax
wrgsbase eax
wrgsbase rax
osp rdfsbase eax
osp rdfsbase rax
osp rdgsbase eax
osp rdgs... |
Chapter_4/Program 4.4/x86_64/Program_4.4_MASM.asm | chen150182055/Assembly | 272 | 59218 | <filename>Chapter_4/Program 4.4/x86_64/Program_4.4_MASM.asm
; Program 4.4
; Array - MASM (64-bit)
; Copyright (c) 2020 Hall & Slonka
extrn ExitProcess : proc
.data
array QWORD 1, 2, 3, 4
.code
_main PROC
; Load using byte offsets
lea rsi, array
mov rax, QWORD PTR [rsi]
mov rbx, QWORD PTR [rsi + 8]
; ... |
descriptor.asm | satadriver/LiunuxOS_t | 0 | 59219 | <reponame>satadriver/LiunuxOS_t<filename>descriptor.asm
RECODE EQU 9AH
ROCODE EQU 98H
RWDATA EQU 92H
RODATA EQU 90H
TASKGATE286 EQU 81h
LDTGATE EQU 82h
TASKGATE286B EQU 83h
CALLGATE286 EQU 84h
TASKGATE EQU 85h
INTRGATE286 EQU 86h
TRAPGATE286 EQU 87h
TSSSEG EQU 89h
TSSSEGB EQU 8bh
CALLGATE EQU 8c... |
src/kernel/interrupts/isr.asm | MetaColon/Melvix | 0 | 59220 | %macro ISR_NOERRCODE 1
global isr%1
isr%1:
cli
push byte 0
push %1
jmp isr_common_stub
%endmacro
%macro ISR_ERRCODE 1
global isr%1
isr%1:
cli
push byte %1
jmp isr_common_stub
%endmacro
ISR_NOERRCODE 0
ISR_NOERRCODE 1
ISR_NOERRCODE 2
ISR_NOERRCODE 3
ISR_NOERRCODE 4
ISR_NOERRCODE 5
ISR_NOERRCODE 6
ISR... |
msf_rev_shell.nasm | Re4son/slae-assignment5 | 1 | 59221 | <reponame>Re4son/slae-assignment5<gh_stars>1-10
; Filename: msf-revshell.nasm
; Author: Metasploit
; Analysed by Re4son <re4son [at] whitedome.com.au
; Purpose: Disassembly of msf linux/x86/meterpreter/reverse_tcp
; for research purpose
global _start
section .text
_start:
; Create socket
xo... |
software/pcx86/bdsrc/dev/fdcdev.asm | fatman2021/basicdos | 59 | 59222 | ;
; BASIC-DOS Floppy Drive Controller Device Driver
;
; @author <NAME> <<EMAIL>>
; @copyright (c) 2020-2021 <NAME>
; @license MIT <https://basicdos.com/LICENSE.txt>
;
; This file is part of PCjs, a computer emulation software project at pcjs.org
;
BIOSEQU equ 1
include macros.inc
include bios.inc
includ... |
programs/oeis/108/A108479.asm | neoneye/loda | 22 | 59225 | <filename>programs/oeis/108/A108479.asm<gh_stars>10-100
; A108479: Diagonal sums of number triangle A086645.
; 1,1,2,7,17,44,117,305,798,2091,5473,14328,37513,98209,257114,673135,1762289,4613732,12078909,31622993,82790070,216747219,567451585,1485607536,3889371025,10182505537,26658145586,69791931223,182717648081
mul $0... |
programs/oeis/138/A138181.asm | neoneye/loda | 22 | 59226 | <filename>programs/oeis/138/A138181.asm
; A138181: Largest Fibonacci number not exceeding the n-th prime.
; 2,3,5,5,8,13,13,13,21,21,21,34,34,34,34,34,55,55,55,55,55,55,55,89,89,89,89,89,89,89,89,89,89,89,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,233,233
seq $0,40 ; The prime numbers.
sub $0,1
se... |
programs/oeis/120/A120170.asm | neoneye/loda | 22 | 59228 | <reponame>neoneye/loda
; A120170: a(n) = ceiling( Sum_{i=1..n-1} a(i)/5 ), a(1)=1.
; 1,1,1,1,1,1,2,2,2,3,3,4,5,6,7,8,10,12,14,17,21,25,30,36,43,52,62,74,89,107,128,154,185,222,266,319,383,460,552,662,795,954,1144,1373,1648,1977,2373,2847,3417,4100,4920,5904,7085,8502,10202,12243,14691,17630,21156,25387,30464,36557,4386... |
Examples/ch09/Bsearch/PrtArry.asm | satadriver/LiunuxOS | 0 | 59229 | TITLE PrintArray Procedure (PrtArry.asm)
; Last update: 1/18/02
INCLUDE Irvine32.inc
.code
;-----------------------------------------------------------
PrintArray PROC USES eax ecx edx esi,
pArray:PTR DWORD, ; pointer to array
Count:DWORD ; number of elements
;
; Writes an array of 3... |
libsrc/_DEVELOPMENT/adt/b_vector/c/sccz80/b_vector_erase_range_callee.asm | meesokim/z88dk | 0 | 59231 |
; size_t b_vector_erase_range(b_vector_t *v, size_t idx_first, size_t idx_last)
SECTION code_adt_b_vector
PUBLIC b_vector_erase_range_callee
EXTERN b_array_erase_range_callee
defc b_vector_erase_range_callee = b_array_erase_range_callee
INCLUDE "adt/b_vector/z80/asm_b_vector_erase_range.asm"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.