hackndev / zinc

The bare metal stack for rust
zinc.rs
Apache License 2.0
1k stars 100 forks source link

Feature gate all architecture specific code in zinc crate #305

Closed mcoffin closed 9 years ago

mcoffin commented 9 years ago

Closes #303

mcoffin commented 9 years ago

Closing because discussion in #303 is heading towards a different solution.

bharrisau commented 9 years ago

There are a few asm! instructions in support.rs, irq.rs, lock.rs and sched.rs. Also some NOPs in examples and drivers that need to be replaces with calls to Zinc intrinsics.

I'm not sure of the best way to handle the instrinsics. Maybe define a trait for them, and use a feature #cfg to import the right impl?