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 |
|---|---|---|---|---|
Transynther/x86/_processed/NONE/_ht_zr_/i9-9900K_12_0xa0.log_21829_337.asm | ljhsiun2/medusa | 9 | 44411 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x1b233, %rbx
clflush (%rbx)
sub $3746, %rdx
mov (%rbx), %r14
nop
nop
nop
nop
and $53655, %rbp
lea addresses_WT_ht+0x15a17, %rsi
lea addresses_A_ht+0x16bb9, %rdi
nop
nop
xor $... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xca_notsx.log_21829_205.asm | ljhsiun2/medusa | 9 | 44412 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %r14
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x101e6, %r10
add $60570, %r13
movb (%r10), %cl
nop
nop
nop
nop
and %r14, %r14
lea addresses_D_ht+0x1a7c6, %rsi
lea addresses_A_ht+0x9316, %rdi
nop
nop
nop
dec %r11
mov $20, %rcx
rep mov... |
loader/include/memory.asm | qwercik/brainfuckOS | 9 | 44413 | %ifndef MEMORY_ASM
%define MEMORY_ASM
memset:
; EDI - destination
; ECX - bytes counter
; AX - value
push edi
push ecx
push eax
cld
rep stosb
pop eax
pop ecx
pop edi
ret
zeromem:
; EDI - destination
; ECX - bytes
push edi
push ecx
xor eax, eax
call memset
pop ecx
pop edi
ret
memcpy:
; EDI - de... |
text/Route15Gate2F.asm | opiter09/ASM-Machina | 1 | 44414 | <filename>text/Route15Gate2F.asm
_Route15GateUpstairsText_4968c::
text "This replica"
line "badge holds rocks"
cont "which you can"
cont "throw in a fight"
para "to make it easier"
line "to catch wild"
cont "#MON. It's"
cont "like you're on"
cont "safari!"
para "If you don't need"
line "it, you should "
c... |
ecdsa128/src/Base64_src/src/base64_decode.asm | FloydZ/Crypto-Hash | 11 | 44415 | .686p
.mmx
.model flat,stdcall
option casemap:none
option prologue:none
option epilogue:none
extern _base64:DWORD
.code
Base64_Decode proc ptrIn:DWORD, ptrOut:DWORD
pushad
cld
xor ebx, ebx
xor edx, edx
mov esi, dword ptr [esp+20h+4] ;ptrIn
mov edi, dword ptr [esp+20h+8] ;ptrOut
cmp esi, edi
jz @b64d_error
... |
unordnung_auch_assembler/asm/attiny13/versuche/tone-pin4.asm | no-go/Blink_atmega328p | 0 | 44416 | ; atTINY 13 - Board without 7seg display
.equ PORTB,0x18
.equ DDRB,0x17
.equ PINB,0x16
Start:
ldi r16, 0b010000 ; Pin 4 is output
out DDRB, r16
ldi r24, 0xFF ; wait 5 times for the wait loop
Loop:
sbi PORTB, 4 ; set spk on
rcall R24wait ; go to wait loop
cbi PORTB, 4 ; set spk off
rcall R24wait ; g... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1780.asm | ljhsiun2/medusa | 9 | 44418 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xedee, %rsi
lea addresses_WT_ht+0xaccc, %rdi
nop
sub %rax, %rax
mov $96, %rcx
rep movsl
nop
nop
add $15904, %r13
lea addresses_WT_ht+0xf5e, %r15
nop
... |
src/intel/tools/tests/gen7.5/mul.asm | SoftReaper/Mesa-Renoir-deb | 0 | 44419 | <reponame>SoftReaper/Mesa-Renoir-deb<gh_stars>0
mul(8) g45<1>.xF g5.4<0>.zF g5.4<0>.zF { align16 1Q };
mul(8) g18<1>F g17<4>F 0x3f000000F /* 0.5F */ { align16 1Q };
mul(8) g39<1>.xD g5<0>.xD 2D { align16 1Q };
mul(8) g7<1>F ... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xca_notsx.log_21829_396.asm | ljhsiun2/medusa | 9 | 44420 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x5216, %rsi
lea addresses_normal_ht+0x12698, %rdi
cmp %r12, %r12
mov $16, %rcx
rep movsq
nop
nop
add $40745, %rsi
lea addresses_UC_ht+0x1e798, %rcx
nop
nop
dec %rbp
movups (%rcx), %xmm4
vpextrq ... |
asm_main.asm | CISVVC/cis208-chapter05-arrays-DaleGore | 0 | 44422 | <filename>asm_main.asm<gh_stars>0
;
; file: asm_main.asm
%include "asm_io.inc"
;
; initialized data is put in the .data segment
;
segment .data
syswrite: equ 4
stdout: equ 1
exit: equ 1
SUCCESS: equ 0
kernelcall: equ 80h
array1 dw 1,2,3,4,5,6 ; array1 = [1,2,3,4,5]
before db... |
Source.asm | usamashafiq/ASCII-conversion | 0 | 44423 | .model small
.stack 100h
.data
.code
Main proc
mov bl,1
mov cl,1
add bl,cl
mov dl,bl
add dl,48
mov ah,2
int 21h
mov ah, 4ch
int 21h
main endp
end main
|
oeis/045/A045401.asm | neoneye/loda-programs | 11 | 44424 | <reponame>neoneye/loda-programs
; A045401: Primes congruent to {0, 3, 5} mod 7.
; Submitted by <NAME>
; 3,5,7,17,19,31,47,59,61,73,89,101,103,131,157,173,199,227,229,241,257,269,271,283,311,313,353,367,383,397,409,439,467,479,509,521,523,563,577,593,607,619,647,661,677,691,719,733,761,773,787,829,857,859,887,929,941,97... |
Library/Parse/parseC.asm | steakknife/pcgeos | 504 | 44425 | COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Library/Parse
FILE: parseC.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
jeremy 2/4/92 Initial version
DESCRIPTION:
... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_321.asm | ljhsiun2/medusa | 9 | 44426 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r9
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x2778, %rbx
nop
nop
nop
nop
sub $22417, %rcx
mov (%rbx), %r12
nop
nop
nop
sub %r9, %r9
lea addresses_WC_ht+0x145f0, %rax
nop
and %rdi, %rdi
movb (%rax), %bl
nop
sub %r12, %r12
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1032.asm | ljhsiun2/medusa | 9 | 44427 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x1ec3a, %r12
nop
nop
nop
nop
nop
xor $64677, %rdx
mov (%r12), %ebx
nop
nop
nop
nop
nop
inc %r12
lea addresses_UC_ht+0x1c23a, %... |
env/zx/plus3dos/page2page.asm | pjshumphreys/querycsv | 18 | 44429 | <reponame>pjshumphreys/querycsv<gh_stars>10-100
include "../common/equs.inc"
org 0xbce0
;---------------------------------------
; mypager2 - switch to the low bank specified in the accumulator.
; Interupts must be disabled before this function is called
mypager2:
ret ; fake paging code to ensure data alignment sta... |
bootsector/05-function/print_hex.asm | wpmed92/os-adventures | 1 | 44430 | <filename>bootsector/05-function/print_hex.asm
; pass in a hex, like 0x1234
; data in dx
print_hex:
pusha
mov cx, 0 ;our counter
;x86 is little-endian, so the memory layout would look like this
;mem addr: value
;0: 0x34
;1: 0x12
hex_loop:
cmp cx, 4 ;if we processed all 4 characters
je end
mov ax, dx ;first ... |
programs/oeis/138/A138341.asm | karttu/loda | 0 | 44431 | ; A138341: Expansion of (1-4x-x^3)/(1-x+x^2)^2.
; 1,-2,-7,-7,2,13,13,-2,-19,-19,2,25,25,-2,-31,-31,2,37,37,-2,-43,-43,2,49,49,-2,-55,-55,2,61,61,-2,-67,-67,2,73,73,-2,-79,-79,2,85,85,-2,-91,-91,2,97,97,-2,-103,-103,2,109,109,-2,-115,-115,2,121,121,-2
mov $1,$0
add $1,1
mov $2,$0
add $2,1
lpb $0,1
sub $0,1
add $1,$... |
books_and_notes/professional_courses/Security/sources/extra_books/加密与解密第四版光盘资料/chap12/7.RtlCreateInject/ShellCode64.asm | gxw1/review_the_national_post-graduate_entrance_examination | 640 | 44432 | .CODE
ShellCodeFun64 PROC
push rax ;eq to sub rsp,8
push rbx
pushfq
call next
next:
pop rbx
and bx,0 ;rbx = Allocated Mem base
mov rcx,qword ptr [rbx+38h] ;lpParameter
call qword ptr [rbx+30h] ;lpThreadStartRoutine
xor rax,rax ;ExitStatus
lea rcx,[rax-2] ... |
opal/asm/base/MIPS.asm | ctrlsys/sensys | 14 | 44433 | START_FILE
#ifdef __linux__
#include <sys/asm.h>
#else
#include <asm.h>
#endif
#include <regdef.h>
TEXT
ALIGN(8)
LEAF(opal_atomic_mb)
#ifdef __linux__
.set mips2
#endif
sync
#ifdef __linux__
.set mips0
#endif
j ra
END(opal_atomic_mb)
ALIGN(8)
LEAF(opal_atomic_rmb)
#ifdef __linux__
.set mips2
#endif
sync
#... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_764.asm | ljhsiun2/medusa | 9 | 44434 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x586d, %rsi
lea addresses_D_ht+0x3a13, %rdi
nop
nop
cmp $56952, %r8
mov $19, %rcx
rep movsq
nop
nop
nop
and %r11, %r11
lea addresses_WC_ht+0x1e5d3, %r15
nop
nop
nop
dec %r9... |
win32/TUI/0/tui.asm | QAston/fasm-2006 | 0 | 44435 | <reponame>QAston/fasm-2006<filename>win32/TUI/0/tui.asm
format mz
;stack 100h
;engine textowy w DPMI
include 'loader.inc'
segment code_seg use32
code_offs:
wait4key:
xor ax,ax
int 16h
exit
mov ax,4c00h ;zamknij program
int 21h
`
read:
zeroize_buffer:
;zeruje bufor o podanym adresie i dlugosci
;wymaga:e... |
lab_sheet_4/Task_4.asm | jbnerd/Micro-Proc_ASM_codes | 0 | 44436 | <filename>lab_sheet_4/Task_4.asm
.model tiny
.data
filename db 'nameID.txt',0
data db 100 dup('$')
.code
.startup
mov ah,3dh
mov al,02h
lea dx,filename
int 21h
mov bx,ax
lea dx, data
x: mov cx,01h
mov ah,3fh
int 21h
inc dx
cmp ax,00h
jnz x
mov ah,09h
lea dx,data
... |
src/c64/input.asm | puzzud/retroleague | 4 | 44438 | ; c64 input.asm
.export _UpdateInput
.exportzp _ControllerButtons
.exportzp _ControllerButtonsPressed
.include "c64.asm"
.segment "ZEROPAGE"
_ControllerButtons:
.res 2
_ControllerButtonsPrevious:
.res 2
_ControllerButtonsPressed:
.res 2
.segment "CODE"
_UpdateInput:
ldx #0
@joystickLoop:
lda _Co... |
src/zeropage_map.asm | stid/kick-c64-dead-test | 22 | 44439 |
#importonce
*=$0 "ZERO PAGE" virtual
.namespace ZP {
ProcessDataDir: .byte 0 // 6510 CPU's data direction I/O port register; 0 = input, 1 = output
ProcessPortBit: .byte 0 // 6510 CPU's data direction I/O port register; 0 = input, 1 = output
counterLow: .byte 0
counterH... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca_notsx.log_18_1370.asm | ljhsiun2/medusa | 9 | 44440 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r8
push %rax
push %rbp
push %rcx
push %rdi
lea addresses_D_ht+0x1bc0b, %rbp
nop
nop
nop
nop
nop
cmp %rcx, %rcx
mov (%rbp), %rax
nop
inc %rcx
lea addresses_normal_ht+0xb04b, %r8
clflush (%r8)
nop
nop
nop
cmp %r15, %r15
mov $0x6162636465666768, %r14
m... |
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xa0.log_21829_153.asm | ljhsiun2/medusa | 9 | 44441 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1448b, %rax
nop
nop
nop
nop
nop
cmp $36059, %rdx
mov $0x6162636465666768, %rbp
movq %rbp, (%rax)
and $49771, %rdi
lea addresses_A_ht+0xa28b, %rsi
clflush (%rsi)
nop
and %r12... |
maps/JubilifeCity.asm | AtmaBuster/pokecrystal16-493-plus | 1 | 44442 | object_const_def ; object_event constants
JubilifeCity_MapScripts:
db 0 ; scene scripts
db 1 ; callbacks
callback MAPCALLBACK_NEWMAP, .FlyPoint
.FlyPoint:
setflag ENGINE_FLYPOINT_VIOLET
return
JubilifeCity_MapEvents:
db 0, 0 ; filler
db 10 ; warp events
warp_event 33, 13, JUBILIFE_APARTMENT_NE_1F, 1
warp... |
libsrc/rex/DbGetRecordCount.asm | meesokim/z88dk | 0 | 44443 | <reponame>meesokim/z88dk
;
; System Call for REX6000
;
; $Id: DbGetRecordCount.asm,v 1.4 2015/01/19 01:33:06 pauloscustodio Exp $
;
; extern unsigned long DbGetRecordCount( int );
;
; Written by <NAME> <<EMAIL>>
PUBLIC DbGetRecordCount
.DbGetRecordCount
pop ix
pop hl
push hl
push ix
ld de,$00ee ... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_34_1170.asm | ljhsiun2/medusa | 9 | 44444 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r9
push %rbp
push %rbx
push %rcx
lea addresses_D_ht+0x1c6ee, %rcx
nop
nop
nop
nop
nop
and $51543, %r11
movl $0x61626364, (%rcx)
nop
nop
nop
nop
sub $30699, %r9
lea addresses_A_ht+0x712e, %rbx
nop
nop
nop
nop
xor %... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_1043.asm | ljhsiun2/medusa | 9 | 44447 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x15c06, %r11
nop
add %r12, %r12
movb (%r11), %cl
nop
nop
nop
nop
nop
sub %rbp, %rbp
lea addresses_D_ht+0xee06, %r13
nop
nop
nop
xor %r11, %r11
movl $0x61626364, (%r13)
nop
no... |
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0xca_notsx.log_110_314.asm | ljhsiun2/medusa | 9 | 44448 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
lea addresses_WC_ht+0x16302, %rcx
sub %r9, %r9
movl $0x61626364, (%rcx)
nop
inc %rbx
lea addresses_UC_ht+0xe592, %rdx
nop
nop
nop
nop
dec %rax
movups (%rdx), %xmm2
vpextrq $0, %xmm2, %r9
nop
nop
nop
nop
xor... |
oeis/005/A005083.asm | neoneye/loda-programs | 11 | 44449 | <gh_stars>10-100
; A005083: Sum of squares of primes = 3 mod 4 dividing n.
; Submitted by <NAME>
; 0,0,9,0,0,9,49,0,9,0,121,9,0,49,9,0,0,9,361,0,58,121,529,9,0,0,9,49,0,9,961,0,130,0,49,9,0,361,9,0,0,58,1849,121,9,529,2209,9,49,0,9,0,0,9,121,49,370,0,3481,9,0,961,58,0,0,130,4489,0,538,49,5041,9,0,0,9,361,170,9,6241,0,9... |
PRG/levels/Plains/1-4End.asm | narfman0/smb3_pp1 | 0 | 44450 | <reponame>narfman0/smb3_pp1<gh_stars>0
; Original address was $BE48
.word $0000 ; Alternate level layout
.word $0000 ; Alternate object layout
.byte LEVEL1_SIZE_02 | LEVEL1_YSTART_170
.byte LEVEL2_BGPAL_00 | LEVEL2_OBJPAL_08 | LEVEL2_XSTART_18 | LEVEL2_UNUSEDFLAG
.byte LEVEL3_TILESET_08 | LEVEL3_VSCROLL_FREE | LE... |
Transynther/x86/_processed/NC/_st_zr_sm_/i7-7700_9_0x48.log_14462_311.asm | ljhsiun2/medusa | 9 | 44451 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NC/_st_zr_sm_/i7-7700_9_0x48.log_14462_311.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x1c155, %r9
clflush (%r9)
nop
nop
nop
nop
x... |
programs/oeis/045/A045437.asm | neoneye/loda | 22 | 44453 | ; A045437: Primes congruent to 3 mod 7.
; 3,17,31,59,73,101,157,199,227,241,269,283,311,353,367,409,479,521,563,577,619,647,661,773,787,829,857,941,983,997,1039,1109,1123,1151,1193,1249,1277,1291,1319,1361,1459,1487,1543,1571,1613,1627,1669,1697,1753,1823,1879,1907,1949,2089,2131,2243,2341,2383,2411,2467,2551,2579,2593... |
examples/sh.asm | shockkolate/shk-asm | 0 | 44455 | main:
CAL getc
main.loop:
CAL putc
CAL getc
CMP $20, $0, #113 ; lowercase q
BRA main.loop, !NE $20
main.end:
RET
|
A6/shellcode2.nasm | mshaneck/SLAE32 | 0 | 44458 | global _start
section .text
_start:
xor ecx,ecx
mul ecx
add al,0x2
int 0x80
cmp eax,ecx
jnz _wait
;xor eax,eax ; not necessary since this is the child process, so eax will be 0
push ecx
jmp short get_data
got_data:
pop ebx
xor byte [ebx+14],0xff
xor byte [ebx+17],0xff
mov edx,esp
push ... |
lab7/vettore/exp.asm | samdsk/lab_arch2 | 0 | 44459 | <reponame>samdsk/lab_arch2
.data
.text
.globl espansione
espansione:
#preambolo
move $t0 $fp
addi $fp $sp -4
sw $t0 0($fp)
sw $sp -4($fp)
sw $s0 -8($fp)
sw $ra -12($fp)
addi $sp $fp -12
#codice
#$a0 vector addr base
move $s0 $a0
lw $t1 4($s0) #numero di elementi_old
#inizio loop stack
addi $t3... |
projects/vmt/test/ProgramFlow/BasicLoop/BasicLoop.asm | RobertCurry0216/nand2tetris | 0 | 44460 | // push constant 0
@0
D=A
@SP
A=M
M=D
@SP
M=M+1
// pop local 0
@LCL
D=M
@0
D=D+A
@R15
M=D
@SP
AM=M-1
D=M
@R15
A=M
M=D
// label LOOP_START
(LOOP_START)
// push argument 0
@ARG
D=M
@0
A=D+A
D=M
@SP
A=M
M=D
@SP
M=M+1
// push local 0
@LCL
D=M
@0
A=D+A
D=M
@SP
A=M
M=D
@SP
M=M+1
// add
@SP
AM=M-1
D=M
A=A-1
M=D+M
// pop local... |
Microcontroller_Lab/Lab_3/LAB_3/Excersice_1.asm | MuhammadAlBarham/pic16f778_projects | 0 | 44461 | <filename>Microcontroller_Lab/Lab_3/LAB_3/Excersice_1.asm
#include<P16f84A.inc>
;Exersice 1 on Exp. 3 :Maplab Basics
GPR equ 0x0D ;assign GPR to Adress 0x0D
movlw 0
movwf GPR
movf GPR,1
nop
nop
end |
crypto/bn/asm/co_win32.asm | enthought/openssl | 0 | 44462 | ; Don't even think of reading this code
; It was automatically generated by co-586.pl
; Which is a perl program used to generate the x86 assember for
; any of ELF, a.out, COFF, Win32, ...
; eric <<EMAIL>>
;
%ifdef __omf__
section code use32 class=code
%else
section .text
%endif
global _bn_mul_comba8
... |
libsrc/graphics/zx81/hr/invhrg.asm | meesokim/z88dk | 0 | 44463 | <filename>libsrc/graphics/zx81/hr/invhrg.asm
;--------------------------------------------------------------
; WRX16K style Graphics
; for the ZX81
;--------------------------------------------------------------
;
; Invert screen output
;
; Stefano - Jan 2009
;
;
; $Id: invhrg.asm,v 1.2 2015/01/19 01:32:52 ... |
Source/dos32/rizla.asm | powervr-graphics/PowerVR-Series1 | 215 | 44466 | <gh_stars>100-1000
; nasty stdlib hacks
.386P
.387
; this seems to be needed by the intel compiler
; but nothing seems to access it ... better get your
; tin hats on lads.
PUBLIC __fltused
_DATA SEGMENT PARA PUBLIC USE32 'DATA'
__fltused db 0
_DATA ENDS
; chkstk function (used by txmops.c)
PUB... |
oeis/234/A234871.asm | neoneye/loda-programs | 11 | 44467 | <filename>oeis/234/A234871.asm
; A234871: 5*binomial(11*n+5,n)/(11*n+5).
; Submitted by <NAME>
; 1,5,65,1110,21620,455126,10085845,231814440,5475346305,132090011900,3240886705386,80621405042750,2028732009726240,51548408940061460,1320738410528418175,34083616545621832176,885134579074202142075,23114512490211287029665,6066... |
simpleCPU/programs/str_test.asm | pisgah-fogel/Flynn | 0 | 44468 | <gh_stars>0
NOP
LD 00000000
MOV r2 r0
LD 00000000
MOV r1 r0
LD 01110111
STR ; [0x0000] = 0x77
LD 00000000
MOV r2 r0
LD 00000001
MOV r1 r0
LD 10000100
STR ; [0x0001] = 0x84
LD 00000000
MOV r1 r0
LD 00000000
MOV r2 r0
LDR ; R0 == 0x77 ?
LD 00000001
MOV r1 r0
LD 00000000
MOV r2 r0
LDR ; R0 == 0x84 ?
NOP
NOP
NOP
|
src/reset.asm | msamigurpinar/sunset | 1 | 44469 | <gh_stars>1-10
.include "constants.inc"
.segment "CODE"
.import main
.export reset_handler
.proc reset_handler
SEI ; Disable all interrupts
CLD ; Disable decimal mode
LDX #$40
STX $4017 ; Disable APU frame IRQ
LDX #$FF
TXS ; Setup stack
INX ; Now X=0
STX PPUCTRL ; ... |
programs/oeis/040/A040509.asm | neoneye/loda | 22 | 44470 | ; A040509: Continued fraction for sqrt(533).
; 23,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11,1,1,11,46,11
seq $0,10186 ; Continued fraction for sqrt(125).
seq $0,80652 ; a(1)=2; for n>1, a(n... |
asm/RS_485.asm | JON95Git/ICCP | 1 | 44472 |
_envia_slave:
;RS_485.c,9 :: void envia_slave(struct RS485_data dados_escravo)
;RS_485.c,11 :: RS485Master_Send (dados_escravo.msg, dados_escravo.length_msg, dados_escravo.address);
MOVF FARG_envia_slave_dados_escravo+0, 0
MOVWF FARG_RS485Master_Send_data_buffer+0
MOVLW 0
MOVWF ... |
programs/oeis/273/A273831.asm | karttu/loda | 0 | 44473 | ; A273831: Number of active (ON,black) cells in n-th stage of growth of two-dimensional cellular automaton defined by "Rule 961", based on the 5-celled von Neumann neighborhood.
; 1,4,21,45,76,117,164,221,284,357,436,525,620,725,836,957,1084,1221,1364,1517,1676,1845,2020,2205,2396,2597,2804,3021,3244,3477,3716,3965,422... |
Transynther/x86/_processed/US/_st_4k_sm_/i3-7100_9_0x84_notsx.log_21829_874.asm | ljhsiun2/medusa | 9 | 44474 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r14
push %r15
push %rbp
push %rbx
push %rdi
// Store
lea addresses_A+0x1a148, %r11
nop
nop
nop
cmp %r14, %r14
mov $0x5152535455565758, %rdi
movq %rdi, %xmm0
and $0xffffffffffffffc0, %r11
vmovaps %ymm0, ... |
oeis/103/A103485.asm | neoneye/loda-programs | 11 | 44475 | ; A103485: Expansion of (7 +4*x -5*x^2 -7*x^3) / ((1-x)*(1-x^2-x^3)).
; Submitted by <NAME>
; 7,11,13,17,23,29,39,51,67,89,117,155,205,271,359,475,629,833,1103,1461,1935,2563,3395,4497,5957,7891,10453,13847,18343,24299,32189,42641,56487,74829,99127,131315,173955,230441,305269,404395,535709,709663,940103,1245371,1649765... |
cards/bn5/ItemCards/136-F005 Wily's Failed Project.asm | RockmanEXEZone/MMBN-Mod-Card-Kit | 10 | 44476 | <gh_stars>1-10
.include "defaults_item.asm"
table_file_jp equ "exe5-utf8.tbl"
table_file_en equ "bn5-utf8.tbl"
game_code_len equ 3
game_code equ 0x4252424A // BRBJ
game_code_2 equ 0x42524245 // BRBE
game_code_3 equ 0x42524250 // BRBP
card_type equ 0
card_id equ 25
card_no equ "025"
card_sub equ "Item Card... |
Driver/Keyboard/GDI/gdiKeyboardStrategy.asm | steakknife/pcgeos | 504 | 44478 | <gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
(c) Copyright Geoworks 1996 -- All Rights Reserved
GEOWORKS CONFIDENTIAL
PROJECT: GDI
MODULE: GDI Keyboard Driver
FILE: gdiKeyboardStrategy.asm
AUTHOR: <NAME>, <NAME>, 1996
ROUTINES:
Name Descriptio... |
BG-andalf_the_White-Gray/src/palettes.asm | Gumball2415/nes-scribbles | 0 | 44479 | .include "defines.inc"
.include "global.inc"
.segment "BANK0"
palette_choice1:
; gandalf the gray
.byte $2D,$2D,$30,$30
.res 28, $2D
palette_choice2:
; gandalf the white
.byte $30,$00,$30,$00
.res 28, $30
; palette pointer selection
; thanks Kasumi!
palette_tableLo:
.byte <palette_choice1
.byte <pal... |
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0xca_notsx.log_21829_1319.asm | ljhsiun2/medusa | 9 | 44481 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %rbx
lea addresses_D_ht+0x391f, %rbx
nop
nop
nop
nop
cmp %r10, %r10
movb (%rbx), %r13b
nop
sub $12892, %r14
pop %rbx
pop %r14
pop %r13
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r15
push %r8
push %rax
p... |
asm/sa1/color.asm | VitorVilela7/SMW-CodeLib | 14 | 44482 | ; Color-related library.
convert_hue:
rep #$20
sta $04
jsl Sin
clc
adc #$0100
lsr
adc #$0000
cmp #$0100
bcc +
lda #$00ff
+ sep #$20
sta $00
rep #$20
lda $04
clc
adc #$0055
jsl Sin
clc
adc #$0100
lsr
adc #$0000
cmp #$0100
bcc +
lda #$00ff
+ sep #$20
sta $02
rep #$20
lda $04
clc
adc #$00a... |
tests/macros/rept_var.asm | cizo2000/sjasmplus | 220 | 44483 | MACRO filler x1, x2, y1, y2
ld hl,y1*2
add hl,sp
ld sp,hl
REPT (y2 - y1)
ld de,x1
pop hl
add hl,de
REPT (x2 - x1)
ld (hl),a
inc l
ENDR
ld (hl),a
ENDR
ENDM
OUTPUT "rept_var.bin"
filler 10, 13, 30, 33
|
src/stars/examples/arrays/count_char.asm | kevintmcdonnell/stars | 9 | 44485 | ## count.asm - count the occurences of a specific
## character in string "str".
.data
str: .asciiz "abceebceebeebbacacc"
char: .byte 'b'
ans: .asciiz "Count is "
.text
.globl main
main:
la $t0, str # address of character to check
li $t1,0 # the loaded char
li $t2,0 # counter
lb $t3,char # the char we are counti... |
src/kernel/proc/user.asm | cashlisa/mos | 302 | 44488 | [global enter_usermode]
enter_usermode:
cli
mov ax,0x23
mov ds,ax
mov es,ax
mov fs,ax
mov gs,ax ;we don't need to worry about SS. it's handled by iret
mov eax, [esp + 4]
; set address in user stack which causes the page fault when finishing a user thread
sub eax, 4
mov ebx, [esp + 12]
mov dword [eax], eb... |
4-periodo/arquitetura-e-organizacao-de-computadores-2/trabalho-1/trabalho-1.asm | lucasmc64/the-graduation-journey | 0 | 44489 | <gh_stars>0
# trabalho-1.asm
#
# DESC:
# Escreva em assembly um programa que implementa o algoritmo de ordenacao quicksort.
# O programa deve ler um arquivo texto chamado numeros.csv (nos arquivos do grupo) e ordena-los.
# O programa deve ainda possuir uma funcao que converte uma string de numeros para um inteiro... |
gfx/pokemon/weedle/anim_idle.asm | Dev727/ancientplatinum | 28 | 44490 | <reponame>Dev727/ancientplatinum<gh_stars>10-100
setrepeat 2
frame 0, 04
frame 2, 04
dorepeat 1
setrepeat 2
frame 0, 05
frame 3, 05
frame 4, 05
frame 3, 05
dorepeat 5
endanim
|
oeis/334/A334995.asm | neoneye/loda-programs | 11 | 44491 | <filename>oeis/334/A334995.asm<gh_stars>10-100
; A334995: Twice the area of triangle with coordinates (Fn, Fn+k), (Fn+2k, Fn+3k) and (Fn+4k, Fn+5k), where Fn is the n-th Fibonacci number A000045.
; Submitted by <NAME>
; 1,15,256,2835,33275,368640,4121741,45703035,507456256,5627634375,62422224679,692270530560,7677591693... |
source/modules/basic/expressions/string/slice.asm | paulscottrobson/mega-basic | 3 | 44493 | ; *******************************************************************************************
; *******************************************************************************************
;
; Name : slice.asm
; Purpose : Slice strings.
; Date : 22nd August 2019
; Author : <NAME> (<EMAIL>)
;
; ******************... |
Platform/C64/src/includes/checkTerrain.asm | martinhaye/lawless-legends | 51 | 44494 |
checkTerrainLeft
lda playerPosition_LO
sec
sbc #1
sta mapPointer_LO
lda playerPosition_HI
sbc #0
sta mapPointer_HI
jmp checkTerrain
checkTerrainRight
lda playerPosition_LO
clc
adc #1
sta mapPointer_LO
lda playerPosition_HI
adc #0
sta mapPointer_HI
jmp checkTerrain
checkTerrainUp
lda playerPosition_L... |
Practice/Assignments assembly class/4.asm | WardunIslam/CSE331L_Section_7_Summer_2020_NSU | 0 | 44495 | org 100h
L1: NOP
L2: MOV DX, 0FFFFH
IN AL, DX
MOV CL, AL
L3: MOV DX, 0000H
IN AL, DX
MOV CH, AL
L4: ADD CL, CH
L5: MOV AL, CL
OUT 0FEH, AL
L6: HLT
ret
|
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_892.asm | ljhsiun2/medusa | 9 | 44496 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rax
push %rbp
push %rbx
push %rdi
lea addresses_WT_ht+0xd2a, %rax
nop
nop
nop
sub $22497, %rbx
movl $0x61626364, (%rax)
nop
nop
nop
nop
nop
xor %rdi, %rdi
lea addresses_UC_ht+0xf9ba, %rbp
nop
cmp %r13, %r13
movb $0x61, (%rbp)
nop
nop
nop
s... |
asm/vvram_mode2/vvram_mode2_macros.asm | b00lduck/cbmpet-asm | 0 | 44497 | // VVRAM mode 2 macros
.macro DrawMemoryNA() {
// Pointer to the VVRAM line (ZP1)
// ZP1 = VVRAM+1 (padding 4px on the left side)
// ZP3 = $80A0
lda #<VVRAM+1 // padding 4px = 1 byte
sta ZP1
lda #>VVRAM+1 // padding 4px = 1 byte
sta ZP1+1
lda #$80
sta ZP3+1
lda #$28
sta ZP3
.f... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_21829_1715.asm | ljhsiun2/medusa | 9 | 44498 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
lea addresses_D_ht+0xed96, %rbp
nop
nop
nop
cmp $1954, %rax
movb (%rbp), %bl
nop
nop
inc %rdi
lea addresses_WC_ht+0x8ed1, %rdi
nop
nop
cmp %rcx, %rcx
mov $0x6162636465666768, %r8
m... |
src/Native/Runtime/arm64/MiscStubs.asm | anydream/corert | 0 | 44499 | ;; Licensed to the .NET Foundation under one or more agreements.
;; The .NET Foundation licenses this file to you under the MIT license.
;; See the LICENSE file in the project root for more information.
#include "AsmMacros.h"
EXTERN memcpy
TEXTAREA
;;
;; Checks whether the static class constructor for the t... |
libsrc/_DEVELOPMENT/adt/ba_stack/c/sccz80/ba_stack_empty.asm | jpoikela/z88dk | 640 | 44500 | <filename>libsrc/_DEVELOPMENT/adt/ba_stack/c/sccz80/ba_stack_empty.asm<gh_stars>100-1000
; int ba_stack_empty(ba_stack_t *s)
SECTION code_clib
SECTION code_adt_ba_stack
PUBLIC ba_stack_empty
EXTERN asm_ba_stack_empty
defc ba_stack_empty = asm_ba_stack_empty
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _ba_stack_... |
assembly_code/chp9_08.asm | Nabeegh-Ahmed/BelalHashmi-Assembly-Exercise-Solutions | 104 | 44501 | <reponame>Nabeegh-Ahmed/BelalHashmi-Assembly-Exercise-Solutions
; Solution to this problem was developed by https://github.com/farhana1i
[org 0x0100]
jmp main
oldisr: dd 0 ; old isr offset and segment
buffer: times 2000 dw 0 ; buffer to save video memory
; to clear video screen
clrscr:
push ... |
oeis/021/A021114.asm | neoneye/loda-programs | 11 | 44502 | <gh_stars>10-100
; A021114: Expansion of 1/((1-x)(1-2x)(1-5x)(1-6x)).
; Submitted by <NAME>
; 1,14,131,1036,7497,51450,341167,2209592,14071013,88494406,551310123,3409583268,20966120449,128339843282,782754695399,4760106416464,28878529850205,174860636120478,1057111102343395,6382403043211580,38493100407122681,231952013186... |
oeis/143/A143520.asm | neoneye/loda-programs | 11 | 44503 | ; A143520: a(n) is n times number of divisors of n if n is odd, zero if n is twice odd, n times number of divisors of n/4 if n is divisible by 4.
; Submitted by <NAME>
; 1,0,6,4,10,0,14,16,27,0,22,24,26,0,60,48,34,0,38,40,84,0,46,96,75,0,108,56,58,0,62,128,132,0,140,108,74,0,156,160,82,0,86,88,270,0,94,288,147,0,204,10... |
oeis/111/A111741.asm | neoneye/loda-programs | 11 | 44504 | <filename>oeis/111/A111741.asm
; A111741: Distance between k*(n-th prime) and next prime, k=9 case.
; Submitted by <NAME>
; 1,2,2,4,2,10,4,2,4,2,2,4,4,2,8,2,10,8,4,2,2,8,4,8,4,2,2,4,2,2,8,2,4,8,20,2,10,4,8,2,2,8,2,4,4,10,2,4,10,2,2,2,10,8,20,4,2,2,10,2,2,10,4,2,2,4,20,4,14,22,4,20,4,2,2,2,10,8,4,10,8,4,2,10,16,2,8,14,4... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_806.asm | ljhsiun2/medusa | 9 | 44506 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0xe51e, %rsi
lea addresses_UC_ht+0x159f1, %rdi
clflush (%rdi)
xor $51973, %r9
mov $13, %rcx
rep movsw
nop
nop
nop
and %rax, %rax
lea addresses_WT_ht+0x1cc31, %r11
nop
nop
nop
nop
sub $18... |
examples/07-subrountines/07-subrountines-2.asm | billsix/spimulator | 0 | 44507 | # Copyright (c) 2021 <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 rights
# to use, copy, modify, merge, publish, distribute, ... |
Transynther/x86/_processed/NONE/_ht_st_zr_un_/i7-7700_9_0xca.log_21829_310.asm | ljhsiun2/medusa | 9 | 44509 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1bb7e, %rcx
nop
nop
sub %rbx, %rbx
mov (%rcx), %ax
nop
nop
nop
nop
nop
sub %r14, %r14
lea addresses_WT_ht+0x192fe, %r13
nop
sub $33639, %r8
movw $0x6162, (%r13)
nop
nop
nop
no... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_872.asm | ljhsiun2/medusa | 9 | 44510 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x11eb5, %rsi
lea addresses_A_ht+0x5ab5, %rdi
nop
nop
nop
nop
nop
sub $18144, %r15
mov $73, %rcx
rep movsq
nop
nop
nop
and %r12, %r12
lea addresses_A_ht+0x89f5, %r14
and $2341, %rbp
movb... |
unordnung_auch_assembler/asm/attiny13/versuche/sirene2.asm | no-go/Blink_atmega328p | 0 | 44512 | ; atTINY 13 - Board without 7seg display
.equ PORTB,0x18
.equ DDRB,0x17
Start:
ldi r16, 0b010000 ; Pin 4 is output
out DDRB, r16
ldi r24, 0xFF ; initial for the wait loop
ldi r16, 0 ; direction 0 = Up / 1 = Down
Loop:
sbi PORTB, 4 ; set spk on
rcall R24wait ; go to wait loop
cbi PORTB, 4 ; set spk... |
Source application Beck DK40/libs/clibV270/RTX/rtxdyn00.asm | yassinehamouten/Gestion-acces | 0 | 44513 | <filename>Source application Beck DK40/libs/clibV270/RTX/rtxdyn00.asm<gh_stars>0
;******************************************************************************
;
; (c) 2010 by BECK IPC GmbH
; http://www.beck-ipc.com
;
;******************************************************************************
;
; Module: rtxdy... |
A6/shellcode1-original.nasm | mshaneck/SLAE32 | 0 | 44514 | global _start
section .text
_start:
xor ecx, ecx
mul ecx
mov al, 0x5
push ecx
push 0x7374736f ;/etc///hosts
push 0x682f2f2f
push 0x6374652f
mov ebx, esp
mov cx, 0x401 ;permmisions
int 0x80 ;syscall to open file
xchg eax, ebx
push 0x4
pop eax
... |
oeis/005/A005173.asm | neoneye/loda-programs | 11 | 44516 | <reponame>neoneye/loda-programs
; A005173: Number of trees of subsets of an n-set.
; Submitted by <NAME>(s3)
; 0,1,12,61,240,841,2772,8821,27480,84481,257532,780781,2358720,7108921,21392292,64307941,193185960,580082161,1741295052,5225982301,15682141200,47054812201,141181213812,423577195861,1270798696440
add $0,2
mov $... |
TinyBasic/basic.asm | andrewtrotman/Pinnated | 0 | 44517 | <reponame>andrewtrotman/Pinnated<gh_stars>0
;NAM TB01V137
* WRITTEN 20-OCT-77 BY <NAME>
* REVISED 30-DEC-77
* REVISED 18-JAN-78
* REVISED 10-APR-78
* REVISED 08-MAY-79 TO ELIMINATE USE OF SP
* REVISED 24-JAN-80 TO USE 6801 ON CHIP RAM
* REVISED 26-JAN-80 FOR NEW 6801 INSTRUCTIONS
* REVISED 24-JUL-81 FOR WHISTON BOARD
... |
libsrc/_DEVELOPMENT/inttypes/c/sdcc_iy/strtoimax_callee.asm | meesokim/z88dk | 0 | 44518 | <reponame>meesokim/z88dk
; intmax_t strtoimax_callee(const char *nptr, char **endptr, int base)
SECTION code_inttypes
PUBLIC _strtoimax_callee
EXTERN _strtol_callee
defc _strtoimax_callee = _strtol_callee
|
programs/oeis/066/A066602.asm | karttu/loda | 0 | 44519 | <gh_stars>0
; A066602: a(n) = 4^n mod n.
; 0,0,1,0,4,4,4,0,1,6,4,4,4,2,4,0,4,10,4,16,1,16,4,16,24,16,1,4,4,16,4,0,31,16,9,28,4,16,25,16,4,22,4,36,19,16,4,16,18,26,13,48,4,28,34,16,7,16,4,16,4,16,1,0,49,4,4,52,64,46,4,64,4,16,49,28,16,40,4,16,1,16,4,64,4,16,64,64,4,46,4,72,64,16,74,64,4,30,91,76,4,16,4,16,64,16,4,28,4,5... |
Cameras/ResidentEvil3/InjectableGenericCameraSystem/Interceptor.asm | OhDeerSKR/InjectableGenericCameraSystem | 1 | 44520 | <gh_stars>1-10
;////////////////////////////////////////////////////////////////////////////////////////////////////////
;// Part of Injectable Generic Camera System
;// Copyright(c) 2020, <NAME>
;// All rights reserved.
;// https://github.com/FransBouma/InjectableGenericCameraSystem
;//
;// Redistribution and use in s... |
Code/CustomControl/RADebug/RADebug/Debug.asm | CherryDT/FbEditMOD | 11 | 44521 | <filename>Code/CustomControl/RADebug/RADebug/Debug.asm
.const
szDump db 'Reg Hex Dec Bin',0Dh,0
szRegs db 'EAX %08Xh %11d ',0,
'ECX %08Xh %11d ',0,
'EDX %08Xh %11d ',0,
'EBX %08Xh %11d ',0,
'ESP %08Xh %11d ',0,
'EBP %08Xh %11d '... |
src/stars/tests/tests/floatInstrs/store_double_test.asm | kevintmcdonnell/stars | 9 | 44523 | <reponame>kevintmcdonnell/stars
.data
small: .double 0.0
nan: .double 0.0
.text
main:
# Small
li $t0, 0x51EB851F
mtc1 $t0, $f14
li $t0, 0x407A46B8
mtc1 $t0, $f15
la $t1, small
s.d $f14, 0($t1)
l.d $f12, 0($t1)
li $v0, 3
syscall
li $a0, 32
li $v0, 11
syscall
# Nan
li $t0, -1
mtc1 $t0, $f14
li $t0, 0x7FFFFFFF
mtc... |
src/lib/graphic.asm | zys1310992814/BookOSv0.2 | 3 | 44524 | [bits 32]
[section .text]
INT_VECTOR_SYS_CALL equ 0x80
_NR_INIT_GRAPHIC equ 40
_NR_GRAPH_POINT equ 41
_NR_GRAPH_REFRESH equ 42
_NR_GRAPH_LINE equ 43
_NR_GRAPH_RECT equ 44
_NR_GRAPH_TEXT equ 45
_NR_GRAPHIC_EXIT equ 46
_NR_GRAP_BUFFER equ 47
_NR_GRAP_CHAR equ 48
global init_graphic
init_graphic:
mov eax, _NR_INIT_G... |
programs/oeis/151/A151791.asm | karttu/loda | 0 | 44525 | <reponame>karttu/loda
; A151791: a(1)=1; for n > 1, a(n) = 7*6^(wt(n-1)-1).
; 1,7,7,42,7,42,42,252,7,42,42,252,42,252,252,1512,7,42,42,252,42,252,252,1512,42,252,252,1512,252,1512,1512,9072,7,42,42,252,42,252,252,1512,42,252,252,1512,252,1512,1512,9072,42,252,252,1512,252,1512,1512,9072,252
mov $13,$0
mov $15,2
lpb $1... |
oeis/004/A004156.asm | neoneye/loda-programs | 11 | 44526 | <filename>oeis/004/A004156.asm
; A004156: Odd numbers written backwards.
; Submitted by Jon Maiga
; 1,3,5,7,9,11,31,51,71,91,12,32,52,72,92,13,33,53,73,93,14,34,54,74,94,15,35,55,75,95,16,36,56,76,96,17,37,57,77,97,18,38,58,78,98,19,39,59,79,99,101,301,501,701,901,111,311,511,711,911,121,321,521
mul $0,2
add $0,1
lpb ... |
programs/oeis/120/A120739.asm | neoneye/loda | 22 | 44528 | ; A120739: a(n) = Sum{k=0..n} floor(C(n,k)/2).
; 0,0,1,2,7,14,30,60,127,254,510,1020,2046,4092,8188,16376,32767,65534,131070,262140,524286,1048572,2097148,4194296,8388606,16777212,33554428,67108856,134217724,268435448,536870904,1073741808,2147483647,4294967294,8589934590,17179869180,34359738366,68719476732,137438953468... |
smsq/q68/kbd/read.asm | olifink/smsqe | 0 | 44529 | <gh_stars>0
; Q68 Keyboard polling (c) 2016-2020 <NAME>
;
; 2020-03-30 1.01 use possible delay loop ; apparently some keyboard adapters (usb->ps/2) do not respect the
; ps/2 protocol : instead of waiting for the signal that a new byte may be sent, they just
; wait a bit (apparently for a variable period of time) ... |
programs/oeis/045/A045572.asm | neoneye/loda | 22 | 44530 | ; A045572: Numbers that are odd but not divisible by 5.
; 1,3,7,9,11,13,17,19,21,23,27,29,31,33,37,39,41,43,47,49,51,53,57,59,61,63,67,69,71,73,77,79,81,83,87,89,91,93,97,99,101,103,107,109,111,113,117,119,121,123,127,129,131,133,137,139,141,143,147,149,151,153,157,159,161,163,167,169,171,173,177,179,181,183,187,189,19... |
game/logic/game_states/transitions/scroll_transition.asm | benoitryder/super-tilt-bro | 0 | 44531 | <filename>game/logic/game_states/transitions/scroll_transition.asm
state_transition_pre_scroll_down:
.(
; Call the scrolling routine
lda #0
sta tmpfield3
sta tmpfield4
lda #<camera_steps
sta extra_tmpfield1
lda #>camera_steps
sta extra_tmpfield2
lda #1
jsr scroll_transition
; No need to adjust the stop posi... |
S-F200VX_20180920_WithFactory/ISR_Handle.asm | xcwk/8-Pads-WiFi-Fat-Scale | 1 | 44532 | <reponame>xcwk/8-Pads-WiFi-Fat-Scale<gh_stars>1-10
;=============================================
;====== ISR_Handle.ASM
;=============================================
ISR_Entry:
MOVWF ISR_WORK_BACK
MOVFF ISR_STATUS_BACK,STATUS
MOVFF ISR_BSR_BACK ,BSR
MOVFF ISR_FSR0_BACK ,FSR... |
cmd/chkdsk/chkproc.asm | minblock/msdos | 0 | 44533 | ;******************************************************************************
;/*
; * Microsoft Confidential
; * Copyright (C) Microsoft Corporation 1991
; * All Rights Reserved.
; */
;
; Change Log:
;
; Date Who # Description
; -------- --... |
maps/OreburghApartmentNW1F.asm | AtmaBuster/pokeplat-gen2 | 6 | 44534 | <filename>maps/OreburghApartmentNW1F.asm<gh_stars>1-10
object_const_def ; object_event constants
OreburghApartmentNW1F_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
OreburghApartmentNW1F_KidScript:
jumptextfaceplayer .Text
.Text:
text "A GYM LEADER isn't"
line "like just any"
cont "TRAINER you meet."
pa... |
pwnlib/shellcraft/templates/aarch64/pushstr_array.asm | cclauss/pwntools | 7 | 44535 | <%
from pwnlib import shellcraft
from pwnlib.context import context as ctx
from pwnlib.util.iters import group
%>
<%docstring>
Pushes an array/envp-style array of pointers onto the stack.
Arguments:
reg(str):
Destination register to hold the pointer.
array(str,list):
Single argument... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.