Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 31 million developers.
Sign up- Minsk
Popular repositories
-
rust_on_msp
Simple blinking LED example that runs on MSP430.
-
ldparser
Linker Script parser
Rust 2
-
msp430_svd
-
relay
simple tun vpn
-
msp430g2553
Peripheral access API for MSP430G2553 microcontrollers (generated using svd2rust)
Rust 1
-
gtmpl-rust
Forked from fiji-flo/gtmpl-rust
golang text/template for rust
Rust 1
42 contributions in the last year
Contribution activity
March - April 2019
February 2019
- pftbest/vcell Rust
Created a pull request in japaric/vcell that received 1 comment
Created an issue in access-softek/msp430-clang that received 3 comments
Inefficient code for adding two 32bit integers
This simple program:
long foo(long a, long b) { return a + b;
}
Compiles to this strange sequence of instructions:
add r15, r13 add r14, r12 cmp …