commit
stringlengths
40
40
subject
stringlengths
6
199
message
stringlengths
11
1.33k
repos
stringlengths
15
11.5k
file_path
stringlengths
6
59
license
stringclasses
9 values
unix_time
int64
1.33B
1.61B
new_contents
stringlengths
151
211k
old_contents
stringlengths
151
208k
b39d038cf00edf416753ae8a6d668aaa0a189871
rm48x50: utilize CPS instruction and remove some useless code
rm48x50: utilize CPS instruction and remove some useless code
nongxiaoming/rt-thread,RT-Thread/rt-thread,armink/rt-thread,yongli3/rt-thread,hezlog/rt-thread,geniusgogo/rt-thread,zhaojuntao/rt-thread,zhaojuntao/rt-thread,wolfgangz2013/rt-thread,FlyLu/rt-thread,AubrCool/rt-thread,armink/rt-thread,yongli3/rt-thread,geniusgogo/rt-thread,wolfgangz2013/rt-thread,geniusgogo/rt-thread,ge...
libcpu/arm/rm48x50/context_ccs.asm
apache-2.0
1,369,558,539
;/* ; * File : context_ccs.asm ; * This file is part of RT-Thread RTOS ; * COPYRIGHT (C) 2006, RT-Thread Development Team ; * ; * The license and distribution terms for this file may be ; * found in the file LICENSE in this distribution or at ; * http://www.rt-thread.org/license/LICENSE ; * ; * Change Logs: ; * Da...
;/* ; * File : context_rvds.S ; * This file is part of RT-Thread RTOS ; * COPYRIGHT (C) 2006, RT-Thread Development Team ; * ; * The license and distribution terms for this file may be ; * found in the file LICENSE in this distribution or at ; * http://www.rt-thread.org/license/LICENSE ; * ; * Change Logs: ; * Dat...
dd3aa58930ca7ac70de0f2c9259c81fb97ab9f38
Progress on reading buffers
Progress on reading buffers
unlimitedbacon/kernel,calcdude84se/knightos-kernel,KnightOS/kernel,calcdude84se/knightos-kernel,unlimitedbacon/kernel,KnightOS/kernel
src/00/filestreams.asm
mit
1,368,163,552
;; openFileRead [File Stream] ;; Opens a file stream in read-only mode. ;; Inputs: ;; DE: Path to file (string pointer) ;; Outputs: ;; Z: Set on success, reset on failure ;; A: Error code (on failure) ;; D: File stream ID (on success) ;; E: Garbage (on success) openFileRead: push hl push bc call f...
;; openFileRead [File Stream] ;; Opens a file stream in read-only mode. ;; Inputs: ;; DE: Path to file (string pointer) ;; Outputs: ;; Z: Set on success, reset on failure ;; A: Error code (on failure) ;; D: File stream ID (on success) ;; E: Garbage (on success) openFileRead: push hl push bc call f...
fb699ed945731528aa3e4accce7619083be7111c
Minor formatting changes
Minor formatting changes
calcdude84se/knightos-kernel,calcdude84se/knightos-kernel,unlimitedbacon/kernel,unlimitedbacon/kernel,KnightOS/kernel,KnightOS/kernel
src/00/filestreams.asm
mit
1,367,644,223
;; openFileRead [File Stream] ;; Opens a file stream in read-only mode. ;; Inputs: ;; DE: Path to file (string pointer) ;; Outputs: ;; Z: Set on success, reset on failure ;; A: Error code (on failure) ;; D: File stream ID (on success) ;; E: Garbage (on success) openFileRead: push hl push bc call f...
;; openFileRead [File Stream] ;; Opens a file stream in read-only mode. ;; Inputs: ;; DE: Path to file (string pointer) ;; Outputs: ;; Z: Set on success, reset on failure ;; A: Error code (on failure) ;; D: File stream ID (on success) ;; E: Garbage (on success) openFileRead: push hl push bc call f...
47fdb56d300abea7c6caa6f8daa5f1a164c4103f
Solved register save/restore bug
Solved register save/restore bug
Justaphf/BitcoinUnlimited,martindale/secp256k1,ChrisXin/secp256k1,shea256/secp256k1-zkp,digitalbitbox/secp256k1,randy-waterhouse/secp256k1,vlajos/secp256k1,Bitcoin-com/BUcash,Justaphf/BitcoinUnlimited,evoskuil/secp256k1,BWallet/secp256k1,sipa/secp256k1-zkp,voisine/secp256k1,Gustav-Simonsson/secp256k1,martindale/secp256...
lin64.asm
mit
1,364,421,878
;; Added by Diederik Huys, March 2013 ;; ;; Provided public procedures: ;; ExSetMult ;; ExSetSquare ;; ;; Needed tools: YASM (http://www.japheth.de/JWasm.html) ;; ;; BITS 64 ;; Procedure ExSetMult ;; Register Layout: ;; INPUT: rdi = a.n ;; rsi = b.n ;; rdx = this.a ;; ;; INTERN...
;; Added by Diederik Huys, March 2013 ;; ;; Provided public procedures: ;; ExSetMult ;; ExSetSquare ;; ;; Needed tools: YASM (http://www.japheth.de/JWasm.html) ;; ;; BITS 64 ;; Procedure ExSetMult ;; Register Layout: ;; INPUT: rdi = a.n ;; rsi = b.n ;; rdx = this.a ;; ;; INTERN...
1d8e4308dcf69947fa411aff6b1ce71d2f207ff6
Small fix for ExSetSquare
Small fix for ExSetSquare
voisine/secp256k1,sipa/secp256k1-zkp,GSongHashrate/secp256k1,evoskuil/secp256k1,peterdettman/secp256k1,sipa/secp256k1-zkp,ElementsProject/secp256k1-zkp,shea256/secp256k1-zkp,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,bitcoin/secp256k1,marcusdiaz/BitcoinUnlimited,apoelstra/secp256k1,ftrader-bitcoinunlimited/ha...
lin64.asm
mit
1,364,341,028
.x64 QTEST EQU 1 .code ;; Register Layout: ;; INPUT: rdi = a.n ;; rsi = b.n ;; rdx = this.a ;; OUTPUT: [rbx] ;; INTERNAL: rdx:rax = multiplication accumulator ;; rsi = b.n / t9 ;; r8:r9 = c ;; r10-r15 = t0-t5 ;; rbx = t6 ;; rcx = t7 ;; rbp = t8 ExSetMult PROC C PUBL...
.x64 QTEST EQU 1 .code ;; Register Layout: ;; INPUT: rdi = a.n ;; rsi = b.n ;; rdx = this.a ;; OUTPUT: [rbx] ;; INTERNAL: rdx:rax = multiplication accumulator ;; rsi = b.n / t9 ;; r8:r9 = c ;; r10-r15 = t0-t5 ;; rbx = t6 ;; rcx = t7 ;; rbp = t8 ExSetMult PROC C PUBL...
ecedb39c4996cc6aafb0b11d61ca5f7173c1357a
removing SET IA, 0 from bootstrap
removing SET IA, 0 from bootstrap
kierenj/DCPUToolchain,DCPUTeam/DCPUToolchain,DCPUTeam/DCPUToolchain,DCPUTeam/DCPUToolchain,kierenj/DCPUToolchain,kierenj/DCPUToolchain,kierenj/DCPUToolchain,DCPUTeam/DCPUToolchain
compiler/bootstrap.asm
mit
1,335,640,887
; Immediately jump to _setup. SET PC, _setup ; Safety boundary ;.BOUNDARY DAT 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ; Sets up the stack to hold data of the size ; specified in the X register + 1. It copies ; the value of Z register (which should be the ; return point) into the new stack location and ; sets ...
; Immediately jump to _setup. SET PC, _setup ; Safety boundary ;.BOUNDARY DAT 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ; Sets up the stack to hold data of the size ; specified in the X register + 1. It copies ; the value of Z register (which should be the ; return point) into the new stack location and ; sets ...
746262c6e48ef7973b8d9e20aff497e46f52dc28
Fix spacing in example.asm
Fix spacing in example.asm
jtauber/dcpu16py,mceier/dcpu16py,Olical/dcpu16py,n8mob/dcpu16py
example.asm
mit
1,333,625,147
; Try some basic stuff SET A, 0x30 ; 7c01 0030 SET [0x1000], 0x20 ; 7de1 1000 0020 SUB A, [0x1000] ; 7803 1000 IFN A, 0x10 ; c00d SET PC, crash ; 7dc1 001a [*] ; Do a loopy thing ...
; Try some basic stuff SET A, 0x30 ; 7c01 0030 SET [0x1000], 0x20 ; 7de1 1000 0020 SUB A, [0x1000] ; 7803 1000 IFN A, 0x10 ; c00d SET PC, crash ; 7dc1 001a [...