forked from libre-chip/cpu
WIP adding register allocator
This commit is contained in:
parent
d0aa86e335
commit
cb5855589f
9 changed files with 570 additions and 100 deletions
11
crates/cpu/src/reg_alloc.rs
Normal file
11
crates/cpu/src/reg_alloc.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
// See Notices.txt for copyright information
|
||||
use crate::config::CpuConfig;
|
||||
use fayalite::prelude::*;
|
||||
|
||||
pub mod unit_free_regs_tracker;
|
||||
|
||||
#[hdl_module]
|
||||
pub fn reg_alloc(config: CpuConfig) {
|
||||
todo!()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue