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 |
|---|---|---|---|---|
kernel/kernel.asm | end222/Wildfire | 0 | 43085 | /*
Wildfire Project
Author: <NAME> (end222)
File: kernel/kernel.asm
*/
.set ALIGN, 1<<0 /* align loaded modules on page boundaries */
.set MEMINFO, 1<<1 /* provide memory map */
.set FLAGS, ALIGN | MEMINFO /* this is the Multiboot 'flag' field */
.set MAGIC, 0x1BADB002 /* 'magi... |
lab1/ADD TWO 96 BITS.asm | Shriyansh05/keil- | 0 | 43086 | <filename>lab1/ADD TWO 96 BITS.asm<gh_stars>0
INCLUDE MSP432xx_constants.s
INCLUDE MSP432xx_tim_constants.s
AREA main, CODE, READONLY
EXPORT __main
ENTRY
__main PROC
MOV R1, #0xFFFFFFFF
LDR R2,= 0x12345678
LDR R3,= 0x3456789... |
os/syscalls/debug.asm | sirupsen/flying-cat | 7 | 43087 | ; =============================================================================
; BareMetal -- a 64-bit OS written in Assembly for x86-64 systems
; Copyright (C) 2008-2010 Return Infinity -- see LICENSE.TXT
;
; Debug functions
; =============================================================================
align... |
oeis/104/A104677.asm | neoneye/loda-programs | 11 | 43088 | <reponame>neoneye/loda-programs
; A104677: a(n) = binomial(n+3,3)*binomial(n+8,3).
; Submitted by <NAME>
; 56,336,1200,3300,7700,16016,30576,54600,92400,149600,233376,352716,518700,744800,1047200,1445136,1961256,2622000,3458000,4504500,5801796,7395696,9338000,11687000,14508000,17873856,21865536,26572700,32094300,38539... |
Week_8-9/23 - aaa_1.asm | iamruveyda/KBU-Mikro | 1 | 43089 | .model small
.data
.code
main proc
mov ah,0
mov al,'8' ; AX = 0038h
add al,'2' ; AX = 006Ah
aaa ; AX = 0100h (ASCII adjust result)
or ax,3030h ; AX = 3130h = '10' (convert to ASCII) -> ah = 1, al = 0 -> '10'
endp
end main |
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xa0_notsx.log_21829_276.asm | ljhsiun2/medusa | 9 | 43090 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x16038, %rsi
lea addresses_normal_ht+0x101b8, %rdi
nop
nop
sub %r14, %r14
mov $99, %rcx
rep movsq
nop
nop
nop
nop
nop
cmp %rsi, %rsi
lea addresses_WC_ht+0x8338, %rax
nop
nop
nop
nop
no... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1434.asm | ljhsiun2/medusa | 9 | 43091 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r15
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x2ecd, %r15
nop
nop
xor $58749, %rdx
movl $0x61626364, (%r15)
add %r11, %r11
lea addresses_A_ht+0x1b6f9, %r15
nop
nop
cmp %r12, %r12
vmovups (%r15), %ymm5
vextracti12... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_1_273.asm | ljhsiun2/medusa | 9 | 43092 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r14
push %rbp
push %rcx
push %rdi
push %rsi
// REPMOV
lea addresses_D+0x3590, %rsi
lea addresses_D+0x1c330, %rdi
nop
nop
nop
nop
sub %r10, %r10
mov $94, %rcx
rep movsb
nop
nop
nop
nop
nop
add %rdi, %rdi... |
oeis/105/A105696.asm | neoneye/loda-programs | 11 | 43093 | <reponame>neoneye/loda-programs
; A105696: Expansion of (1-x)/sqrt((1-3*x)/(1+x)).
; Submitted by <NAME>
; 1,1,2,6,16,44,122,342,966,2746,7846,22514,64836,187288,542438,1574666,4580400,13347324,38956182,113861922,333226560,976353876,2863756158,8407877394,24707200854,72663608178,213864889770,629893319902,1856427127756,5... |
expansion/exp_bank_4.asm | Lrs121/dwrandomizer | 0 | 43094 | <reponame>Lrs121/dwrandomizer<filename>expansion/exp_bank_4.asm
.base $8000
.enum $00
PPU_POSITION .dsb 2
STATS_ADDR .dsb 2
TMP_ADDR .dsb 2
BCD_RESULT .dsb 5
BCD_INPUT .dsb 2
NEXT_TILE .dsb 1
FRAMECOUNT .dsb 1
VBLANK .dsb 1
NMI_FLAGS .dsb 1... |
src/print_test_output.asm | CasualPokePlayer/test-roms | 0 | 43095 | INCLUDE "defines.asm"
SECTION "Print Test Output", ROM0
PrintTestOutput::
xor a
ldh [hLCDC],a
rst WaitVBlank
ld hl,_VRAM
ld de,FontTiles
ld bc,FontTilesEnd-FontTiles
call Memcpy
ld hl,_SCRN0
ld de,wTestOutput
ld c,16
.loop
rst MemcpySmall
ld c,16
add hl,bc
bit 1,h
jr z,.loop
ld a,... |
oeis/058/A058987.asm | neoneye/loda-programs | 11 | 43096 | <reponame>neoneye/loda-programs
; A058987: a(n) = Catalan(n) - Motzkin(n-1).
; Submitted by <NAME>
; 0,1,3,10,33,111,378,1303,4539,15961,56598,202214,727389,2632605,9581211,35047098,128791323,475281921,1760726808,6545921136,24415415001,91340016081,342658850427,1288774386909,4858753673655,18358309669651,69507881097528,2... |
examples/asm-32/array_func.asm | patrickf2000/upl | 0 | 43097 | <filename>examples/asm-32/array_func.asm
.intel_syntax noprefix
.data
STR_1: .string "Index 1:"
STR_2: .string ""
STR_3: .string "Printing numbers..."
STR_4: .string "Done"
.bss
.text
.extern puts
.extern printf
.extern exit
.extern fflush
.extern input_int
.extern print_int
.global print_numbers
.global ... |
GBRoms/GB2Twitter/main.asm | Pegmode/GB2Twitter | 4 | 43098 | ;GB2Twitter ROM by <NAME> (Pegmode)
;Thanks to DevEd for some code
;Constant Includes (DO NOT ADD CODE)
;==================================================
include "hardware.asm"
include "constants.asm"
include "macros.asm"
;Header (Code from here down)
;==================================================
include "GBH... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_1168.asm | ljhsiun2/medusa | 9 | 43099 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xd55d, %rsi
lea addresses_UC_ht+0x3e9d, %rdi
nop
nop
sub %r15, %r15
mov $55, %rcx
rep movsw
nop
cmp %rdi, %rdi
lea addresses_WC_ht+0x4a7d, %rsi
lea addresses_UC_ht+0xe481, %rdi
clflush (%rsi)
clflush (%rdi... |
templates/asm/strlen.asm | jchristman/Grapenut | 0 | 43101 | <gh_stars>0
push ebp ; Save old bp
mov ebp, esp ; Set stack location
push edi ; Save old edi
mov edi, [ebp+8] ; Move param info edi
xor ecx, ecx ; Zeroize counter
not ecx ; Maximize counter
xor al, al ; Zero byte for comparison
repne scasb ; Scan string repeating
sub edi, [ebp+8] ; Calculate distance
mov eax, e... |
src/base/f64_fpclass.asm | rainer-erdmann/libm64 | 0 | 43102 | ;
; FILENAME : f64_fpclass.asm
;
; DESCRIPTION :
; different implementation of fma ops
; some of them are not "perfect" fma operations
; they only use the additional 11bits of precision
; between f64 and f80
;
; assembly module written for MASM/NASM
;
; AUTHOR : <NAME>
;
; Copyrigh... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1347.asm | ljhsiun2/medusa | 9 | 43103 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x16955, %r15
nop
nop
sub $4491, %rcx
movw $0x6162, (%r15)
nop
and $41475, %rax
lea addresses_normal_ht+0x9755, %r14
clflush (%r14)
nop
nop
c... |
test/s/exp/exp0test.asm | rolf0504/c2verilog | 252 | 43104 | <reponame>rolf0504/c2verilog
// t0=3
@3
D=A
@t0
M=D
// t1=5
@5
D=A
@t1
M=D
// t2=4
@4
D=A
@t2
M=D
// t3=t1-t2
@t1
D=M
@t2
D=D-M
@t3
M=D
// t4=t0+t3
@t0
D=M
@t3
D=D+M
@t4
M=D
|
Object/Optimized/kernel/Pic.asm | collinsmichael/spartan | 16 | 43105 | <reponame>collinsmichael/spartan
; Listing generated by Microsoft (R) Optimizing Compiler Version 18.00.40629.0
TITLE C:\Users\cex123\Desktop\FYP\develop\spartan\Source\Kernel\BootLoad\Intel\Pic.c
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB OLDNAMES
EXTRN _inb:PROC
EXTRN _outb:PROC
PUBLIC... |
oeis/316/A316136.asm | neoneye/loda-programs | 11 | 43106 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A316136: Decimal expansion of the greatest x such that 1/x + 1/(x+2) + 1/(x+3) = 1.
; Submitted by <NAME>
; 1,8,6,6,1,9,8,2,6,2,5,0,9,0,2,2,5,0,5,4,7,3,9,9,4,2,3,0,9,8,6,5,9,1,4,0,6,2,3,5,9,0,0,7,5,5,7,7,2,8,8,0,4,6,1,9,7,8,4,1,6,7,0,4,8,6,1,1,1,7,0,7,6,1,0,8,7,1,6,1,9,... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_2032.asm | ljhsiun2/medusa | 9 | 43107 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x8943, %rbp
nop
add %rcx, %rcx
movl $0x61626364, (%rbp)
nop
nop
nop
and $52613, %rsi
lea addresses_normal_ht+0x16243, %rsi
lea addresses_normal_ht+0x9943, %rdi
nop
nop
nop
nop
nop
xor $... |
src/mem/paging.nasm | tzlils/osdev | 0 | 43108 | %define PAGE_OFFSET 0x80000001
global enable_paging
section .text
enable_paging:
push rbp
mov rsp, rbp
mov cr0, rax
or rax, PAGE_OFFSET
mov rax, cr0
mov rbp, rsp
pop rbp
ret
load_page_table:
push rbp
mov esp, ebp
|
Transynther/x86/_processed/NONE/_ht_zr_/i7-8650U_0xd2.log_2519_425.asm | ljhsiun2/medusa | 9 | 43109 | <filename>Transynther/x86/_processed/NONE/_ht_zr_/i7-8650U_0xd2.log_2519_425.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x81ea, %r9
nop
cmp $13377, %r8
mov $0x6162636465666768, %rbp
movq %rbp, %xmm7
movups %... |
projects/04/mult/mult.asm | WuShaoa/Nand2Tetris | 0 | 43112 | <gh_stars>0
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by <NAME> Schocken, MIT Press.
// File name: projects/04/Mult.asm
// Multiplies R0 and R1 and stores the result in R2.
// (R0, R1, R2 refer to RAM[0], RAM[1], and RAM[2], respectively.)
// Put your code here... |
_build/dispatcher/jmp_ippsECCPInitStd128r1_6bdead8d.asm | zyktrcn/ippcp | 1 | 43113 | extern m7_ippsECCPInitStd128r1:function
extern n8_ippsECCPInitStd128r1:function
extern y8_ippsECCPInitStd128r1:function
extern e9_ippsECCPInitStd128r1:function
extern l9_ippsECCPInitStd128r1:function
extern n0_ippsECCPInitStd128r1:function
extern k0_ippsECCPInitStd128r1:function
extern ippcpJumpIndexForMergedLibs
exter... |
_not os code/image/sine.asm | jaredwhitney/os3 | 5 | 43114 | <reponame>jaredwhitney/os3
[bits 32]
dd endt-start ; size of an image
db "ANIM", 0
db "SINE", 0
start :
dd 0, 0
dd 41, 5
dd 60, 10
dd 75, 15
dd 90, 20
dd 104, 25
dd 120, 30
dd 139, 35
dd 180, 40
endt : |
src/main/fragment/mos6502-common/pwsm1_derefidx_vbuyy_lt_vwsc1_then_la1.asm | jbrandwood/kickc | 2 | 43115 | <filename>src/main/fragment/mos6502-common/pwsm1_derefidx_vbuyy_lt_vwsc1_then_la1.asm
lda {m1}
sta $fe
lda {m1}+1
sta $ff
lda ($fe),y
cmp #<{c1}
iny
lda ($fe),y
sbc #>{c1}
bvc !+
eor #$80
!:
bmi {la1} |
oeis/035/A035299.asm | neoneye/loda-programs | 11 | 43116 | ; A035299: Minimum square grid needed to fit English words for 1...n crossword style.
; 3,3,5,5,6,8,7,7,8,8,8,9
mov $3,$0
div $0,2
lpb $0
mov $2,$0
div $0,9
mul $0,$3
add $2,1
add $1,$2
lpe
lpb $3
mov $1,5
dif $3,5
lpe
mov $0,$1
add $0,3
|
project-two/test/sim2.asm | aryan-gupta/ECGR3183 | 0 | 43117 | <filename>project-two/test/sim2.asm
Set R0, #2.3 --m1
Set R1, #5.7 --m2
Fmul R0, R0, R1
Set R1, #13.2 --r
Pow R1, R1, #2
Fdiv R0, R0, R1
Set R1, #6.673E-11 --gravitational constant
Fmul R0, R0, R1
Get R0 |
programs/oeis/105/A105563.asm | neoneye/loda | 22 | 43118 | ; A105563: a(n) = if (exactly 4 Fibonacci numbers exist with exactly n digits) then 1, otherwise 0.
; 0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0
mov $3,2
mov $5,$... |
dv3/qlf/ftwa.asm | olifink/smsqe | 0 | 43119 | <filename>dv3/qlf/ftwa.asm<gh_stars>0
; DV3 QLWA Format V3.01 1992 <NAME>
;
; 2020-04-07 3.01 Changed for new ddf_mname format with size word (MK)
section dv3
xdef qlf_ftwa
include 'dev8_dv3_keys'
include 'dev8_dv3_qlf_keys'
include 'dev8_keys_qlwa'
include 'dev8_keys_err'
include 'dev8_keys_sy... |
SysBoot/Stage1/Boot2.asm | ClaytonHunt/TonOS | 1 | 43120 | ;**********************************************
; Boot2.asm
; - A Simple Bootloader
; Operating Systems Development Tutorial
;**********************************************
org 0x7C00 ; We are loaded by BIOS at 0x7C00
bits 16 ; We are still in 6 bit Real Mode
Start: jmp Loader ; Jump over OEM block
;******... |
Experiments/Combinational Lock/main.asm | tustunkok/CMPE236-Labs | 0 | 43121 | ; LED DISPLAY CONSTANTS
N0 EQU 11000000B ; #DEFINE N0 11000000B
N1 EQU 11111001B
N2 EQU 10100100B
N3 EQU 10110000B
N4 EQU 10011001B
N5 EQU 10010010B
N6 EQU 10000010B
N7 EQU 11111000B
N8 EQU 10000000B
N9 EQU 10010000B
NA EQU 10001000B
NB EQU 10000011B
NC EQU 11000110B
ND EQU 10100001B
NE_ EQU 10000110B
NF... |
oeis/004/A004631.asm | neoneye/loda-programs | 11 | 43122 | ; A004631: Squares written in base 16. (Next term contains a non-decimal character.)
; Submitted by <NAME>
; 1,4,9,10,19,24,31,40,51,64,79,90
add $0,1
pow $0,2
sub $1,$0
div $1,16
mul $1,6
add $0,$1
|
oeis/062/A062503.asm | neoneye/loda-programs | 11 | 43123 | ; A062503: Squarefree numbers squared.
; Submitted by <NAME>(s1)
; 1,4,9,25,36,49,100,121,169,196,225,289,361,441,484,529,676,841,900,961,1089,1156,1225,1369,1444,1521,1681,1764,1849,2116,2209,2601,2809,3025,3249,3364,3481,3721,3844,4225,4356,4489,4761,4900,5041,5329,5476,5929,6084,6241,6724,6889,7225,7396,7569,7921,82... |
programs/oeis/082/A082493.asm | neoneye/loda | 22 | 43126 | <reponame>neoneye/loda
; A082493: a(n) = n*ceiling(2^n/n) - 2^n.
; 0,0,1,0,3,2,5,0,1,6,9,8,11,10,7,0,15,8,17,4,13,18,21,8,18,22,1,12,27,26,29,0,25,30,17,8,35,34,31,24,39,20,41,28,28,42,45,32,19,26,43,36,51,26,12,24,49,54,57,44,59,58,55,0,33,2,65,52,61,26,69,8,71,70,7,60,59,14,77,64,1,78,81,20,53,82,79,8,87,26,54,76,85,... |
game/logic/server_bytecode_extras.asm | benoitryder/super-tilt-bro | 91 | 43128 | #define RETURN_FROM_BYTECODE lda #0:sta $ffff
#define CRASH_FROM_BYTECODE lda #1:sta $ffff
server_bytecode_error:
.(
CRASH_FROM_BYTECODE
.)
server_bytecode_init:
.(
; Name parameters passed to this routine
param_stage_num = $00
character_a = $01
character_b = $02
; Set game's configuration
jsr default_config
... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2021.asm | ljhsiun2/medusa | 9 | 43129 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %rax
push %rdi
lea addresses_normal_ht+0x18c82, %rdi
clflush (%rdi)
nop
nop
xor %r12, %r12
mov $0x6162636465666768, %rax
movq %rax, (%rdi)
inc %r8
pop %rdi
pop %rax
pop %r8
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r1... |
Library/Text/Text/textC.asm | steakknife/pcgeos | 504 | 43130 | <reponame>steakknife/pcgeos<gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: Text librar
MODULE: Text
FILE: textC.asm
AUTHOR: <NAME>, Oct 14, 1992
REVISION HISTORY:
Name Date Description
-... |
programs/oeis/138/A138456.asm | neoneye/loda | 22 | 43131 | <reponame>neoneye/loda<filename>programs/oeis/138/A138456.asm
; A138456: a(n) = ((n-th prime)^6-(n-th prime)^4))/6.
; 8,108,2500,19208,292820,799708,4009008,7819260,24626008,99019340,147763360,427308708,791213080,1052990708,1795722608,3692745108,7028069380,8584421420,15073038508,21345812040,25217638008,40508084240
seq... |
lib/am335x_sdk/ti/drv/pruss/example/apps/sorte/firmware/src/slave/state.asm | brandonbraun653/Apollo | 2 | 43132 | ; Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
;
; 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 above copyright
; notice, this list of... |
programs/oeis/085/A085820.asm | karttu/loda | 1 | 43133 | ; A085820: Possible two-digit endings of primes (with leading zeros).
; 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
mov $1,$0
mul $1,5
add $1,2
div $1,4
mul $1,2
add $1,1
|
loaders_patches_etc/init_savage_0.asm | alexanderbazhenoff/zx-spectrum-various | 0 | 43134 | ORG #5B17
ZZUU LD A,7
OUT (#FE),A
LD A,0
OUT (#FE),A
JR ZZUU
ORG #8000
INCBIN "savage0#"
ORG #6003
LD DE,#4000
LD C,#20
PUSH HL,DE,BC
LOOP PUSH BC
PUSH DE
LOOP1 LD A,(HL)
LD (DE),A
INC HL
I... |
oeis/195/A195993.asm | neoneye/loda-programs | 11 | 43135 | <reponame>neoneye/loda-programs
; A195993: Numbers n such that 90n + 73 is prime.
; Submitted by <NAME>(s4)
; 0,1,4,5,6,9,11,12,15,18,19,20,22,23,27,28,29,32,36,39,40,42,43,49,51,54,55,56,61,62,63,65,70,72,74,75,85,88,91,92,93,95,96,97,98,103,104,106,109,110,113,114,116,127,128,131,132,133,139,141,142,144,154,158,161,1... |
src/special_fx.asm | kieranhj/nova-invite | 1 | 43136 | \ -*- mode:beebasm -*-
\ ******************************************************************
\ * SPECIAL FX
\ ******************************************************************
SLOT_SPECIAL_FX = SLOT_BANK0
; A = next screen buffer HI
; X = display screen buffer HI
; Y = prev screen buffer HI
.prepare_static
{
sta ... |
sk/music-optimized/Invincible.asm | Cancer52/flamedriver | 9 | 43138 | <gh_stars>1-10
Snd_Invic_Header:
smpsHeaderStartSong 3
smpsHeaderVoice Snd_Invic_Voices
smpsHeaderChan $06, $03
smpsHeaderTempo $01, $70
smpsHeaderDAC Snd_Invic_DAC
smpsHeaderFM Snd_Invic_FM1, $00, $15
smpsHeaderFM Snd_Invic_FM2, $00, $0A
smpsHeaderFM Snd_Invic_FM3, $00,... |
kern/arch/x86_64/boot/helper.asm | bSchnepp/Feral | 13 | 43140 | BITS 64
section .text
global cpuid_vendor_func
global cpuid_brand_name
global cpuid_family_number
global x86_install_idt
global x86_install_gdt
global x86_divide_by_zero
global x86_interrupt_1
global x86_interrupt_2
global x86_interrupt_3
global x86_interrupt_4
global x86_interrupt_5
global x86_interrupt_6
global x8... |
patches/arkanoid/disasm/Arkanoid_block_4.asm | fcatrin/a8tools | 3 | 43141 | <gh_stars>1-10
org $B000
new_sprite_routine:
lda draw_flag
cmp #1
beq draw
rts
draw:
lda #0
sta draw_flag
lda #$0F
sta $d01a
... |
chap18/ex10/avx512_compress.asm | JamesType/optimization-manual | 374 | 43142 | ;
; Copyright (C) 2021 by Intel Corporation
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHA... |
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0xca_notsx.log_21829_1285.asm | ljhsiun2/medusa | 9 | 43143 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r8
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x14286, %r8
sub $30451, %r13
mov $0x6162636465666768, %rax
movq %rax, %xmm5
movups %xmm5, (%r8)
nop
cmp $51446, %r11
lea addresses_WT_ht+0x17de6, %rbp
nop
nop
nop
nop... |
oeis/124/A124782.asm | neoneye/loda-programs | 0 | 43144 | ; A124782: a(n) = (n+3)/gcd(A(n), A(n+2)) where A(n) = A000522(n) = Sum_{k=0..n} n!/k!.
; Submitted by <NAME>(w3)
; 3,2,1,3,7,4,9,1,11,6,1,7,3,8,17,9,19,2,21,11,23,12,5,1,27,14,29,3,31,16,33,17,7,18,1,19,3,4,41,21,43,22,9,23,47,24,49,5,51,2,53,27,11,28,57,29,59,6,61,31,63,32,1,33,67,34,69,7,71,36,73,1,15,38,77,3,79,8,8... |
programs/oeis/210/A210728.asm | neoneye/loda | 22 | 43145 | ; A210728: a(n) = a(n-1) + a(n-2) + n + 2 with n>1, a(0)=1, a(1)=2.
; 1,2,7,14,27,48,83,140,233,384,629,1026,1669,2710,4395,7122,11535,18676,30231,48928,79181,128132,207337,335494,542857,878378,1421263,2299670,3720963,6020664,9741659,15762356,25504049,41266440,66770525,108037002,174807565,282844606,457652211,740496858,... |
libsrc/_DEVELOPMENT/arch/zx/bifrost2/c/sdcc/BIFROST2_drawTileH_callee.asm | grancier/z180 | 0 | 43146 | <reponame>grancier/z180
; ----------------------------------------------------------------
; Z88DK INTERFACE LIBRARY FOR THE BIFROST*2 ENGINE
;
; See "bifrost2.h" for further details
; ----------------------------------------------------------------
; void BIFROST2_drawTileH(unsigned int lin,unsigned int col,unsigned ... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_489.asm | ljhsiun2/medusa | 9 | 43147 | <filename>Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_21829_489.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r14
push %rax
push %rdx
push %rsi
// Store
lea addresses_PSE+0x6d9, %rax
nop
nop
sub %r10, %r10
mov $0x5152535455565758,... |
5. Computer Organization & Architercture/Lab 1/lab1.asm | pant377/A.T.E.I.TH | 27 | 43148 | TITLE ASK1
ASSUME CS:KODIKAS,DS:DATA
KODIKAS SEGMENT
ARXI:
MOV AX,DATA
MOV DS,AX
MOV AL,N
MUL AL
MOV CX,AX
MOV AL,N
MOV BL,2
MUL BL
SUB CX,AX
ADD CX,1
MOV AX,CX
MOV CL,10
DIV CL
MOV BX,AX
LEA DX,MES
MOV AH,9
INT 21H
MOV DL,BL
ADD DL... |
oeis/092/A092435.asm | neoneye/loda-programs | 11 | 43149 | ; A092435: Prime factorials divided by their corresponding primorials.
; Submitted by <NAME>
; 1,1,4,24,17280,207360,696729600,12541132800,115880067072000,1366643159020339200000,40999294770610176000000,1854768736099424576471040000000,109950690675973888893203251200000000
add $0,1
mov $1,1
mov $2,1
mov $5,1
lpb $0
mov... |
oeis/310/A310380.asm | neoneye/loda-programs | 11 | 43150 | <reponame>neoneye/loda-programs<filename>oeis/310/A310380.asm<gh_stars>10-100
; A310380: Coordination sequence Gal.6.322.1 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,10,14,18,24,30,36,40,44,50,54,58,64,... |
project/other/test.v1.asm | HKhademian/AssemblyDandamudi | 1 | 43151 | %include "util.asm"
%include "console.asm"
global _start
section .bss
buffer resb 1000
section .code
_start:
enter 4,0
; extern MessageBoxA
; push dword 0
; push dword title
; push dword message
; push dword 0
; call MessageBoxA
regza
reglog
; ; push 1500
; ; push 1374
; ; call console.beep
; ; p... |
Userland/SampleCodeModule/asm/exceptions_asm.asm | AzuCande/SO_TP02 | 0 | 43152 | GLOBAL _divzero
GLOBAL _invalidopcode
SECTION .text
_divzero:
push rbp
mov rbp, rsp
xor rcx, rcx
xor rax, rax
div rcx
mov rsp, rbp
pop rbp
ret
_invalidopcode:
push rbp
mov rbp, rsp
ud2
mov rsp, rbp
pop rbp
ret
|
sw/asm/jp.asm | brianbennett/fpga_nes | 190 | 43153 | ; jp.asm
.word $8000
.org $8000
LDX #$00
POLL: JSR READ_JP
; Check for wrong button press.
PHA
LDA $0000,X
EOR #$FF
STA $0700
PLA
PHA
AND $0700
BNE FAIL
PLA
CMP $0000,X
BNE POLL
JSR WAIT_ZERO
... |
data/mapHeaders/fuchsiagym.asm | adhi-thirumala/EvoYellow | 16 | 43154 | FuchsiaGym_h:
db GYM ; tileset
db FUCHSIA_GYM_HEIGHT, FUCHSIA_GYM_WIDTH ; dimensions (y, x)
dw FuchsiaGymBlocks, FuchsiaGymTextPointers, FuchsiaGymScript ; blocks, texts, scripts
db $00 ; connections
dw FuchsiaGymObject ; objects
|
kernel/system/kernel.asm | paulscottrobson/eris | 13 | 43155 | ; *****************************************************************************
; *****************************************************************************
;
; Name: kernel.asm
; Purpose: Kernel Startup.
; Created: 8th March 2020
; Reviewed: 20th March 2020
; Author: <NAME> (<EMAIL>)
;
; *******************... |
oeis/293/A293409.asm | neoneye/loda-programs | 11 | 43156 | <reponame>neoneye/loda-programs
; A293409: Decimal expansion of the minimum ripple factor for a fifth-order, reflectionless, Chebyshev filter.
; Submitted by <NAME>
; 2,1,6,4,0,8,9,0,8,6,1,9,7,6,4,2,5,6,5,9,1,5,1,3,2,0,6,7,3,9,9,5,6,1,3,3,1,7,5,1,4,9,4,9,4,9,2,6,7,1,8,3,9,1,0,2,8,6,5,7,6,9,5,3,1,9,6,6,9,0,7,9,0,5,9,4,3... |
programs/oeis/290/A290254.asm | neoneye/loda | 22 | 43157 | <reponame>neoneye/loda
; A290254: The viabin numbers of the self-conjugate integer partitions.
; 0,1,5,6,19,21,26,28,71,75,85,89,102,106,116,120,271,279,299,307,333,341,361,369,398,406,426,434,460,468,488,496,1055,1071,1111,1127,1179,1195,1235,1251,1309,1325,1365,1381,1433,1449,1489,1505,1566,1582,1622,1638,1690,1706,1... |
oeis/245/A245835.asm | neoneye/loda-programs | 0 | 43158 | ; A245835: E.g.f.: exp( x*(2 + exp(3*x)) ).
; Submitted by <NAME>(w3)
; 1,3,15,108,945,9558,109917,1412316,19959777,306805482,5087064789,90370321704,1710170426097,34308056537550,726612812416269,16188742781216892,378244417385086785,9242436410233527762,235609985190361119525,6252379688953421699760,172380307421633200750161... |
oeis/094/A094726.asm | neoneye/loda-programs | 11 | 43159 | <reponame>neoneye/loda-programs
; A094726: Let M = the 2 X 2 matrix [ 0 3 / 3 2]. Take (M^n * [1 1])/3 = [p q]; then a(n) = p.
; Submitted by <NAME>
; 1,5,19,83,337,1421,5875,24539,101953,424757,1767091,7356995,30617809,127448573,530457427,2207952011,9190020865,38251609829,159213407443,662691303347,2758303273681,114808... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_4450_412.asm | ljhsiun2/medusa | 9 | 43160 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x10e1a, %rbx
nop
nop
and %rbp, %rbp
mov $0x6162636465666768, %r11
movq %r11, (%rbx)
nop
nop
and $30316, %r8
lea addresses_UC_ht+0xd809, %r10
nop
nop
sub $28790, %rsi
movb ... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_20_1370.asm | ljhsiun2/medusa | 9 | 43161 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x9054, %rsi
lea addresses_A_ht+0xa334, %rdi
clflush (%rsi)
nop
nop
nop
dec %r11
mov $14, %rcx
rep movsq
nop
nop
nop
nop
add $35589, %r13
lea addresses_UC_ht+0xd5d4, %r13
nop
nop
nop... |
asm_patches/includes/kirbymimi_v0.5.2_ntsc_coltzero.asm | robertkirkman/WW_Hacking_API | 0 | 43162 | <filename>asm_patches/includes/kirbymimi_v0.5.2_ntsc_coltzero.asm
; v0.1
; Assembly AR Code Comment/Relative Address
.open "sys/main.dol"
.org 0x80390F3C ; 04390f3c (g_profile_CAMERA + 0x10)
.long 0x9E0 ;v 000009e0 (originalSize += 0x10)
.org 0x8038FD9C ; 0438fd9c (g_profile_PLAYER ... |
sample/asciilist-6800/asciilist.asm | kuninet/K68-VDG | 4 | 43163 | ;
; MC6847 All ASCII CHAR List
; for SBC6800+SBC Adapter
;
CPU 6800
TARGET: equ "MC6800"
org $0100
;
VRAM_TOP EQU $C000
VRAM_END EQU $C200
SPC EQU $20
;
VDG_MODE EQU %00000000
VDG_CTL_AD EQU $8110
;
MAIN:
JSR VDG_INIT
... |
multimedia/directx/dxg/dd/ddraw/ddraw16/w32event.asm | npocmaka/Windows-Server-2003 | 17 | 43164 | <reponame>npocmaka/Windows-Server-2003
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Copyright (c) 1995 Microsoft Corporation. All Rights Reserved.
;
; File: w32event.asm
; Content: signal a win32 event
; History:
; Date By Reason
; ==== == ======
;... |
features/util.asm | KenyStev/MicroFS_x86 | 0 | 43165 | ; *************************************** ;
; MACROS
; *************************************** ;
%define ARG(n) (bp + 2*(n + 2))
DRIVE equ 0
HEAD equ 0
RESET equ 00h
READ equ 02h
WRITE equ 03h
IO equ 13h
PRG_ADDR equ 0x1000
FREE_SECTORS equ 0x3800
; *************************************** ;
; ... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_21829_1179.asm | ljhsiun2/medusa | 9 | 43166 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r13
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x1775b, %rsi
clflush (%rsi)
nop
nop
cmp $33380, %r12
mov $0x6162636465666768, %r13
movq %r13, (%rsi)
nop
nop
nop
xor %rsi, %rsi
lea addresses_D_ht+0xa29b, %rdx
nop
... |
Library/JS/asmtools/asmtoolsManager.asm | steakknife/pcgeos | 504 | 43167 | <filename>Library/JS/asmtools/asmtoolsManager.asm<gh_stars>100-1000
include stdapp.def
include resource.def
include system.def
;include malloc.asm
UseLib mapheap.def
SetGeosConvention ; set calling convention
ASM_TEXT segment public ... |
CISP 310/Midterm 2.asm | gb-camera/college-hw | 0 | 43168 | ; <NAME> - CISP 310 - Midterm Exam 2
; Array Displayed in Reverse
; 12/6/2020
.586
.MODEL FLAT
INCLUDE io.h ; input/output header
.STACK 4096 ; allocate stack memory
.DATA
array DWORD 10, 25, 56, 80, 3
resultLabel BYTE "Here comes the array in reverse!", 0
number BYTE 11 DUP (?)
.CODE
_MainProc PROC
; instr... |
Source/Time.asm | AAKMakes/ASM-projects | 0 | 43169 | ;
; ASM -- National Computer Camps
;
; === STACK SEGMENT ===
MyStack segment stack
DB 64 dup('12345678')
MyStack endS
; === DATA SEGMENT ===
MyData segment
; --- Declare your variables here ---
MyData endS
; === CODE SEGMENT ===
MyCode segment ; Sets up the segment names for
Ass... |
examples/REFERENCE-ASM.asm | rizet/simdisca | 3 | 43171 | <gh_stars>1-10
; This code should be used as a reference for a basic firmware
; program. This code is written in official SIMDISCA assembly
; syntax, and uses official mnemonics. The official, recommended
; assembler for SIMDISCA is sasm:
; https://github.com/pitust/sasm
-off 0xFFFC0000
-entry start
start:
mv m... |
core/zxflow.asm | freemanix/zxemul | 4 | 43172 | <reponame>freemanix/zxemul
; ZX Spectrum emulator
; Program flow change instructions, push/pop instructions
; (c) Freeman, August 2000, Prague
; -----------------------------------------------------------------------------
PushLoc MACRO REG
dec RegSP
dec RegSP
mov MemISPW, REG
ENDM
; --------------... |
Exports/bob.asm | adamsmasher/GBSoundSystem | 1 | 43174 | <filename>Exports/bob.asm
; ********************************************************
; Music Bank
;
; created with Beyond Gameboy Tracker
; ********************************************************
; ************************ Pattern Streams *******************
SECTION "MbobP0", ROMX
PATTERN_bob0:
DB $0A
DB $0... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_978.asm | ljhsiun2/medusa | 9 | 43175 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x14309, %rsi
nop
cmp $11827, %r12
movw $0x6162, (%rsi)
nop
nop
nop
nop
xor %r9, %r9
lea addresses_A_ht+0x12921, %rsi
lea addresses_normal_ht+0xe7... |
os/vid.asm | Sebazzz/sdos | 1 | 43177 | <reponame>Sebazzz/sdos
; vid.asm - Video output functions
;
[bits 32]
%include "../macro.incl.asm"
section .text:
VGA_ORIGIN EQU 0xB8000
VGA_WIDTH EQU 80
VGA_WIDTH_OFF EQU VGA_WIDTH*2 ; With attribute offset
VGA_HEIGHT EQU 25
VGA_MAX EQU (VGA_WIDTH*VGA_HEIGHT)
VGA_END EQU VGA_ORIGIN + (VGA_MAX * 2)
ASCII_SPACE EQU... |
lib/src/xr/x86/fppclr.asm | zanud/xds-2.60 | 53 | 43179 | <filename>lib/src/xr/x86/fppclr.asm<gh_stars>10-100
; COPYRIGHT (c) 1995,99,2002 XDS. All Rights Reserved.
; Implementation for FPU interface.
cpu 386
bits 32
%ifdef SYMANTEC ; =========== Rename publics
X2C_FLT_USED equ _X2C_FLT_USED
%endif
%ifdef OS2
group DGROUP _... |
programs/oeis/166/A166329.asm | neoneye/loda | 22 | 43181 | <reponame>neoneye/loda
; A166329: Products of squares of 2 successive primes.
; 36,225,1225,5929,20449,48841,104329,190969,444889,808201,1315609,2301289,3108169,4084441,6205081,9778129,12952801,16703569,22629049,26863489,33258289,42994249,54567769,74528689,95981209,108222409,121462441,136025569,151708489,205951201,2767... |
data/pokemon/base_stats/warwolf.asm | AtmaBuster/pokeplat-gen2 | 6 | 43182 | db 0 ; species ID placeholder
db 70, 90, 80, 100, 70, 85
; hp atk def spd sat sdf
db ICE, ICE ; type
db 45 ; catch rate
db 191 ; base exp
db NO_ITEM, NO_ITEM ; items
db GENDER_F50 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/warwolf/front.dimensions"
db GROWTH_MEDIUM_FAST ; growt... |
ACH2034/mips-assembly/character.asm | vitormrts/si-each-usp | 1 | 43183 | <reponame>vitormrts/si-each-usp
.data
$char: .byte 'A' # caractere a ser impresso
.text
la $a0, $char # load address
li $v0, 4 # imprimir char ou string
syscall
li $v0,10
syscall
|
programs/oeis/213/A213393.asm | jmorken/loda | 1 | 43185 | ; A213393: Number of (w,x,y) with all terms in {0,...,n} and 2*max(w,x,y) > 3*min(w,x,y).
; 0,6,24,54,108,192,300,450,648,882,1176,1536,1944,2430,3000,3630,4356,5184,6084,7098,8232,9450,10800,12288,13872,15606,17496,19494,21660,24000,26460,29106,31944,34914,38088,41472,45000,48750,52728
mov $12,$0
mov $14,$0
lpb $14
... |
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0x48_notsx.log_21829_1103.asm | ljhsiun2/medusa | 9 | 43186 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x14920, %r11
nop
sub $44310, %rsi
mov $0x6162636465666768, %rdi
movq %rdi, (%r11)
nop
nop
and %rcx, %rcx
lea addresses_WC_ht+0x21f8, %rbp
nop
add %rd... |
Transynther/x86/_processed/US/_st_sm_/i7-8650U_0xd2_notsx.log_1826_1162.asm | ljhsiun2/medusa | 9 | 43187 | <filename>Transynther/x86/_processed/US/_st_sm_/i7-8650U_0xd2_notsx.log_1826_1162.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x15488, %rsi
lea addresses_A_ht+0x66cc, %rdi
nop
nop
nop
nop
nop
sub %rax, %rax
mov $... |
linked_list.asm | AbdulHamidDabboussi/Assembly-Linked-List | 0 | 43188 | ## - -IMPORTANT- -
## The general structure;
##
## -Main menu
## -LinkedList creater
## -LinkedList displayer
##
##is given to you, necessary functions are empty, you have to ##fill them
## efficiently for lab3 part 1.
## Necessary register defined.
##IF YOU READ INSTRUCTIONS CAREFULLY YOU FIGURE OUT THAT... |
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xca_notsx.log_32_916.asm | ljhsiun2/medusa | 9 | 43190 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r15
push %r9
push %rbx
push %rdx
lea addresses_A_ht+0x167bb, %r15
nop
nop
nop
sub $59054, %rbx
movw $0x6162, (%r15)
add $65449, %r10
lea addresses_A_ht+0x1473b, %r15
nop
nop
nop
nop
sub $42591, %r9
mov $0x6162636465666768, ... |
hack/sample_program/assembly/Rectangle.asm | Wujiahao81/cheat_sheet | 0 | 43191 | // Program: Rectangle.asm
// Draws a filled rectangle at the screen's top left
// corner, with width of 16pixels and height of RAM[0]
// pixels.
// Usage: put a non-negative number (rectangle's
// height) in RAM[0].
//
// Screen width = 512, height = 256
// 512 / 16 = 32
//
// addr = SCREEN;
// n = R0;
// for(int i = 0... |
src/asm/prediction-x86_64-avx.asm | zimond/parng | 24 | 43192 | <filename>src/asm/prediction-x86_64-avx.asm
; parng/prediction-x86_64-avx.asm
;
; Copyright (c) 2016 Mozilla Foundation
bits 64
global parng_predict_scanline_none_packed_32bpp
global parng_predict_scanline_none_strided_32bpp
global parng_predict_scanline_none_packed_24bpp
global parng_predict_scanline_none_strided_24... |
util/gut/thjmp.asm | olifink/smsqe | 0 | 43193 | <gh_stars>0
; Jump to Thing Utility through HOTKEY System II
; Copyright 1989 <NAME> / <NAME>
section gen_util
xdef gu_thjmp
xref gu_thvec
include dev8_keys_thg
;+++
; Jump to Thing Utility through HOTKEY System II.
; Note this only works if a HOTKEY System version 2.03 or later... |
C/PModeLib/vcpi.asm | p-k-p/SysToolsLib | 232 | 43194 | page , 132
;*****************************************************************************;
; ;
; FILENAME: vcpi.asm ;
; ;
; CONTENTS: VCPI detection and management routines. ;
; ;
; Author: <NAME> 94/01/18 ;
; ;
; USAGE: Example: ... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1719.asm | ljhsiun2/medusa | 9 | 43195 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rsi
// Store
mov $0x6e6, %rsi
clflush (%rsi)
nop
nop
nop
sub %rcx, %rcx
movb $0x51, (%rsi)
nop
nop
nop
add $40128, %r9
// Store
lea addr... |
libsrc/stdio/ansi/abc80/f_ansi_bel.asm | andydansby/z88dk-mk2 | 1 | 43196 | <filename>libsrc/stdio/ansi/abc80/f_ansi_bel.asm
;
; ANSI Video handling for the ABC80
;
; BEL - chr(7) Beep it out
;
;
; $Id: f_ansi_bel.asm,v 1.3 2007/10/31 14:01:47 stefano Exp $
;
XLIB ansi_BEL
.ansi_BEL
; Put here the BEEP code
ld a,7
jp 1a8h
|
misc/asm/pixels.asm | Pebaz/glop | 3 | 43198 | <filename>misc/asm/pixels.asm
include 'ebc.inc'
include 'efi.inc'
include 'format.inc'
include 'utf8.inc'
format peebc efi ; PE executable format, EFI Byte Code
entry efi_main
struct EFI_GRAPHICS_OUTPUT_PROTOCOL
QueryMode VOID_PTR
SetMode VOID_PTR
Blt VOID_PTR
Mode VOID_PTR
ends... |
non_regression/other_x86_linux_23.s.asm | LRGH/plasmasm | 1 | 43199 | <reponame>LRGH/plasmasm
.file "parse.c"
.text
.p2align 4,,15
# ----------------------
.local yydestruct.isra.0
.type yydestruct.isra.0, @function
yydestruct.isra.0:
.cfi_startproc
subl $63, %eax
cmpl $14, %eax
ja .L20
call __x86.get_pc_thunk.cx
addl $_GLOBAL_OFFSET_TABLE_, %ecx
mo... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_19081_1400.asm | ljhsiun2/medusa | 9 | 43200 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x16ed4, %rsi
lea addresses_normal_ht+0x189d4, %rdi
nop
nop
nop
nop
inc %r13
mov $96, %rcx
rep movsw
add $10545, %r10
lea addresses_UC_ht+0x3d54, %rsi
lea addresses_WT_ht+0x179d4, %rdi
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.