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 |
|---|---|---|---|---|
sw/test_cases/add2.asm | JPShen-UWM/ThreadKraken | 1 | 47582 | <filename>sw/test_cases/add2.asm
lbi r22, 100 //load 100 into r22
lbi r23, 99 //load 99 into r23
add r24, r22, r23 //expected r24 = 199 or x00c7
add r23, r24, r22 //expected r23 = 299 or x012b
add r25, r22, r23 //expected r25 = 399 or x018f
add r26, r23, r22 //expected r26 = 399 or x018f
add r27, r22, r25 //expected r... |
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_12586_2075.asm | ljhsiun2/medusa | 9 | 47583 | <reponame>ljhsiun2/medusa<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r8
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0xc801, %rax
nop
nop
nop
nop
inc %rsi
mov $0x6162636465666768, %r13
movq %r13, %xmm2
vmovups %ymm2, (%rax)
nop
and %r12, %r12
lea ad... |
loader/boot/boota.asm | GhostBirdOperatingSystemProject/GhostBirdOS | 10 | 47584 | ; Explorer Boot
; /boot/boota.asm
; ASM file of the Explorer Boot
; 主函数
extern BOOT_main
; 起始及初始化函数
global _start
global init_IDT
; 输入输出函数
global io_hlt,io_cli,io_sti ; (在新的硬中断发生之前)停机、关中断、开中断
global io_in8,io_in16,io_in32 ; 读端口8位、16位和32位
global io_out8,io_out16,io_out32 ; 写端口8位、16位和32位
; 中断入口函数
extern keyboard... |
programs/oeis/155/A155721.asm | neoneye/loda | 22 | 47585 | ; A155721: Positions of parity change in A033035.
; 4,20,84,340,1364,5460,21844,87380,349524,1398100,5592404,22369620,89478484,357913940,1431655764,5726623060,22906492244,91625968980,366503875924,1466015503700,5864062014804,23456248059220,93824992236884
mov $1,4
pow $1,$0
div $1,3
mul $1,16
add $1,4
mov $0,$1
|
oeis/024/A024905.asm | neoneye/loda-programs | 11 | 47587 | ; A024905: Numbers k such that 7*k + 1 is prime.
; Submitted by <NAME>
; 4,6,10,16,18,28,30,34,40,48,54,60,64,66,70,78,88,90,94,96,100,106,108,118,126,130,136,138,144,150,156,166,184,186,196,204,210,214,226,228,238,244,246,268,276,286,288,298,304,306,316,324,328,330,334,340,346,348,360,364,370,376,378,384,390,400,406,4... |
source/commands/memwrite.asm | paulscottrobson/Basic65816 | 0 | 47588 | ; *******************************************************************************************
; *******************************************************************************************
;
; Name : memwrite.asm
; Purpose : Poke Doke Loke commands
; Date : 14th June 2019
; Author : <EMAIL>
;
; ****************... |
programs/oeis/051/A051937.asm | neoneye/loda | 22 | 47590 | <gh_stars>10-100
; A051937: Truncated triangular pyramid numbers: a(n) = Sum_{k=4..n} k*(k+1)/2-9.
; 1,7,19,38,65,101,147,204,273,355,451,562,689,833,995,1176,1377,1599,1843,2110,2401,2717,3059,3428,3825,4251,4707,5194,5713,6265,6851,7472,8129,8823,9555,10326,11137,11989,12883,13820,14801,15827,16899,18018,19185,20401,... |
programs/oeis/064/A064916.asm | neoneye/loda | 22 | 47591 | <filename>programs/oeis/064/A064916.asm
; A064916: a(n) = n/lpf(n) + lpf(n) - 1, where lpf = A020639 = least prime factor.
; 2,3,3,5,4,7,5,5,6,11,7,13,8,7,9,17,10,19,11,9,12,23,13,9,14,11,15,29,16,31,17,13,18,11,19,37,20,15,21,41,22,43,23,17,24,47,25,13,26,19,27,53,28,15,29,21,30,59,31,61,32,23,33,17,34,67,35,25,36,71,... |
programs/oeis/298/A298024.asm | neoneye/loda | 22 | 47593 | <filename>programs/oeis/298/A298024.asm
; A298024: G.f.: (x^4+3*x^3+6*x^2+3*x+1)/((1-x)*(1-x^3)).
; 1,4,10,14,18,24,28,32,38,42,46,52,56,60,66,70,74,80,84,88,94,98,102,108,112,116,122,126,130,136,140,144,150,154,158,164,168,172,178,182,186,192,196,200,206,210,214,220,224,228,234,238,242,248,252,256,262,266,270,276,280,... |
minihv/_init32.asm | denisvieriu/Bare-Metal-Lightweight-Hypervisor | 7 | 47594 | %define VA(x) (MULTIBOOT_BASE + (x - ___FirstAddressLabel))
%define REBASE(x) (((x) - reloc) + INT32_BASE)
;
; PXE 32 bit loader code
;
; for documentation check out MULTIBOOT 0.6.96 specs
; http://www.gnu.org/software/grub/manual/multiboot/multiboot.html
;
; ianichitei: in order to be sure that this is linked first,... |
examples/list_resize.asm | mossx-dev/Mycore | 0 | 47595 | ;; Author: <NAME>
;; Date: 12-Oct-21
%include "std/sys.asm"
%include "std/args.asm"
%include "std/str.asm"
%include "std/list.asm"
%include "std/int.asm"
%include "std/type.asm"
global _start
section .data
create_success: db "Created list with size ", 0
resize_success: db "Resized list to size ", 0
... |
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca.log_22_1062.asm | ljhsiun2/medusa | 9 | 47596 | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
lea addresses_WT_ht+0x14efd, %rbx
nop
nop
sub $7291, %rbp
mov $0x6162636465666768, %rdi
movq %rdi, (%rbx)
nop
nop
nop
add %rcx, %rcx
lea addresses_WC_ht+0x8ffd, %rcx
nop
cmp %r8, %r8
movb $0x61, (%rcx)
nop
nop
nop
xo... |
programs/oeis/118/A118375.asm | neoneye/loda | 22 | 47597 | <reponame>neoneye/loda
; A118375: Minimum over all permutations b of 1..n of sum b(i)*b^{-1}(i).
; 1,5,11,20,35,57,85,120,165,221,287,364,455,561,681,816,969,1141,1331,1540,1771,2025,2301,2600,2925,3277,3655,4060,4495,4961,5457,5984,6545,7141,7771,8436,9139,9881,10661,11480,12341,13245,14191,15180,16215,17297,18425,196... |
src/boot/utils/print.asm | theobori/drunkOS | 0 | 47599 | <gh_stars>0
; print generic function
; parameters:
; - string to print -> bx
print:
pusha
.print_loop:
mov al, [bx] ; al register contains char to print
cmp al, 0
je .print_done
mov ah, 0x0e ; put in tty mode
int 0x10 ; call BIOS
inc bx
... |
Appl/Art/Decks/GeoDeck/CGASpade2.asm | steakknife/pcgeos | 504 | 47600 | <reponame>steakknife/pcgeos
CGASpade2 label byte
word C_BLACK
Bitmap <67,41,BMC_PACKBITS,BMF_MONO>
db 0xf8, 0x00
db 0xf8, 0x00
db 0x08, 0x0f, 0xe0, 0x00, 0x00, 0x40, 0x00, 0x00,
0x10, 0x00
db 0x08, 0x18, 0x30, 0x00, 0x01, 0xf0, 0x00, 0x00,
0x7c, 0x00
db 0x08, 0x00, 0x70, 0x00, 0x07, 0xfc, 0x00, 0x... |
maps/MrFujisHouse.asm | Dev727/ancientplatinum | 28 | 47601 | <gh_stars>10-100
object_const_def ; object_event constants
const MRFUJISHOUSE_SUPER_NERD
const MRFUJISHOUSE_LASS
const MRFUJISHOUSE_PSYDUCK
const MRFUJISHOUSE_NIDORINO
const MRFUJISHOUSE_PIDGEY
MrFujisHouse_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
MrFujisHouseSuperNerdScript:
jumptextfaceplayer MrF... |
yaz180_NascomBasic32k/int32k.asm | grancier/z180_basic | 1 | 47602 | ;==============================================================================
; Contents of this file are copyright <NAME>
;
; You have permission to use this for NON COMMERCIAL USE ONLY
; If you wish to use it elsewhere, please include an acknowledgement to myself.
;
; Initialisation routines to suit Z8S180 CPU, wit... |
programs/oeis/173/A173197.asm | neoneye/loda | 22 | 47604 | <filename>programs/oeis/173/A173197.asm
; A173197: a(0)=1, a(n)= 2+2^n/6+4*(-1)^n/3, n>0.
; 1,1,4,2,6,6,14,22,46,86,174,342,686,1366,2734,5462,10926,21846,43694,87382,174766,349526,699054,1398102,2796206,5592406,11184814,22369622,44739246,89478486,178956974,357913942,715827886,1431655766,2863311534,5726623062,114532461... |
programs/oeis/056/A056040.asm | jmorken/loda | 1 | 47605 | <filename>programs/oeis/056/A056040.asm
; A056040: Swinging factorial, a(n) = 2^(n-(n mod 2))*Product_{k=1..n} k^((-1)^(k+1)).
; 1,1,2,6,6,30,20,140,70,630,252,2772,924,12012,3432,51480,12870,218790,48620,923780,184756,3879876,705432,16224936,2704156,67603900,10400600,280816200,40116600,1163381400,155117520,4808643120,... |
programs/oeis/001/A001561.asm | neoneye/loda | 22 | 47607 | ; A001561: a(n) = (7*n+3)*(7*n+5)*(7*n+6).
; 90,1560,6460,16848,34782,62320,101520,154440,223138,309672,416100,544480,696870,875328,1081912,1318680,1587690,1891000,2230668,2608752,3027310,3488400,3994080,4546408,5147442,5799240,6503860,7263360,8079798,8955232,9891720,10891320,11956090,13088088,14289372,15562000,1690803... |
programs/oeis/130/A130250.asm | jmorken/loda | 1 | 47608 | ; A130250: Minimal index k of a Jacobsthal number such that A001045(k) >= n (the 'upper' Jacobsthal inverse).
; 0,1,3,3,4,4,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9
mul $... |
programs/oeis/138/A138691.asm | neoneye/loda | 22 | 47609 | <reponame>neoneye/loda
; A138691: Numbers of the form 68+p^2 (where p is a prime).
; 72,77,93,117,189,237,357,429,597,909,1029,1437,1749,1917,2277,2877,3549,3789,4557,5109,5397,6309,6957,7989,9477,10269,10677,11517,11949,12837,16197,17229,18837,19389,22269,22869,24717,26637,27957,29997,32109,32829,36549,37317,38877,396... |
libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/ldexp_callee.asm | ahjelm/z88dk | 4 | 47610 |
SECTION code_fp_math16
PUBLIC ldexpf16_callee
EXTERN cm16_sccz80_ldexp_callee
defc ldexpf16_callee = cm16_sccz80_ldexp_callee
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _ldexpf16_callee
defc _ldexpf16_callee = ldexpf16_callee
ENDIF
|
oeis/098/A098301.asm | neoneye/loda-programs | 11 | 47612 | ; A098301: Member r=16 of the family of Chebyshev sequences S_r(n) defined in A092184.
; Submitted by <NAME>
; 0,1,16,225,3136,43681,608400,8473921,118026496,1643897025,22896531856,318907548961,4441809153600,61866420601441,861688079266576,12001766689130625,167163045568562176,2328280871270739841,32428769152221795600,451... |
programs/oeis/055/A055417.asm | karttu/loda | 0 | 47613 | ; A055417: Number of points in N^n of norm <= 2.
; 1,3,6,11,20,36,63,106,171,265,396,573,806,1106,1485,1956,2533,3231,4066,5055,6216,7568,9131,10926,12975,15301,17928,20881,24186,27870,31961,36488,41481,46971,52990,59571,66748,74556,83031,92210,102131,112833,124356
mov $4,6
mov $7,$0
lpb $0,1
sub $0,1
add $2,$4
... |
programs/oeis/309/A309315.asm | karttu/loda | 1 | 47614 | <filename>programs/oeis/309/A309315.asm
; A309315: Number of 5-colorings of an n-wheel graph.
; 60,120,420,1200,3660,10920,32820,98400,295260,885720,2657220,7971600,23914860,71744520,215233620,645700800,1937102460,5811307320,17433922020,52301766000,156905298060,470715894120,1412147682420,4236443047200,12709329141660,38... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_176.asm | ljhsiun2/medusa | 9 | 47615 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x19217, %r12
sub %r13, %r13
mov (%r12), %r14w
nop
nop
nop
nop
add %rdx, %rdx
lea addresses_normal_ht+0x14e9b, %rsi
lea addresses_normal_ht+0x299b, %rdi
nop
nop
inc %rbx
mov $... |
programs/oeis/171/A171248.asm | neoneye/loda | 22 | 47616 | <filename>programs/oeis/171/A171248.asm
; A171248: a(n) = 10^n*(2+3*10^n)+3.
; 8,323,30203,3002003,300020003,30000200003,3000002000003,300000020000003,30000000200000003,3000000002000000003,300000000020000000003,30000000000200000000003,3000000000002000000000003,300000000000020000000000003,30000000000000200000000000003,3... |
programs/oeis/213/A213845.asm | neoneye/loda | 22 | 47617 | <filename>programs/oeis/213/A213845.asm
; A213845: Principal diagonal of the convolution array A213844.
; 3,32,119,296,595,1048,1687,2544,3651,5040,6743,8792,11219,14056,17335,21088,25347,30144,35511,41480,48083,55352,63319,72016,81475,91728,102807,114744,127571,141320,156023,171712,188419,206176,225015,244968,266067,2... |
programs/oeis/228/A228294.asm | karttu/loda | 0 | 47618 | <reponame>karttu/loda<gh_stars>0
; A228294: a(n) = Sum_{k=1..10} n^k.
; 0,10,2046,88572,1398100,12207030,72559410,329554456,1227133512,3922632450,11111111110,28531167060,67546215516,149346699502,311505013050,617839704240,1172812402960,2141993519226,3780494710542,6471681049900,10778947368420,17513875027110,2782468101958... |
libsrc/_DEVELOPMENT/drivers/character/character_00/output/character_00_output.asm | jpoikela/z88dk | 640 | 47619 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; CHARACTER_00_OUTPUT
; library driver for serial text & binary output
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; ;;;;;;;;;;;;;;;;;;;;
; DRIVER CLASS DIAGRAM
; ;;;;;;;;;;;;;;;;;;;;
;
; CHARACTER_00_OUTPUT (root, abstract)
;
; The ... |
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_86_1710.asm | ljhsiun2/medusa | 9 | 47620 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x3254, %rsi
lea addresses_WC_ht+0x17f8c, %rdi
clflush (%rsi)
nop
nop
nop
nop
nop
xor %r14, %r14
mov $38, %rcx
rep movsl
nop
nop
nop
nop
nop
xor $64914, %r8
lea addres... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_18_477.asm | ljhsiun2/medusa | 9 | 47621 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %r9
push %rbp
push %rdi
push %rsi
lea addresses_normal_ht+0x2e72, %rsi
cmp %r9, %r9
movb (%rsi), %r15b
nop
nop
inc %rbp
lea addresses_D_ht+0x1cf32, %r12
nop
inc %r11
movb $0x61, (%r12)
nop
nop
nop
nop
nop
and $3802... |
data/pokemon/base_stats/hariyama.asm | AtmaBuster/pokeplat-gen2 | 6 | 47622 | db 0 ; species ID placeholder
db 144, 120, 60, 50, 40, 60
; hp atk def spd sat sdf
db FIGHTING, FIGHTING ; type
db 200 ; catch rate
db 184 ; base exp
db NO_ITEM, KINGS_ROCK ; items
db GENDER_F25 ; gender ratio
db 20 ; step cycles to hatch
INCBIN "gfx/pokemon/hariyama/front.dimensions"
db GROWTH_... |
src/modules/libcrt0.asm | Oyami-Srk/OmochaOS | 42 | 47623 | <gh_stars>10-100
[SECTION .text]
[BITS 32]
extern main
extern exit
global _start
_start:
push ebx
push ecx
call main
push eax
call exit
.1:
pause
jmp .1
|
libsrc/_DEVELOPMENT/sound/bit/z80/asm_bit_beepfx/_bfx_53.asm | jpoikela/z88dk | 640 | 47624 |
; BeepFX sound effect by shiru
; http://shiru.untergrund.net
SECTION rodata_clib
SECTION rodata_sound_bit
PUBLIC _bfx_53
_bfx_53:
; Nope
defb 1 ;tone
defw 10,1000,200,2,272
defb 1 ;pause
defw 1,4000,0,0,0
defb 1 ;tone
defw 10,1000,200,65534,272
defb 0
|
programs/oeis/078/A078704.asm | neoneye/loda | 22 | 47625 | ; A078704: Integer part of the square root of phi(n).
; 1,1,1,1,2,1,2,2,2,2,3,2,3,2,2,2,4,2,4,2,3,3,4,2,4,3,4,3,5,2,5,4,4,4,4,3,6,4,4,4,6,3,6,4,4,4,6,4,6,4,5,4,7,4,6,4,6,5,7,4,7,5,6,5,6,4,8,5,6,4,8,4,8,6,6,6,7,4,8,5,7,6,9,4,8,6,7,6,9,4,8,6,7,6,8,5,9,6,7,6
seq $0,10 ; Euler totient function phi(n): count numbers <= n a... |
main.asm | LOuroboros/wonder-trade | 1 | 47626 | <filename>main.asm<gh_stars>1-10
.gba
.thumb
.open "rom.gba", "test.gba", 0x08000000
.org allocation
.area allocation_size
.importobj "obj/relocatable.o"
wonder_trade_script:
.include "script.asm"
.endarea
// // Player house PC script tile (for debugging)
// .org 0x083B977C
// .word wonder_trade_script... |
Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_1146.asm | ljhsiun2/medusa | 9 | 47628 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r15
push %r8
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x7f29, %rsi
lea addresses_D_ht+0x62c, %rdi
nop
dec %rbp
mov $11, %rcx
rep movsl
xor %rax, %rax
lea addresses_WT_ht+0x17a6c, %r10
nop
nop
nop
add %r8, %r8
movb (%r10), %al
... |
Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_19905_13.asm | ljhsiun2/medusa | 9 | 47629 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_zr_/i7-8650U_0xd2.log_19905_13.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %r14
push %r15
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0xd9c2, %rcx
nop
nop
nop
nop
nop
cmp %rdi, %rdi
movw $0x6162, (%rcx)
nop
... |
test/adox.asm | killvxk/AssemblyLine | 147 | 47630 | <reponame>killvxk/AssemblyLine<filename>test/adox.asm
SECTION .text
GLOBAL test
test:
adox r10, r14
adox r10, r9
adox r10, rcx
adox r11, r12
adox r11, r15
adox r11, r9
adox r11, rbx
adox r12, r10
adox r12, r13
adox r12, r15
adox r12, rbp
adox r13, r11
adox r13, r12
adox r13, r15
adox r13, rbp
adox r13, [ rsp + 0x68 ]
a... |
Transynther/x86/_processed/P/_zr_/i9-9900K_12_0xa0.log_1_203.asm | ljhsiun2/medusa | 9 | 47631 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x407b, %r10
nop
add $52897, %rbp
mov (%r10), %rdi
nop
nop
sub $58657, %r10
lea addresses_UC_ht+0xa53, %rax
clflush (%rax)
nop
nop
add %r10, %r10
and $0xffffffffffffffc0, %rax
... |
配套代码/L025/L025/6.1.asm | zmrbak/ReverseAnalysis | 35 | 47632 | <filename>配套代码/L025/L025/6.1.asm
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.24.28117.0
include listing.inc
INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES
CONST SEGMENT
$SG5095 DB '1,2,7,10', 00H
ORG $+7
$SG5097 DB '3', 0a1H, 0a2H, '4', 0a1H, 0a2H, '100', 00H
ORG $+2
$SG5099 DB '5,6', 00H
$SG5101 D... |
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_21829_1630.asm | ljhsiun2/medusa | 9 | 47633 | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x14793, %rsi
lea addresses_WC_ht+0x5193, %rdi
nop
nop
add $30118, %rbx
mov $48, %rcx
rep movsb
nop
and %r9, %r9
lea addresses_D_ht+0xb93, %rcx
nop
nop
nop
xor $1384, %r13
movl ... |
copy_file.asm | patelmeetkumar/Encryption_Utility | 0 | 47634 | # Who: Me
# What: project_template.asm
# Why: A template to be used for all CS264 labs
# When: Created when? Due when?
# How: List the uses of registers
.data
.eqv FileWrite 15
.eqv FileRead 14
.eqv FileOpen 13
.eqv FileClose 16
.eqv File_Buffer_sz 1024
File_Buffer: .space File_Buffer_sz
Src_Path... |
programs/oeis/192/A192752.asm | karttu/loda | 0 | 47636 | ; A192752: Constant term of the reduction by x^2->x+1 of the polynomial p(n,x) defined below in Comments.
; 1,7,12,23,39,66,109,179,292,475,771,1250,2025,3279,5308,8591,13903,22498,36405,58907,95316,154227,249547,403778,653329,1057111,1710444,2767559,4478007,7245570,11723581,18969155,30692740,49661899,80354643
mov $1,... |
src/interrupts.asm | Gegel85/RemiFlap | 0 | 47637 | ; VBLANK interrupt handler
; Params:
; None
; Return:
; None
; Registers:
; af -> Preserved
; bc -> Preserved
; de -> Preserved
; hl -> Preserved
vblank_interrupt::
push af
push hl
push de
push bc
ld hl, VBLANKRegister
bit 7, [hl]
jr nz, .noCopy
call updateSfx
xor a
ld hl, frameCounter
or [... |
Driver/IFS/GEOS/Common/gfsPath.asm | steakknife/pcgeos | 504 | 47638 | <filename>Driver/IFS/GEOS/Common/gfsPath.asm<gh_stars>100-1000
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1993 -- All Rights Reserved
PROJECT:
MODULE:
FILE: gfsPath.asm
AUTHOR: <NAME>, Apr 14, 1993
ROUTINES:
Name Description
---- ---... |
boot_sect.asm | SajedeNick1999/BootLoader | 1 | 47639 | mov ah, 0x0e ;
mov al, 'W';
int 0x10
mov al, 'e';
int 0x10
mov al, 'l';
int 0x10
mov al, 'c';
int 0x10
mov al, 'o';
int 0x10
mov al, 'm';
int 0x10
mov al, 'e';
int 0x10
mov al, 'T';
int 0x10
mov al, 'o';
int 0x10
mov al, 'S';
int 0x10
mov al, 'a';
int 0x10
mov al, 'j';
int 0x10
mov al, 'e';
int 0x10
mov al, 'd';
int 0... |
Kernel/loader.asm | cbiancucci/itba-computer_architecture | 1 | 47640 | <gh_stars>1-10
global loader
extern main
extern initializeKernelBinary
extern main
extern initializeKernelBinary
extern video_write_line
extern video_write_nl
extern keyboardHandler
extern irq0_handler
;SYSCALLS
extern sys_get_time
extern sys_set_time
extern sys_write
extern sys_read
extern sys_... |
grep.asm | jhyunleehi/xv6-public | 0 | 47642 |
_grep: file format elf32-i386
Disassembly of section .text:
00000000 <grep>:
char buf[1024];
int match(char*, char*);
void
grep(char *pattern, int fd)
{
0: f3 0f 1e fb endbr32
4: 55 push %ebp
5: 89 e5 mov %esp,%ebp
7: 83 ec 18 sub $... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_64.asm | ljhsiun2/medusa | 9 | 47643 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x173d, %r12
nop
inc %r11
mov (%r12), %r9w
nop
nop
cmp $883, %rdi
lea addresses_WT_ht+0xbf3d, %rsi
lea addresses_WC_ht+0xc2bf, %rdi
xor $6729, %r11
mov $12, %rcx
rep movsw
nop
nop
nop
nop
nop
sub $... |
programs/oeis/120/A120511.asm | neoneye/loda | 22 | 47644 | ; A120511: a(n) = min{j>0 : A006949(j) = n}.
; 1,3,6,7,11,12,14,15,20,21,23,24,27,28,30,31,37,38,40,41,44,45,47,48,52,53,55,56,59,60,62,63,70,71,73,74,77,78,80,81,85,86,88,89,92,93,95,96,101,102,104,105,108,109,111,112,116,117,119,120,123,124,126,127,135,136,138,139,142,143,145,146,150,151,153,154,157,158,160,161,166,1... |
oeis/020/A020048.asm | neoneye/loda-programs | 11 | 47645 | ; A020048: a(n) = floor(Gamma(n+5/12)/Gamma(5/12)).
; Submitted by <NAME>
; 1,0,0,1,4,21,116,748,5549,46704,439802,4581280,52302949,649428293,8713162939,125614765716,1936560971459,31791875948134,553708506096681,10197464987280554,198000778503030764,4042515894436878101,86577215405856472680,1940772578681282595913,45446424... |
programs/oeis/071/A071999.asm | karttu/loda | 0 | 47646 | ; A071999: Determinant of n X n matrix whose element A(i,j) is 1 if i=j, i if n=i+j and 0 otherwise.
; 1,1,-1,-2,15,28,-495,-924,29393,55200,-2755377,-5206760,374909535,712318464,-69864169375,-133355433456,17088978269025,32747341496320,-5311777786094241,-10212994682100000
mov $1,1
mov $2,1
lpb $0,1
sub $2,$0
sub $... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_1718.asm | ljhsiun2/medusa | 9 | 47647 | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x6008, %rax
clflush (%rax)
xor $52359, %r9
mov $0x6162636465666768, %r8
movq %r8, (%rax)
nop
nop
nop
and $29286, %rdx
lea addresses_D_ht+0x10408, %rsi
lea addresses_WT_ht+0x12c8, %rdi
no... |
oeis/020/A020796.asm | neoneye/loda-programs | 11 | 47648 | ; A020796: Decimal expansion of 1/sqrt(39).
; Submitted by <NAME>
; 1,6,0,1,2,8,1,5,3,8,0,5,0,8,7,1,3,3,4,8,3,2,5,3,6,6,9,7,6,7,6,8,7,0,3,7,4,6,3,4,0,9,2,3,0,2,0,4,9,1,4,2,6,4,3,1,9,3,0,6,9,7,2,5,7,9,7,3,3,6,2,0,5,2,7,7,8,2,4,2,3,0,9,3,1,6,2,4,6,4,4,1,5,9,3,1,8,0,9,9
mov $1,1
mov $2,1
mov $3,$0
add $3,6
mov $4,$0
add ... |
fixsm712.asm | jakethompson1/fixsm712 | 0 | 47651 | ; revision g - try to be smarter about 640x480x16
; usage - run and then MODE CON COLS=80 to reset mode
; FIXSM712
; Copyright (C) 2016 <NAME> <<EMAIL>>
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are... |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_7029_620.asm | ljhsiun2/medusa | 9 | 47652 | <reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_7029_620.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r14
push %rdi
push %rdx
push %rsi
// Store
lea addresses_PSE+0x17c6d, %r12
nop
nop
n... |
src/core/bytecode/java/inst_0x00.asm | Hiroshi123/bin_tools | 0 | 47653 | <filename>src/core/bytecode/java/inst_0x00.asm
default rel
section .text
_0x00_nop:
ret
_0x01_aconst_null:
ret
_0x02_lconst_m1:
ret
_0x03_iconst_0:
ret
_0x04_iconst_1:
ret
_0x05_iconst_2:
ret
_0x06_iconst_3:
ret
_0x07_iconst_4:
ret
_0x08_iconst_5:
ret
_0x09_lconst_0:
ret
_0x0a_lconst_1:
ret
_0x0b_f... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1079.asm | ljhsiun2/medusa | 9 | 47654 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x1ed29, %r13
clflush (%r13)
nop
nop
nop
nop
add $51841, %rdx
mov (%r13), %bx
nop
nop
nop
sub %rbp, %rbp
lea addresses_normal_ht+0x92b9, %rcx
nop
nop
x... |
P6/data_P6_2/ALUTest77.asm | alxzzhou/BUAA_CO_2020 | 1 | 47655 | sltiu $5,$6,-1144
subu $5,$4,$3
ori $1,$3,48842
slti $3,$4,-1925
sllv $1,$3,$3
nor $0,$5,$3
addu $3,$3,$3
sltiu $5,$5,32500
addiu $3,$3,25877
and $0,$0,$3
and $3,$5,$3
lw $5,12($0)
sltiu $4,$4,-24330
sh $1,4($0)
sltiu $4,$3,-4322
addu $4,$4,$3
sll $4,$3,4
sb $5,9($0)
lbu $0,6($0)
slti $0,$5,32063
sll $5,$0,16
slti $1,$... |
oeis/173/A173756.asm | neoneye/loda-programs | 11 | 47656 | <filename>oeis/173/A173756.asm
; A173756: Partial sums of A058313.
; Submitted by <NAME>
; 1,2,7,14,61,98,417,950,2829,4456,24873,42980,306091,543462,595741,691290,2459767,4092108,37557035,193242042,360012409,516201296,4341338257,7943382348,27024448579,45075855410,102204647503,109956141102,346222803073,571398562364
lp... |
libsrc/c128/restorecia.asm | grancier/z180 | 0 | 47657 | <filename>libsrc/c128/restorecia.asm
;
; $Id: restorecia.asm,v 1.3 2016/06/16 21:13:07 dom Exp $
;
SECTION code_clib
PUBLIC restorecia
PUBLIC _restorecia
EXTERN SaveA
.restorecia
._restorecia
; restore CIA registers
ld bc,$D02F
ld a,7
out (c),a
ld bc,$DC00+2 ;cia1+ciaDataDirA
ld hl,SaveA
ld a,(hl)
o... |
getting_input/input_type.asm | slowy07/learnAsm | 1 | 47658 | ;getting input
;nasm -f elf input_type.asm
;64 bit system require elf_i386 ld -m elf_i386 input_type.o -o input_type
;./input_type
%include 'functions.asm'
SECTION .data
msg1 db 'enter your name: ', 0h
msg2 db 'hello, ', 0h
SECTION .bss
sinput: resb 255 ;reserve a 255 byte space in memory for the user imp... |
Driver/Video/Dumb/DumbCom/dumbcomPalette.asm | steakknife/pcgeos | 504 | 47659 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1991 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Video drivers
FILE: dumbcomPalette.asm
AUTHOR: <NAME>, Mar 11, 1992
REVISION HISTORY:
Name Date Description
---- ---- -----------
Jim 3/11/... |
Assembly/pointers/arm9.asm | WildGenie/Ninokuni | 14 | 47662 | <filename>Assembly/pointers/arm9.asm<gh_stars>10-100
;;----------------------------------------------------------------------------;;
;; Pointer hack (increase text size) for arm9
;; Copyright 2014 <NAME> (aka pleonex)
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use thi... |
gfx/pokemon/kingdra/anim.asm | Dev727/ancientplatinum | 28 | 47663 | <filename>gfx/pokemon/kingdra/anim.asm
frame 1, 12
frame 2, 12
frame 3, 12
frame 0, 12
setrepeat 3
frame 4, 06
frame 5, 06
dorepeat 5
endanim
|
oeis/187/A187709.asm | neoneye/loda-programs | 11 | 47664 | ; A187709: a(n) = (7*9^n + 1)/8.
; Submitted by <NAME>
; 1,8,71,638,5741,51668,465011,4185098,37665881,338992928,3050936351,27458427158,247125844421,2224132599788,20017193398091,180154740582818,1621392665245361,14592533987208248,131332805884874231,1181995252963868078,10637957276674812701,95741615490073314308,8616745394... |
1.Basic Arithmetic/IsItEven.asm | KDahir247/X86AssemblyPratice | 1 | 47665 | <filename>1.Basic Arithmetic/IsItEven.asm
.686
.model flat, c
;Implementation for this Assembly File
;extern "C" bool IsItEven(int value);
; Branchless Assembly
; 1 = True
; 0 = False
.const
dword_two DWORD 2
dword_neg_one DWORD -1
.code
IsItEven proc
push ebp ;push 32 bit pointer register(base pointer)
mov ... |
sec04/rainbow/rainbow.asm | skout23/LALBMG6502 | 0 | 47666 | processor 6502
include "vcs.h"
include "macro.h"
seg code
org $F000 ; defines the origin of the ROM at $F000
START:
CLEAN_START ; Macro to safely clear the memory
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Start a new fram eby turning on VBLANK an... |
libsrc/osca/force_load.asm | meesokim/z88dk | 0 | 47668 | <reponame>meesokim/z88dk<filename>libsrc/osca/force_load.asm
;
; Old School Computer Architecture - interfacing FLOS
; <NAME>, 2012
;
; int force_load(int address, int bank);
;
; forces a file to be loaded to a particular address - kjt_find_file MUST be called first!
;
; Input Registers :
;
; HL = Load address.
; B = ... |
oeis/153/A153466.asm | neoneye/loda-programs | 11 | 47669 | ; A153466: a(n) = A027941(n) + A027941(n+6).
; 232,610,1600,4192,10978,28744,75256,197026,515824,1350448,3535522,9256120,24232840,63442402,166094368,434840704,1138427746,2980442536,7802899864,20428257058,53481871312,140017356880,366570199330,959693241112,2512509524008,6577835330914,17220996468736,45085154075296,1180344... |
1.1.3 Alpha/lib.asm | qinleader123/SYS-DOS | 0 | 47670 | ;SYS-DOS Kernel Library
;=========================================================== SUBROUTINES
;-------------------- ROUTINE new
new:
call linefeed
call linefeed
mov al, '$'
call lettergen
ret
;-------------------- ROUTINE lettergen
lettergen:
mov ah, 0x0e
int 10h
ret
;------------------... |
oeis/244/A244346.asm | neoneye/loda-programs | 11 | 47672 | <reponame>neoneye/loda-programs
; A244346: Decimal expansion of 56/13, the Korn constant for the sphere.
; Submitted by <NAME>
; 4,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9,2,3,0,7,6,9... |
file.asm | codebur/_a2-chemi-gs-1993 | 1 | 47673 | keep FILE
****************************************************************
* ChemiGS *
****************************************************************
* A Drawing Program for Chemical Structures *
* (c) 1992-93 by <NAME> *
* Buendtenweg 6 *
* 5105 AUENSTEIN (SWITZERLAN... |
Codes/Chapter09/P01/P09-01.asm | ar-ekt/Dandamudi-Assembly-Solutions | 8 | 47674 | <reponame>ar-ekt/Dandamudi-Assembly-Solutions
%INCLUDE "lib.h"
global _start
section .data
input_prompt db "Please input a hex number: ", 0
out_msg db "The decimal value is: ", 0
endl db 10, 0
section .bss
hex_number resb 41 ; to store hex number
buffer resb 41
section .code
_start:
puts... |
programs/oeis/309/A309215.asm | neoneye/loda | 22 | 47675 | <reponame>neoneye/loda<gh_stars>10-100
; A309215: a(0)=0; thereafter a(n) = a(n-1)+n if a(n-1) odd, otherwise a(n) = a(n-1)-n.
; 0,-1,1,4,0,-5,1,8,0,-9,1,12,0,-13,1,16,0,-17,1,20,0,-21,1,24,0,-25,1,28,0,-29,1,32,0,-33,1,36,0,-37,1,40,0,-41,1,44,0,-45,1,48,0,-49,1,52,0,-53,1,56,0,-57,1,60,0,-61,1,64,0,-65,1,68,0,-69,1,7... |
nasm/add_four_floats.asm | idrougge/ple | 59 | 47676 | <filename>nasm/add_four_floats.asm
; void add_four_floats(float x[4], float y[4])
; x[i] += y[i] for i in range(0..4)
global _add_four_floats
section .text
_add_four_floats:
movdqa xmm0, [rdi] ; all four values of x
movdqa xmm1, [rsi] ; all four values of y
addps ... |
programs/oeis/176/A176010.asm | neoneye/loda | 22 | 47677 | ; A176010: Positive numbers k such that k^2 == 2 (mod 97).
; 14,83,111,180,208,277,305,374,402,471,499,568,596,665,693,762,790,859,887,956,984,1053,1081,1150,1178,1247,1275,1344,1372,1441,1469,1538,1566,1635,1663,1732,1760,1829,1857,1926,1954,2023,2051,2120,2148,2217,2245,2314,2342,2411,2439,2508,2536,2605,2633,2702,27... |
src/test/ref/function-pointer-noarg.asm | jbrandwood/kickc | 2 | 47678 | <gh_stars>1-10
// Tests creating pointers to non-args no-return functions
// Commodore 64 PRG executable file
.file [name="function-pointer-noarg.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [sta... |
src/main.asm | adolf01/CX16_CC65_BASE | 0 | 47679 | .setcpu "65C02"
.include "x16.inc"
;.org $0800
.segment "STARTUP"
.segment "INIT"
.segment "ONCE"
.segment "CODE"
jmp start
message: .byte "HELLO"
end_msg:
NEWLINE = $0D
UPPERCASE = $8E
start:
; force uppercase
lda #UPPERCASE
jsr CHROUT
; print message
lda #<message
sta ZP_PTR_1
lda #>mess... |
programs/oeis/214/A214628.asm | neoneye/loda | 22 | 47681 | ; A214628: Intersections of radii with the cycloid.
; 2,2,2,2,4,4,4,6,6,6,8,8,8,8,10,10,10,12,12,12,14,14,14,16,16,16,18,18,18,20,20,20,22,22,22,22,24,24,24,26,26,26,28,28,28,30,30,30,32,32,32,34,34,34,36,36,36,36,38,38,38,40,40,40
mov $1,$0
sub $0,2
mul $1,5
add $1,$0
add $0,$1
div $0,22
mul $0,2
add $0,2
|
Transynther/x86/_processed/US/_st_sm_/i3-7100_9_0x84_notsx.log_6896_672.asm | ljhsiun2/medusa | 9 | 47682 | <filename>Transynther/x86/_processed/US/_st_sm_/i3-7100_9_0x84_notsx.log_6896_672.asm<gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r12
push %r15
push %r8
push %rcx
push %rdi
// Store
lea addresses_US+0x1fc4d, %r8
clflush (%r8)
nop
no... |
platforms/m3/pre_v21e/software/mbc_code_v6_3_0/mbc_code_v6_3_0.asm | lab11/M-ulator | 19 | 47683 | <gh_stars>10-100
mbc_code_v6_3_0/mbc_code_v6_3_0.elf: file format elf32-littlearm
Disassembly of section .text:
00000000 <hang-0xa0>:
0: 00004000 .word 0x00004000
4: 000000a3 .word 0x000000a3
...
10: 000000a0 .word 0x000000a0
14: 000000a0 .word 0x000000a0
18: 000000a0 .word 0x000000a0
1c: 00... |
MSDOS/Virus.MSDOS.Unknown.fish.asm | fengjixuchui/Family | 3 | 47684 | <filename>MSDOS/Virus.MSDOS.Unknown.fish.asm
PAGE 59,132
;==========================================================================
;== ==
;== FISH ==
;== ... |
modules/interrupt.asm | formicant/Cuboid | 1 | 47685 | MODULE Interrupt
; requires: Op
ALIGN #100
; Interrupt vector table
table
block 257, high($) + 1
; Sets the interrupt vector
; (does not enable interrupts afterwards)
initialize
ld a, high(table)
ld i, a
im 2
ret
; (high(table) - 7) free bytes here
; or even high(table) bytes when `initiali... |
oeis/218/A218376.asm | neoneye/loda-programs | 11 | 47686 | ; A218376: a(n) = 5^n*sum_{i=1..n} i^5/5^i.
; Submitted by <NAME>(s1)
; 0,1,37,428,3164,18945,102501,529312,2679328,13455689,67378445,337053276,1685515212,8427947353,42140274589,210702132320,1053511710176,5267559970737,26337801743253,131689011192364,658445059161820
mov $3,$0
mov $5,$0
lpb $3
mov $0,$5
sub $3,1
s... |
programs/oeis/022/A022821.asm | neoneye/loda | 22 | 47688 | <reponame>neoneye/loda<gh_stars>10-100
; A022821: [ (n+1)/(n-1) ] + [ (n+2)/(n-2) ] + ... + [ (2n-1)/1 ].
; 3,7,11,16,22,26,33,39,45,51,59,64,72,80,86,92,103,107,117,125,131,139,149,156,164,172,182,188,200,204,215,225,231,241,253,257,267,277,287,294,306,312,322,334,342,348,362,368,381,389,397,407,419
add $0,1
mul $0,2... |
NandToTetris/projects/04/mult/Mult.asm | davejlin/coursera | 0 | 47689 | // 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.
... |
libsrc/_DEVELOPMENT/arch/zxn/esxdos/z80/asm_p3dos_pdrv_from_edrv.asm | jpoikela/z88dk | 640 | 47691 | ; unsigned char p3dos_pdrv_from_edrv(unsigned char edrv)
SECTION code_esxdos
PUBLIC asm_p3dos_pdrv_from_edrv
asm_p3dos_pdrv_from_edrv:
; enter: l = esx drive
;
; exit : l = p3 drive 'A'..'P'
;
; uses : af, l
ld a,l
rra
rra
rra
and $1f
add a,'A'
ld l,a
ret
|
libsrc/_DEVELOPMENT/sound/bit/c/sdcc_ix/bit_play_tritone_fastcall.asm | jpoikela/z88dk | 640 | 47693 | <gh_stars>100-1000
; void *bit_play_tritone_fastcall(void *song)
SECTION code_clib
SECTION smc_sound_bit
PUBLIC _bit_play_tritone_fastcall
EXTERN asm_bit_play_tritone
_bit_play_tritone_fastcall:
push ix
call asm_bit_play_tritone
pop ix
ret
|
oeis/163/A163963.asm | neoneye/loda-programs | 11 | 47694 | <filename>oeis/163/A163963.asm
; A163963: First differences of A080735.
; Submitted by <NAME>(w4)
; 1,2,1,5,1,11,1,23,1,47,1,1,1,97,1,1,1,197,1,1,1,397,1,1,1,797,1,1,1,1597,1,1,1,1,1,1,1,1,1,3203,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6421,1,1,1,1,1,1,1,1,1,1,1,12853,1,1,1,1,1,1,1,1,1,1,1,25717,1,1,1,51437,1,1,1,102877,1,1,1,1,... |
lib/neonlib/src/Reader.asm | sharksym/vgmplay-sharksym | 6 | 47695 | <reponame>sharksym/vgmplay-sharksym
;
; Memory buffer reader
;
Reader: MACRO
; iy = this
; a <- value
Read_IY:
ld a,(0)
bufferPosition: equ $ - 2
inc (iy + Reader.bufferPosition)
ret nz
jp Reader_Read_IY.Continue
bufferStart:
dw 0
bufferEnd:
dw 0
filler:
dw System_ThrowException
fillPending:
db... |
8_kyu/Hex_to_Decimal.asm | UlrichBerntien/Codewars-Katas | 0 | 47696 | global hex_to_dec
section .text
; <--- unsigned hex_to_dec(const char *hex) --->
; input: RDI pointed to ASCII zero string
; output: value in rax
; On an invalid char, the value up to the bug is returned.
hex_to_dec:
xor rax, rax ; sum the value in rax
.loop:
mov bl,[rdi]
sub bl,'0'
jl .e... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1212.asm | ljhsiun2/medusa | 9 | 47697 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48_notsx.log_21829_1212.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r15
push %r8
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x135f0, %rsi
lea addresses_UC_ht+0xdcf0, %rdi
nop
add $40456, %r8
mov $77, %rcx
rep movsb
nop
xor ... |
oeis/087/A087417.asm | neoneye/loda-programs | 11 | 47699 | ; A087417: Sum of the cubes of A058182.
; Submitted by <NAME>(s4)
; -1,0,0,1,2,10,135,19818,395466722,156401766357161409,24461512581491800525933058683030176
mov $1,-1
mov $3,1
lpb $0
sub $0,1
mov $2,$3
pow $3,2
add $3,$1
mov $1,$2
lpe
mul $1,$3
mov $0,$1
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_636.asm | ljhsiun2/medusa | 9 | 47700 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_636.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r8
push %r9
push %rax
push %rbx
push %rcx
lea addresses_normal_ht+0x103b3, %rax
nop
nop
nop
nop
nop
xor %r8, %r8
mov $0x6162636465666768, %r14
movq %r14, %xmm5
mov... |
hello_floats.asm | EdTheBass/asm_tutorial | 97 | 47701 | <filename>hello_floats.asm
default rel
bits 64
segment .bss
c resq 2
segment .data
a dd 3.25
b dd 10.53
x dd 3.5, 8.2, 10.5, 1.3
y dq 4.4, 5.5, 6.6, 7.7
z dd 1.2, 2.3, 3.4, 4.56, 5.53, 2.34, 2.12, 8.01
segment .text
global main
extern _CRT_INIT
extern ExitProcess
extern printf
main:
call... |
common/initmap.asm | DigitalMars/optlink | 28 | 47702 | TITLE INITMAP - Copyright (c) SLR Systems 1994
INCLUDE MACROS
INCLUDE WIN32DEF
PUBLIC INITIALIZE_WRITEMAP
.DATA
EXTERNDEF SYMBOL_TABLE_USE:BYTE,EXPORT_TABLE_USE:BYTE,IMPORT_TABLE_USE:BYTE,MDB_TABLE_USE:BYTE
EXTERNDEF MAPFILE_GINDEX:DWORD,MAP_THREAD_ID:DWORD,MAP_THREAD_HANDLE:DWORD
EXTERNDEF SEGS_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.