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 |
|---|---|---|---|---|---|---|---|---|
d6ab5ec8b777704fed82580ca4e43efc55ced236 | 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.
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef_avx2.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
c0d08880a6a0b9bbd83ed36e589a4220fb1cab4b | Utilize a better CDEF constant for avx2 | Utilize a better CDEF constant for avx2
Before:
```
cdef_filter_8x8_8bpc_avx2: 275.5
cdef_filter_4x8_8bpc_avx2: 193.3
cdef_filter_4x4_8bpc_avx2: 113.5
```
After:
```
cdef_filter_8x8_8bpc_avx2: 252.3
cdef_filter_4x8_8bpc_avx2: 182.1
cdef_filter_4x4_8bpc_avx2: 105.7
```
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
360b2f776eed05c9d0cdc1ed84b4553415c415e8 | x86: improve AVX2 cdef_filter macro consistency | x86: improve AVX2 cdef_filter macro consistency
- consistently use %3 instead of hardcoded value for tmp stride
- also correct a comment
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
7d1284608ca640709e0fb8c6d32e18a20a09898d | x86: Fix crash in AVX2 cdef_filter with <32-byte stack alignment | x86: Fix crash in AVX2 cdef_filter with <32-byte stack alignment
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
d337f7230522ab63f1ef699939f5a98f17122189 | Add a 4x4 cdef_filter AVX2 implementation | Add a 4x4 cdef_filter AVX2 implementation
cdef_filter_4x4_8bpc_c: 2273.6
cdef_filter_4x4_8bpc_avx2: 113.6
Decoding time reduces to 15.51s for first 1000 frames of chimera 1080p,
from 23.1 before cdef_filter SIMD or 17.86 with only 8x8 cdef_filter
SIMD.
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
1ba4a78dc0abd3f7927c061939bb40200858bb46 | Use some 8 bit arithmetic in AVX2 CDEF filter | Use some 8 bit arithmetic in AVX2 CDEF filter
Before:
cdef_filter_8x8_8bpc_avx2: 252.3
cdef_filter_4x8_8bpc_avx2: 182.1
cdef_filter_4x4_8bpc_avx2: 105.7
After:
cdef_filter_8x8_8bpc_avx2: 235.5
cdef_filter_4x8_8bpc_avx2: 174.8
cdef_filter_4x4_8bpc_avx2: 101.8
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
0b0ba72ae572ccd190fe878aafb37ba558e25b65 | x86: add AVX2 cdef_filter_4x8 | x86: add AVX2 cdef_filter_4x8
used for YUV 422 chroma blocks
cdef_filter_4x8_8bpc_c: 2711.6
cdef_filter_4x8_8bpc_avx2: 189.1
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
814984c54bcf10fb5e3b2f143b357601538e2e23 | Rework the CDEF top edge handling | Rework the CDEF top edge handling
Avoids some pointer chasing and simplifies the DSP code, at the cost
of making the initialization a little bit more complicated.
Also reduces memory usage by a small amount due to properly sizing
the buffers instead of always allocating enough space for 4:4:4.
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
6c9d4104acb2408225ff38a5ba6a514566533ef6 | x86: Add cdef_filter_4x4 AVX-512 (Ice Lake) asm | x86: Add cdef_filter_4x4 AVX-512 (Ice Lake) asm
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
66acb1b946ea835c18f3ef8728267bf7f1df1cba | x86: Add minor CDEF AVX2 optimizations | x86: Add minor CDEF AVX2 optimizations
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
c803b6778a6be82e6240d56acac454aea029de6e | cdef: simplify sec_taps | cdef: simplify sec_taps
Also reduce scope of tables to inside the function where they are used.
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
785835742706d93d4b3526a9c42b5066b40a038e | Remove unused data from x86/cdef.asm | Remove unused data from x86/cdef.asm
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
6adb1035ce4384c437122cc61ee2eb28868cede2 | x86: optimize AVX2 cdef filters | x86: optimize AVX2 cdef filters
before: cdef_filter_4x4_8bpc_avx2: 110.4
after: cdef_filter_4x4_8bpc_avx2: 106.0
before: cdef_filter_4x8_8bpc_avx2: 188.3
after: cdef_filter_4x8_8bpc_avx2: 182.2
before: cdef_filter_8x8_8bpc_avx2: 276.7
after: cdef_filter_8x8_8bpc_avx2: 252.5
Credit to Gramner.
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
97afda9e9db40b1faa0d5b17579b4cfb62d7a3cc | x86: optimize AVX2 cdef_dir | x86: optimize AVX2 cdef_dir
This optimization is so tiny we can't even see it in checkasm.
The only actual difference being the removal of a memory load, it has to
be better.
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
5c9295f4d3b2423bafa49b213f2c4f17d65ae24b | 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/cdef.asm | bsd-2-clause | 1,614,512,712 | ; 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... |
a21e27bfa78d87b0a61913a2aa71cc6b9e509ce8 | add the things that do the things | add the things that do the things
| MateoConLechuga/Cesium | src/ports.asm | bsd-3-clause | 1,614,347,949 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the follo... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
2afa6bc16a08a21ce1481f63202dc5d16bf0e8d0 | Moved code around | Moved code around | EgonOlsen71/basicv2,EgonOlsen71/basicv2,EgonOlsen71/basicv2,EgonOlsen71/basicv2 | src/main/resources/bigram.asm | unlicense | 1,614,261,732 | ;###################################
BRCOPYREALAY
STX BRBUFFER+6 ;save X
LDX #4
STY BRCOPYLOOP+2 ; modify from address
STA BRCOPYLOOP+1
BRCOPYLOOP LDA $FFFF,X
STA BRBUFFER,X
DEX
BPL BRCOPYLOOP
LDX BRBUFFER+6 ; restore X
LDA #<BRBUFFER
LDY #>BRBUFFER
RTS
;################... | ;###################################
BRCOPYREALAY
STX BRBUFFER+6 ;save X
LDX #4
STY BRCOPYLOOP+2 ; modify from address
STA BRCOPYLOOP+1
BRCOPYLOOP LDA $FFFF,X
STA BRBUFFER,X
DEX
BPL BRCOPYLOOP
LDX BRBUFFER+6 ; restore X
LDA #<BRBUFFER
LDY #>BRBUFFER
RTS
;################... |
397e303429e41e2c4ab2f09d6b5db7a9e267117e | Improved speed when using the bigram option | Improved speed when using the bigram option | EgonOlsen71/basicv2,EgonOlsen71/basicv2,EgonOlsen71/basicv2,EgonOlsen71/basicv2 | src/main/resources/bigram.asm | unlicense | 1,614,261,036 | ;###################################
BRCOPYREALAY
STX BRBUFFER+6 ;save X
LDX #4
STY BRCOPYLOOP+2 ; modify from address
STA BRCOPYLOOP+1
BRCOPYLOOP LDA $FFFF,X
STA BRBUFFER,X
DEX
BPL BRCOPYLOOP
LDX BRBUFFER+6 ; restore X
LDA #<BRBUFFER
LDY #>BRBUFFER
RTS
;################... | ;###################################
BRCOPYREALAY
STX BRBUFFER+6 ;save X
LDX #4
STY BRCOPYLOOP+2 ; modify from address
STA BRCOPYLOOP+1
BRCOPYLOOP LDA $FFFF,X
STA BRBUFFER,X
DEX
BPL BRCOPYLOOP
LDX BRBUFFER+6 ; restore X
LDA #<BRBUFFER
LDY #>BRBUFFER
RTS
;################... |
c36b191a9aa7119a78e887e8145cc07414bd81f9 | x86inc: Add stack probing on Windows | x86inc: Add stack probing on Windows
Large stack allocations on Windows need to use stack probing in order
to guarantee that all stack memory is committed before accessing it.
This is done by ensuring that the guard page(s) at the end of the
currently committed pages are touched prior to any pages beyond that.
| videolan/dav1d,videolan/dav1d | src/ext/x86/x86inc.asm | bsd-2-clause | 1,613,054,414 | ;*****************************************************************************
;* x86inc.asm: x86 abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2021 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner <he... | ;*****************************************************************************
;* x86inc.asm: x86 abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2021 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner <he... |
5947ea492dd6df21d1e540bac28f1384fa43d625 | Update invokeNative_em64.asm (#511) | Update invokeNative_em64.asm (#511)
Fix the issue of WIN64 parameter passing | bytecodealliance/wasm-micro-runtime,bytecodealliance/wasm-micro-runtime,bytecodealliance/wasm-micro-runtime,bytecodealliance/wasm-micro-runtime,bytecodealliance/wasm-micro-runtime,bytecodealliance/wasm-micro-runtime,bytecodealliance/wasm-micro-runtime,bytecodealliance/wasm-micro-runtime | core/iwasm/common/arch/invokeNative_em64.asm | apache-2.0 | 1,612,399,815 | ;
; Copyright (C) 2019 Intel Corporation. All rights reserved.
; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
;
_TEXT SEGMENT
; rcx func_ptr
; rdx argv
; r8 n_stacks
invokeNative PROC
push rbp
mov rbp, rsp
mov r10, rcx ; func_ptr
mov rax, rdx ; argv
mov rcx, r8 ... | ;
; Copyright (C) 2019 Intel Corporation. All rights reserved.
; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
;
_TEXT SEGMENT
; rcx func_ptr
; rdx argv
; r8 n_stacks
invokeNative PROC
push rbp
mov rbp, rsp
mov r10, rcx ; func_ptr
mov rax, rdx ; argv
mov rcx, r8 ... |
9eca588a739276b1f84ba388a415b72938f69652 | sm3_mb: Fix windows link error from missing 64bit section | sm3_mb: Fix windows link error from missing 64bit section
Change-Id: I5e7476d6f9ed4dda6897bdc8f395f2861e35cbd8
Signed-off-by: Greg Tucker <190558edad8973536750c621867b946ba24dc8b8@intel.com>
| intel/isa-l_crypto,intel/isa-l_crypto,intel/isa-l_crypto,intel/isa-l_crypto | sm3_mb/sm3_mb_mgr_submit_avx2.asm | bsd-3-clause | 1,612,390,712 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2020 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2020 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... |
d0866a6978d731db56f3d3a69ba16611152da991 | #208 : fixing wadd routine | #208 : fixing wadd routine
| ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang | asm/amd64/coreapi.asm | mit | 1,612,094,611 | // !! NOTE : R15 register must be preserved
// Object header fields
define elSizeOffset 0004h
define elVMTOffset 0010h
define elObjectOffset 0010h
// --- System Core API --
define CORE_ET_TABLE 2000Bh
// ; --- API ---
// ; initProcess(frameHeader)
procedure coreapi'initProcess
fi... | // !! NOTE : R15 register must be preserved
// Object header fields
define elSizeOffset 0004h
define elVMTOffset 0010h
define elObjectOffset 0010h
// --- System Core API --
define CORE_ET_TABLE 2000Bh
// ; --- API ---
// ; initProcess(frameHeader)
procedure coreapi'initProcess
fi... |
28f9166fc9f8bed911e326184b8c87ef15150c14 | uncommented pager lines | uncommented pager lines
| pjshumphreys/querycsv,pjshumphreys/querycsv,pjshumphreys/querycsv | env/zx/residos128/pager.asm | mit | 1,611,936,998 | INCLUDE "../common/equs.inc"
PUBLIC bankmBackup
PUBLIC basicBank
PUBLIC doresi
PUBLIC exhlBackup
PUBLIC spBackup
PUBLIC argName
PUBLIC jumptoit
PUBLIC mypager
PUBLIC defaultBank
PUBLIC destinationHighBank
PUBLIC dodos
PUBLIC argv
PUBLIC fputc_cons
PUBLIC _logNum
PUBLIC _toggleSpinner
PUBLIC _myexit
... | INCLUDE "../common/equs.inc"
PUBLIC bankmBackup
PUBLIC basicBank
PUBLIC doresi
PUBLIC exhlBackup
PUBLIC spBackup
PUBLIC argName
PUBLIC jumptoit
PUBLIC mypager
PUBLIC defaultBank
PUBLIC destinationHighBank
PUBLIC dodos
PUBLIC argv
PUBLIC fputc_cons
PUBLIC _logNum
PUBLIC _toggleSpinner
PUBLIC _myexit
... |
7c316a70358aa3d1b361471d11a1b2671067faca | Properly fix LOAD_MM_PERMUTATION for AVX-512 | Properly fix LOAD_MM_PERMUTATION for AVX-512
Signed-off-by: James Almer <a1bd7e8a8c5f39f027618398c9ca41dd2205b55b@gmail.com>
| videolan/dav1d,videolan/dav1d | src/ext/x86/x86inc.asm | bsd-2-clause | 1,611,868,916 | ;*****************************************************************************
;* x86inc.asm: x86 abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2021 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner <he... | ;*****************************************************************************
;* x86inc.asm: x86 abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2020 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner <he... |
d1766e2f5daabd5914a80b838c0219f330a0d0af | Improved compatibility | Improved compatibility
| neri/osz,neri/osz,neri/osz,neri/osz | src/sys/oszfmt.asm | bsd-2-clause | 1,610,374,639 | ;;
;; OSZ - BIOS for FUJITSU FM TOWNS SERIES PERSONAL COMPUTER
;;
;; Copyright (c) MEG-OS project
;; All rights reserved.
;;
;; Redistribution and use in source and binary forms, with or without modification,
;; are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must re... | ;;
;; OSZ - BIOS for FUJITSU FM TOWNS SERIES PERSONAL COMPUTER
;;
;; Copyright (c) MEG-OS project
;; All rights reserved.
;;
;; Redistribution and use in source and binary forms, with or without modification,
;; are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must re... |
f270771247aa419e7521dba7923b461f623176a9 | Update Route64.asm | Update Route64.asm
license | vividrev/Route64,vividrev/Route64 | Route64.asm | mit | 1,610,263,051 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Route64 library
;; Implements several routines to "break through" the WoW64 layer.
;; by ~adversarial
;; for FASM (flatassembler.net)
;;
;; Released unde... | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Implements several routines to "break through" the WoW64 layer.
;; by ~vividrev
;;
;; 1/20/15:
;; 0.2: Refactored
;; 12/3/14:
;; 0.1: It works
... |
954f9aae7114069caa72bb57518a00c3d7c28b82 | Updare Route64.asm | Updare Route64.asm
updates
| vividrev/Route64,vividrev/Route64 | Route64.asm | mit | 1,610,262,644 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Implements several routines to "break through" the WoW64 layer.
;; by ~vividrev
;;
;; 1/20/15:
;; 0.2: Refactored
;; 12/3/14:
;; 0.1: It works
... | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Implements several routines to "break through" the WoW64 layer.
;; by ~vividrev
;;
;; 1/20/15:
;; 0.2: Refactored
;; 12/3/14:
;; 0.1: It works
... |
5dc55af6a1034e730dd8899b5380c424b161e235 | SSE2, msac: Use bsr shortcut for 50% bool decoding | SSE2, msac: Use bsr shortcut for 50% bool decoding
bsr has 3 cycles of latency for modern x86 processors. For this
function, it's possible to obtain the number of bits to shift by
alternative means.
I'd estimate about approx -0.2% decrease in cpu usage based on
percentages associated with function symbols in perf rep... | videolan/dav1d,videolan/dav1d | src/x86/msac.asm | bsd-2-clause | 1,609,888,985 | ; 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... |
cdb1da13438ff67627c496adc6278c191163302e | PCM replay update and various bugfixes. | PCM replay update and various bugfixes.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,609,793,258 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; porta to note borken?
; pa... | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; speed flip/flop seems brok... |
5d3545dc1090618dea2c907ace96029657ceffc8 | A bit more clean-up | A bit more clean-up
| paulmooreparks/Tortilla,paulmooreparks/Tortilla | core.asm | apache-2.0 | 1,609,124,887 | ; This file contains the code for the kernel
LABEL core_os_start AUTO
LABEL core_os_core AUTO
LABEL core_os_core_jump_table AUTO
LABEL core_os_key_input AUTO
LABEL core_os_print_reg AUTO
LABEL core_os_puts AUTO
LA... | ; This file contains the code for the kernel
LABEL core_os_start AUTO
LABEL core_os_core AUTO
LABEL core_os_core_jump_table AUTO
LABEL core_os_key_input AUTO
LABEL core_os_print_reg AUTO
LABEL core_os_puts AUTO
LA... |
383492556b4cb5d52c5b22bbcd2ea26247ff9050 | x86: mc: Add AVX2 implementation of avg/w_avg/mask for 16bpc | x86: mc: Add AVX2 implementation of avg/w_avg/mask for 16bpc
Relative speed-ups over C code (compared with gcc-9.3.0):
C AVX2
avg_w4_16bpc: 185.5 13.3 13.95x
avg_w8_16bpc: 223.1 35.3 6.32x
avg_w16_16bpc: ... | xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc16_avx2.asm | bsd-2-clause | 1,609,029,191 | ; Copyright (c) 2017-2020, The rav1e contributors
; Copyright (c) 2020, Nathan Egge
; 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... | ; Copyright (c) 2017-2020, The rav1e contributors
; Copyright (c) 2020, Nathan Egge
; 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... |
aed2a6ca1e517bd5ddf30e750d9d3eb8d513fa5e | Fix 16-bit overflow in rav1e_sad_16x16_hbd_ssse3. | Fix 16-bit overflow in rav1e_sad_16x16_hbd_ssse3.
Accumulate SAD in 32 bits as 16*16*1023 = 261888 exceeds a 16-bit value.
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/me.asm | bsd-2-clause | 1,608,814,258 | ; Copyright (c) 2018, 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) 2018, 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... |
f4a2097e4fd8642b3ecc65f95a0d78af7c7b6062 | Another 0.5% speedup | Another 0.5% speedup
| maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors | decompressors/unlzsa1_fast.asm | mit | 1,608,305,440 | ; This file is an assembler port for WLA-DX by Maxim.
; It is forwards-only with no unrolling (as that used self-modifying code).
; Define LZSAToVRAM to enable VRAM mode.
; Usage:
;
; ld hl,data
; ld de,dest
; call DecompressLZSA1
;
; Original comments follow.
;
; Speed-optimized LZSA1 decompressor by spke & uniabi... | ; This file is an assembler port for WLA-DX by Maxim.
; It is forwards-only with no unrolling (as that used self-modifying code).
; Define LZSAToVRAM to enable VRAM mode.
; Usage:
;
; ld hl,data
; ld de,dest
; call DecompressLZSA1
;
; Original comments follow.
;
; Speed-optimized LZSA1 decompressor by spke & uniabi... |
53ffc447c916f9bcfb6bae84645b31474edf8e50 | 3.5% speedup for LZSA1 decompressor (in VRAM mode) | 3.5% speedup for LZSA1 decompressor (in VRAM mode)
| maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors | decompressors/unlzsa1_fast.asm | mit | 1,608,296,044 | ; This file is an assembler port for WLA-DX by Maxim.
; It is forwards-only with no unrolling (as that used self-modifying code).
; Define LZSAToVRAM to enable VRAM mode.
; Usage:
;
; ld hl,data
; ld de,dest
; call DecompressLZSA1
;
; Original comments follow.
;
; Speed-optimized LZSA1 decompressor by spke & uniabi... | ; This file is an assembler port for WLA-DX by Maxim.
; It is forwards-only with no unrolling (as that used self-modifying code).
; Define LZSAToVRAM to enable VRAM mode.
; Usage:
;
; ld hl,data
; ld de,dest
; call DecompressLZSA1
;
; Original comments follow.
;
; Speed-optimized LZSA1 decompressor by spke & uniabi... |
ecda92923f8dcef61cbab82494185c9bb9033f6a | Enable fast aplib benchmark | Enable fast aplib benchmark
| maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors,maxim-zhao/bmp2tilecompressors | benchmark/benchmark-aplib-fast.sms.asm | mit | 1,608,155,006 | ; { "technology": "aPLib", "extension": "aplib", "extra-extensions": ["apultra", "oapack"] }
.memorymap
defaultslot 0
slotsize $4000
slot 0 $0000
.endme
.rombankmap
bankstotal 1
banksize $4000
banks 1
.endro
.bank 0 slot 0
.org 0
ld hl,data
ld de,$4000
call aPLib_decompress
ret ; ends the test
.define aPLibMem... | .memorymap
defaultslot 0
slotsize $4000
slot 0 $0000
.endme
.rombankmap
bankstotal 1
banksize $4000
banks 1
.endro
.bank 0 slot 0
.org 0
ld hl,data
ld de,$4000
call aPLib_decompress
ret ; ends the test
.define aPLibMemory $c000
.define aPLibToVRAM
.include "../decompressors/aPLib decompressor (fast).asm"
data:... |
1571f65ac37051fb06f8c4af6490f067205f1da1 | x86: Fix out-of-bounds read in AVX2 wiener_filter | x86: Fix out-of-bounds read in AVX2 wiener_filter
| videolan/dav1d,videolan/dav1d | src/x86/looprestoration.asm | bsd-2-clause | 1,608,035,359 | ; 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... |
d4f7716c8f1c1f058a9353b416eb7cde3688bf32 | revert removing shortcut support | revert removing shortcut support
| MateoConLechuga/Cesium | src/exit.asm | bsd-3-clause | 1,607,491,089 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
475c4dd4f7ec3de217515f47cca63a8fdd9d9162 | fix crash with lowercase program attributes | fix crash with lowercase program attributes
| MateoConLechuga/Cesium | src/features.asm | bsd-3-clause | 1,607,395,032 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
b1849d793099e1c4226fdb195b394b77d66c1edc | fixing mtredirect opcode implementation | fixing mtredirect opcode implementation
| ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang,ELENA-LANG/elena-lang | asm/x32/core.asm | mit | 1,606,809,919 | // --- Predefined References --
define GC_ALLOC 10001h
define HOOK 10010h
define INVOKER 10011h
define INIT_RND 10012h
define ENDFRAME 10016h
define RESTORE_ET 10017h
define CALC_SIZE 1001Fh
define GET_COUNT 10020h
define ... | // --- Predefined References --
define GC_ALLOC 10001h
define HOOK 10010h
define INVOKER 10011h
define INIT_RND 10012h
define ENDFRAME 10016h
define RESTORE_ET 10017h
define CALC_SIZE 1001Fh
define GET_COUNT 10020h
define ... |
6ff381dfa57e8ae960615e53633bd4c9bd208179 | C128-Boostmode handles OPEN/CLOSE better | C128-Boostmode handles OPEN/CLOSE better | EgonOlsen71/basicv2,EgonOlsen71/basicv2,EgonOlsen71/basicv2,EgonOlsen71/basicv2 | src/main/resources/subroutines.asm | unlicense | 1,606,805,476 | ;###################################
START LDA ENDSTRBUF+1
BNE ENDGIVEN
LDA BASICEND
STA ENDSTRBUF
LDA BASICEND+1
STA ENDSTRBUF+1
ENDGIVEN LDA #<FPSTACK
LDY #>FPSTACK
STA FPSTACKP
STY FPSTACKP+1
LDA #<FORSTACK
LDY #>FORSTACK
STA FORSTACKP
STY FORSTACKP+1
LDA #<STRBUF
LDY #>STR... | ;###################################
START LDA ENDSTRBUF+1
BNE ENDGIVEN
LDA BASICEND
STA ENDSTRBUF
LDA BASICEND+1
STA ENDSTRBUF+1
ENDGIVEN LDA #<FPSTACK
LDY #>FPSTACK
STA FPSTACKP
STY FPSTACKP+1
LDA #<FORSTACK
LDY #>FORSTACK
STA FORSTACKP
STY FORSTACKP+1
LDA #<STRBUF
LDY #>STR... |
ea34a547b2db869be435e298128c21eb1f25d7af | sha256 : remove useless code | sha256 : remove useless code
removed no used code from sha256_mb_x8_avx2.asm
Signed-off-by: Jiaqi Zhou <d829a8f56935fbdc094772beae0aae24615c605b@intel.com>
Change-Id: Ia08462e062923885602edcc08a0471de383fb8ba
| intel/isa-l_crypto,intel/isa-l_crypto,intel/isa-l_crypto,intel/isa-l_crypto | sha256_mb/sha256_mb_x8_avx2.asm | bsd-3-clause | 1,606,783,602 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2016 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2016 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... |
58cb092c851c6094d1e88abf74c8f1f8aeffe2c7 | asm: renamed labels in beam doors asm | asm: renamed labels in beam doors asm
| theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver | rando/patches/beam_doors_plms.asm | mit | 1,606,777,238 | ;;; Adds beam doors to the game. This file contains only the patch for the PLM bank,
;;; graphics have to be applied from a separate patch: beam_doors_gfx.ips
;;; Disassembled from the IPS patch by Mettyk25jigsaw using DiztinGUIsh
arch snes.cpu
lorom
ORG $84F037
end_list_wave_left: dw $0008,$A677,$0002,$A90B,$8C19... | ;;; Adds beam doors to the game. This file contains only the patch for the PLM bank,
;;; graphics have to be applied from a separate patch: beam_doors_gfx.ips
;;; Disassembled from the IPS patch by Mettyk25jigsaw using DiztinGUIsh
arch snes.cpu
lorom
ORG $84F037
end_list_wave_dir0: dw $0008,$A677,$0002,$A90B,$8C19... |
9c8b981f8e19d6ed2e1a13446addcebe37dda8f4 | x86: Add cdef_filter SSE optimizations | x86: Add cdef_filter SSE optimizations
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/cdef_sse.asm | bsd-2-clause | 1,606,398,717 | ; 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... |
5c0d7c65f785f911336d82096b08aa18de33ae73 | x86inc.asm: use standalone x86inc.asm as upstream | x86inc.asm: use standalone x86inc.asm as upstream
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/ext/x86/x86inc.asm | bsd-2-clause | 1,606,398,717 | ;*****************************************************************************
;* x86inc.asm: x86 abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2020 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner <he... | ;*****************************************************************************
;* x86inc.asm: x264asm abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2020 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner... |
2a0d3e14963b783e1c7ace40e8ac88a44ecef0d8 | x86inc.asm: Properly sort instructions in alphabetical order | x86inc.asm: Properly sort instructions in alphabetical order
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/ext/x86/x86inc.asm | bsd-2-clause | 1,606,398,717 | ;*****************************************************************************
;* 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... |
2b80fd95c95ce33eb6f10dc1ff0187924b27c0c9 | x86: Minor changes to MC scaled AVX2 asm | x86: Minor changes to MC scaled AVX2 asm
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc_avx2.asm | bsd-2-clause | 1,606,398,717 | ; Copyright © 2018-2020, VideoLAN and dav1d authors
; Copyright © 2018-2020, 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 ... | ; Copyright © 2018-2020, VideoLAN and dav1d authors
; Copyright © 2018-2020, 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 ... |
56e39c807762fcf19f1f3dab4abeb7bc7edd36a3 | x86: Add {put/prep}_{8tap/bilin} SSSE3 asm (64-bit) | x86: Add {put/prep}_{8tap/bilin} SSSE3 asm (64-bit)
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc_sse.asm | bsd-2-clause | 1,606,398,717 | ; 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... |
ce2531b9c007f7365aaf8ba05b45dbeb2beb9f9f | 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... | xiph/rav1e,xiph/rav1e,xiph/rav1e | src/ext/x86/x86inc.asm | bsd-2-clause | 1,606,398,414 | ;*****************************************************************************
;* 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... |
c1dee9c3167ee98a6ae19a1b124c03bd549da2dc | x86: Fix 32-bit build with PIC enabled | x86: Fix 32-bit build with PIC enabled
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc_sse.asm | bsd-2-clause | 1,606,398,414 | ; 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... |
c018e8e2c1d8b61d4aafc59c417c483cce5a37d3 | x86: Add put_8tap_scaled AVX2 asm | x86: Add put_8tap_scaled AVX2 asm
mc_scaled_8tap_regular_w2_8bpc_c: 764.4
mc_scaled_8tap_regular_w2_8bpc_avx2: 191.3
mc_scaled_8tap_regular_w2_dy1_8bpc_c: 705.8
mc_scaled_8tap_regular_w2_dy1_8bpc_avx2: 89.5
mc_scaled_8tap_regular_w2_dy2_8bpc_c: 964.0
mc_scaled_8tap_regular_w2_dy2_8bpc_avx2: 120.3
mc_scaled_8tap_regul... | xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc.asm | bsd-2-clause | 1,606,398,414 | ; 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... |
491dde091e2ba276c48cd490e4d3bb1f091d8fdb | x86inc: Add missing 'blsr' BMI1 instruction | x86inc: Add missing 'blsr' BMI1 instruction
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/ext/x86/x86inc.asm | bsd-2-clause | 1,606,398,414 | ;*****************************************************************************
;* 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... |
e503ad00fe2a1af80a82c61256d73d11444fed9f | 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... | xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/ipred.asm | bsd-2-clause | 1,606,398,414 | ; 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... |
58bd3e94bcfff38721bf8d25886821e7af1eede0 | x86: Adapt SSSE3 prep_8tap to SSE2 | x86: Adapt SSSE3 prep_8tap to SSE2
---------------------
x86_64:
------------------------------------------
mct_8tap_regular_w4_h_8bpc_c: 302.3
mct_8tap_regular_w4_h_8bpc_sse2: 47.3
mct_8tap_regular_w4_h_8bpc_ssse3: 19.5
---------------------
mct_8tap_regular_w8_h_8bpc_c: 745.5
mct_8tap_regular_w8_h_8bpc_sse2: 235.2
m... | xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc_sse.asm | bsd-2-clause | 1,606,398,414 | ; 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... |
11d950ffd36440c548869591a718b52b81b0a701 | x86: Add prep_8tap_scaled AVX2 asm | x86: Add prep_8tap_scaled AVX2 asm
mct_scaled_8tap_regular_w4_8bpc_c: 872.1
mct_scaled_8tap_regular_w4_8bpc_avx2: 125.6
mct_scaled_8tap_regular_w4_dy1_8bpc_c: 886.3
mct_scaled_8tap_regular_w4_dy1_8bpc_avx2: 84.0
mct_scaled_8tap_regular_w4_dy2_8bpc_c: 1189.1
mct_scaled_8tap_regular_w4_dy2_8bpc_avx2: 84.7
mct_scaled_8t... | xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc.asm | bsd-2-clause | 1,606,398,414 | ; 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... |
9bddf6dbfcc0d35befd5d512268d27e9b4a369fd | x86inc: Improve warnings for use of unsupported instructions | x86inc: Improve warnings for use of unsupported instructions
| xiph/rav1e,xiph/rav1e,xiph/rav1e | src/ext/x86/x86inc.asm | bsd-2-clause | 1,606,398,414 | ;*****************************************************************************
;* 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... |
f2ace9ac2466aa3f74136fe1f068f336ea8412d5 | x86: Add put/prep_bilin_scaled AVX2 asm | x86: Add put/prep_bilin_scaled AVX2 asm
Bilin scaled being very rarely used, add a new table entry to
mc_subpel_filters, and jump to the put/prep_8tap_scaled code.
AVX2 performance is obviously the same as the 8tap code, the speed up is
much smaller though, as the C code is a true bilinear codepath,
auto-vectorized. ... | xiph/rav1e,xiph/rav1e,xiph/rav1e | src/x86/mc.asm | bsd-2-clause | 1,606,398,414 | ; 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... |
c6280612582c24d5c1b351faf909484991103123 | fix printstr | fix printstr
| mjbrusso/util.asm | util.asm | mit | 1,606,162,178 | ;*********************************************************************
; util.asm
; Version: 1.2
; Author: mjbrusso
; Contributors: AlessandroFonseca
; Licensed under the MIT license (see "license.txt").
;*********************************************************************
%ifidn __OUTPUT_FORMAT__, macho64 ... | ;*********************************************************************
; util.asm
; Version: 1.2
; Author: mjbrusso
; Contributors: AlessandroFonseca
; Licensed under the MIT license (see "license.txt").
;*********************************************************************
%ifidn __OUTPUT_FORMAT__, macho64 ... |
35098ce79f6f7df567b0a9af60f86e0ecb322a86 | SLD: adjusting test to verify "K" lines are not emitted for skipped/comment blocks | SLD: adjusting test to verify "K" lines are not emitted for skipped/comment blocks
| z00m128/sjasmplus,z00m128/sjasmplus,z00m128/sjasmplus,z00m128/sjasmplus | tests/listing/sld/cspect_debug/sld_example.asm | bsd-3-clause | 1,605,973,100 | ; a bit "like real" example with actual ZX Next binary to verify some debugger the SLD parsing
; to launch the final NEX file in CSpect with map file:
; CSpect.exe [your other preferred options] -map=sld_example.sym sld_example.nex
DEVICE ZXSPECTRUMNEXT
SLDOPT COMMENT WPMEM
WAIT_DELAY EQU 21
CSPECT_EASY EQU $... | ; a bit "like real" example with actual ZX Next binary to verify some debugger the SLD parsing
; to launch the final NEX file in CSpect with map file:
; CSpect.exe [your other preferred options] -map=sld_example.sym sld_example.nex
DEVICE ZXSPECTRUMNEXT
SLDOPT COMMENT WPMEM
WAIT_DELAY EQU 21
CSPECT_EASY EQU $... |
bb945f7d32e1380658062f63fda6080c96841454 | Minor optimisations of short sends in the bytecode interpreter | Minor optimisations of short sends in the bytecode interpreter
| shoshanatech/Dolphin,jgfoster/Dolphin,dolphinsmalltalk/Dolphin,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,objectarts/Dolphin,shoshanatech/Dolphin,jgfoster/Dolphin,objectarts/Dolphin,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,dolphinsmalltalk/Dolphin,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,shoshanatech/Dolphin,shoshanat... | Core/DolphinVM/byteasm.asm | mit | 1,605,726,213 | ;
; IDEAS:
; 1: Increment often succeeds a push of temporary, e.g. in the optimized version of #to:do: generated by the compiler,
; so add a Push Temp N and Increment - Shame can't do "push, inc and store" (because of failure case?).
;
; Dolphin Smalltalk
; Byte code Interpreter routines and helpers in Assembler for I... | ;
; IDEAS:
; 1: Increment often succeeds a push of temporary, e.g. in the optimized version of #to:do: generated by the compiler,
; so add a Push Temp N and Increment - Shame can't do "push, inc and store" (because of failure case?).
;
; Dolphin Smalltalk
; Byte code Interpreter routines and helpers in Assembler for I... |
56217c8fd2a19ea8769923580eafd4c87ce094bc | asm: backup save wip | asm: backup save wip
| theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver | rando/patches/credits_varia.asm | mit | 1,605,658,356 | // compile with xkas-plus
// 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"
de... | // compile with xkas-plus
// 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"
de... |
05c7b8a27f42fc3a299572330f19b0310075b397 | Improve comments | Improve comments
| mjbrusso/util.asm | util.asm | mit | 1,605,551,980 | ;*********************************************************************
; util.asm
; Version: 1.2
; Author: mjbrusso
; Contributors: AlessandroFonseca
; Licensed under the MIT license (see "license.txt").
;*********************************************************************
%ifidn __OUTPUT_FORMAT__, macho64 ... | ;*********************************************************************
; util.asm
; Version: 1.2
; Author: mjbrusso
; Contributors: AlessandroFonseca
; Licensed under the MIT license (see "license.txt").
;*********************************************************************
%ifidn __OUTPUT_FORMAT__, macho64
... |
5a3e3496af5ea75ef3bc8bd8e174c37865987ec5 | (#101) Remove old commented-out code | (#101) Remove old commented-out code
| alexguirre/RAGENativeUI,alexguirre/RAGENativeUI,alexguirre/RAGENativeUI | Source/Internals/Stubs/TokenParser.asm | mit | 1,603,393,527 | bits 64
default rel
stub_offset: dq stub
stub_success: dq 0x1111111111111111
stub_failed: dq 0x2222222222222222
base_address: dq 0x3333333333333333 ; the address where this stub was placed
keyboard_layout: dq 0x4444444444444444
align 16
stub:
test al, al
jnz .success
... | bits 64
default rel
stub_offset: dq stub
stub_success: dq 0x1111111111111111
stub_failed: dq 0x2222222222222222
base_address: dq 0x3333333333333333 ; the address where this stub was placed
keyboard_layout: dq 0x4444444444444444
align 16
stub:
test al, al
jnz .success
... |
4d1f1df11615179be106ef6e1159b3571abe3107 | change default editor program name | change default editor program name
| MateoConLechuga/Cesium | src/settings.asm | bsd-3-clause | 1,602,911,785 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
1f1984789ea128fd6a913ddf3eb75b71c7f6dad6 | passive voice is for suckers | passive voice is for suckers
| MateoConLechuga/Cesium | src/strings.asm | bsd-3-clause | 1,602,434,712 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
77441757a50de914e2fc6db7903aa1bb8915daa2 | potentially add inverted colors support | potentially add inverted colors support
| MateoConLechuga/Cesium | src/hooks.asm | bsd-3-clause | 1,602,302,185 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
b84d5d4953542e6e449328847a75f5b6d039b457 | Added "Set Samples Bank" command. | Added "Set Samples Bank" command.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,602,104,171 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; sample bank!
; speed flip/... | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; speed flip/flop is broken
... |
dfc6805e0fd976c65a9a18e7ed324fe3cc80d4ad | Fixed replay issue on real hw. | Fixed replay issue on real hw.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,601,927,973 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; speed flip/flop is broken
... | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; speed flip/flop is broken
... |
dd13893e0462ce0070757832278f9ae421e65e93 | testkit/ptplayer: Rationalise the level-6 IRQ handler a bit. | testkit/ptplayer: Rationalise the level-6 IRQ handler a bit.
| keirf/Amiga-Stuff,keirf/Amiga-Stuff,keirf/Amiga-Stuff | testkit/ptplayer/ptplayer.asm | unlicense | 1,601,219,619 | ;**************************************************
;* ----- Protracker V2.3B Playroutine ----- *
;**************************************************
;
; XXXXXXXX WARNING XXXXXXXXX
; This has been hacked for Amiga Test Kit.
; - Functionality has been removed (master volume, sound fx)
; - A cheesy method to nobbl... | ;**************************************************
;* ----- Protracker V2.3B Playroutine ----- *
;**************************************************
;
; XXXXXXXX WARNING XXXXXXXXX
; This has been hacked for Amiga Test Kit.
; - Functionality has been removed (master volume, sound fx)
; - A cheesy method to nobbl... |
865ba27672fe7dddf43ae26c609e2471cfbaf3ed | Remove unnecessary macro from CaptureContext code | Remove unnecessary macro from CaptureContext code
The Windows implementation of CaptureContext used a macro to refer to
the offset of a field in a struct.
Bug: chromium:762167
Change-Id: I621d5c88283b1d066158559aade8811a9825c72e
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2426743
Revie... | chromium/crashpad,chromium/crashpad,chromium/crashpad,chromium/crashpad | util/misc/capture_context_win.asm | apache-2.0 | 1,600,892,735 | ; Copyright 2015 The Crashpad Authors. All rights reserved.
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicabl... | ; Copyright 2015 The Crashpad Authors. All rights reserved.
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicabl... |
74f4e9c35f74a3d9f77bb7c1be5207169a0b787f | sha1_mb: Fix align for ms nasm | sha1_mb: Fix align for ms nasm
Sections can be aligned to 64bits max in windows.
Change-Id: I94177249e43e74324ee44139b555317e91dc6c67
Signed-off-by: Greg Tucker <190558edad8973536750c621867b946ba24dc8b8@intel.com>
| intel/isa-l_crypto,intel/isa-l_crypto,intel/isa-l_crypto,intel/isa-l_crypto | sha1_mb/sha1_opt_x1.asm | bsd-3-clause | 1,600,821,810 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2017 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2017 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of so... |
50f469ff65f82deb76af74fbf4e6a3e5b1003584 | relative jumps and make cleanup_z80 look at hasMapper flag | relative jumps and make cleanup_z80 look at hasMapper flag
| pjshumphreys/querycsv,pjshumphreys/querycsv,pjshumphreys/querycsv | env/cpm/pager.asm | mit | 1,600,767,449 | ;SECTION code_compiler
;defs 0x8, 0 ; cpm
;defs 0x1e, 0 ; msx
INCLUDE "defines.inc"
EXTERN _dosload
EXTERN l_jphl
funcstart: ; the array of call xxxx instructions and page numbers
INCLUDE "functions.inc"
datastart:
BINARY "../data.bin"
PUBLIC _logNum
PUBLIC _hasMapper
PUBLIC _defaultBank
PUBLIC _mapperJ... | ;SECTION code_compiler
;defs 0x8, 0 ; cpm
;defs 0x1e, 0 ; msx
INCLUDE "defines.inc"
EXTERN _dosload
EXTERN l_jphl
funcstart: ; the array of call xxxx instructions and page numbers
INCLUDE "functions.inc"
datastart:
BINARY "../data.bin"
PUBLIC _logNum
PUBLIC _hasMapper
PUBLIC _defaultBank
PUBLIC _mapperJ... |
355e792c423aed3a44f4bd023a9a145e456f0378 | Fix binary symbols | Fix binary symbols
| zellyn/a2audit,zellyn/a2audit,zellyn/a2audit | audit/auxmem.asm | mit | 1,600,575,914 | ;;; Apple IIe Auxiliary memory audit routines
;;; Copyright © 2017 Zellyn Hunter <zellyn@gmail.com>
!zone auxmem {
.MEM_1 = %00000000
.MEM_2 = %00000001
.MEM_3 = %00000010
.MEM_4 = %00000011
.MEM_2_1_1_1 = (.MEM_2 << 0) + (.MEM_1 << 2) + (.MEM_1 << 4) + (.MEM_1 << 6)
.MEM_3_2_2_2 = (.MEM_3 << 0) + (.MEM_2 << 2)... | ;;; Apple IIe Auxiliary memory audit routines
;;; Copyright © 2017 Zellyn Hunter <zellyn@gmail.com>
!zone auxmem {
.MEM_1 = %00
.MEM_2 = %01
.MEM_3 = %10
.MEM_4 = %11
.MEM_2_1_1_1 = (.MEM_2 << 0) + (.MEM_1 << 2) + (.MEM_1 << 4) + (.MEM_1 << 6)
.MEM_3_2_2_2 = (.MEM_3 << 0) + (.MEM_2 << 2) + (.MEM_2 << 4) + (.MEM... |
c08c6660574fdddffa63ac1f7c1328920e68a1aa | Add SEH registration to the 64-bit win64 setjmp/longjmp. | Add SEH registration to the 64-bit win64 setjmp/longjmp.
| OpenSmalltalk/vm,OpenSmalltalk/vm,OpenSmalltalk/vm,timfel/squeakvm,OpenSmalltalk/vm,timfel/squeakvm,timfel/squeakvm,timfel/squeakvm,timfel/squeakvm,timfel/squeakvm,timfel/squeakvm,OpenSmalltalk/vm,OpenSmalltalk/vm,OpenSmalltalk/vm,OpenSmalltalk/vm,timfel/squeakvm | platforms/win32/misc/_setjmp-x64.asm | mit | 1,600,150,237 | // A setlmp/longjmp pair that does not check the stack on unwind, hence avoiding
// issues caused by the JIT executing on the Smalltalk stack which is
// discontiguous with the C stack.
// Code adapted from Julia, whose license is MIT: https://julialang.org/license
.text
.globl _setjmp
.globl _setjmp0
.p2align 4, 0... | // A setlmp/longjmp pair that does not check the stack on unwind, hence avoiding
// issues caused by the JIT executing on the Smalltalk stack which is
// discontiguous with the C stack.
// Code adapted from Julia, whose license is MIT: https://julialang.org/license
.text
.globl _setjmp
.globl _setjmp0
.p2align 4, 0... |
3989164e51fc9139be7a0d5181651d1d538cf75c | bump version | bump version
| MateoConLechuga/Cesium | src/cesium.asm | bsd-3-clause | 1,599,837,619 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
83c8e00f122ceb715336b102b94f293b2874d737 | bump version | bump version
| MateoConLechuga/Cesium | src/cesium.asm | bsd-3-clause | 1,599,535,307 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
c969d073c632c03af99d4560e6b2dba4b70c2177 | use a table instead | use a table instead
| MateoConLechuga/Cesium | src/ports.asm | bsd-3-clause | 1,599,534,527 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
aef3f3dbdaf78fc15fb8beadb9745dc65640be44 | use ix for hooks apparently | use ix for hooks apparently
| MateoConLechuga/Cesium | src/hooks.asm | bsd-3-clause | 1,599,529,869 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
b08c59d36c326fa8239d4099243d1758bf5a6f81 | asm: correctly enable hyper in minimizer tourian | asm: correctly enable hyper in minimizer tourian
| theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver | rando/patches/minimizer_tourian.asm | mit | 1,599,520,622 | ;;; Tourian speedup for minimizer :
;;; - connects G4 door to Tourian Eye Door Room
;;; - transforms Gadora into a Tourian Guardian (invincible until you
;;; beat all Golden Four)
;;; - add door ASM for Gadora's door: refill+kill the zebs and MB
;;; glass
;;;
;;; Compiles with asar
arch snes.cpu
lorom
!full_refil... | ;;; Tourian speedup for minimizer :
;;; - connects G4 door to Tourian Eye Door Room
;;; - transforms Gadora into a Tourian Guardian (invincible until you
;;; beat all Golden Four)
;;; - add door ASM for Gadora's door: refill+kill the zebs and MB
;;; glass
;;;
;;; Compiles with asar
arch snes.cpu
lorom
!full_refil... |
b156b65f05da36e887998caf25e4a82e7199ea8e | fix absurdly long name labels | fix absurdly long name labels
| MateoConLechuga/Cesium | src/hooks.asm | bsd-3-clause | 1,599,361,876 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
cbf434c2f4a5b9466b7082c969eee004c006f184 | add prgm top and bottom jump targets | add prgm top and bottom jump targets
| MateoConLechuga/Cesium | src/hooks.asm | bsd-3-clause | 1,599,337,946 | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... | ; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice,
; this list of conditions and the fol... |
c041797f949c3d7a9ce276619c4c220ca582c8ff | examples/TapLib: fix typo | examples/TapLib: fix typo
| z00m128/sjasmplus,z00m128/sjasmplus,z00m128/sjasmplus,z00m128/sjasmplus | examples/TapLib/TapLib.asm | bsd-3-clause | 1,598,918,273 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Busy soft ;; 26.11.2018 ;; Tape generating library ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Use:
;;
;; .................
;; ...your...code...
;; .................
;; include "TapLib.asm"
;; MakeTape <speccy_model>, <tape_file>,... | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Busy soft ;; 26.11.2018 ;; Tape generating library ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Use:
;;
;; .................
;; ...your...code...
;; .................
;; include "TapLib.asm"
;; MakeTape <speccy_model>, <tape_file>,... |
ccb9b6cbbff49995a9f9c37772960584e52af0a4 | nasmtests: Re-enable 0x89 mem tests in mov16 | nasmtests: Re-enable 0x89 mem tests in mov16
The old method understandably triggered the 0x67 address-size override
prefix, which caused the segfault.
(Changed "mov [mem], ax" because that might use op 0xA3.)
| copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86,copy/v86 | tests/nasm/mov16.asm | bsd-2-clause | 1,598,833,622 | ;;; Test JIT optimization of opcodes 0x89 and 0x8b
global _start
section .data
align 16
mydword:
dd 0xcafebabe
myaddress:
dd 0xdeadbeef
%include "header.inc"
;; Load 32-bit values to confirm that the 16-bit movs do not overwrite existing values here
mov eax, 0xcafeb055
mov esi, 0x1bada551
... | ;;; Test JIT optimization of opcodes 0x89 and 0x8b
global _start
section .data
align 16
mydword:
dd 0xcafebabe
myaddress:
dd 0xdeadbeef
%include "header.inc"
;; Load 32-bit values to confirm that the 16-bit movs do not overwrite existing values here
mov eax, 0xcafeb055
mov esi, 0x1bada551
... |
3d1f5ce8e7eb3eee5482ad69d2d27456e657ad51 | travis: update absolute | travis: update absolute
To match test/ instance.
Signed-off-by: Cyrill Gorcunov <7a1ea01eee6961eb1e372e3508c2670446d086f4@gmail.com>
| techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm,techkey/nasm | travis/test/absolute.asm | bsd-2-clause | 1,598,271,862 | %ifmacro org
org 7c00h
%endif
init_foo:
jmp init_bar
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
init_bar:
mov [b1],dl
mov [b2],edx
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
ret
absolute init_bar+7
b1: resb 1
b2: resd 6
| org 7c00h
init_foo:
jmp init_bar
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
init_bar:
mov [b1],dl
mov [b2],edx
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
ret
absolute init_bar+7
b1: resb 1
b2: resd 6
|
0a106e37e8598c9615544f7db0ec610613210fc6 | Brought back delay. | Brought back delay.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,598,123,317 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; pattern_break
; position_j... | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; defines to activate/deacti... |
721036ef8396a924406aed54ff5771d1ac72e8aa | Clamp frequency and fixed portamento to note. | Clamp frequency and fixed portamento to note.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,598,110,862 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; defines to activate/deacti... | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; defines to activate/deacti... |
0a47ab69c2107029cab6ebd437afaa2f34a10851 | Brought back panning and fixed vibrato. | Brought back panning and fixed vibrato.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,598,043,006 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; defines to activate/deacti... | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; dmf.portamento_to_note
; p... |
4cd2f82d2ad9425d213cd93f076f467a3fcfb001 | x86inc.asm: use standalone x86inc.asm as upstream | x86inc.asm: use standalone x86inc.asm as upstream
| videolan/dav1d,videolan/dav1d | src/ext/x86/x86inc.asm | bsd-2-clause | 1,598,015,628 | ;*****************************************************************************
;* x86inc.asm: x86 abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2020 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner <he... | ;*****************************************************************************
;* x86inc.asm: x264asm abstraction layer
;*****************************************************************************
;* Copyright (C) 2005-2020 x264 project
;*
;* Authors: Loren Merritt <lorenm@u.washington.edu>
;* Henrik Gramner... |
9435be1881941f3b86481a25929b5bf8b1d5b9a0 | x86inc.asm: Properly sort instructions in alphabetical order | x86inc.asm: Properly sort instructions in alphabetical order
| videolan/dav1d,videolan/dav1d | src/ext/x86/x86inc.asm | bsd-2-clause | 1,598,015,573 | ;*****************************************************************************
;* 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... |
3de4d06d5d0c5b20311473f411c207b77fbc59b5 | Fixed portamento. | Fixed portamento.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,597,953,105 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; dmf.portamento_to_note
; p... | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; dmf.portamento_to_note
; p... |
b76ed82bb863ad12480b7e91fdaeb8cc36603d5c | Brought back portamento to note. | Brought back portamento to note.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,597,869,258 | ; Copyright (c) 2015-2020, Vincent "MooZ" Cruz and other contributors. All rights reserved.
; Copyrights licensed under the New BSD License.
; See the accompanying LICENSE file for terms.
;;------------------------------------------------------------------------------------------
; [todo]
; dmf.portamento_to_note
; p... | ; 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]
; dmf.portamento_up
; dmf.po... |
d0b440d265882c69809397ab78ac9de670c05cf0 | Brought back portamento up and down. | Brought back portamento up and down.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,597,783,347 | ; 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]
; dmf.portamento_up
; dmf.po... | ; 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]
; dmf.portamento_up
; dmf.po... |
d64dbb4978e66c3102290478efbacbaca0b851a6 | Fixed frequency update on chan 4 & 5. | Fixed frequency update on chan 4 & 5.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,597,688,254 | ; 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]
; dmf.portamento_up
; dmf.po... | ; 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]
; dmf.portamento_up
; dmf.po... |
ee4b47cbbf357b3dc500ea2a61cf74d508d1999b | Brought back the other chanels. | Brought back the other chanels.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,597,686,479 | ; 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]
; dmf.portamento_up
; dmf.po... | ; 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]
; dmf.portamento_up
; dmf.po... |
b96368b01d12fba4142e3ccab2cfbbbda7e74bb7 | Vibrato WIP. Started fixing volume. | Vibrato WIP.
Started fixing volume.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,597,615,175 | ; 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]
; dmf.portamento_up
; dmf.po... | ; 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]
; dmf.vibrato
; dmf.portamen... |
f478b6f2476258801b49a36ffa1aa13433a5da23 | Added volume slide. | Added volume slide.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,597,432,862 | ; 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]
; dmf.vibrato
; dmf.portamen... | ; 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... |
ab9ea298afaf15a8fba42bdd6dedfd6cbaf97fe7 | further fix for RE3 | further fix for RE3
| FransBouma/InjectableGenericCameraSystem,FransBouma/InjectableGenericCameraSystem,FransBouma/InjectableGenericCameraSystem,FransBouma/InjectableGenericCameraSystem | Cameras/ResidentEvil3/InjectableGenericCameraSystem/Interceptor.asm | bsd-2-clause | 1,597,080,321 | ;////////////////////////////////////////////////////////////////////////////////////////////////////////
;// Part of Injectable Generic Camera System
;// Copyright(c) 2020, Frans Bouma
;// All rights reserved.
;// https://github.com/FransBouma/InjectableGenericCameraSystem
;//
;// Redistribution and use in source and ... | ;////////////////////////////////////////////////////////////////////////////////////////////////////////
;// Part of Injectable Generic Camera System
;// Copyright(c) 2020, Frans Bouma
;// All rights reserved.
;// https://github.com/FransBouma/InjectableGenericCameraSystem
;//
;// Redistribution and use in source and ... |
333c2f5d6bcd24aabccfed8efefd04581538f8ce | More POC work for what sort of optimizations the compiler could produce. | More POC work for what sort of optimizations the compiler could produce.
| Yttrmin/CSharpTo2600,Yttrmin/CSharpTo2600,Yttrmin/CSharpTo2600,Yttrmin/CSharpTo2600 | 6502DotNet/Examples/vcs/pocbackgroundcyclecompiled.asm | mit | 1,596,944,108 | .cpu "6502"
.format "flat"
* = $F000
INT_RESERVED_1 = $80
INT_RESERVED_2 = $81
BackgroundColor = $82
Increment = $84
INT_Byte_SIZE = 1
VSYNC = $00
VBLANK = $01
WSYNC = $02
COLUBK = $09
TIM64T = $296
INTIM = $284
// Used for binary operations. In A - B for example, A = OPERAND_1 and B = OPERAND_2.
// Any operation t... | .cpu "6502"
.format "flat"
* = $F000
BackgroundColor = $80
INT_Byte_SIZE = 1
VSYNC = $00
VBLANK = $01
WSYNC = $02
COLUBK = $09
TIM64T = $296
INTIM = $284
push .macro address, size
.for i = \address, i <= \address + (\size - 1), i = i + 1
LDA i
PHA
.next
.endmacro
popTo .macro address, size
.for i = \address... |
cefb3aeac18a526f42b312db40a49dc6c2156c5d | Started bringing back arpeggio and global detune. | Started bringing back arpeggio and global detune.
| BlockoS/dmf-player,BlockoS/dmf-player,BlockoS/dmf-player | pce/player.asm | bsd-3-clause | 1,596,752,074 | ; 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... |
ebe3239db735a584d416dcea90f4735c3f346755 | forgot warnpc | forgot warnpc
| theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver,theonlydude/RandomMetroidSolver | rando/patches/minimizer_bosses.asm | mit | 1,596,661,154 | ;;; allows to leave boss rooms as soon as the boss is dead
;;; instead of having to wait for the drops
;;;
;;; Compiles with asar
arch snes.cpu
lorom
!mark_boss = $8081a6
org $A7AFAD
jml kraid_death
org $A7DDBC
jsl phantoon_death
org $A59621
jsl draygon_death
org $A6C590
jsl ridley_death ; (actually after som... | ;;; allows to leave boss rooms as soon as the boss is dead
;;; instead of having to wait for the drops
;;;
;;; Compiles with asar
arch snes.cpu
lorom
!mark_boss = $8081a6
org $A7AFAD
jml kraid_death
org $A7DDBC
jsl phantoon_death
org $A59621
jsl draygon_death
org $A6C590
jsl ridley_death ; (actually after som... |
652e5b38b07fddb7f000a0d001a7c36fcbb599a7 | x86: Minor changes to MC scaled AVX2 asm | x86: Minor changes to MC scaled AVX2 asm
| videolan/dav1d,videolan/dav1d | src/x86/mc_avx2.asm | bsd-2-clause | 1,596,623,153 | ; Copyright © 2018-2020, VideoLAN and dav1d authors
; Copyright © 2018-2020, 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 ... | ; Copyright © 2018-2020, VideoLAN and dav1d authors
; Copyright © 2018-2020, 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 ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.