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 |
|---|---|---|---|---|
led4.asm | onnoeberhard/avr-projects | 0 | 51523 | .include "m8def.inc"
ldi r16, $FF
out DDRB, r16
ldi r16, 0b00000001
ldi r20, 0b00000010
loop:
mov r21, r16
out PORTB, r21
; Pause
ldi r17, $FF
WGLOOP0: ldi r18, $FF
WGLOOP1: dec r18
brne WGLOOP1
dec r17
brne WGLOOP0
cpi r16, 0... |
programs/oeis/134/A134990.asm | jmorken/loda | 1 | 51524 | ; A134990: Interleave two arithmetic progressions 8,10,12,14,... and 15,13,11,9,... of differences +2 and -2 respectively.
; 8,15,10,13,12,11,14,9,16,7,18,5,20,3,22,1,24,-1,26,-3,28,-5,30,-7,32,-9,34,-11,36,-13,38,-15,40,-17,42,-19,44,-21,46,-23,48,-25,50,-27,52,-29,54,-31,56,-33,58,-35,60,-37,62,-39,64,-41,66,-43,68,-... |
ps.asm | tgv2002/xv6-OS-modified | 0 | 51526 | <gh_stars>0
_ps: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
struct proc_info pinfo[NPROC];
int main(int argc, char* argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55... |
sw/552tests/inst_tests/xori_3.asm | JPShen-UWM/ThreadKraken | 1 | 51527 | // Original test: ./rbatterm/hw4/problem6/xori_3.asm
// Author: rbatterm
// Test source code follows
// test imm ones, reg zero
lbi r2, 31 //11111
xori r1, r2, 0 //00000
halt //= 11111
|
Win32/Win32.Beagle/CplStub.asm | fengjixuchui/Family | 3 | 51528 | <reponame>fengjixuchui/Family
; -------------------------------------------
; Do not modify:
; There are some dependent offsets in CPL.asm
; -------------------------------------------
; #########################################################################
.486
.model flat, stdcall
... |
Variables.asm | DevEd2/JetpackDude | 4 | 51530 | ; ================================================================
; Variables
; ================================================================
if !def(incVars)
incVars set 1
SECTION "Variables",BSS
; ================================================================
; Global variables
; ============================... |
dv3/qlsd/hd_poll_check.asm | olifink/smsqe | 0 | 51531 | <gh_stars>0
; DV3 QLSD polling routine
;
; 2018-06-10 1.01 Clear new crdused flag on timeout (MK)
section dv3
xdef hd_poll_check
xref hd_poll
include 'dev8_dv3_qlsd_keys'
include 'dev8_keys_sys'
;+++
; Polling Interrupt Routine
;---
hd_poll_check
tst.b hdl_actm(a3) ; action counter timed out?
bne.s hd_ch... |
tests/test_macros.asm | CatpainBlack/FantASM | 4 | 51532 | <reponame>CatpainBlack/FantASM<gh_stars>1-10
org 32768
macro cls fore,back
ld hl,fore
ld de,back
.loop djnz .loop
ret
endm
init:
cls 0x12,(0xffff-init)
cls 0,0
|
programs/oeis/130/A130656.asm | karttu/loda | 1 | 51533 | <reponame>karttu/loda<filename>programs/oeis/130/A130656.asm
; A130656: Interlacing n^3/2 and n^2(n + 1)/2.
; 1,4,18,32,75,108,196,256,405,500,726,864,1183,1372,1800,2048,2601,2916,3610,4000,4851,5324,6348,6912,8125,8788,10206,10976,12615,13500,15376,16384,18513,19652,22050,23328,26011,27436,30420,32000,35301,37044
mo... |
cwiczenia2/iloczyn_c.asm | adamczykpiotr/AGH_WIMiIP_Architektury_Komputerow | 1 | 51536 | extern scanf
extern printf
section .data
format db "%d",0
napis db "Wprowadz pierwsza liczbe: ",0
napis2 db "Wprowadz druga liczbe: ",0
liczba dd 0
liczba2 dd 0
iloczyn dd 1
format2 db "Iloczyn przedzialu wynosi %d.",10,0
section .text
global main
main:
xor rax, rax
mov rdi, napis
call printf
xor ra... |
stressfs.asm | douglasbreyer/StrideXV6 | 0 | 51537 | <reponame>douglasbreyer/StrideXV6
_stressfs: formato de ficheiro elf32-i386
Desmontagem da secção .text:
00000000 <main>:
#include "fs.h"
#include "fcntl.h"
int
main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc ... |
test/bank_access_simple.asm | MichalPleban/6509-test | 2 | 51539 | <reponame>MichalPleban/6509-test<gh_stars>1-10
.include "src/defs.inc"
.export bank_access_simple
; --------------------------------------------------------------------------
;
; Test simple memory access in another bank.
;
; 1. Save $55 to $10100 using indirect (bank) access.
; 2. Save $AA to $0100 in exec... |
libsrc/_DEVELOPMENT/l/z80/l_offset_ix_de.asm | meesokim/z88dk | 0 | 51540 | <gh_stars>0
SECTION code_l
PUBLIC l_offset_ix_de
l_offset_ix_de:
; enter : hl = offset
;
; exit : de = ix
; hl = ix + offset
push ix
pop de
add hl,de
ret
|
cards/bn6/ItemCards/137-E012 Ms. Zap's Bodyguards.asm | RockmanEXEZone/MMBN-Mod-Card-Kit | 10 | 51541 | <gh_stars>1-10
.include "defaults_item.asm"
table_file_jp equ "exe6-utf8.tbl"
table_file_en equ "bn6-utf8.tbl"
game_code_len equ 3
game_code equ 0x4252354A // BR5J
game_code_2 equ 0x42523545 // BR5E
game_code_3 equ 0x42523550 // BR5P
card_type equ 0
card_id equ 12
card_no equ "012"
card_sub equ "Item Card... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_821.asm | ljhsiun2/medusa | 9 | 51542 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1d1a8, %rsi
add %r12, %r12
mov $0x6162636465666768, %rdx
movq %rdx, %xmm4
and $0xffffffffffffffc0, %rsi
movaps %xmm4, (%rsi)
nop
add $2056, %r15
lea addresses_WT_ht+0x11... |
src/mainprg/mainprg.asm | Ralakimus/sega-cd-asic-demo | 4 | 51543 | <gh_stars>1-10
; -------------------------------------------------------------------------
;
; Sega CD Base
; By Ralakimus 2021
;
; -------------------------------------------------------------------------
include "../include/maincpu.asm"
include "mainprg/variables.asm"
; -----------------------------------------... |
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xca_notsx.log_21829_723.asm | ljhsiun2/medusa | 9 | 51544 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r8
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1c6a6, %rbx
nop
nop
nop
nop
nop
add $46222, %r12
movl $0x61626364, (%rbx)
nop
nop
nop
and %rcx, %rcx
lea addresses_WC_ht+0xd7a6, %rsi
lea addresses_WT_ht+0xd1ca, %rdi
nop
cmp... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_571.asm | ljhsiun2/medusa | 9 | 51546 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x4de6, %rsi
lea addresses_UC_ht+0x1147a, %rdi
nop
nop
nop
nop
nop
sub %r9, %r9
mov $61, %rcx
rep movsb
nop
nop
nop
nop
add %r12, %r12
lea addresses_WT_ht+0x12156, %rcx
nop
nop... |
src/tutorialspoint.com/src/example21.asm | ishirshov/NASM-tutorial-for-Unix | 0 | 51547 | %include "defines.inc"
section .data
msg db "Allocated 16 kb of memory!", 0xA, 0xD
len equ $ - msg
section .text
global _start
_start:
sys_call SYS_BRK, 0, 0, 0
; number of bytes to be reserved
add eax, 16384
mov ebx, eax
sys_call SYS_BRK, ebx, 0, 0
cmp eax, 0
jl exit ... |
programs/oeis/207/A207597.asm | jmorken/loda | 1 | 51548 | <reponame>jmorken/loda
; A207597: Number of n X 6 0..1 arrays avoiding 0 0 0 and 0 1 0 horizontally and 0 0 1 and 1 0 1 vertically.
; 25,625,3025,9025,21025,42025,75625,126025,198025,297025,429025,600625,819025,1092025,1428025,1836025,2325625,2907025,3591025,4389025,5313025,6375625,7590025,8970025,10530025,12285025,142... |
src/sound/song105restored.asm | MusicTheorist/Mother2GbaTranslation | 1 | 51549 | <filename>src/sound/song105restored.asm
song105restored_pri equ 0
song105restored_rev equ 0
song105restored_mvl equ 127
song105restored_key equ 0
song105restored_tbs equ 1
song105restored_exg equ 0
song105restored_cmp equ 1
.align 4
;**************** Track 1 (Midi-Chn.1) ****************;
@song105restored_... |
kernel/arch/x86/blink.asm | the-sushi/Project-Mira | 0 | 51550 | section .text
global blink_on
global blink_off
global blink_toggle
;Enable: OR with 0x08.
;Disable: AND with 0xF7. (~0x08)
;Toggle: XOR with 0x08.
blink_common:
;go to addriss mode by reading 0x03DA
mov dx, 0x03DA
in ax, dx
;write 0x30 to 0x03C0, setting register index to 0x10
mov dx, 0x03C0
mov ax, 0x30 ;... |
oeis/073/A073821.asm | neoneye/loda-programs | 11 | 51552 | <reponame>neoneye/loda-programs<filename>oeis/073/A073821.asm<gh_stars>10-100
; A073821: Decimal expansion of number with continued fraction expansion 0, 2, 4, 6, ... (the even numbers).
; Submitted by <NAME>
; 4,4,6,3,8,9,9,6,5,8,9,6,5,3,4,5,0,7,0,4,7,6,8,1,7,9,5,1,9,2,6,4,2,6,6,9,7,7,6,2,5,3,1,4,7,4,0,0,3,8,7,8,2,2,8... |
output/test5_corrected.asm | josuerocha/KPiler | 1 | 51553 | START
PUSHN 5
G: PUSHS "A"
WRITES
READ
ATOI
STOREL 0
PUSHS "B"
WRITES
READ
ATOI
STOREL 1
PUSHS "C"
WRITES
READ
ATOI
STOREL 2
PUSHL 0
PUSHL 1
SUP
NOT
JZ A
JUMP F
A: PUSHL 0
PUSHL 2
SUP
NOT
JZ B
JUMP F
B: PUSHL 0
STOREL 3
JUMP D
F: PUSHL 1
PUSHL 2
SUP
NOT
JZ C
JUMP E
C: PUSHL 1
STOREL 3
JUMP D
E: PUSHL 2
STOREL 3
D: PUSH... |
libsrc/graphics/generic_console/pixel6.asm | rjcorrig/z88dk | 0 | 51555 | ;
; Generic pseudo graphics routines for text-only platforms
; Version for the 2x3 graphics symbols using generic console
;
INCLUDE "graphics/grafix.inc"
EXTERN textpixl
EXTERN div3
EXTERN generic_console_printc
EXTERN generic_console_vpeek
EXTERN generic_console_plotc
EXTERN generic_console_pointxy
EX... |
multimedia/opengl/client/amd64/glapi.asm | npocmaka/Windows-Server-2003 | 17 | 51556 | title "OpenGL Functions:
;++
;
; Copyright (c) 2000 Microsoft Corporation
;
; Module Name:
;
; glapi.asm
;
; Abstract:
;
; OpenGL API function entries for AMD64.
;
; Author:
;
; <NAME> (davec) 31-Dec-2000
;
; Environment:
;
; User mode only.
;
;--
include ksamd64.inc
include ... |
kernel/src/x86_64/macros.asm | larrabyte/thepuck | 5 | 51557 | ; Kernel address bases.
KERNEL_VBASE equ 0xFFFFFFFF80000000
KERNEL_PBASE equ 0x0000000000100000
; Multiboot2 tag types.
MB2TAG_END equ 0
MB2TAG_INFORMATION_REQUEST equ 1
MB2TAG_ADDRESS equ 2
MB2TAG_ENTRY_ADDRESS equ 3
MB2TAG_CONSOLE_FLAGS equ 4
MB2TAG_FRAMEBUFFER e... |
inc/arc.asm | moonorongo/looptap64 | 0 | 51558 | <reponame>moonorongo/looptap64
draw_arc:
jsr randomGenerator
lda random_ptr
sta start_angle
jsr randomGenerator
lda random_ptr
and #63 // 00011111 (0 - 63)
adc #$01 // 3 - 64 (0 1 2 gives an error)
adc start_angle
sta end_angle
draw_arc_with_start_and_end_angle:
ldx start_angle:#$ff // dummy value
... |
Source/Internals/Stubs/TokenParser.asm | averybadmusician/RAGENativeUI-Light | 81 | 51559 | <reponame>averybadmusician/RAGENativeUI-Light
bits 64
default rel
stub_offset: dq stub
stub_success: dq 0x1111111111111111
stub_failed: dq 0x2222222222222222
base_address: dq 0x3333333333333333 ; the address where this stub was placed
keyboard_layout: dq 0x4444444444444444
align 16
stub:
... |
src/autogenerated/textBank10.asm | jannone/westen | 49 | 51560 | ; line: 'important to me.'
; size in bytes: 17
line_0:
db #10,#79,#7f,#86,#84,#8a,#8e,#69,#82,#8e,#00,#8e,#84,#00,#7f,#71
db #14
end_line_0:
; line: 'I don't need this diary anymore...'
; size in bytes: 35
line_1:
db #22,#3b,#00,#6f,#84,#82,#08,#8e,#00,#82,#71,#71,#6f,#00,#8e,#77
db #79,#8c,#00,#6f,#79,... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_252.asm | ljhsiun2/medusa | 9 | 51561 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xf4b3, %rsi
lea addresses_WT_ht+0x3545, %rdi
nop
nop
dec %rdx
mov $81, %rcx
rep movsb
nop
nop
nop
nop
sub $23730, %rsi
lea addresses_UC_ht+0x3b81,... |
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0x84_notsx.log_21829_2734.asm | ljhsiun2/medusa | 9 | 51562 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x18b94, %rsi
lea addresses_normal_ht+0xcc, %rdi
cmp %r9, %r9
mov $114, %rcx
rep movsw
nop
nop
nop
nop
sub %r13, %r13
lea addresses_normal_ht+0xa18e, %rsi
lea addresses_UC_h... |
src/arch/x86_64/start.asm | tomoyuki-nakabayashi/baremetal_hello_in_rust | 0 | 51563 | global start
section .text
bits 64
start:
Mov Rsp, 0x0100
; Call the Rust
extern rust_main
call rust_main
; Never reach here, now.
hlt
|
ArrayBitWise.asm | Sahilsinggh/MP_SEM4 | 1 | 51564 | <filename>ArrayBitWise.asm
%macro print 2
mov rax, 1
mov rdi, 1
mov rsi, %1
mov rdx, %2
syscall
%endmacro
%macro exit 0
mov rax, 60
mov rdi, 0
syscall
%endmacro
section .data
msg: db "Array Elments: "
len: equ $-msg
space: db " "
newLine: db 10
arr: db 9,7,3,9,2,4
... |
uuu/distro/XGS/test.asm | ekscrypto/Unununium | 7 | 51566 | <reponame>ekscrypto/Unununium
; This cell allow you to perform some tests.
;
; Each section is documented, if you have any question, make sure to consult
; the documentation section of our website at http://uuu.sourceforge.net/
;
; Have fun!
[bits 32]
section .c_info
;------------
; This section is used to give t... |
src/hi.asm | jm-janzen/asm | 0 | 51567 | ; export start for linker (nasm specific)
global _start ; indicates where program execution begins
;
; General 32 bit registers:
; EAX, EBX, ECX, EDX
; Commands:
; mov - assign second part to first part.
; int - software interrupt (0x80 = system call),
; determined by value in EAX r... |
oeis/202/A202105.asm | neoneye/loda-programs | 11 | 51568 | ; A202105: Numbers n such that 90*n + 43 is prime.
; Submitted by <NAME>
; 0,2,3,7,9,11,12,13,14,16,18,19,21,23,24,25,26,27,31,37,38,40,41,42,44,45,47,48,52,53,54,55,60,62,67,68,70,74,75,76,80,81,84,87,88,89,91,98,100,101,104,114,118,119,123,126,130,131,132,137,139,142
mov $1,43
mov $2,$0
add $2,2
pow $2,2
lpb $2
su... |
oeis/200/A200375.asm | neoneye/loda-programs | 11 | 51569 | <filename>oeis/200/A200375.asm<gh_stars>10-100
; A200375: Product of Catalan and Jacobsthal numbers: a(n) = A000108(n)*A001045(n+1).
; Submitted by <NAME>
; 1,1,6,25,154,882,5676,36465,244530,1657942,11471668,80242890,568080772,4056976900,29212908120,211783889025,1544811959970,11328491394990,83473572128100,617702666484... |
programs/oeis/317/A317405.asm | neoneye/loda | 22 | 51571 | ; A317405: a(n) = n * A001353(n).
; 1,8,45,224,1045,4680,20377,86912,364905,1513160,6211909,25290720,102251773,410963336,1643288625,6541692416,25939798993,102503274120,403800061789,1586318259680,6216231359205,24304019419592,94826736906697,369285078314880,1435615286196025,5572100755734344,21595184783958645,8357930187970... |
libsrc/_DEVELOPMENT/sound/bit/z80/asm_bit_beep_raw.asm | teknoplop/z88dk | 0 | 51572 |
; ===============================================================
; ported by <NAME>, adapted by <NAME>
; from ZX Spectrum ROM
; ===============================================================
;
; void bit_beep_raw(uint16_t num_cycles, uint16_t tone_period_T)
;
; Output a tone for given duration.
;
; =================... |
programs/oeis/028/A028920.asm | neoneye/loda | 22 | 51573 | <gh_stars>10-100
; A028920: Pit harvesting sequence for winning solitaire Tchoukaillon (or Mancala).
; 1,2,1,3,1,4,1,2,1,5,1,6,1,2,1,3,1,7,1,2,1,8,1,4,1,2,1,3,1,9,1,2,1,10,1,5,1,2,1,3,1,11,1,2,1,4,1,12,1,2,1,3,1,6,1,2,1,13,1,14,1,2,1,3,1,4,1,2,1,5,1,7,1,2,1,3,1,15,1,2,1,16,1,4,1,2,1,3,1,8,1,2,1,6,1,5,1,2,1,3
mov $1,1
... |
progref/airgorf.asm | FolkertVanVerseveld/c64 | 1 | 51574 | <reponame>FolkertVanVerseveld/c64
// converted from BASIC from the Commodore 64 Programmer's reference guide page 149
.pc = $0801 "Basic Upstart Program"
:BasicUpstart($0810)
.pc = $0810 "Main Program"
// enable sprite 0
lda #1
sta $d015
// set background color to light blue
lda #$e
sta $d021
// expand sprites... |
src/main/fragment/mos6502-common/vdum1=vwum2_plus_vwum3.asm | jbrandwood/kickc | 2 | 51576 | <filename>src/main/fragment/mos6502-common/vdum1=vwum2_plus_vwum3.asm
clc
lda {m2}
adc {m3}
sta {m1}
lda {m2}+1
adc {m3}+1
sta {m1}+1
lda #0
sta {m1}+3
adc #0
sta {m1}+2
|
nv_c64_util_macs.asm | nealvis/nv_c64_util | 0 | 51578 | //////////////////////////////////////////////////////////////////////////////
//nv_c64_util_macs.asm
// Copyright(c) 2021 <NAME>.
// License: MIT. See LICENSE file in root directory.
//////////////////////////////////////////////////////////////////////////////
// includes all the non code generating files of nv_c64_u... |
oeis/163/A163662.asm | neoneye/loda-programs | 11 | 51579 | <reponame>neoneye/loda-programs
; A163662: A020988 written in base 2.
; 10,1010,101010,10101010,1010101010,101010101010,10101010101010,1010101010101010,101010101010101010,10101010101010101010,1010101010101010101010,101010101010101010101010,10101010101010101010101010,1010101010101010101010101010,101010101010101010101010... |
kernel/source/arch/x86_64/interrupts.asm | thomtl/Sigma | 46 | 51580 | %macro ISR_NOERROR 1
[global isr%1]
isr%1:
cli
push 0
push %1
jmp isr_stub
%endmacro
%macro ISR_ERROR 1
[global isr%1]
isr%1:
cli
push %1
jmp isr_stub
%endmacro
ISR_NOERROR 0
ISR_NOERROR 1
ISR_NOERROR 2
ISR_NOERROR 3
ISR_NOERROR 4
ISR_NOERROR 5
ISR_NOERROR 6
ISR_NOERROR 7
ISR_ERROR 8
ISR_N... |
unittests/ASM/X87_F64/DF_00_F64.asm | Seas0/FEX | 0 | 51583 | <reponame>Seas0/FEX
%ifdef CONFIG
{
"RegData": {
"RAX": "0x4090000000000000"
},
"Env": { "FEX_X87REDUCEDPRECISION" : "1" }
}
%endif
mov rdx, 0xe0000000
mov eax, 1024
mov [rdx + 8 * 0], eax
mov eax, -1
mov [rdx + 8 * 0 + 2], eax
fild word [rdx + 8 * 0]
fst qword [rdx + 8 * 0]
mov rax, [rdx + 8 * 0]
hlt
|
dos/litesout.asm | michaelcmartin/bumbershoot | 20 | 51585 | <reponame>michaelcmartin/bumbershoot
cpu 8086
org 0x100
bits 16
mov ax, 0x0003 ; 80-column text
int 10h
mov ax, 0xb800 ; Set up ES
mov es, ax
call draw_screen
call srand
;; hide cursor
mov... |
platform/mcu/imx6/imx6_platform_sdk/lwip/contrib/ports/blackfin/TestVDK/ExceptionHandler-BF537.asm | jinlongliu/AliOS-Things | 9 | 51586 | <gh_stars>1-10
/* =============================================================================
*
* Description: This is the exception handler.
*
* -----------------------------------------------------------------------------
* Comments:
*
* ====================================================================... |
solutions/48 - Community Training Day/size-6_speed-6.asm | michaelgundlach/7billionhumans | 45 | 51587 | -- 7 Billion Humans (2087) --
-- 48: Community Training Day --
-- Author: landfillbaby
-- Size: 6
-- Speed: 6
comment 0
if n != wall:
listenfor go
endif
takefrom s
tell everyone go
mem1 = nearest shredder
giveto mem1
DEFINE COMMENT 0
<KEY>; |
oeis/186/A186270.asm | neoneye/loda-programs | 11 | 51589 | <filename>oeis/186/A186270.asm
; A186270: a(n)=Product{k=0..n, A003665(k)}.
; Submitted by <NAME>
; 1,1,10,280,38080,18887680,39286374400,319319651123200,10504339243348787200,1374135642457914946355200,721146385161913763847208960000,1511615130036671973985522422906880000,12683442560532981918553467630898150113280000,42553... |
Transynther/x86/_processed/NONE/_st_/i7-8650U_0xd2.log_6403_385.asm | ljhsiun2/medusa | 9 | 51592 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r9
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x16e70, %rbx
nop
nop
cmp %r9, %r9
vmovups (%rbx), %ymm0
vextracti128 $0, %ymm0, %xmm0
vpextrq $0, %xmm0, %r13
nop
nop
nop
and $10981, %rdi
lea address... |
src/bls_vdp.asm | retro16/blastsdk | 10 | 51593 | ;;;;;
; blsvdp_dma(void *dest, void *src, unsigned int len);
; Send data to VRAM using DMA
blsvdp_dma_regs
; Commands to set VDP registers
dw $9300 ; R19 : DMA length LSB
dw $9400 ; R20 : DMA length MSB
dw $9500 ; R21 : DMA source MSB
... |
programs/oeis/152/A152579.asm | neoneye/loda | 22 | 51594 | <filename>programs/oeis/152/A152579.asm
; A152579: a(n) = (10*n+3)*(10*n+17).
; 51,351,851,1551,2451,3551,4851,6351,8051,9951,12051,14351,16851,19551,22451,25551,28851,32351,36051,39951,44051,48351,52851,57551,62451,67551,72851,78351,84051,89951,96051,102351,108851,115551,122451,129551,136851,144351,152051,159951,16805... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_12066_888.asm | ljhsiun2/medusa | 9 | 51595 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1d515, %rsi
lea addresses_A_ht+0x183c1, %rdi
nop
nop
nop
nop
dec %rbx
mov $24, %rcx
rep movsq
nop
nop
nop
nop
add %r9, %r9
lea addresses_A_ht+0x535d, %r9
nop
n... |
data/mapHeaders/DiglettsCaveRoute11.asm | AmateurPanda92/pokemon-rby-dx | 9 | 51597 | <reponame>AmateurPanda92/pokemon-rby-dx
DiglettsCaveRoute11_h:
db CAVERN ; tileset
db DIGLETTS_CAVE_ROUTE_11_HEIGHT, DIGLETTS_CAVE_ROUTE_11_WIDTH ; dimensions (y, x)
dw DiglettsCaveRoute11_Blocks ; blocks
dw DiglettsCaveRoute11_TextPointers ; texts
dw DiglettsCaveRoute11_Script ; scripts
db 0 ; connections
dw Di... |
oeis/334/A334000.asm | neoneye/loda-programs | 11 | 51598 | <filename>oeis/334/A334000.asm
; A334000: a(n) = (2*n+1)!! * Sum_{k=0..n} k/(2*k+1).
; Submitted by <NAME>
; 0,1,11,122,1518,21423,340869,6058980,119218860,2575293165,60628447215,1545696702270,42437227275450,1248581232985275,39197268410049225,1307969571015966600,46233376386927067800,1725823391345415833625,6784504119836... |
rom0/trace.asm | nagydani/zx-rom-mods | 15 | 51599 | ; TRACE jump
TRACE_J:SET 7,(HL)
LD HL,STEP_HOOK
PUSH HL
LD (ERR_SP),SP
LD HL,X1B83
JR TR_SW
; TRACE syntax check, like PRINT
TRACE_S:RST $30
DEFW L1FDF ; PRINT-2
LD HL,L1BEE + 5 ; CHECK-END + 5
TR_SW: PUSH HL
TR_SW1: JP SWAP
TR_THENLESS:
CALL TEST_ZERO
JR NZ,TR_IF2
LD HL,STEP_HOOK
PUSH HL
PUSH HL ; plac... |
programs/oeis/183/A183865.asm | karttu/loda | 1 | 51600 | <filename>programs/oeis/183/A183865.asm
; A183865: n-1+ceiling(3(n+2)/5); complement of A183864.
; 1,4,8,13,19,27,36,46,57,69,83,98,114,131,149,169,190,212,235,259,285,312,340,369,399,431,464,498,533,569,607,646,686,727,769,813,858,904,951,999,1049,1100,1152,1205,1259,1315,1372,1430,1489,1549,1611,1674,1738,1803,1869,1... |
Appl/Calendar/Holiday/holidaySetting.asm | steakknife/pcgeos | 504 | 51601 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Geoworks 1993 -- All Rights Reserved
PROJECT: PC GEOS J
MODULE: JCalendar/Holiday
FILE: holidaySetting.asm
AUTHOR: <NAME>, <NAME>, 1993
ROUTINES:
NAME DESCRIPTION
---- -----... |
Code/EhBASIC/basicWrapper.asm | QuinnPainter/6502Computer | 0 | 51602 | .include biosFunctions.asm
.include qsdosFunctions.asm
ccflag = $0200 ; BASIC CTRL-C flag, 00 = enabled, 01 = dis
ccbyte = ccflag+1 ; BASIC CTRL-C byte
ccnull = ccbyte+1 ; BASIC CTRL-C byte timeout
VEC_CC = ccnull+1 ; ctrl c check vector
VEC_IN = VEC_CC+2 ; input vector
VEC_OUT = VEC_IN+2 ; output vector
... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca_notsx.log_21829_1154.asm | ljhsiun2/medusa | 9 | 51603 | <filename>Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca_notsx.log_21829_1154.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x6110, %rsi
lea addresses_normal_ht+0x18e10, %rdi
clflush (%rdi)
nop
nop
nop
dec %r8
mov $... |
circle_test.asm | juhovh/spectrum | 26 | 51606 | org $8000
coords incbin cdata.dat
putchar push af
push bc
push de
push hl
push af
ld hl,coords
ld a,b
and %01111111
ld l,a
xor a
rl l
adc a,h
ld h,a
ld c,(hl)
inc hl
ld b,(hl)
pop af
call PutChar2
pop hl
pop de
pop bc
pop af
ret
main call ClearScreen
ld b,0
loop ld a,'A'
call putchar
halt
... |
src/shaders/h264/mc/weightedPred.asm | me176c-dev/android_hardware_intel-vaapi-driver | 192 | 51607 | /*
* Weighted prediction of luminance and chrominance
* Copyright © <2010>, Intel Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* wit... |
test/asm/elif-after-else.asm | michealccc/rgbds | 522 | 51608 | <reponame>michealccc/rgbds
if 0
println "zero"
else
println "one"
if 1
println "A"
else
println "B"
elif 2
println "C"
else
println "D"
endc
elif 2
println "two"
else
println "three"
endc
|
libsrc/_DEVELOPMENT/math/float/math32/c/sdcc/cm32_sdcc_fssqr_fastcall.asm | rjcorrig/z88dk | 0 | 51609 | <filename>libsrc/_DEVELOPMENT/math/float/math32/c/sdcc/cm32_sdcc_fssqr_fastcall.asm
; float __fssqr_fastcall (float number)
SECTION code_clib
SECTION code_math
PUBLIC cm32_sdcc_fssqr_fastcall
EXTERN m32_fssqr_fastcall
; square (^2) sdcc floats
;
; enter : stack = sdcc_float number, ret
;
; exit... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1856.asm | ljhsiun2/medusa | 9 | 51610 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1856.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x17ba7, %r8
nop
nop
nop
nop
nop
and %r13, %r13
mov $0x6162636465666768, %r12
movq %r12,... |
kernel/lib/a64/string.asm | Tiihala/Dancy | 11 | 51612 | ;;
;; Copyright (c) 2018 <NAME>
;;
;; Permission to use, copy, modify, and/or distribute this software for any
;; purpose with or without fee is hereby granted, provided that the above
;; copyright notice and this permission notice appear in all copies.
;;
;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS AL... |
assignment6/poly-1/PolyReverseTCP-1.nasm | allan9595/SLAE-Assignments | 0 | 51613 |
global _start
section .text
_start:
xor eax,eax
xor ebx,ebx
xor ecx,ecx
xor edx,edx
mov al,0x66
mov bl,0x1
push ecx
push 0x6
push 0x1
push 0x2
mov ecx,esp
int 0x80
mov esi,eax
shl eax,2
shr eax,4
mov al,0x66
xor ebx,ebx
mov bl,0x2
mov edi,0x... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_794.asm | ljhsiun2/medusa | 9 | 51614 | <filename>Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca.log_21829_794.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r14
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x1ccdf, %rcx
clflush (%rcx)
nop
nop
nop
sub %r12, %r12
mov $0x6162636465666768,... |
Opus/asm/disptbn2.asm | Computer-history-Museum/MS-Word-for-Windows-v1.1 | 2 | 51615 | <reponame>Computer-history-Museum/MS-Word-for-Windows-v1.1
include w2.inc
include noxport.inc
include consts.inc
include structs.inc
createSeg disptbl_PCODE,disptbn2,byte,public,CODE
; DEBUGGING DECLARATIONS
ifdef DEBUG
midDisptbn2 equ 31 ; module ID, for native asserts
NatPause equ 1
endif
ifdef NatPau... |
programs/oeis/093/A093918.asm | neoneye/loda | 22 | 51616 | <reponame>neoneye/loda
; A093918: a(2k-1)=(2k-1)^2+k, a(2k)=6k^2+k+1: Last term in rows of triangle A093915.
; 2,8,11,27,28,58,53,101,86,156,127,223,176,302,233,393,298,496,371,611,452,738,541,877,638,1028,743,1191,856,1366,977,1553,1106,1752,1243,1963,1388,2186,1541,2421,1702,2668,1871,2927,2048,3198,2233,3481,2426,37... |
oeis/103/A103453.asm | neoneye/loda-programs | 11 | 51617 | <reponame>neoneye/loda-programs
; A103453: a(n) = 0^n + 3^n - 1.
; 1,2,8,26,80,242,728,2186,6560,19682,59048,177146,531440,1594322,4782968,14348906,43046720,129140162,387420488,1162261466,3486784400,10460353202,31381059608,94143178826,282429536480,847288609442,2541865828328,7625597484986,22876792454960,68630377364882,2... |
oeis/201/A201864.asm | neoneye/loda-programs | 11 | 51619 | ; A201864: ((F(n-1)+F(n-2))-1)/2 if F(n) is odd, otherwise ((F(n-1)+F(n-2))-2)/2, where F(n)=A000045(n) is the n-th Fibonacci number.
; Submitted by <NAME>(s1)
; 0,0,0,1,2,3,6,10,16,27,44,71,116,188,304,493,798,1291,2090,3382,5472,8855,14328,23183,37512,60696,98208,158905,257114,416019,673134,1089154,1762288,2851443,46... |
LKS/variable.asm | Kannagi/Super-Kannagi-Sound | 11 | 51621 |
.DEFINE MEM_TEMP $0
.DEFINE MEM_TEMPFUNC $10
.DEFINE LKS_TMP_ARGS $20
.DEFINE LKS_TMP $26
.DEFINE LKS_TMP_RETURN $36
.DEFINE LKS_TEMPVBL $38
.DEFINE LKS_VBLANK $40
.DEFINE LKS_PRINTPL $4B
.DEFINE LKS_CPU $4C
.DEFINE LKS_VCPU $4D
.DEFINE LKS_DMAT $4E
.DEFINE LKS_OAM $50
.DEFINE LKS_FADE $80
.DEF... |
oeis/157/A157027.asm | neoneye/loda-programs | 11 | 51622 | ; A157027: Denominator of Euler(n, 1/26).
; 1,13,676,4394,456976,2970344,308915776,2007952544,208827064576,1357375919744,141167095653376,917586121746944,95428956661682176,620288218300934144,64509974703297150976,419314835571431481344
mov $1,26
pow $1,$0
mov $2,$0
sub $2,9
gcd $2,2
div $1,$2
dif $1,$2
mov $0,$1
|
kernel/sound/sndreset.asm | paulscottrobson/eris | 13 | 51624 | ; *****************************************************************************
; *****************************************************************************
;
; Name: sndreset.asm
; Purpose: Reset all sounds, individual sound
; Created: 28th March 2020
; Reviewed: TODO
; Author: <NAME> (<EMAIL>)
;
; ********... |
test/decoder/generated.asm | fotcorn/x86emu | 18 | 51625 | .text
.global _start
_start:
push %rax
push %rbx
push %rcx
push %rdx
push %rsp
push %rbp
push %rsi
push %rdi
mov %eax,%eax
mov %ebx,%ebx
mov %ecx,%ecx
mov %edx,%edx
mov %esp,%esp
mov %ebp,%ebp
mov %esi,%esi
mov %edi,%edi
int $0x80
|
session_02/02-array4/array4.asm | DigiOhhh/LabArchitettura2-2017-2018 | 1 | 51626 | .data
A: .space 16 # Alloca 16 bytes per A
.text
.globl main
main:
la $t0, A # Scrive base address di A in $t0
addi $t1, $zero, 0 # $t1 = 0
sw $t1, 0($t0) # A[0] = 0
addi $t1, $zero, 4 # $t1 = 4
addi $t0, $t0, 4 # indirizzo di A[1]
sw $t1, 0($t0) # A[1] = 4
addi $t1, $zero, 8 # $t1 = 8
addi $t0, $t0,... |
Firmware/obj/hm_trp/radio~hm_trp/mavlink.asm | mgrunsfeld/SiK | 0 | 51627 | <reponame>mgrunsfeld/SiK<filename>Firmware/obj/hm_trp/radio~hm_trp/mavlink.asm<gh_stars>0
;--------------------------------------------------------
; File Created by SDCC : free open source ANSI-C Compiler
; Version 3.5.0 #9253 (Mar 24 2016) (Linux)
; This file was generated Mon Jul 23 11:34:32 2018
;------------------... |
programs/oeis/040/A040029.asm | karttu/loda | 1 | 51628 | ; A040029: Continued fraction for sqrt(35).
; 5,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_498.asm | ljhsiun2/medusa | 9 | 51629 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x3aeb, %rsi
lea addresses_UC_ht+0x10392, %rdi
nop
nop
nop
add %rbx, %rbx
mov $105, %rcx
rep movsb
add %rsi, %rsi
lea addresses_A_ht+0x50c6, %r14
clflush (%r14)
nop
nop
nop
sub ... |
fiat-amd64/96.86_ratio12000_seed3346530064135123_square_p224.asm | dderjoel/fiat-crypto | 491 | 51631 | <reponame>dderjoel/fiat-crypto<filename>fiat-amd64/96.86_ratio12000_seed3346530064135123_square_p224.asm
SECTION .text
GLOBAL square_p224
square_p224:
sub rsp, 0x130 ; last 0x30 (6) for Caller - save regs
mov [ rsp + 0x100 ], rbx; saving to stack
mov [ rsp + 0x108 ], rbp; saving to stack
mov [ rsp + 0x110 ], r12; sav... |
Assembly/Lab1/first3.asm | chaohu/Daily-Learning | 12 | 51632 | STACK SEGMENT USE16 STACK
DB 200 DUP(0)
STACK ENDS
DATA SEGMENT USE16
BUF1 DB 0,1,2,3,4,5,6,7,8,9
BUF2 DB 10 DUP(0)
BUF3 DB 10 DUP(0)
BUF4 DB 10 DUP(0)
TIP DB 'Press any key to begin!$'
DATA ENDS
CODE SEGMENT USE16
ASSUME CS:CODE,DS:DATA,SS:STACK
START: MOV AX,DATA
MOV DS,AX
MOV SI,OFFSET BUF1
MOV D... |
main.asm | MohammedAlsayedOmar/Multiplayer-Snake | 0 | 51633 | <filename>main.asm
Data_segment_name segment para
apple db 0
applerow db 0
applecol db 0
appleMilSec db 0
;Snake1
oScore dw 0,'$'
remoscore dw 0,'$'
oHead db 'o'
oAttribute db 06h
oRowBody db 12 dup (?)
oColBody db 12 dup (?)
oRowHead db 10,'$'
oColHead db 20,'$'
oDirection db 2 ;1 up 2 ... |
lala.asm | hajzer/asm-basic-examples | 0 | 51634 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Nacitajte z klavesnice retazec znakov ukonceny znakom "novy riadok".
; Nech slovo je postupnost znakov medzi 2 znakmi "medzera".
; Urcte pocet slov obsahujucich len pismena malej abecedy.
; Pocet vytlacte sestnastkovo.
;
; Autor: LALA -> ... |
oeis/052/A052573.asm | neoneye/loda-programs | 11 | 51635 | ; A052573: (1+3^n)*n!.
; 2,4,20,168,1968,29280,525600,11027520,264579840,7142929920,214280640000,7071181286400,254561568307200,9927888709939200,416971151460864000,18763699200390144000,900657519773147136000
mov $1,3
pow $1,$0
seq $0,142 ; Factorial numbers: n! = 1*2*3*4*...*n (order of symmetric group S_n, number of pe... |
malban/Release/VRelease/Release.History/VRelease_2017_04_07/Song/patternA.asm | mikepea/vectrex-playground | 5 | 51636 | <gh_stars>1-10
; this file is part of Release, written by Malban in 2017
;
HAS_VOICE0 = 1
HAS_TONE0 = 1
FIRST7 = $3E
dw $0044
patternAData:
db $FF, $18, $97, $DE, $63, $FE, $1A, $7E, $E6, $34
db $ED, $FC, $70, $30, $7F, $DE, $4F, $1F, $4C, $7B
db $EF, $47, $1E, $77, $93, $C7, $FE, $F4, $76, $F2
db $7F, $7F, $51, ... |
programs/oeis/114/A114890.asm | neoneye/loda | 22 | 51637 | ; A114890: First differences of A114889.
; 2,1,3,2,1,1,1,1,6,2,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,15,2,1,3,2,1,1,1,1,6,2,1,3,2,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,42,2,1,3,2,1,1,1,1,6,2,1,3,2,1,1,1,1,1,1
mov $4,2
mov $5,$0
lpb $4
mov $0,$5
sub $4,1
add $0,$4
max $0,0
... |
samples/PEEKPOKE.asm | taisukef/asm15 | 3 | 51638 | 'LET [0],AdrLow,AdrHigh:USR(#700,0):L=[2]:H=[3]
'peek
r0=8
r0=r0<<#8
r1=r1+r0
r0=[r1+#0] L
r0=[r0+#0] L
[r1+1]L=r0
ret
'[2]=L:[3]=H:LET [0],AdrLow,AdrHigh:USR(#70E,0)
'poke
r0=8
r0=r0<<#8
r1=r1+r0
r0=[r1+1] L
r1=[r1+0] L
[r1+0]L=r0
ret
|
Bill_Cravener/append/appender.asm | AlexRogalskiy/Masm | 0 | 51639 | ; ####################################################
; <NAME> 5/12/2003
; ####################################################
.486
.model flat, stdcall
option casemap:none ; case sensitive
; ####################################################
include \masm32\include\window... |
gxboot/vbr/entry.asm | madd-games/glidix | 98 | 51640 | <filename>gxboot/vbr/entry.asm
; Glidix bootloader (gxboot)
;
; Copyright (c) 2014-2017, <NAME>.
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; * Redistributions of source code must retain ... |
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i3-7100_9_0xca_notsx.log_21829_861.asm | ljhsiun2/medusa | 9 | 51641 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r8
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xb064, %r8
nop
nop
sub $36634, %rbx
movb (%r8), %al
nop
add %rbp, %rbp
lea addresses_A_ht+0x104, %rsi
lea addresses_A_ht+0xfd84, %rdi
nop
nop
nop
nop
cmp %rax, %rax
mov $34, %r... |
audio/music/suicunebattle.asm | Dev727/ancientplatinum | 28 | 51642 | <reponame>Dev727/ancientplatinum
Music_SuicuneBattle:
musicheader 3, 1, Music_SuicuneBattle_Ch1
musicheader 1, 2, Music_SuicuneBattle_Ch2
musicheader 1, 3, Music_SuicuneBattle_Ch3
Music_SuicuneBattle_Ch1:
tempo 101
volume $77
dutycycle $3
tone $0002
vibrato $12, $15
notetype $c, $b7
octave 4
note A_, 1
not... |
M4Driver.asm | adolfopa/TelnetRSX | 0 | 51643 | <gh_stars>0
; call GetM4ROMNumber ; OUT C=M4ROM-Number
;
; IX-Register
; call FF06_IX__Get_M4_Socket_Response_Address ; IN: C=ROM-Number OUT: HL=Socket response adress (ld hl,(0xFF06) ; get Socket response address)
;
; IY-Register
; call FF02_IY__Get_M4_Buffer_Response_Address; IN: C=ROM-Number OUT H... |
coverage/IN_CTS/0470-COVERAGE-brw-nir-opt-peephole-ffma-231/work/variant/1_spirv_asm/shader.frag.asm | asuonpaa/ShaderTests | 0 | 51644 | ; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 88
; Schema: 0
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main" %69
OpExecutionMode %4 OriginUp... |
programs/oeis/292/A292045.asm | neoneye/loda | 22 | 51645 | ; A292045: Wiener index of the n X n X n grid graph.
; 0,48,972,7680,37500,136080,403368,1032192,2361960,4950000,9663060,17791488,31188612,52437840,85050000,133693440,204459408,305165232,445697820,638400000,898502220,1244602128,1699194552,2289254400,3046875000,4009964400,5223002148
add $0,1
mov $2,$0
pow $0,7
pow $2,5... |
lib/unpkb.asm | cppchriscpp/waddles-the-duck | 0 | 51647 | <gh_stars>0
;
; unpkb.asm
; PackBits RLE unpacking
;
;
; Copyright 2000 <NAME>
;
; Permission is hereby granted, free of charge, to any person obtaining
; a copy of this software and associated documentation files (the
; "Software"), to deal in the Software without restriction, including
; without limitation the right... |
research/02/TestControl.asm | NNNIC/psgg-nasm-sample | 0 | 51648 | <reponame>NNNIC/psgg-nasm-sample<filename>research/02/TestControl.asm
global _main
extern _GetStdHandle@4
extern _WriteFile@20
extern _ExitProcess@4
section .text
_main:
; DWORD bytes;
; <- prepare local variable
mov ebp, esp
sub esp, 4
; hStdOut = GetStdHandle(STD_OUTPUT_HANDLE)
... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2.log_126_1369.asm | ljhsiun2/medusa | 9 | 51649 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x18e3d, %r12
nop
nop
nop
nop
xor %r13, %r13
movl $0x61626364, (%r12)
nop
add %r12, %r12
lea addresses_D_ht+0x2afd, %rbx
nop
nop
nop
xor %r13, %r13
movb $0x61, (%rbx)
nop
xor ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.