commit
stringlengths
40
40
subject
stringlengths
0
1.12k
message
stringlengths
11
14.5k
repos
stringlengths
8
11.5k
file_path
stringlengths
6
191
license
stringclasses
12 values
unix_time
int64
805M
1.66B
new_contents
stringlengths
14
20M
old_contents
stringlengths
1
20M
07f659d43455d21737207229ff23f8870c69dd6e
Added back instrument wav upload.
Added back instrument wav upload.
BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player
pce/player.asm
bsd-3-clause
1,596,577,643
; Copyright (c) 2015-2019, Vincent "MooZ" Cruz and other contributors. All rights reserved. ; Copyrights licensed under the New BSD License. ; See the accompanying LICENSE file for terms. ;;------------------------------------------------------------------------------------------ ; [todo] ; fx callback : don't set...
; Copyright (c) 2015-2019, Vincent "MooZ" Cruz and other contributors. All rights reserved. ; Copyrights licensed under the New BSD License. ; See the accompanying LICENSE file for terms. ;;------------------------------------------------------------------------------------------ ; [todo] ; fx callback : don't set...
207f30b096ababa81e0307985b7df8d0340ed199
Started bringing back instruments.
Started bringing back instruments.
BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player
pce/player.asm
bsd-3-clause
1,596,401,977
; Copyright (c) 2015-2019, Vincent "MooZ" Cruz and other contributors. All rights reserved. ; Copyrights licensed under the New BSD License. ; See the accompanying LICENSE file for terms. ;;------------------------------------------------------------------------------------------ ; [todo] ; fx callback : don't set...
; Copyright (c) 2015-2019, Vincent "MooZ" Cruz and other contributors. All rights reserved. ; Copyrights licensed under the New BSD License. ; See the accompanying LICENSE file for terms. ;;------------------------------------------------------------------------------------------ ; [todo] ; fx callback : don't set...
176f030f444b6e17e31d4957eccae3ca660c9267
relocate: simplified the relocation example a bit, using latest DISP changes
relocate: simplified the relocation example a bit, using latest DISP changes
z00m128/sjasmplus,z00m128/sjasmplus,z00m128/sjasmplus,z00m128/sjasmplus
examples/relocation/relocation_main.asm
bsd-3-clause
1,595,712,959
OPT --syntax=abfw DEVICE ZXSPECTRUM48, $5D00 ; prepare the code from address 0 to have table of offsets "from current address" ; (but store the resulting code from $8000) ORG $8000 DISP $0000 RELOCATE_START ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;...
OPT --syntax=abfw DEVICE ZXSPECTRUM48, $5D00 ; prepare the code from address 0 to have table of offsets "from current address" ORG $0000 RELOCATE_START ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; relocator code, using address in BC as where the code d...
b1787e5a0fb6d20119ee91bc2f231717acbe09b8
Clean up push nasm test
Clean up push nasm test
copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86
tests/nasm/push.asm
bsd-2-clause
1,595,380,214
global _start section .data align 16 myaddress: dd 0xdeadbeef %include "header.inc" ;; push r/m - push edx db 0xff db 0xf2 ;; push r/m - push bx db 0x66 db 0xff db 0xf3 ;; push imm push 0xdeadbeef push WORD 0xd00d ;; push r/m - me...
global _start section .data align 16 myquad: dq 0x1234567890abcdef mydword: dd 0xcafebabe myaddress: dd 0xdeadbeef %include "header.inc" ;; push r/m - push edx db 0xff db 0xf2 ;; push r/m - push bx db 0x66 db 0xff db 0xf3 push 0xdeadbeef push WORD 0xd00d push...
a3420c5f3210ef2b3429b0cd1328efa04b1fa91d
Fix manual pcmpeqb nasm test
Fix manual pcmpeqb nasm test It mistakenly tested the pand instruction earlier.
copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86
tests/nasm/pcmpeqb.asm
bsd-2-clause
1,595,380,213
global _start section .data align 16 quad1: dq 0x00ad00adad007fff quad2: dq 0x7fff00428000ffff quad3: dq 0x01008080f0f0ff42 quad4: dq 0x0000000000000000 mydword: dd 0xcafebabe myaddress: dq 0x00adbeefc0de00ce %include "header.inc" movq mm0, [quad1] movq mm1, [quad2] movq mm2, [quad3] movq mm3, [quad4]...
global _start section .data align 16 quad1: dq 0x00ad00adad007fff quad2: dq 0x7fff00428000ffff quad3: dq 0x01008080f0f0ff42 quad4: dq 0x0000000000000000 mydword: dd 0xcafebabe myaddress: dq 0x00adbeefc0de00ce %include "header.inc" movq mm0, [quad1] movq mm1, [quad2] movq mm2, [quad3] movq mm3, [quad4]...
6802f6ab5f4cf5b0b1b33a66bafc0d77c26abfa8
Update maskmovq test to use "test memory" the same way as maskmovdqu
Update maskmovq test to use "test memory" the same way as maskmovdqu
copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86
tests/nasm/maskmovq.asm
bsd-2-clause
1,595,380,212
global _start section .data align 16 quad0: dq 0x1234567890abcdef quad1: dq 0xffffffffffffffff mask0: dq 0x8080808080808080 mask1: dq 0x10203080405080ff %include "header.inc" movq mm0, [quad0] movq mm1, [quad1] movq mm2, [quad0] movq mm3, [quad1] movq mm6, [mask0] movq mm7, [mask1] ;; Look out for size...
global _start section .data align 16 quad0: dq 0x1234567890abcdef quad1: dq 0xffffffffffffffff mask0: dq 0x8080808080808080 mask1: dq 0x10203080405080ff %include "header.inc" movq mm0, [quad0] movq mm1, [quad1] movq mm2, [quad0] movq mm3, [quad1] movq mm6, [mask0] movq mm7, [mask1] ;; Look out for size...
6cf58c8e7deb54e287afeee6710b2a3774eded9c
x86: Add cdef_filter SSE optimizations
x86: Add cdef_filter SSE optimizations
videolan/dav1d,videolan/dav1d
src/x86/cdef_sse.asm
bsd-2-clause
1,595,252,401
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2019, VideoLabs ; All rights reserved. ; ; 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 c...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2019, VideoLabs ; All rights reserved. ; ; 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 c...
2e9363d41449f09dae335312968e85214bd27ba4
Change to imager_tsr to add real floppy drive as B - not currently working correctly
Change to imager_tsr to add real floppy drive as B - not currently working correctly
reenigne/reenigne,reenigne/reenigne,reenigne/reenigne,reenigne/reenigne
8088/xtserver/imager/imager_tsr.asm
unlicense
1,594,484,896
org 0x100 %include "../../defaults_common.asm" jmp loader ; This is basically a copy of the int 0x6X routines in keyboard_kernel.asm, except ; that these ones use int 0x10 to write to the screen. loadDataRoutine: push ax push bx push cx push dx push si push ds sendReady: push di mov al,'R'...
org 0x100 %include "../../defaults_common.asm" jmp loader ; This is basically a copy of the int 0x6X routines in keyboard_kernel.asm, except ; that these ones use int 0x10 to write to the screen. loadDataRoutine: push ax push bx push cx push dx push si push ds sendReady: push di mov al,'R'...
bb3156533b9baf836b746c638111fca82c65f98a
ppindirect.asm: make it possible to assemble to a binary
ppindirect.asm: make it possible to assemble to a binary Add a couple of dd/db directives to ppindirect.asm to make it possible to actually run it through the assembler. Signed-off-by: H. Peter Anvin (Intel) <8a453bad9912ffe59bc0f0b8abe03df9be19379e@zytor.com>
techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm
test/ppindirect.asm
bsd-2-clause
1,594,427,083
;Testname=test; Arguments=-E -o ppindirect.out; Files=ppindirect.out ; Fun tests of the preprocessor indirection mode... bits 64 %assign foo1 11 %assign foo11 1111 %assign foo2 22 %assign foo22 2222 %assign foo3 33 %assign foo33 3333 %assign n 2 dd foo%[foo%[n]]*100 dd foo%[n]*100 %assign foo%[foo%[n]] fo...
;Testname=test; Arguments=-E -o ppindirect.out; Files=ppindirect.out ; Fun tests of the preprocessor indirection mode... %assign foo1 11 %assign foo11 1111 %assign foo2 22 %assign foo22 2222 %assign foo3 33 %assign foo33 3333 %assign n 2 foo%[foo%[n]]*100 foo%[n]*100 %assign foo%[foo%[n]] foo%[foo%[n]]*100 ;%a...
30b3411642eb00ac87ef4c9b8d64ef50d7c1335b
Fix macos example
Fix macos example
mjbrusso/util.asm
examples/readint.asm
mit
1,594,335,269
%include '../util.asm' section .text global _start _start: lea rdi, [prompt] call printstr call readint mov r14, rax mov rdi, rax call printint shl r14, 1 ; r14 *= 2 lea rdi, [str2] call printstr mov rdi, r14 call printint call endl call exit0 ...
%include '../util.asm' section .text global _start _start: mov rdi, prompt call printstr call readint mov r14, rax mov rdi, rax call printint shl r14, 1 ; r14 *= 2 mov rdi, str2 call printstr mov rdi, r14 call printint call endl call exit0 ...
c6c9c025abdb1d0dd5a37b5f7fca67c839717ca4
Create macOS port
Create macOS port
mjbrusso/util.asm
util.asm
mit
1,594,315,606
;********************************************************************* ; util.asm ; Author: mjbrusso ; Contributors: AlessandroFonseca ; Version: 1.1 ; Licensed under the MIT license (see "license.txt"). ;********************************************************************* section .text global exit, exit0,...
;********************************************************************* ; util.asm ; Author: Marcos José Brusso ; Version: 1.1 ; Licensed under the MIT license (see "license.txt"). ;********************************************************************* section .text global exit, exit0, strlen, itoa, atoi, endl...
422c8c4f1e2504b11527177a0154758e198a20ea
k_test.asm: comment out %pragma list options
k_test.asm: comment out %pragma list options Disable the %pragma list options in k_test.asm to avoid nasty surprises. LISTOPT is -L+ by default and can be overridden on the command line, so the %pragma is not just unnecessary but problematic. Signed-off-by: H. Peter Anvin (Intel) <8a453bad9912ffe59bc0f0b8abe03df9be19...
techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm
test/k_test.asm
bsd-2-clause
1,594,224,188
bits 64 default rel %use altreg section .text bar equ 0xcc ;; Each instruction group separated by blank should encode identially ;; k_mov kreg size_suffix size_name gpr big_gpr %macro k_mov 5 kmov%2 %1,[foo] kmov %1,%3 [foo] kmov %3 [foo],%1 kmov%2 [foo],%1 kmov %3 [foo],%1 kmov [foo],%3 %1 kmov %3...
bits 64 default rel %use altreg section .text bar equ 0xcc ;; Each instruction group separated by blank should encode identially ;; k_mov kreg size_suffix size_name gpr big_gpr %macro k_mov 5 kmov%2 %1,[foo] kmov %1,%3 [foo] kmov %3 [foo],%1 kmov%2 [foo],%1 kmov %3 [foo],%1 kmov [foo],%3 %1 kmov %3...
f13ec245791fbfd2d72dd949d39b825b955add0a
Override default contrast for TI83 (#196)
Override default contrast for TI83 (#196)
KnightOS/kernel,KnightOS/kernel
src/00/display.asm
mit
1,593,803,297
#ifndef COLOR initDisplay: ; Initialize LCD ld a, 1 + LCD_CMD_AUTOINCDEC_SETX call lcdDelay out (PORT_LCD_CMD), a ; X-Increment Mode ld a, 1 + LCD_CMD_SETOUTPUTMODE call lcdDelay out (PORT_LCD_CMD), a ; 8-bit mode ld a, 1 + LCD_CMD_SETDISPLAY call lcdDelay out (PORT_LCD_CMD), a...
#ifndef COLOR initDisplay: ; Initialize LCD ld a, 1 + LCD_CMD_AUTOINCDEC_SETX call lcdDelay out (PORT_LCD_CMD), a ; X-Increment Mode ld a, 1 + LCD_CMD_SETOUTPUTMODE call lcdDelay out (PORT_LCD_CMD), a ; 8-bit mode ld a, 1 + LCD_CMD_SETDISPLAY call lcdDelay out (PORT_LCD_CMD), a...
6ac8f20145625074d22adf9c3c14d3f16409bf38
PCM replay WIP
PCM replay WIP
BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player
pce/player.asm
bsd-3-clause
1,593,638,833
; Copyright (c) 2015-2019, Vincent "MooZ" Cruz and other contributors. All rights reserved. ; Copyrights licensed under the New BSD License. ; See the accompanying LICENSE file for terms. ;;-------_---------------------------------------------------------------------------------- ; The song data will be mapped on ban...
; Copyright (c) 2015-2019, Vincent "MooZ" Cruz and other contributors. All rights reserved. ; Copyrights licensed under the New BSD License. ; See the accompanying LICENSE file for terms. ;;-------_---------------------------------------------------------------------------------- ; The song data will be mapped on ban...
7f1095a0239d6b9d797ce37227aac55d4b47969d
emptyarg.asm: add expansion test for a range with a single parameter
emptyarg.asm: add expansion test for a range with a single parameter Add a test for %{1:1}, as reported in BR 3392611. Signed-off-by: H. Peter Anvin (Intel) <8a453bad9912ffe59bc0f0b8abe03df9be19379e@zytor.com>
techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm
test/emptyarg.asm
bsd-2-clause
1,593,546,861
%define EMPTY %macro bar 1 db "bar", __LINE__, %0, %1 %endmacro %macro baz 2 db "baz", __LINE__, %0, %1, %2 %endmacro %macro nothing 0 db "nothing", __LINE__, %0 %endmacro %macro xyzzy 1-2 db "xyzzy", __LINE__, %0, %1, %2, %3 %endmacro %macro vararg 0-* db "vararg", __LINE__, %0 %assign %%i 1 %rep %0 db ...
%define EMPTY %macro bar 1 db "bar", __LINE__, %0, %1 %endmacro %macro baz 2 db "baz", __LINE__, %0, %1, %2 %endmacro %macro nothing 0 db "nothing", __LINE__, %0 %endmacro %macro xyzzy 1-2 db "xyzzy", __LINE__, %0, %1, %2, %3 %endmacro %macro vararg 0-* db "vararg", __LINE__, %0 %assign %%i 1 %rep %0 db ...
464ca6c2f37b93180cc27ea41889ffaf1eab388e
x86: Fix 32-bit build with PIC enabled
x86: Fix 32-bit build with PIC enabled
videolan/dav1d,videolan/dav1d
src/x86/mc_sse.asm
bsd-2-clause
1,593,045,241
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
a2e656a7c27f3b68cb397c0a590267920297a4b8
Fixed boot ROM regression; CGB games were given the wrong palettes
Fixed boot ROM regression; CGB games were given the wrong palettes
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,593,020,092
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
ac5f7d0c4c549fc5ae2d24005b54a00b43ef2fc4
x86inc: Improve warnings for use of unsupported instructions
x86inc: Improve warnings for use of unsupported instructions
videolan/dav1d,videolan/dav1d
src/ext/x86/x86inc.asm
bsd-2-clause
1,593,001,168
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2020 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2020 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
c19484d8e5c63ddbe55f99add3e6cb1f58651ec4
x86inc: Add missing 'blsr' BMI1 instruction
x86inc: Add missing 'blsr' BMI1 instruction
videolan/dav1d,videolan/dav1d
src/ext/x86/x86inc.asm
bsd-2-clause
1,593,001,167
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2020 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2020 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
8ec5ff0eff128de60613f128a397292665c0d717
x86inc: Add template defines for EVEX broadcasts
x86inc: Add template defines for EVEX broadcasts Broadcasting a memory operand is binary flag, you either broadcast or you don't, and there's only a single possible element size for any given instruction. The instruction syntax however requires the broadcast semanticts to be explicitly defined, which is an issue when...
videolan/dav1d,videolan/dav1d
src/ext/x86/x86inc.asm
bsd-2-clause
1,592,940,999
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2020 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2019 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
388ab18c453db88e340572d519bfe9b90380db5f
+Scr_AddArrayStringIndexed
+Scr_AddArrayStringIndexed
D4edalus/CoD4x1.8_Server_Pub,callofduty4x/CoD4x_Server,D4edalus/CoD4x1.8_Server_Pub,callofduty4x/CoD4x_Server,callofduty4x/CoD4x_Server,callofduty4x/CoD4x_Server,D4edalus/CoD4x1.8_Server_Pub,callofduty4x/CoD4x_Server,D4edalus/CoD4x1.8_Server_Pub
src/asmsource/pluginexports.asm
agpl-3.0
1,592,748,813
;=========================================================================== ; Copyright (C) 2010-2013 Ninja and TheKelm ; This file is part of CoD4X18-Server source code. ; CoD4X18-Server source code is free software: you can redistribute it and/or modify ; it under the terms of the GNU Affero General P...
;=========================================================================== ; Copyright (C) 2010-2013 Ninja and TheKelm ; This file is part of CoD4X18-Server source code. ; CoD4X18-Server source code is free software: you can redistribute it and/or modify ; it under the terms of the GNU Affero General P...
bf7adb75676f834ef279d79e7001ec6375619a38
x86: Branch before waiting on popcnt in ipred_z AVX2 functions
x86: Branch before waiting on popcnt in ipred_z AVX2 functions Some specific Haswell CPU:s have a hardware bug where the popcnt instruction doesn't set zero flag correctly, which causes the wrong branch to be taken. popcnt also has a 3-cycle latency on Intel CPU:s, so doing the branch on the input value instead of th...
videolan/dav1d,videolan/dav1d
src/x86/ipred.asm
bsd-2-clause
1,592,592,341
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
4f08e3fe968f8a6d290f4e580b36e5ab64a6500c
dpdk backend template
dpdk backend template
hanw/p4c,hanw/p4c,hanw/p4c,hanw/p4c
backends/dpdk/sai.asm
apache-2.0
1,592,333,297
// define globals (defm local_metadata (struct local_metadata_t)) (defv wcmp_group_id_valid (bit 1)) (defv wcmp_group_id_value (bit 12)) (defv nexthop_id_valid (bit 1)) (defv nexthop_id_value (bit 10)) (defv router_interface_id_valid (bit 1)) (defv route_interface_id_value (bit 10)) (defv neighbor_id_valid (bit 1)) (de...
(header ethernet_t (field dst_addr (bit 48)) (field src_addr (bit 48)) (field ether_type (bit 16))) (header ipv4_t (field version (bit 4)) (field ihl (bit 4)) (field dscp (bit 6)) (field ecn (bit 2)) (field total_len (bit 16)) (field identification (bit 16)) (field flags (bit 3)) (field frag_offset (bit 13))...
0be942792de64d8055df93c1e9d377e7478ed21d
More trace experiments
More trace experiments
reenigne/reenigne,reenigne/reenigne,reenigne/reenigne,reenigne/reenigne
8088/trace/trace.asm
unlicense
1,591,869,859
%include "../defaults_bin.asm" FASTSAMPLING EQU 0 ; Set to one to sample at 14.318MHz. Default is 4.77MHz. LENGTH EQU 2048 ; Number of samples to capture. REFRESH EQU 18;0;19 ; Refresh period in cycles, or 0 to disable cli mov ax,cs mov ss,ax mov sp,0xfffe %macro outputByte 0 %rep 8 rcr...
%include "../defaults_bin.asm" FASTSAMPLING EQU 0 ; Set to one to sample at 14.318MHz. Default is 4.77MHz. LENGTH EQU 2048 ; Number of samples to capture. REFRESH EQU 18;0;19 ; Refresh period in cycles, or 0 to disable cli mov ax,cs mov ss,ax mov sp,0xfffe %macro outputByte 0 %rep 8 rcr...
eac0e6ce2ee3650f72360b7e82d1a2c47b6aa3d8
x86: use btc instead of xor+test in fgy_32x32xn_avx2
x86: use btc instead of xor+test in fgy_32x32xn_avx2
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/film_grain.asm
bsd-2-clause
1,591,108,584
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
e0757a8f3b5306c06f5e2b6f50dd20ed65bae01c
x86: add AVX2 SIMD for generate_grain_uv_{422,444}
x86: add AVX2 SIMD for generate_grain_uv_{422,444} gen_grain_uv_ar0_8bpc_420_c: 72275.4 gen_grain_uv_ar0_8bpc_420_avx2: 7253.4 gen_grain_uv_ar0_8bpc_422_c: 111742.9 gen_grain_uv_ar0_8bpc_422_avx2: 13704.1 gen_grain_uv_ar0_8bpc_444_c: 205688.5 gen_grain_uv_ar0_8bpc_444_avx2: 25007.5 gen_grain_uv_ar1_8bpc_420_c: 100682....
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/film_grain.asm
bsd-2-clause
1,591,108,584
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
721d99e693db56bcbe402dadd2b0c1db2860ce41
x86: add SSSE3 version of mc.resize()
x86: add SSSE3 version of mc.resize() resize_8bpc_c: 1613670.2 resize_8bpc_ssse3: 110469.5 resize_8bpc_avx2: 93580.6
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc_ssse3.asm
bsd-2-clause
1,591,108,584
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
14dea084ad21b351d339ec20712264b1de314de6
x86: Eliminate redundant 3-operand register syntax in itx
x86: Eliminate redundant 3-operand register syntax in itx Purely a cosmetic change.
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/itx.asm
bsd-2-clause
1,591,108,584
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
a575ccd05a423f51b35e2ca00f527e436f1a9c93
x86: add SSSE3 SIMD for generate_grain_uv_{422,444}
x86: add SSSE3 SIMD for generate_grain_uv_{422,444} gen_grain_uv_ar0_8bpc_420_c: 72275.4 gen_grain_uv_ar0_8bpc_420_ssse3: 7274.8 gen_grain_uv_ar0_8bpc_422_c: 111742.9 gen_grain_uv_ar0_8bpc_422_ssse3: 13724.8 gen_grain_uv_ar0_8bpc_444_c: 205688.5 gen_grain_uv_ar0_8bpc_444_ssse3: 26218.3 gen_grain_uv_ar1_8bpc_420_c: 100...
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/film_grain_ssse3.asm
bsd-2-clause
1,591,108,584
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
53eaddd5d152c1c9bc15fda323d0fc43a658e947
x86: add SSSE3 versions for filmgrain.fguv_32x32xn[422/444]
x86: add SSSE3 versions for filmgrain.fguv_32x32xn[422/444] fguv_32x32xn_8bpc_420_csfl0_c: 14568.2 fguv_32x32xn_8bpc_420_csfl0_ssse3: 1162.3 fguv_32x32xn_8bpc_420_csfl1_c: 10682.0 fguv_32x32xn_8bpc_420_csfl1_ssse3: 910.3 fguv_32x32xn_8bpc_422_csfl0_c: 16370.5 fguv_32x32xn_8bpc_422_csfl0_ssse3: 1202.6 fguv_32x32xn_8bpc...
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/film_grain_ssse3.asm
bsd-2-clause
1,591,108,584
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
eb4feb320341a8cdbee38c243a309af693231d46
x86: add AVX2 version of mc.resize()
x86: add AVX2 version of mc.resize() resize_8bpc_c: 1637609.7 resize_8bpc_avx2: 95162.6
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,591,108,584
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
eb464d11ddffc4d62e198c04c1d028c89bcdab2f
x86: add AVX2 SIMD for ipred.cfl_ac[444]
x86: add AVX2 SIMD for ipred.cfl_ac[444] cfl_ac_444_w4_8bpc_c: 499.1 cfl_ac_444_w4_8bpc_ssse3: 24.3 cfl_ac_444_w4_8bpc_avx2: 28.9 cfl_ac_444_w8_8bpc_c: 1240.2 cfl_ac_444_w8_8bpc_ssse3: 47.4 cfl_ac_444_w8_8bpc_avx2: 34.9 cfl_ac_444_w16_8bpc_c: 1785.7 cfl_ac_444_w16_8bpc_ssse3: 86.7 cfl_ac_444_w16_8bpc_avx2: 54.6 cfl_ac...
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/ipred.asm
bsd-2-clause
1,591,108,584
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
601169b15b988f325a18be7cc536cfdab4dbe76a
x86: tables: Add resize_filter table
x86: tables: Add resize_filter table
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/tables.asm
bsd-2-clause
1,591,108,584
; Copyright (c) 2019, The rav1e contributors. 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.aomedia...
; Copyright (c) 2019, The rav1e contributors. 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.aomedia...
d205a15d6e32b9cc3e1a41da0d5faf3a3386d1e8
x86: add AVX2 versions for filmgrain.fguv_32x32xn[422/444]
x86: add AVX2 versions for filmgrain.fguv_32x32xn[422/444] fguv_32x32xn_8bpc_420_csfl0_c: 14568.2 fguv_32x32xn_8bpc_420_csfl0_avx2: 940.2 fguv_32x32xn_8bpc_420_csfl1_c: 10682.0 fguv_32x32xn_8bpc_420_csfl1_avx2: 783.3 fguv_32x32xn_8bpc_422_csfl0_c: 16370.5 fguv_32x32xn_8bpc_422_csfl0_avx2: 1557.3 fguv_32x32xn_8bpc_422_...
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/film_grain.asm
bsd-2-clause
1,591,108,584
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
746bb6c1bdc2beca6618a9cb3be9d8b16fd57cd1
x86: use btc instead of xor+test or 32byte alignment in fgy_32x32xn_ssse3
x86: use btc instead of xor+test or 32byte alignment in fgy_32x32xn_ssse3
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/film_grain_ssse3.asm
bsd-2-clause
1,591,108,584
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
cc1af6be577b3e9c54b0bfdb9456135daf80d84e
meson/x86: add option to disable AVX-512 asm
meson/x86: add option to disable AVX-512 asm Allows building with nasm < 2.14.
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,591,108,584
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
4ea2c53718f029e534a1000118afcdef8fd7eba0
x86: don't use vptest in SSSE3 version
x86: don't use vptest in SSSE3 version This is the VEX (AVX) encoded variant for the SSE4 instruction ptest, so emulate it using pmovmskb in the SSSE3 version.
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc_ssse3.asm
bsd-2-clause
1,591,108,584
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
3a166419f274aff432b47ccc4749c99abfe451f9
Fix DoS infinite magic ticket patch corrupting some code, causing crashes on real hardware
Fix DoS infinite magic ticket patch corrupting some code, causing crashes on real hardware
LagoLunatic/DSVEdit,LagoLunatic/DSVEdit
asm/dos_infinite_magical_tickets.asm
mit
1,590,980,583
.nds .relativeinclude on .erroronwarning on @Overlay41Start equ 0x02308920 @FreeSpace equ @Overlay41Start ; Note: This is intentionally put at the same location as "dos_magical_ticket.asm". .open "ftc/overlay9_0", 0219E3E0h ; This patch should be applied after "dos_magical_ticket.asm". ; When starting a new game, g...
.nds .relativeinclude on .erroronwarning on @Overlay41Start equ 0x02308920 @FreeSpace equ @Overlay41Start + 0x7C .open "ftc/overlay9_0", 0219E3E0h ; This patch should be applied after "dos_magical_ticket.asm". ; When starting a new game, give the player a Magical Ticket. ; There's not enough space so we overwrite t...
5e8ea2d9687ab2ed65950e76e343c9919a4bc8ea
Change unit test region to NTSC (US)
Change unit test region to NTSC (US)
undisbeliever/untech-engine,undisbeliever/untech-engine
unit_tests/src/unit-tests.asm
mit
1,590,585,025
// This file is part of the UnTech Game Engine. // Copyright (c) 2016 - 2019, Marcus Rowe <undisbeliever@gmail.com>. // Distributed under The MIT License: https://opensource.org/licenses/MIT define MEMORY_MAP = HIROM define ROM_SIZE = 1 define ROM_SPEED = slow define REGION = US define ROM_NAME = "UNTECH UNIT TESTS" ...
// This file is part of the UnTech Game Engine. // Copyright (c) 2016 - 2019, Marcus Rowe <undisbeliever@gmail.com>. // Distributed under The MIT License: https://opensource.org/licenses/MIT define MEMORY_MAP = HIROM define ROM_SIZE = 1 define ROM_SPEED = slow define REGION = Australia define ROM_NAME = "UNTECH UNIT ...
157123e118589e48273efe3f90eb93afb49b3eab
Fix clearing OAM and initializeing wave RAM
Fix clearing OAM and initializeing wave RAM
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,589,732,651
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
a8725ad780b29bbd25f089fe67aecd5e196ab37d
i#1522 AppInit: Fix crash caused by misaligned stack on Win10 x64 (#4294)
i#1522 AppInit: Fix crash caused by misaligned stack on Win10 x64 (#4294) Fixes a crash when the preinject library does *not* take over: it was missing a pop on x64. Issue: #1522
AmesianX/dynamorio,AmesianX/dynamorio,AmesianX/dynamorio,AmesianX/dynamorio,AmesianX/dynamorio,AmesianX/dynamorio
core/arch/pre_inject_asm.asm
lgpl-2.1
1,589,381,183
/* ********************************************************** * Copyright (c) 2013-2015 Google, Inc. All rights reserved. * Copyright (c) 2007-2009 VMware, Inc. All rights reserved. * ********************************************************** */ /* * Redistribution and use in source and binary forms, with or wit...
/* ********************************************************** * Copyright (c) 2013-2015 Google, Inc. All rights reserved. * Copyright (c) 2007-2009 VMware, Inc. All rights reserved. * ********************************************************** */ /* * Redistribution and use in source and binary forms, with or wit...
4d97f5a9d959679d472e7aa9f68503a69eb47202
x86: Use 'test' instead of 'or' to compare with zero
x86: Use 'test' instead of 'or' to compare with zero Allows for macro-op fusion.
videolan/dav1d,videolan/dav1d
src/x86/cdef_avx2.asm
bsd-2-clause
1,589,119,623
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
24220defd649fc8984b0e9e959b7ab70694f480a
Save 16 bytes in the CGB boot ROM
Save 16 bytes in the CGB boot ROM
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,589,022,711
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
184743637eebf34f5fc673057dbca954037f3599
Fix silly regression
Fix silly regression
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,588,716,646
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
730567dc609a1213d6395ca92d4be00c072a2817
Proper color mixing
Proper color mixing
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,588,716,382
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM) ld h, $...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM ld h, $D...
a3f261184d2a732b32eb30d6b3538b04fba31988
Optimize more
Optimize more
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,588,632,288
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM call ClearMemoryPage8000 ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM ld h, $D...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
f46f138e9fbda089a1a9f71b88d608b38b932315
Clear VRAM correctly
Clear VRAM correctly
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,588,625,683
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
72a90ba91c8b8ee07859fc25f6b536a5f5afaaad
Hacky color blending
Hacky color blending
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,588,547,823
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
b057e0d10af8394671e2af8d463c2f948e860f5f
Save 4 more bytes in the CGB boot ROM
Save 4 more bytes in the CGB boot ROM
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,588,540,073
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
19126df7f4b69ca8001b6d2ca6b2c703b7625195
Save 8 bytes in the CGB boot ROM
Save 8 bytes in the CGB boot ROM
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/cgb_boot.asm
mit
1,588,538,516
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
; SameBoy CGB bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 call ClearMemoryPage ld a, 2 ld c, $70 ld [c], a ; Clear RAM Bank 2 (Like the original boot ROM...
a72bfd4ebc1b81af90c8d3245a44a6fa89134e50
PCInet-PCI II Am79c970
PCInet-PCI II Am79c970
davidjwalling/CustomOS
src/os.asm
mit
1,587,854,135
;======================================================================================================================= ; ; File: os.asm ; ; Project: OS ; ; Description: A rudimentary operating system for the x86 architecture. ; ; Revised: 1 January 2020 ; ; Ass...
;======================================================================================================================= ; ; File: os.asm ; ; Project: OS ; ; Description: A rudimentary operating system for the x86 architecture. ; ; Revised: 1 January 2020 ; ; Ass...
0197c966da91cc2cecc0884ccaf332aa81b32deb
test: Add BR3392630
test: Add BR3392630 Add the test code into the existing xdefine testing. Suggested-by: C. Masloch <33adfa7aa2bbcf32c58163f4aa6af99d90610803@ulukai.org> Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392630 Signed-off-by: Chang S. Bae <1d3f92548958be2d2740f7fde91f16f33389a300@intel.com>
techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm
test/xdefine.asm
bsd-2-clause
1,587,503,493
%idefine d dword %define _1digits_nocheck(d) (((d)% 10)+'0') %xdefine _1digits(d) (!!(d/10)*(1<<32)+ _1digits_nocheck(d)) db _1digits(8) ; Should be 0x38 %define n 0x21 %xdefine ctr n %define n 0x22 db ctr, n ; Should be 0x21, 0x22 %define MNSUFFIX %define MNCURRENT TEST%[MNSUFFIX] %xdefine ...
%idefine d dword %define _1digits_nocheck(d) (((d)% 10)+'0') %xdefine _1digits(d) (!!(d/10)*(1<<32)+ _1digits_nocheck(d)) db _1digits(8) ; Should be 0x38 %define n 0x21 %xdefine ctr n %define n 0x22 db ctr, n ; Should be 0x21, 0x22
114e8f0ee53ba34d22452dc4bdc0e9ec263189c8
x86: Eliminate redundant 3-operand register syntax in itx
x86: Eliminate redundant 3-operand register syntax in itx Purely a cosmetic change.
videolan/dav1d,videolan/dav1d
src/x86/itx.asm
bsd-2-clause
1,587,431,558
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
12b46a2bfca588b54924721e750cc9c9e3c2d3bc
Keyboard kernel fixes from Pavel Zagrebin
Keyboard kernel fixes from Pavel Zagrebin
reenigne/reenigne,reenigne/reenigne,reenigne/reenigne,reenigne/reenigne
8088/dos/keyboard_kernel.asm
unlicense
1,586,162,787
%include "../defaults_bin.asm" jmp codeStart db '20171011-keyb',0 codeStart: mov ax,cs mov ds,ax call findIP findIP: pop bx sub bx,findIP sub di,0x500 cmp di,kernelEnd je lengthOk1 or byte[flags + bx],1 lengthOk1: mov ah,0 mov cx,checkSum mov si,bx checksumLoop: lodsb add ah,al ...
%include "../defaults_bin.asm" jmp codeStart db '20171011-keyb',0 codeStart: mov ax,cs mov ds,ax call findIP findIP: pop bx sub bx,findIP sub di,0x500 cmp di,kernelEnd je lengthOk1 or byte[flags + bx],1 lengthOk1: mov ah,0 mov cx,checkSum mov si,bx checksumLoop: lodsb add ah,al ...
1717ac939c12e31a358056a36c2fa7a8882e71ed
x86_abi_support: do not decorate coff functions
x86_abi_support: do not decorate coff functions :private_extern only applies to macho. Match x86inc.asm logic: %if FORMAT_ELF global %2:function hidden %elif FORMAT_MACHO global %2:private_extern %else global %2 %endif May fix a build issue on windows: vp8/encoder/x86/block_error_sse2.asm:18: error: COFF form...
webmproject/libvpx,ShiftMediaProject/libvpx,webmproject/libvpx,ShiftMediaProject/libvpx,webmproject/libvpx,ShiftMediaProject/libvpx,webmproject/libvpx,webmproject/libvpx,webmproject/libvpx,ShiftMediaProject/libvpx,ShiftMediaProject/libvpx,ShiftMediaProject/libvpx
vpx_ports/x86_abi_support.asm
bsd-3-clause
1,586,156,817
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
53ca4bb19cc4f3147891c03d10959d57e0edcc01
test: Add BR 3392630
test: Add BR 3392630 Add the test code into the existing xdefine testing. Suggested-by: C. Masloch <33adfa7aa2bbcf32c58163f4aa6af99d90610803@ulukai.org> Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392630 Signed-off-by: Chang S. Bae <1d3f92548958be2d2740f7fde91f16f33389a300@intel.com>
techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm
test/xdefine.asm
bsd-2-clause
1,585,780,904
%idefine d dword %define _1digits_nocheck(d) (((d)% 10)+'0') %xdefine _1digits(d) (!!(d/10)*(1<<32)+ _1digits_nocheck(d)) db _1digits(8) ; Should be 0x38 %define n 0x21 %xdefine ctr n %define n 0x22 db ctr, n ; Should be 0x21, 0x22 %define MNSUFFIX %define MNCURRENT TEST%[MNSUFFIX] %xdefine ...
%idefine d dword %define _1digits_nocheck(d) (((d)% 10)+'0') %xdefine _1digits(d) (!!(d/10)*(1<<32)+ _1digits_nocheck(d)) db _1digits(8) ; Should be 0x38 %define n 0x21 %xdefine ctr n %define n 0x22 db ctr, n ; Should be 0x21, 0x22
b73acaa894ac4bb66d04d27919e436c158be7fe8
x86: use btc instead of xor+test or 32byte alignment in fgy_32x32xn_ssse3
x86: use btc instead of xor+test or 32byte alignment in fgy_32x32xn_ssse3
videolan/dav1d,videolan/dav1d
src/x86/film_grain_ssse3.asm
bsd-2-clause
1,585,752,622
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
fcc94fa905ba4d87f3383d517fbf6fcb08006ffc
x86: use btc instead of xor+test in fgy_32x32xn_avx2
x86: use btc instead of xor+test in fgy_32x32xn_avx2
videolan/dav1d,videolan/dav1d
src/x86/film_grain.asm
bsd-2-clause
1,585,752,581
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
4dd943156dba5e182cee8d5fda764ab1c8537eae
x86: don't use vptest in SSSE3 version
x86: don't use vptest in SSSE3 version This is the VEX (AVX) encoded variant for the SSE4 instruction ptest, so emulate it using pmovmskb in the SSSE3 version.
videolan/dav1d,videolan/dav1d
src/x86/mc_ssse3.asm
bsd-2-clause
1,585,664,768
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; Copyright © 2018, VideoLabs ; All rights reserved. ; ; 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 c...
b3d12b3c7fe4b12f4dee68d0f15dfb2c825c867e
nasm: require 2.14 with -DCHROMIUM
nasm: require 2.14 with -DCHROMIUM BUG=webm:1679 Change-Id: I75b1f860d111febf0aabe38b89d845ef296728a4
ShiftMediaProject/libvpx,webmproject/libvpx,webmproject/libvpx,webmproject/libvpx,ShiftMediaProject/libvpx,webmproject/libvpx,webmproject/libvpx,ShiftMediaProject/libvpx,ShiftMediaProject/libvpx,webmproject/libvpx,ShiftMediaProject/libvpx,ShiftMediaProject/libvpx
vpx_ports/x86_abi_support.asm
bsd-3-clause
1,585,636,599
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
b583d4af8d0917ce102706223546756b7a4b9c66
max ammo: fix warnpc address.
max ammo: fix warnpc address.
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/max_ammo_display.asm
mit
1,585,472,302
;;; Display in HUD the maximum number of ammo that samus can carry ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p=section), ;;; or a variant of xkas that supports arch directive lorom arch snes.cpu ;;; $9D98: Draw two HUD digits ;;; ;;; Parameters: ;;; A: Number to draw ...
;;; Display in HUD the maximum number of ammo that samus can carry ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p=section), ;;; or a variant of xkas that supports arch directive lorom arch snes.cpu ;;; $9D98: Draw two HUD digits ;;; ;;; Parameters: ;;; A: Number to draw ...
f2467150ea47c3a81d47dbf29330b90d814a342e
asm: added fixed place function for save last stats
asm: added fixed place function for save last stats
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/credits_varia.asm
mit
1,585,086,633
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
58cd6694adbf6105cae60eaccc6ca41666f1b487
asm: fixed stack issues in credits
asm: fixed stack issues in credits
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/credits_varia.asm
mit
1,585,077,381
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
870f144475e0d585f5ffa4722336c556d2e90296
max ammo display: working version with three digits for super/pb
max ammo display: working version with three digits for super/pb
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/max_ammo_display.asm
mit
1,585,072,931
;;; Display in HUD the maximum number of ammo that samus can carry ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p=section), ;;; or a variant of xkas that supports arch directive lorom arch snes.cpu ;;; $9D98: Draw two HUD digits ;;; ;;; Parameters: ;;; A: Number to draw ...
;;; Display in HUD the maximum number of ammo that samus can carry ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p=section), ;;; or a variant of xkas that supports arch directive lorom arch snes.cpu ;;; $9D98: Draw two HUD digits ;;; ;;; Parameters: ;;; A: Number to draw ...
2a6aa853a77fcf396d3a84a782447004053f86b5
asm: redone save/load stats to implement 'last stats'. testing TODO
asm: redone save/load stats to implement 'last stats'. testing TODO
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/credits_varia.asm
mit
1,584,918,719
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
f633ed26e12faf476836fc37d354ee05f9060ea7
asm: redinted credits
asm: redinted credits
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/credits_varia.asm
mit
1,584,876,549
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
// custom credits arch snes.cpu lorom // Defines for the script and credits data define speed $f770 define set $9a17 define delay $9a0d define draw $0000 define end $f6fe, $99fe define blank $1fc0 define row $0040 define pink "table tables/pink.tbl" define yellow "table tables/yellow.tbl" define cyan "table tables/cya...
4bc5d2ed9b3ec2891ea9025d0821f6000c749a17
asm: tracking - reindented and removed all arm pump code
asm: tracking - reindented and removed all arm pump code
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/tracking.asm
mit
1,584,875,988
arch snes.cpu lorom // Addresses to helper functions for stat tracking define inc_stat $dfd800 // Inc stat, stat id in A define dec_stat $dfd840 // Dec stat, stat id in A define store_stat $dfd880 // Store stat, value in A, stat id in X define load_stat $dfd8b0 // Load stat, stat id in A, ...
arch snes.cpu lorom // Addresses to helper functions for stat tracking define inc_stat $dfd800 // Inc stat, stat id in A define dec_stat $dfd840 // Dec stat, stat id in A define store_stat $dfd880 // Store stat, value in A, stat id in X define load_stat $dfd8b0 // Load stat, stat id in A, ...
943b3a8f4afe92038dc03e34f776e353ace25466
asm: reindented bomb_torizo
asm: reindented bomb_torizo
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/bomb_torizo.asm
mit
1,584,831,468
;;; makes it so that BT will wake up only once you picked up ;;; the item he's holding, whatever it is lorom arch snes.cpu !CurrentRoom = $7e079b !BTRoom = #$9804 !BTRoomFlag = $7ed86c ; some free RAM for the flag !PickedUp = #$bbbb ;;; hijack item collection routine (different hijack point than endingtot...
;;; makes it so that BT will wake up only once you picked up ;;; the item he's holding, whatever it is lorom arch snes.cpu !CurrentRoom = $7e079b !BTRoom = #$9804 !BTRoomFlag = $7ed86c ; some free RAM for the flag !PickedUp = #$bbbb ;;; hijack item collection routine (different hijack point than endingt...
f3c90d0f015770f1089224e78e44f1f32555ca7e
asm: random music - fixed bug in RNG seed + simplified music change algorithm
asm: random music - fixed bug in RNG seed + simplified music change algorithm
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/random_music.asm
mit
1,584,819,367
;;; Randomize music in game ;;; ;;; Music will change only if music requested by the game is different from last ;;; requested music. ;;; ;;; Uses RNG routine but does not alter current RNG number. ;;; Uses tracking patch RTA timer to seed RNG. ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p...
;;; Randomize music in game ;;; ;;; Music will change only if music requested by the game is different from last ;;; requested music. ;;; ;;; Uses RNG routine but does not alter current RNG number. ;;; Uses tracking patch RTA timer to seed RNG. ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p...
2a62830c74e7282857b779ed6a0c85dc081b7cbe
asm: random music - lower proba of WS/Tourian songs to happen
asm: random music - lower proba of WS/Tourian songs to happen
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/random_music.asm
mit
1,584,813,982
;;; Randomize music in game ;;; ;;; Music will change only if music requested by the game is different from last ;;; requested music. ;;; ;;; Uses RNG routine but does not alter current RNG number. ;;; Uses tracking patch RTA timer to seed RNG. ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p...
;;; Randomize music in game ;;; ;;; Music will change only if music requested by the game is different from last ;;; requested music. ;;; ;;; Uses RNG routine but does not alter current RNG number. ;;; Uses tracking patch RTA timer to seed RNG. ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p...
37a95e5bd57e671fa0b0e7b99f7821ac464e1966
asm: reindent random_music
asm: reindent random_music
theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver
itemrandomizerweb/patches/random_music.asm
mit
1,584,812,984
;;; Randomize music in game ;;; ;;; Music will change only if music requested by the game is different from last ;;; requested music. ;;; ;;; Uses RNG routine but does not alter current RNG number. ;;; Uses tracking patch RTA timer to seed RNG. ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p...
;;; Randomize music in game ;;; ;;; Music will change only if music requested by the game is different from last ;;; requested music. ;;; ;;; Uses RNG routine but does not alter current RNG number. ;;; Uses tracking patch RTA timer to seed RNG. ;;; ;;; compile with asar (https://www.smwcentral.net/?a=details&id=14560&p...
d8568fe2396accac7f321a36fa94bfd92a02df4b
Update documentation
Update documentation
davidjwalling/CustomOS
os.002/os.asm
mit
1,584,417,124
;======================================================================================================================= ; ; File: os.asm ; ; Project: os.002 ; ; Description: This sample program adds code to load the operating system kernel program from the disk image. ; ...
;======================================================================================================================= ; ; File: os.asm ; ; Project: os.002 ; ; Description: This sample program adds code to load the operating system kernel program from the disk image. ; ...
97829c1fdbccedaf014ee7e9d9f982a58b890668
More readable logs from find_handle and recv in asm kernel
More readable logs from find_handle and recv in asm kernel
olsner/os,olsner/os,olsner/os,olsner/os,olsner/os
kasm/kstart.asm
mit
1,584,193,252
[map all] ; ; Configuration ; NB: Enable too many of these and the kernel pops too close to 8kB and stops ; working. %define log_switch_to 0 %define log_switch_next 0 %define log_idle 0 %define log_runqueue 0 %define log_runqueue_panic 0 %define log_fpu_switch 0 ; Note: may clobber user registers if activated :) %defin...
[map all] ; ; Configuration ; NB: Enable too many of these and the kernel pops too close to 8kB and stops ; working. %define log_switch_to 0 %define log_switch_next 0 %define log_idle 0 %define log_runqueue 0 %define log_runqueue_panic 0 %define log_fpu_switch 0 ; Note: may clobber user registers if activated :) %defin...
e1376102480a26b7b464d8e672b56a82c9a32da1
Implement #9280 for MSVC64 (#9358)
Implement #9280 for MSVC64 (#9358) Follow-up to 4d4a056bc
gerdstolpmann/ocaml,gerdstolpmann/ocaml,gerdstolpmann/ocaml,gerdstolpmann/ocaml,gerdstolpmann/ocaml,gerdstolpmann/ocaml
runtime/amd64nt.asm
lgpl-2.1
1,583,845,827
;************************************************************************** ;* * ;* OCaml * ;* * ;* X...
;************************************************************************** ;* * ;* OCaml * ;* * ;* X...
ee939a378258b647fa95a6c61aaf3314d6b69f42
New boot ROM animation in the DMG boot ROM
New boot ROM animation in the DMG boot ROM
LIJI32/SameBoy,LIJI32/SameBoy,LIJI32/SameBoy
BootROMs/dmg_boot.asm
mit
1,583,509,038
; SameBoy DMG bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 .clearVRAMLoop ldi [hl], a bit 5, h jr z, .clearVRAMLoop ; Init Audio ld a, $80 ldh [$26]...
; SameBoy DMG bootstrap ROM ; Todo: use friendly names for HW registers instead of magic numbers SECTION "BootCode", ROM0[$0] Start: ; Init stack pointer ld sp, $fffe ; Clear memory VRAM ld hl, $8000 .clearVRAMLoop ldi [hl], a bit 5, h jr z, .clearVRAMLoop ; Init Audio ld a, $80 ldh [$26]...
1a65d795f7b83f3538538a1f444285668793b988
x86: add prep_8tap AVX512 asm
x86: add prep_8tap AVX512 asm
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
884b0f6e0b46bcb1edbc76e5393fc13796795a49
x86: Fix AVX2 inverse identity transform overflow/clipping
x86: Fix AVX2 inverse identity transform overflow/clipping The coefficients after the first (8-bit) 1D identity transform may require more than 16 bits precision before downshifting in some cases, and they may also need to be clipped to int16_t after downshifting.
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/itx.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
153e37e3a5ea7a841b343fc1a7219c613b3431aa
x86: Add mc w_mask 4:2:2 AVX-512 (Ice Lake) asm
x86: Add mc w_mask 4:2:2 AVX-512 (Ice Lake) asm
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
167371c3ac91507b51418b61af60c5119c19dfb3
x86/msac: add an avx2 version for msac_decode_symbol_adapt16
x86/msac: add an avx2 version for msac_decode_symbol_adapt16 msac_decode_symbol_adapt16_c: 55.1 msac_decode_symbol_adapt16_sse2: 30.3 msac_decode_symbol_adapt16_avx2: 28.0 Most code written by Henrik Gramner.
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/msac.asm
bsd-2-clause
1,583,503,017
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
d73e5334ee465072db6a5f5563ac5f756444bdfd
x86: Fix SSSE3 inverse identity transform overflow/clipping
x86: Fix SSSE3 inverse identity transform overflow/clipping
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/itx_ssse3.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
6f7773dff705c47245df23d19559caeca2ceee1a
x86: add avx512icl cpu flag to x86inc.asm
x86: add avx512icl cpu flag to x86inc.asm
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/ext/x86/x86inc.asm
bsd-2-clause
1,583,503,017
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2019 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2019 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
729b09fc80014f963adfe4b57459c95d16359494
x86: add prep_bilin AVX512 asm
x86: add prep_bilin AVX512 asm ------------------------------------------ mct_bilinear_w4_0_8bpc_avx2: 3.8 mct_bilinear_w4_0_8bpc_avx512icl: 3.7 --------------------- mct_bilinear_w8_0_8bpc_avx2: 5.0 mct_bilinear_w8_0_8bpc_avx512icl: 4.8 --------------------- mct_bilinear_w16_0_8bpc_avx2: 8.5 mct_biline...
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
09186ea8a715b4e479a5f16b6d56c786aac3a78f
Simplify shifting in generate_grain_y/uv AVX2
Simplify shifting in generate_grain_y/uv AVX2
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/film_grain.asm
bsd-2-clause
1,583,503,017
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2019, VideoLAN and dav1d authors ; Copyright © 2019, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
e1762480709d87bfe2c946e87d2532622d4179bd
x86: Add mc w_mask 4:4:4 AVX-512 (Ice Lake) asm
x86: Add mc w_mask 4:4:4 AVX-512 (Ice Lake) asm
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
ce58d98b7b73c2d811a0baf88639b475591227ea
x86inc: save xmm_regs_used in spill_xmm for non-win64
x86inc: save xmm_regs_used in spill_xmm for non-win64 This allows for AVX-512 code to issue vzeroupper automatically in RET, when not specified in cglobal but later on, along WIN64_SPILL_XMM.
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/ext/x86/x86inc.asm
bsd-2-clause
1,583,503,017
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2019 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
;***************************************************************************** ;* x86inc.asm: x264asm abstraction layer ;***************************************************************************** ;* Copyright (C) 2005-2019 x264 project ;* ;* Authors: Loren Merritt <lorenm@u.washington.edu> ;* Henrik Gramner...
c8118d72c1c9d83a8be630bd4d5312241fc87582
x86: Add mc w_mask 4:2:0 AVX-512 (Ice Lake) asm
x86: Add mc w_mask 4:2:0 AVX-512 (Ice Lake) asm
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
ee51cf16781d93824ad4548c9daf745231322259
x86: replace "mov hb, Xb" by "movzx hd, Xb" in MC
x86: replace "mov hb, Xb" by "movzx hd, Xb" in MC It's a little easier for the CPU to simply overwrite a 32-bit reg rather than writing it's low 8 bits while conserving bits 8 to 31. In order to do that it actually fetches those bits, merge to a 32-bit value, and write that back to the 32-bit GPR. As those are always...
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
13f1dd284e1fb64a188618daa9f01d1be3963bab
x86: Fix overflows in SSSE3 idct
x86: Fix overflows in SSSE3 idct
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/itx_ssse3.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
92edd252bd8dd99c43ad3965817bd409881fbce0
x86: Add mc avg/w_avg/mask AVX-512 (Ice Lake) asm
x86: Add mc avg/w_avg/mask AVX-512 (Ice Lake) asm
xiph/rav1e,xiph/rav1e,xiph/rav1e
src/x86/mc.asm
bsd-2-clause
1,583,503,017
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
3a6a55d8d5883cf094bc3a140e568420014bbf47
x86: Fix crash in AVX2 cdef_filter with <32-byte stack alignment
x86: Fix crash in AVX2 cdef_filter with <32-byte stack alignment
videolan/dav1d,videolan/dav1d
src/x86/cdef.asm
bsd-2-clause
1,583,359,545
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
; Copyright © 2018, VideoLAN and dav1d authors ; Copyright © 2018, Two Orioles, LLC ; All rights reserved. ; ; 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 copy...
246e1b5b8acf9f2779da4a465658f6d24cd857fb
fix string compile
fix string compile
MateoConLechuga/Cesium
src/strings.asm
bsd-3-clause
1,583,026,237
; commonly used strings string_cesium: db cesium_name,0 string_cesium_version: db cesium_name,' Version ',cesium_version,0 string_asm: db 'eZ80',0 string_c: db 'C',0 string_ice: db 'ICE',0 string_ice_source: db 'ICE S',0 string_directory: db 'Folder',0 string_usb: db 'USB',0 string_basic: db 'Basic',0 string_...
; commonly used strings string_cesium: db cesium_name,0 string_cesium_version: db cesium_name,' Version ',cesium_version,0 string_asm: db 'eZ80',0 string_c: db 'C',0 string_ice: db 'ICE',0 string_ice_source: db 'ICE S',0 string_directory: db 'Folder',0 string_usb: db 'USB',0 string_basic: db 'Basic',0 string_...
98cdea1628036dc6a7e7a455947ce3c345b02975
limit rate bars to their intended bounds
limit rate bars to their intended bounds in some cases the rate bar code was falling through to clear sprites but writing past their intended bounds corrupting unused wram. Signed-off-by: bunder2015 <8895d4710d634bf3eedbb49460627c10b2e5d1b0@gmail.com>
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,821,821
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
89f5b817e0c531893842dbed742da36b33418bb9
Fix player 2 sprites
Fix player 2 sprites Sprites for player 2 were flickering because they were comparing an address rather than an immediate value. Signed-off-by: bunder2015 <8895d4710d634bf3eedbb49460627c10b2e5d1b0@gmail.com>
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,818,270
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
bbff00443864195d4a79844fe8d5bc442338205a
disable rendering while writing game attributes
disable rendering while writing game attributes if rendering is enabled during write operations the data will get written to an unintended address resulting in graphical corruption. add a missed case when writing game attributes, snap the screen back to screen 0 after writing as a tradeoff between seeing screen 1 for...
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,813,589
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
bda25272a890e1866163e1ca7df2004fdcc83f7a
move sprites off screen to a consistent position
move sprites off screen to a consistent position FE should be a consistent position to move sprites off screen, rate bar may still be visible on the y axis on some frames due to the way the loop is written, further investigation needed Signed-off-by: bunder2015 <8895d4710d634bf3eedbb49460627c10b2e5d1b0@gmail.com>
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,811,803
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
666379018bc2d98c3d16984e68e8539c4d43540a
push initial sprite state to ppu, bug fixes
push initial sprite state to ppu, bug fixes pushing the initial sprite state to the ppu before we start rendering should prevent a single frame of random sprites littered on the screen. also fix a bug in a previous patch involving bitfields. Signed-off-by: bunder2015 <8895d4710d634bf3eedbb49460627c10b2e5d1b0@gmail.c...
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,758,511
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
c4b4783644a95229043eebce407ab9574c5fbc9f
correct address in memory clearing routine
correct address in memory clearing routine FE is written to shadow OAM to ensure sprite slots aren't drawn on the screen if they are unused. $0200 is being used for shadow OAM. Signed-off-by: bunder2015 <8895d4710d634bf3eedbb49460627c10b2e5d1b0@gmail.com>
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,757,451
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
ec5247d2d794af0add02826096a1895e7fc2e96e
disable bg and spr rendering during ppu writes
disable bg and spr rendering during ppu writes if rendering is enabled during write operations the data will get written to an unintended address resulting in graphical corruption. Signed-off-by: bunder2015 <8895d4710d634bf3eedbb49460627c10b2e5d1b0@gmail.com>
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,757,282
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
297f9f0cb639ab672db151b4c83a2ce432b5a53a
update labels for readability
update labels for readability some labels were missing colons, updated some addresses to use labels Signed-off-by: bunder2015 <8895d4710d634bf3eedbb49460627c10b2e5d1b0@gmail.com>
mitch3b/MashyMashy
MashyMashy.asm
mit
1,582,756,827
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
.inesprg 1 ; 1x 16KB PRG code .ineschr 1 ; 1x 8KB CHR data .inesmap 0 ; mapper 0 = NROM, no bank swapping .inesmir 1 ; background mirroring (horizontal scrolling) ;MITCH ; .include "TitleScreen.asm" ; ----------------------------------- ; Standard NES registers PPU_CTRL_REG1 = $2...
b40d93a8b88491b394a9aab5321fd722f9aa4fc9
Comment tweaks
Comment tweaks
kervinck/gigatron-rom,kervinck/gigatron-rom,kervinck/gigatron-rom,kervinck/gigatron-rom,kervinck/gigatron-rom,kervinck/gigatron-rom,kervinck/gigatron-rom
puzz15.asm
bsd-2-clause
1,582,719,506
; "15 puzzle" for the Apple I ; Jeff Jetton ; Februrary 2020 ; Written for the dasm assembler, but should assemble under others ; with a few tweaks here and there. processor 6502 ; Contants KBD equ $D010 ; Location of input character from keyboard KBDCR equ $D011 ...
; "15 puzzle" for the Apple I ; Jeff Jetton ; Februrary 2020 ; Written for the dasm assembler, but should assemble under others ; with a few tweaks here and there. ; TODO: UPdate maketape to create monitor text file ; https://www.applefritter.com/node/24600#comment-60100 ; TODO: Rewrite initpuzz and checkwin to...