max_stars_repo_path stringlengths 3 255 | max_stars_repo_name stringlengths 5 116 | max_stars_count int64 0 107k | id stringlengths 1 7 | content stringlengths 63 1.05M |
|---|---|---|---|---|
programs/oeis/254/A254642.asm | neoneye/loda | 22 | 51277 | <filename>programs/oeis/254/A254642.asm<gh_stars>10-100
; A254642: Third partial sums of eighth powers (A001016).
; 1,259,7335,86765,629174,3314178,13906578,49183590,152191935,422931613,1075761505,2540663307,5633367740,11829663860,23692442292,45516670332,84278105421,150996708135,262656041515,444856105561,735419759634,1... |
Bootloader/Stage2/Stage2.asm | Archlisk/fos2 | 0 | 51278 | [BITS 16]
SECTION .entry
jmp start
%include "BIOS_String.asm"
%include "Filesystem.asm"
%include "A20.asm"
%include "GDT.asm"
SECTION .text
global start
start:
mov [stage2_blocks], ax
mov [stage2_addr], bx
mov [fsvd_addr], cx
mov [boot_drive], dl
mov sp, stack_top
; Load the fsvd from stage 1
mov ax, [f... |
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_498.asm | ljhsiun2/medusa | 9 | 51279 | <filename>Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0_notsx.log_21829_498.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x7fbb, %rsi
lea addresses_A_ht+0x5087, %rdi
nop
nop
nop
nop
nop
add %r12, %r12
mov $20, %rcx
rep movsq
nop
nop... |
libsrc/_DEVELOPMENT/ctype/c/sdcc_iy/isalpha_fastcall.asm | meesokim/z88dk | 0 | 51280 | <gh_stars>0
; int isalpha_fastcall(int c)
SECTION code_ctype
PUBLIC _isalpha_fastcall
EXTERN asm_isalpha, error_zc
_isalpha_fastcall:
inc h
dec h
jp nz, error_zc
ld a,l
call asm_isalpha
ld l,h
ret c
inc l
ret
|
libsrc/stdio/ansi/osca/f_ansi_scrollup.asm | meesokim/z88dk | 0 | 51281 | ;
; OSCA C Library
;
; ANSI Video handling
;
; Scrollup
;
; <NAME> - June 2012
;
; $Id: f_ansi_scrollup.asm,v 1.2 2015/01/19 01:33:18 pauloscustodio Exp $
;
PUBLIC ansi_SCROLLUP
INCLUDE "flos.def"
.ansi_SCROLLUP
jp kjt_scroll_up
|
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_411.asm | ljhsiun2/medusa | 9 | 51282 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x16a23, %r8
nop
dec %rcx
mov $0x6162636465666768, %rbx
movq %rbx, (%r8)
nop
nop
and %r14, %r14
lea addresses_normal_ht+0x15b23, %rsi
lea addresses_D_ht+0x4a23, %rdi
nop
nop
no... |
test/jcc/jcc.asm | leonardo-ono/asm4mo | 10 | 51284 | org 32768
bits 16
mov ax, 1
mov bx, 1
cmp ax, bx
JO label
JNO label
JB label
JC label
JNAE label
JAE label
JNB label
JNC label
JNE label
JNZ label
JBE label
JNA label
JA label
JNBE label
JS label
JNS label
JP label
JPE label
JNP label
JPO lab... |
IV Semester/Microprocessor_Lab/1A_Binary_Search/BSearch.asm | ckraju/CSE-Lab-Manual | 2 | 51285 | <filename>IV Semester/Microprocessor_Lab/1A_Binary_Search/BSearch.asm
.model small
.data
key db ?
A db 05h,03h,07d,04h,01h
l db $-A
m db 10,13,"Enter the key to be searched: $"
m1 db 10,13,'The key was Found$'
m2 db 10,13,'Key not found$'
.code
mov ax,@data
mov ds,ax
lea dx,m
call printf
call ... |
F0xC_WIN/include/util/setConsoleTitle.asm | Pusty/F0xC | 0 | 51286 | <gh_stars>0
%ifndef SET_CONSOLE_TITLE
%define SET_CONSOLE_TITLE
%ifndef _SETCONSOLETITLE
extern _SetConsoleTitleA@4
%endif
;1 args (string addr)
;example push string\ call setTitle
;_SetConsoleTitleA@4 in kernel32
;std_addr = ADDR TEMP STORAGE
;str_tmp = 16 byte reserved
;std_handle = STD OUTPUT HANDLE
setCon... |
test/triangle.asm | yurirocha15/sbTradutor | 0 | 51287 | <gh_stars>0
; @file triangle.asm
; @author <NAME>
; @date 07/05/2014
;
; @brief Calculate a triangle area (base and area are given by input)
SECTION DATA
B: SPACE
H: SPACE
R: SPACE
TWO: CONST 2
SECTION TEXT
INPUT B
INPUT H
LOAD B
MULT H
DIV TWO
STORE R
OUTPUT R
STOP |
oeis/083/A083082.asm | neoneye/loda-programs | 11 | 51288 | <filename>oeis/083/A083082.asm<gh_stars>10-100
; A083082: First subdiagonal of number array A083075.
; Submitted by <NAME>
; 1,5,61,1065,23801,650893,21120373,794552657,34040573425,1637411510421,87420145670573,5131440522974329,328542298690792681,22789709877615373085,1702810951672313083621,136361486383932674632353,11652... |
programs/oeis/092/A092168.asm | neoneye/loda | 22 | 51289 | <reponame>neoneye/loda<filename>programs/oeis/092/A092168.asm<gh_stars>10-100
; A092168: Primes congruent to 3 (modulo 19).
; 3,41,79,193,269,307,383,421,839,877,953,991,1181,1409,1447,1523,1637,1789,1979,2017,2131,2207,2473,2549,2663,2777,3119,3271,3347,3461,3499,3613,3727,3803,3917,4259,4297,4373,4639,4943,5171,5209,... |
oeis/091/A091095.asm | neoneye/loda-programs | 11 | 51290 | ; A091095: Expansion of (1+4x-24x^2)/((1-4x)(1+4x)).
; 1,4,-8,64,-128,1024,-2048,16384,-32768,262144,-524288,4194304,-8388608,67108864,-134217728,1073741824,-2147483648,17179869184,-34359738368,274877906944,-549755813888,4398046511104,-8796093022208,70368744177664
sub $1,$0
mul $0,2
add $0,1
gcd $1,2
trn $0,$1
mov $2,... |
oeis/279/A279127.asm | neoneye/loda-programs | 11 | 51291 | <gh_stars>10-100
; A279127: a(n) = Sum_{0<=m<n} Product_{-m<=j<=m} (n-j).
; Submitted by <NAME>
; 0,1,8,147,5824,405845,43733976,6726601063,1398047697152,377278848390249,128228860181918440,53585748788874537851,27001973543813627400768,16144773936121968789213757,11300021011239061076228900024,91521626398270977806621740195... |
Principles-of-Assembly-and-Compilation/hw4/hw4-1.asm | DictXiong/THUCourse | 0 | 51292 | <reponame>DictXiong/THUCourse
;
; <NAME> is learning asm
.386
.model flat, stdcall
.stack 4096
ExitProcess proto, dwExitCode:dword
includelib msvcrt.lib
printf proto c : ptr sbyte, : vararg
.data
ShowParams_message_b byte "Address %.8X = %.8X", 0dh, 0ah, 0
ShowParams_message_a byte "Stack parameters:", 0dh, 0ah, "--... |
projects/vmt/scratch/gte.asm | RobertCurry0216/nand2tetris | 0 | 51293 | <filename>projects/vmt/scratch/gte.asm
// gte
// load top of stack into D
@SP
AM=M-1
D=M
// check
A=A-1
D=M-D
// in not greater
@is-gt
D;JGT
@end
D=0;JMP
// is greater
(is-gt)
D=-1
(end)
@SP
A=M-1
M=D |
oeis/208/A208651.asm | neoneye/loda-programs | 11 | 51294 | ; A208651: Number of paths through the subset array whose trace is a permutation of (1,2,...,n); see Comments.
; Submitted by <NAME>
; 1,2,12,216,11520,1800000,816480000,1067311728000,3996990937497600,42672954793151692800,1293547461212160000000000,110950032218933108678400000000,26847804299643702075375747072000000
mov ... |
main.asm | HummusPrince/Semyon | 1 | 51295 | .module main
.title "main code"
;Def file includes
.include "define.def"
.include "macro.def"
.area CODE(REL)
main:
;This is the state machine that controls Semyon's logic.
mov a, V_STATE
s_initialize:
cjne a, #S_INITIALIZE, s_display_sequence
lcall initialize
sjmp main
s_display_sequence:
cjne a, #S_DIS... |
src/extended/arch/64bit.asm | abxxbo/biboot | 4 | 51296 | <filename>src/extended/arch/64bit.asm
;; 64bit asm functions for everything you need before loading your
;; 64bit kernel
;; Setup floating point numbers
;; https://wiki.osdev.org/SSE
_activate_sse:
mov rax, cr0
and ax, 0b11111101
or ax, 0b00000001
mov cr0, rax
mov rax, cr4
or ax, 0b1100000000
mov cr4, rax
... |
Driver/Printer/PrintCom/Cursor/cursorSetCursorCapsl.asm | steakknife/pcgeos | 504 | 51297 |
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: LBP print driver
FILE: cursorSetCursorCapsl.asm
AUTHOR: <NAME>
ROUTINES:
Name Description
---- -----------
REVISION HISTO... |
programs/oeis/174/A174008.asm | jmorken/loda | 1 | 51298 | <reponame>jmorken/loda<gh_stars>1-10
; A174008: n-th prime plus n-th even nonnegative nonprime.
; 2,7,11,15,21,25,31,35,41,49,53,61,67,71,77,85,93,97,105,111,115,123,129,137,147,153,157,163,167,173,189,195,203,207,219,223,231,239,245,253,261,265,277,281,287,291,305,319,325,329,335,343,347,359,367,375
mov $3,$0
cal $0,... |
_incObj/4C & 4D Lava Geyser Maker.asm | kodishmediacenter/msu-md-sonic | 9 | 51299 | <filename>_incObj/4C & 4D Lava Geyser Maker.asm
; ---------------------------------------------------------------------------
; Object 4C - lava geyser / lavafall producer (MZ)
; ---------------------------------------------------------------------------
GeyserMaker:
moveq #0,d0
move.b obRoutine(a0),d0
move.w GM... |
src/mapinfo.asm | RupertAvery/WillowPatch | 0 | 51300 | <filename>src/mapinfo.asm<gh_stars>0
LOCATION_OFFSETS:
.db LOCATION_0 - LOCATION_0
.db LOCATION_1 - LOCATION_0
.db LOCATION_2 - LOCATION_0
.db LOCATION_3 - LOCATION_0
.db LOCATION_4 - LOCATION_0
.db LOCATION_5 - LOCATION_0
.db LOCATION_6 - LOCATION_0
.db LOCATION_7 - LOCATION_0
.db LOCATION_8 - LOCATION_0
.db LOCATION_... |
matlab_ext/code-miners/projects/prepro/test-data/pb/Main.asm | zaqwes8811/coordinator-tasks | 0 | 51301 | <filename>matlab_ext/code-miners/projects/prepro/test-data/pb/Main.asm<gh_stars>0
; rev...1 добав обрабока отказа по Т., если есть отк по темпер - то ничего не сбрасываем и RETURN
; Сброс отк по T выкл пит блока. отпускание атт только по комманде _ON. Введена задержка отрускания атт. после
; загрузки смещения 20мк... |
source/features/ports.asm | feliposz/FelipOS | 0 | 51302 | <gh_stars>0
; ==========================================================
; os_port_byte_out -- Send byte to a port
; IN: DX = port address, AL = byte to send
os_port_byte_out:
out dx, al
ret
; ==========================================================
; os_port_byte_in -- Receive byte from a port
; IN: DX = po... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1976.asm | ljhsiun2/medusa | 9 | 51303 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x42bf, %r9
nop
nop
and %r11, %r11
mov (%r9), %edx
nop
nop
nop
nop
nop
and %rdx, %rdx
lea addresses_normal_ht+0x1d1d3, %rcx
nop
nop
nop
nop
nop
and %r13, %r13
mov (%rcx), %ax
n... |
oeis/272/A272126.asm | neoneye/loda-programs | 11 | 51305 | <reponame>neoneye/loda-programs
; A272126: a(n) = 120*n^3 + 60*n^2 + 2*n + 1.
; 1,183,1205,3787,8649,16511,28093,44115,65297,92359,126021,167003,216025,273807,341069,418531,506913,606935,719317,844779,984041,1137823,1306845,1491827,1693489,1912551,2149733,2405755,2681337,2977199,3294061,3632643,3993665,4377847,4785909,... |
Transynther/x86/_processed/AVXALIGN/_ht_st_zr_un_/i7-7700_9_0x48.log_21829_1044.asm | ljhsiun2/medusa | 9 | 51306 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0xcc0a, %rcx
add %r13, %r13
movl $0x61626364, (%rcx)
add %rdi, %rdi
lea addresses_WT_ht+0x418e, %r14
nop
nop
add $4730, %rbx
mov (%r14), %bp
nop
nop
nop
nop
nop
add %r14, %r14
... |
Assembly/Microprocessor/Pattern-LED.asm | TashreefMuhammad/University_Miscellaneous_Codes | 3 | 51307 | <gh_stars>1-10
; ******************************************************
; * EXPERIMENT N0.: 1 *
; * GROUP NO. : 1 *
; * TOPIC : DISPLAYING A SPECIAL PATTERN USING *
; * 4 LED DISPLAY *
; ****************... |
oeis/143/A143750.asm | neoneye/loda-programs | 11 | 51308 | ; A143750: a(n)=10^C(n,2)*(1-10^n)/9.
; Submitted by <NAME>
; 0,-1,-110,-111000,-1111000000,-111110000000000,-111111000000000000000,-1111111000000000000000000000,-111111110000000000000000000000000000,-111111111000000000000000000000000000000000000
mov $2,10
mov $3,1
lpb $0
sub $0,1
mul $1,$2
sub $1,$3
mul $3,$2... |
programs/oeis/156/A156842.asm | neoneye/loda | 22 | 51310 | <filename>programs/oeis/156/A156842.asm
; A156842: 529n^2 - 746n + 263.
; 46,887,2786,5743,9758,14831,20962,28151,36398,45703,56066,67487,79966,93503,108098,123751,140462,158231,177058,196943,217886,239887,262946,287063,312238,338471,365762,394111,423518,453983,485506,518087,551726,586423,622178,658991,696862,735791,77... |
game/graphics.asm | jorgemb/cell-wars-asm | 0 | 51311 | <filename>game/graphics.asm
;###########################################;
; Graphics management library, and assets. ;
;###########################################;
.DATA
; DATA FOR PHAGE IMAGE
; Structure is this way:
; - byte Width (in pixels)
; - byte Height (in pixels)
; TOTAL: 2 bytes per image header
IMAGE_WI... |
C5515_Support_Files/C5515_Lib/dsplib_2.40.00/55x_src/hilb16.asm | HeroSizy/Sizy | 0 | 51312 | ;***********************************************************
; Version 2.40.00
;***********************************************************
; Function: hilb16
; Processor: C55xx
; Description: Hilbert tansformer using FIR filter - single MAC approach
;
;
; Useage:... |
src/multiplayer_units_placing.asm | mvdhout1992/ts-patches | 33 | 51313 | %include "macros/patch.inc"
%include "macros/datatypes.inc"
%include "TiberianSun.inc"
%include "string_macros.inc"
cglobal UsedSpawnsArray
@LJMP 0x00658658, _UnitClass__Read_INI_Get_HouseType_From_Name_SpawnX
@LJMP 0x00434843, _BuildingClass__Read_INI_Get_HouseType_From_Name_SpawnX
@LJMP 0x004D7B9A, _InfantryClass__... |
programs/oeis/228/A228797.asm | karttu/loda | 0 | 51316 | <filename>programs/oeis/228/A228797.asm
; A228797: Number of 2 X n binary arrays with top left element equal to 1 and no two ones adjacent horizontally or nw-se.
; 2,2,8,16,42,98,240,576,1394,3362,8120,19600,47322,114242,275808,665856,1607522,3880898,9369320,22619536,54608394,131836322,318281040,768398400,1855077842,44... |
oeis/116/A116411.asm | neoneye/loda-programs | 11 | 51318 | <gh_stars>10-100
; A116411: Coefficient of x^n in the expansion of (1+x+x^3)^n.
; Submitted by <NAME>
; 1,1,1,4,13,31,76,211,589,1597,4351,12046,33496,93094,259351,725089,2031709,5701189,16023181,45104044,127134283,358764613,1013494318,2865933907,8111573416,22977551656,65138143006,184789086106,524571000799,149004426250... |
programs/oeis/008/A008648.asm | karttu/loda | 0 | 51320 | <filename>programs/oeis/008/A008648.asm
; A008648: Molien series of 3 X 3 upper triangular matrices over GF( 5 ).
; 1,1,1,1,1,2,2,2,2,2,3,3,3,3,3,4,4,4,4,4,5,5,5,5,5,7,7,7,7,7,9,9,9,9,9,11,11,11,11,11,13,13,13,13,13,15,15,15,15,15,18,18,18,18,18,21,21,21,21,21,24,24,24,24,24,27,27,27,27,27,30,30,30,30,30,34,34,34,34,34... |
oeis/034/A034517.asm | neoneye/loda-programs | 11 | 51322 | ; A034517: Sum of n-th powers of divisors of 10.
; Submitted by <NAME>
; 4,18,130,1134,10642,103158,1015690,10078254,100390882,1001953638,10009766650,100048830174,1000244144722,10001220711318,100006103532010,1000030517610894,10000152587956162,100000762939584198,1000003814697527770,10000019073486852414,10000009536743268... |
data/pokemon/base_stats/skorupi.asm | TastySnax12/pokecrystal16-493-plus | 2 | 51323 | db 0 ; species ID placeholder
db 40, 50, 90, 65, 30, 55
; hp atk def spd sat sdf
db POISON, BUG ; type
db 120 ; catch rate
db 66 ; base exp
db NO_ITEM, POISON_BARB ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/skorupi... |
intel-avx2/matmul/matmul.asm | yanyh15/vectorization-examples | 0 | 51324 | section .data
i: dd 0
j: dd 0
k: dd 0
size: dd 4
section .bss
A: resq 1
B: resq 1
C: resq 1
buf: resq 1
section .text
global matmul
; The addition function
add:
xor rax, rax
vmovups ymm0, [buf] ; Load the first eight values
add_chk:
add eax, 8
cmp eax, [size]
jg add_done
add8:
vaddps ymm0, ymm0... |
programs/oeis/084/A084153.asm | neoneye/loda | 22 | 51326 | <filename>programs/oeis/084/A084153.asm
; A084153: Binomial transform of a Jacobsthal convolution.
; 0,0,1,6,33,170,861,4326,21673,108450,542421,2712446,13562913,67815930,339082381,1695417366,8477097753,42385510610,211927596741,1059638071086,5298190530193,26490953000490,132454765701501,662273829905606
lpb $0
sub $0,... |
programs/oeis/269/A269244.asm | neoneye/loda | 22 | 51327 | ; A269244: Number of times the digit 4 appears in the decimal expansion of n^3.
; 0,0,0,0,1,0,0,1,0,0,0,0,0,0,2,0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,1,1,1,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,1,1,2,0,0,0,0,0,0,0,0,1,2,1,1,0,2,0,1,0,1,0,2,1,1,1,2,1,0,2,0,0,1,1,0,0,1,1,0,0,0,1,1
pow $0,3
lpb $0
mov $2,$0
div $0,10
mod $... |
R5/TiHal/source/HL_sys_stack.asm | genemerewether/fprime | 5 | 51328 | <reponame>genemerewether/fprime<gh_stars>1-10
; ======================================================================
; \title HL_sys_stack.asm
; \author kubiak
; \brief asm file for check stack usage
;
; \copyright
; Copyright 2009-2015, by the California Institute of Technology.
; ALL RIGHTS RESERVED. United Stat... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48_notsx.log_14_1084.asm | ljhsiun2/medusa | 9 | 51329 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r14
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0xddb2, %r12
nop
nop
nop
nop
cmp $527, %rbx
mov $0x6162636465666768, %r11
movq %r11, %xmm2
vmovups %ymm2, (%r12)
nop
nop
nop
nop
nop
and $41080, %r14
... |
oeis/140/A140520.asm | neoneye/loda-programs | 11 | 51330 | <reponame>neoneye/loda-programs
; A140520: a(n) = binomial(n+9, 9)*5^n.
; 1,50,1375,27500,446875,6256250,78203125,893750000,9496093750,94960937500,902128906250,8201171875000,71760253906250,607202148437500,4987731933593750,39901855468750000,311733245849609375
mov $1,5
pow $1,$0
mov $2,$0
add $2,9
bin $2,$0
mul $1,$2
mo... |
test/asm/zp3.asm | Galfodo/SIDdecompiler | 11 | 51331 |
* = $1000
mode = 0
test = 0
multi = 0
jmp init
dowork:
lda word_ready
bne read_next_char
ldx sentence_pos
readaddr:
lda $ffff,x
cmp #$ff
bne sentence_not_done
lda #1
sta is_done
rts
sentence_not_done:
asl
tax
lda wordlist, x
sta current_word
lda wordlist+1, x
sta current_word+1
inc ... |
programs/oeis/131/A131270.asm | neoneye/loda | 22 | 51335 | <filename>programs/oeis/131/A131270.asm
; A131270: Triangle T(n,k) = 2*A046854(n,k) - 1, read by rows.
; 1,1,1,1,1,1,1,3,1,1,1,3,5,1,1,1,5,5,7,1,1,1,5,11,7,9,1,1,1,7,11,19,9,11,1,1,1,7,19,19,29,11,13,1,1,1,9,19,39,29,41,13,15,1,1,1,9,29,39,69,41,55,15,17,1,1,1,11,29,69,69,111,55,71,17,19,1,1,1,11,41,69,139,111,167,71,8... |
sdk-6.5.16/tools/led/example/ex3.asm | copslock/broadcom_cpri | 0 | 51336 | <filename>sdk-6.5.16/tools/led/example/ex3.asm<gh_stars>0
;
;
; This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file.
;
; Copyright 2007-2019 Broadcom Inc. All rights reserved.
;
;
;Here is an example program for programming the LEDs on the... |
Arithmetic Program/AritmeticSequence.asm | MINHDUC1996/AssemblyFundamental | 1 | 51337 | <filename>Arithmetic Program/AritmeticSequence.asm<gh_stars>1-10
include \masm32\include\masm32rt.inc
.code
start:
call main
exit
;-------------------------
main proc
LOCAL varN:DWORD
LOCAL varD:DWORD
LOCAL varU:DWORD
LOCAL result: DWORD
mov varU, sval(input("Var U1 = "))
mov varD, sval(input("Var D = ... |
oeis/202/A202116.asm | neoneye/loda-programs | 11 | 51338 | <gh_stars>10-100
; A202116: Numbers n such that 90n + 89 is prime.
; Submitted by <NAME>
; 0,1,2,3,4,7,8,13,15,17,18,20,21,22,25,28,29,30,31,32,36,41,44,45,46,48,51,55,58,59,62,64,65,66,69,70,72,73,77,78,83,84,86,87,88,92,97,99,105,106,107,111,112,113,116,118,119,120,121,122,123,127,129
mov $1,1
mov $2,$0
add $2,2
pow... |
Disk.info.asm | nicodex/HelloAmi | 16 | 51339 | <filename>Disk.info.asm<gh_stars>10-100
; vasmm68k_mot[_<HOST>] -Fbin -o Disk.info Disk.info.asm
DiskInfo:
;
; DiskObject
;
dc.w $E310 ; do_Magic = WB_DISKMAGIC
dc.w 1 ; do_Version = WB_DISKVERSION
dc.l 0 ; do_Gadget+gg_NextGadget
dc.w 0,0 ; do_Gadget+gg_L... |
programs/oeis/103/A103452.asm | neoneye/loda | 22 | 51340 | <reponame>neoneye/loda<gh_stars>10-100
; A103452: Inverse of number triangle A103451.
; 1,-1,1,-1,0,1,-1,0,0,1,-1,0,0,0,1,-1,0,0,0,0,1,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0
seq $0,48151 ; Tri... |
tests/test_load_sp.asm | CatpainBlack/FantASM | 4 | 51341 | org 32768
start
ld sp,0
inc sp
add hl,sp
dec sp
ex (sp),hl
ld sp,hl
sbc hl,sp
ld (0xffff),sp
add hl,sp
ld sp,(0xffff)
add ix,sp
ex (sp),ix
ld sp,ix
add iy,sp
ex (sp),iy
ld sp,iy
ld (store),sp
ld sp,(store)
ret
store db 0,0
|
programs/oeis/005/A005997.asm | neoneye/loda | 22 | 51342 | ; A005997: Number of paraffins.
; 1,3,10,20,39,63,100,144,205,275,366,468,595,735,904,1088,1305,1539,1810,2100,2431,2783,3180,3600,4069,4563,5110,5684,6315,6975,7696,8448,9265,10115,11034,11988,13015,14079,15220,16400,17661,18963,20350,21780,23299,24863,26520,28224,30025,31875,33826,35828,37935,40095,42364,44688,47125,... |
constants/tileset_constants.asm | AtmaBuster/pokeplat-gen2 | 6 | 51344 | ; Tilesets indexes (see data/tilesets.asm)
const_def 1
const TILESET_SINNOH_1 ; 01 WEST SINNOH 1 (TWINLEAF, SANDGEM, JUBILIFE)
const TILESET_SINNOH_2 ; 02 WEST SINNOH 2 (OREBURGH, ETERNA)
const TILESET_PLAYERS_ROOM ; 03 TWINLEAF 2F
const TILESET_PLAYERS_HOUSE ; 04 TWINLEAF 1F... |
MAR-8051-assembly/square_16_bit.asm | rpatrik96/embedded-software | 1 | 51345 | ; <NAME>
; W5PDBR
; Feladatkiírás:
;Regiszterekben kapott 16 bites előjel nélküli szám négyzetre emelése, túlcsordulás figyelése.
;Az eredmény is 16 biten legyen ábrázolva, a túlcsordulás ennek figyelembevételével állítandó.
;Bemenet: 2 regiszterben a szám.
;Kimenet: 2 regiszterben az eredmény, CY
;Megfontolások:
;a ... |
kernel/core.asm | Anne1231/yurios | 1 | 51346 | <filename>kernel/core.asm
[BITS 32]
;自由に使っていい32bitレジスタeax, ecx, edx 32ビットモード用の機械語を作らせる
; オブジェクトファイルのための情報
; このプログラムに含まれる関数名
global io_hlt, io_cli, io_sti, io_stihlt
global io_in8, io_in16, io_in32
global io_out8, io_out16, io_out32
global io_load_eflags, io_store_eflags
global load_gdtr, load_idtr, load_esp
gl... |
iksoksdev.asm | Bole032/ZX-Spectrum-IksOks | 1 | 51347 | <filename>iksoksdev.asm
org 32768
;================================================
;------by Bosko---<NAME>----17.2.2019.------
;------updated----22.2.2019.---------------------
;================================================
;1|2|3
;4|5|6 0-exit
;7|8|9
call nacrtaj_tablu
ld a,0
ld (brojac),a ... |
_build/dispatcher/jmp_ippsECCPComparePoint_003d1438.asm | zyktrcn/ippcp | 1 | 51348 | extern m7_ippsECCPComparePoint:function
extern n8_ippsECCPComparePoint:function
extern y8_ippsECCPComparePoint:function
extern e9_ippsECCPComparePoint:function
extern l9_ippsECCPComparePoint:function
extern n0_ippsECCPComparePoint:function
extern k0_ippsECCPComparePoint:function
extern ippcpJumpIndexForMergedLibs
exter... |
oeis/021/A021561.asm | neoneye/loda-programs | 11 | 51349 | <gh_stars>10-100
; A021561: Decimal expansion of 1/557.
; Submitted by <NAME>(s4.)
; 0,0,1,7,9,5,3,3,2,1,3,6,4,4,5,2,4,2,3,6,9,8,3,8,4,2,0,1,0,7,7,1,9,9,2,8,1,8,6,7,1,4,5,4,2,1,9,0,3,0,5,2,0,6,4,6,3,1,9,5,6,9,1,2,0,2,8,7,2,5,3,1,4,1,8,3,1,2,3,8,7,7,9,1,7,4,1,4,7,2,1,7,2,3,5,1,8,8,5
add $0,1
mov $2,10
pow $2,$0
div $2,... |
text/DialogData.asm | sleepingburrito/BackIsle | 1 | 51350 | SECTION "Dialog",ROMX,BANK[2]
Dialog001:
; ===============
; ===============
db DILOG_CHANGE_EXPRESSION, 0
db "A12345678912345",CHAR_NEW_LINE
db "B12345678912345",CHAR_NEW_LINE
db DILOG_CHANGE_EXPRESSION, 2
db "C12345678912345",CHAR_NEW_LINE
db "D12345678912345",CHAR_NEW_LINE
db DILOG_CHANGE_EXPRESSION,... |
oeis/176/A176158.asm | neoneye/loda-programs | 11 | 51351 | <filename>oeis/176/A176158.asm
; A176158: A polynomial coefficient sequence:p(x,n,m)=(1 + 2*Binomial[n, m]*x)^n
; Submitted by <NAME>
; 1,3,3,9,25,9,27,343,343,27,81,6561,28561,6561,81,243,161051,4084101,4084101,161051,243,729,4826809,887503681,4750104241,887503681,4826809,729,2187,170859375,271818611107,9095120158391,... |
libsrc/graphics/zx81/hr/mt_pixladdr.asm | jpoikela/z88dk | 640 | 51352 | <reponame>jpoikela/z88dk<filename>libsrc/graphics/zx81/hr/mt_pixladdr.asm
;--------------------------------------------------------------
; ZX81 HRG library for the Memotech expansion
; by <NAME>, Feb. 2010
;--------------------------------------------------------------
;
; $Id: mt_pixladdr.asm,v 1.5 2016-07-14 17:44:1... |
Library/SSMeta/ssmetaDataRecord.asm | steakknife/pcgeos | 504 | 51354 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: ssmetaDataRecord.asm
AUTHOR: <NAME>, Nov 5, 1992
ROUTINES:
Name Description
---- -----------
REVISI... |
tests/nasm/psubb.asm | Tuna0128/Tuna0128.github.io | 12,700 | 51355 | global _start
section .data
align 16
quad1:
dq 0x70ad80ad7fffffff
quad2:
dq 0x71ae01ff0f00ffbe
quad3:
dq 0xf100808080f0ff42
quad4:
dq 0x8000800080008000
mydword:
dd 0xcafebabe
myaddress:
dq 0x00adbeefc0de00ce
%include "header.inc"
movq mm0, [quad1]
movq mm1, [quad2]
movq mm2, [quad3]
movq mm3, [quad2]... |
oeis/067/A067497.asm | neoneye/loda-programs | 11 | 51356 | <reponame>neoneye/loda-programs
; A067497: Smallest power of 2 with n+1 digits (n>=0). Also numbers k such that 1 is the first digit of 2^k.
; 0,4,7,10,14,17,20,24,27,30,34,37,40,44,47,50,54,57,60,64,67,70,74,77,80,84,87,90,94,97,100,103,107,110,113,117,120,123,127,130,133,137,140,143,147,150,153,157,160,163,167,170,17... |
cartridge/mem_layout.asm | Gegel85/GBCGoogleMaps | 0 | 51357 | <gh_stars>0
; Crash handler
SECTION "rst 38h", ROM0
rst $38
SECTION "vblank", ROM0
ret
SECTION "hblank", ROM0
rst $38
SECTION "timer", ROM0
rst $38
SECTION "serial", ROM0
rst $38
SECTION "joypad", ROM0
rst $38
SECTION "Start", ROM0
nop
jp main
SECTION "Header", ROM0
ds $150 - $104
|
externals/mpir-3.0.0/mpn/powerpc64/sqr_diagonal.asm | JaminChan/eos_win | 12 | 51358 | dnl PowerPC-64 mpn_sqr_diagonal.
dnl Copyright 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU Lesser General Public License as published
dnl ... |
contracts/TheDivine.asm | letsgitcracking/thedivine | 22 | 51360 | <reponame>letsgitcracking/thedivine
; EVM Assembly TheDivine by <NAME> <<EMAIL>>
PUSH1 0x20
RETURNDATASIZE
CALLER
ORIGIN
XOR
PUSH1 0x0a
JUMPI
REVERT
JUMPDEST
DUP2
DUP2
DUP1
SLOAD
DUP3
NUMBER
SUB
BLOCKHASH
XOR
DUP2
MSTORE
SHA3
DUP2
SSTORE
RETURN |
pwnlib/shellcraft/templates/common/label.asm | IMULMUL/python3-pwntools | 325 | 51361 | <reponame>IMULMUL/python3-pwntools<gh_stars>100-1000
<%page args="prefix='label'"/>
<%docstring>
Returns a new unique label with a given prefix.
Args:
prefix (str): The string to prefix the label with
</%docstring>
<%!
label_num = 0
%>
<%
global label_num
label_num += 1
%>
${prefix}_${label_num}
|
Driver/Stream/stream.asm | steakknife/pcgeos | 504 | 51362 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Stream Driver
FILE: stream.asm
AUTHOR: <NAME>, Jan 9, 1990
ROUTINES:
Name Description
---- -----------
StreamStrategy Main entry point
... |
oeis/062/A062170.asm | neoneye/loda-programs | 11 | 51363 | <reponame>neoneye/loda-programs
; A062170: Maximum value of factorials mod n.
; Submitted by <NAME>
; 0,1,2,2,4,2,6,6,6,6,10,6,12,10,9,8,16,12,18,6,15,16,22,6,24,24,24,24,28,24,30,24,27,32,24,24,36,36,33,24,40,36,42,32,30,44,46,24,42,40,48,48,52,36,45,48,54,52,58,24,60,60,57,56,55,60,66,64,60,50,70,48,72,72,45,72,56,72... |
base/mvdm/dos/v86/cmd/exe2bin/e2binit.asm | npocmaka/Windows-Server-2003 | 17 | 51364 | ;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991
; * All Rights Reserved.
; */
Title E2BINIT(EXE2BIN)
;*****************************************************************************
; Loader for EXE files under 86-DOS
... |
src/sound/song330restored.asm | MusicTheorist/Mother2GbaTranslation | 1 | 51365 | <reponame>MusicTheorist/Mother2GbaTranslation
song330restored_pri equ 100
song330restored_rev equ 0
song330restored_mvl equ 127
song330restored_key equ 0
song330restored_tbs equ 1
song330restored_exg equ 0
song330restored_cmp equ 1
.align 4
;**************** Track 1 (Midi-Chn.7) ****************;
@song330r... |
programs/oeis/051/A051190.asm | neoneye/loda | 22 | 51366 | <filename>programs/oeis/051/A051190.asm<gh_stars>10-100
; A051190: a(n) = Product_{k=1..n-1} gcd(k,n).
; 1,1,1,2,1,12,1,16,9,80,1,3456,1,448,2025,2048,1,186624,1,1024000,35721,11264,1,573308928,625,53248,59049,179830784,1,1007769600000,1,67108864,7144929,1114112,37515625,160489808068608,1,4980736,89813529,3355443200000... |
DUARTlib.asm | TheTrueForce/IttiaraStandardHeaders | 0 | 51367 | <reponame>TheTrueForce/IttiaraStandardHeaders<filename>DUARTlib.asm
;DUARTlib.asm - Contains routines and constants to operate the 28L92 DUART.
;Is currently concerned only with serial transmission and reception, but will
;include the other functions as well, if necessary.
;====================== DEFINITIONS START ===... |
oeis/232/A232580.asm | neoneye/loda-programs | 11 | 51368 | <filename>oeis/232/A232580.asm
; A232580: Number of binary sequences of length n that contain at least one contiguous subsequence 011.
; Submitted by <NAME>(s1)
; 0,0,0,1,4,12,31,74,168,369,792,1672,3487,7206,14788,30185,61356,124308,251199,506578,1019920,2050785,4119280,8267216,16580799,33236622,66594636,133385689,267... |
Source/HBIOS/Config/RCZ80_kio.asm | vipoo/RomWBW | 1 | 51370 | ;
;==================================================================================================
; RC2014 Z80 STANDARD CONFIGURATION W/ KIO
;==================================================================================================
;
; THE COMPLETE SET OF DEFAULT CONFIGURATION SETTINGS FOR THIS PLAT... |
UP1/Algorithms/class10.asm | rubemfsv/Digital-Control-Systems | 0 | 51371 |
#INCLUDE<P16F84A.INC>
MEM EQU 0X2C ;memoria que vai ser incrementada pelas interrupcoes
TEMP EQU 0X2D
ORG 0X00
GOTO INICIO
ORG 0X04 ;as interrupções sempre levam para a posição 4
GOTO INTERRUPT
;--- A PARTIR DE 4 ENTRADAS NA PORTA B, AO PULS... |
libsrc/_DEVELOPMENT/math/float/math32/c/sccz80/cm32_sccz80_fsmax_callee.asm | jpoikela/z88dk | 0 | 51372 |
SECTION code_fp_math32
PUBLIC cm32_sccz80_fsmax_callee
EXTERN cm32_sccz80_fsread1_callee, m32_fsmax
; convert sccz80 float to infinity with correct sign
;
; enter : stack = sccz80_float number, ret
;
; exit : DEHL = sccz80_float(infinity)
;
; uses : af, bc, de, hl
cm32_sccz80_fsmax_... |
libsrc/_DEVELOPMENT/z80/z80/asm_z80_inp.asm | teknoplop/z88dk | 0 | 51373 | <filename>libsrc/_DEVELOPMENT/z80/z80/asm_z80_inp.asm<gh_stars>0
; ===============================================================
; Nov 2014
; ===============================================================
;
; uint8_t z80_inp(uint16_t port)
;
; Return byte read from 16-bit port address.
;
; =========================... |
P6/P6Judger - 100 testpoints/testpoint/testpoint94.asm | flyinglandlord/BUAA-CO-2021 | 5 | 51375 | ori $1, $0, 8
ori $2, $0, 12
ori $3, $0, 5
ori $4, $0, 0
sw $4, 0($0)
sw $2, 4($0)
sw $3, 8($0)
sw $3, 12($0)
sw $2, 16($0)
sw $2, 20($0)
sw $4, 24($0)
sw $3, 28($0)
sw $1, 32($0)
sw $1, 36($0)
sw $4, 40($0)
sw $3, 44($0)
sw $3, 48($0)
sw $4, 52($0)
sw $2, 56($0)
sw $4, 60($0)
sw $3, 64($0)
sw $3, 68($0)
sw $2, 72($0)
... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_4966_2803.asm | ljhsiun2/medusa | 9 | 51376 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1343a, %rsi
lea addresses_WC_ht+0x1c7b0, %rdi
nop
nop
nop
xor %r12, %r12
mov $115, %rcx
rep movsw
nop
nop
nop
nop
nop
xor %rbx, %rbx
lea addresses_WC_ht+0x1aca, %rdx
nop... |
libsrc/_DEVELOPMENT/arch/ts2068/display/z80/asm_tshr_saddr2cx.asm | RC2014Z80/z88dk | 8 | 51377 | <reponame>RC2014Z80/z88dk
; ===============================================================
; May 2017
; ===============================================================
;
; uchar tshr_saddr2cx(void *saddr)
;
; Character x coordinate corresponding to screen address.
;
; ==================================================... |
programs/oeis/111/A111132.asm | neoneye/loda | 22 | 51380 | <reponame>neoneye/loda
; A111132: a(n+1) = a(n) + (a(n) - a(n-1) + a(n) mod 10) mod 10 with a(0)=0 and a(1)=1.
; 1,3,8,11,15,24,27,27,34,35,41,48,53,61,70,79,87,92,99,105,106,113,113,116,125,129,132,137,139,140,141,143,148,151,155,164,167,167,174,175,181,188,193,201,210,219,227,232,239,245,246,253,253,256,265,269,272
... |
src/XenobladeChroniclesX/Mods/FrontierNavProbeMoneyQuantity/patch_money_qu.asm | lilystudent2016/cemu_graphic_packs | 1,002 | 51381 | [XCX_FN_MNY_QTY_ALL] ######################################################################
moduleMatches = 0xF882D5CF, 0x30B6E091, 0xAB97DE6B ; 1.0.1E, 1.0.2U, 1.0.1U
.origin = codecave
.int $mod
_money:
li r31, $mod
mullw. r31, r31, r3
blr
[XCX_FN_MNY_QTY] #########################################################... |
session_05/01-elaboratore/elaboratore.asm | DigiOhhh/LabArchitettura2-2017-2018 | 1 | 51382 | <filename>session_05/01-elaboratore/elaboratore.asm
.data
string1: .asciiz "Inserisci codice operazione: 1 (+), 2 (-), 3 (*), 4 (/): "
string2: .asciiz "Inserire intero: "
string3: .asciiz "Risultato: "
string4: .asciiz " , resto della divisione: "
.text
.globl main
main:
li $v0, 4 # print_string
... |
Test_Instr.asm | plageon/single_cycle_CPU | 1 | 51383 | <filename>Test_Instr.asm
lui $23,0x1004
ori $23,$23,0x0000
L0: lui $1,0x8000
ori $1,$1,0x2211 # $1=0x80002211
lui $2,0x2000
ori $2,$2,0x4433 # $2=0x20004433
add $3, $2, $1 # $3=0xa0006644
sw $3, 0($23) # 0($0)=0xa0006644
... |
smsq/atari/hwinit.asm | olifink/smsqe | 0 | 51384 | ; SMSQ Atari Hardware Initialisation V3
; 2003-05-18 3.01 added message language coinfig item (wl)
; Called with A7 a valid, safe stack
; The hardware is initialised.
; If d7 = 0 the RAM is setup.
; It returns pointer to config info in a2
; pointer to smsq write base routine in a3
; pointer to module ta... |
dist/zombie.asm | Mishal-Alajmi/XV6 | 0 | 51386 | <filename>dist/zombie.asm
_zombie: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(void)
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a:... |
operacoes.asm | gust-luiz/UnB_System-Software-projects | 0 | 51387 | SECTION TEXT
S_INPUT STRPOSITIVO,10
S_INPUT STRNEGATIVO,10
S_INPUT STRZERO,10
INPUT VALORES + 1
INPUT VALORES
Multiplicacao:LOAD VALORES + 1
MULT VALORES
STORE RESULTADOS
OUTPUT RESULTADOS
JMPP multpositivo
JMPN multnegativo
JMPZ multzero
multpositivo:
S_OUTPUT STRPOSITIVO,10
JMP adicao
multnegativo:
S_OUTPUT STR... |
programs/oeis/116/A116468.asm | neoneye/loda | 22 | 51388 | ; A116468: Permutation of natural numbers generated by 2-rowed array shown below.
; 2,3,1,6,4,7,5,10,8,11,9,14,12,15,13,18,16,19,17,22,20,23,21,26,24,27,25,30,28,31,29,34,32,35,33,38,36,39,37,42,40,43,41,46,44,47,45,50,48,51,49,54,52,55,53,58,56,59,57,62,60,63,61,66,64,67
mov $2,$0
lpb $2
add $0,1
trn $2,$0
lpe
ad... |
programs/oeis/103/A103355.asm | neoneye/loda | 22 | 51389 | <reponame>neoneye/loda<filename>programs/oeis/103/A103355.asm
; A103355: a(n) = n - floor( sqrt(prime(n) ).
; 0,1,1,2,2,3,3,4,5,5,6,6,7,8,9,9,10,11,11,12,13,14,14,15,16,16,17,18,19,20,20,21,22,23,23,24,25,26,27,27,28,29,30,31,31,32,33,34,34,35,36,37,38,39,39,40,41,42,43,44,45,45,46,47,48,49,49,50,51,52,53,54,54,55
mov... |
programs/oeis/322/A322171.asm | karttu/loda | 0 | 51390 | <reponame>karttu/loda<gh_stars>0
; A322171: Expansion of x*(3 + 5*x + x^2 + x^3)/((1 - x)^2*(1 + x^2)).
; 3,11,17,19,23,31,37,39,43,51,57,59,63,71,77,79,83,91,97,99,103,111,117,119,123,131,137,139,143,151,157,159,163,171,177,179,183,191,197,199,203,211,217,219,223,231,237,239,243,251,257,259,263,271,277,279,283,291,297... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1969.asm | ljhsiun2/medusa | 9 | 51392 | <filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1969.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x146a, %r14
nop
cmp $8037, %rdx
movb $0x61, (%r14)
nop
nop
nop
and %rd... |
oeis/026/A026027.asm | neoneye/loda-programs | 11 | 51393 | ; A026027: a(n) = number of (s(0), s(1), ..., s(2n-1)) such that s(i) is a nonnegative integer and |s(i) - s(i-1)| = 1 for i = 1,2,...,n, s(0) = 3, s(2n-1) = 6. Also a(n) = T(2n-1,n-2), where T is defined in A026022.
; Submitted by <NAME>
; 1,5,21,84,329,1274,4900,18768,71706,273581,1043119,3976700,15163785,57848910,22... |
zdrojaky/antivm/antivmware.asm | Zelvar/VSB-DP-TEXT | 0 | 51394 | VMwareTest:
enter 0,0
mov eax, 0x564D5868 ; VMXh
mov edx, 0x5658 ; VX (port)
in eax, dx
cmp ebx, 0x564D5868 ; VMXh
setz ecx
mov eax, ecx
ret
leave |
crypto/x86/streebog.asm | sttr00/crypto | 0 | 51395 | segment .text
global _streebog_add_512_inplace_impl
_streebog_add_512_inplace_impl:
mov ecx, [esp+4] ; out
mov edx, [esp+8] ; in
mov eax, [edx]
add [ecx], eax
mov eax, [edx+4]
adc [ecx+4], eax
mov eax, [edx+8]
adc [ecx+8], eax
mov eax, [edx+12]
adc [ecx+12], eax
mov eax, [... |
programs/oeis/087/A087058.asm | neoneye/loda | 22 | 51397 | <filename>programs/oeis/087/A087058.asm
; A087058: Smallest square number greater than 2*n^2.
; 4,9,25,36,64,81,100,144,169,225,256,289,361,400,484,529,625,676,729,841,900,1024,1089,1156,1296,1369,1521,1600,1764,1849,1936,2116,2209,2401,2500,2601,2809,2916,3136,3249,3364,3600,3721,3969,4096,4356,4489
seq $0,87057 ; Sm... |
lib/chibiakumas/SrcALL/Akuyou_Multiplatform_Interrupt_Start.asm | gilbertfrancois/msx | 0 | 51398 | <reponame>gilbertfrancois/msx<filename>lib/chibiakumas/SrcALL/Akuyou_Multiplatform_Interrupt_Start.asm<gh_stars>0
InterruptHandler:
ifdef Interrupts_AllowStackMisuse
exx
pop hl
ld (InterruptPlusSPRestore_Plus2-2),sp
ld (InterruptReturn_Plus2-2),hl
exx
push de
exx
ld sp,Interrupt_ShadowStack
ex... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.