当前位置:网站首页>VHDL implementation of single cycle CPU design
VHDL implementation of single cycle CPU design
2022-07-07 03:26:00 【QQ_ seven hundred and seventy-eight million one hundred and thi】
VHDL Realize single cycle CPU Design
stay quartus achieve , The top level is schematic mode , Language use VHDL, Realize single cycle CPU The function of , Include ALU,RAM,ROM,MUX,regfile Equal module , Below are engineering screenshots and simulation screenshots .
Simulation screenshot :

ALU Module code :
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity ALU_lrt is
port(a,b:in std_logic_vector(15 downto 0);
func:in std_logic_vector(3 downto 0);
c_lrt:out std_logic_vector(15 downto 0));
end ALU_lrt;
architecture behave of ALU_lrt is
begin
process (a,b,func)
begin
case func is
when “0000”=>c_lrt<=a and b;–and
when “0001”=>c_lrt<=a or b;–or
when “0010”=>c_lrt<=a xor b;–xor
边栏推荐
- HDU 4337 King Arthur&#39; S Knights it outputs a Hamiltonian circuit
- SQL Tuning Advisor一个错误ORA-00600: internal error code, arguments: [kesqsMakeBindValue:obj]
- Flink Task退出流程与Failover机制
- Set WiFi automatic connection for raspberry pie
- 存储过程与函数(MySQL)
- Numpy中排序操作partition,argpartition,sort,argsort
- 1200.Minimum Absolute Difference
- Domcontentloaded and window onload
- Matlab Error (Matrix dimensions must agree)
- Enumeration general interface & enumeration usage specification
猜你喜欢

RestClould ETL 社区版六月精选问答

Under the tide of "going from virtual to real", Baidu AI Cloud is born from real

Laravel php artisan 自动生成Model+Migrate+Controller 命令大全

Appx code signing Guide

枚举通用接口&枚举使用规范

VHDL实现任意大小矩阵加法运算

Variables, process control and cursors (MySQL)

About Confidence Intervals

About Tolerance Intervals

源代码保密的意义和措施
随机推荐
cocos3——8.实现初学者指南
Shell programming basics
Flutter3.0, the applet is not only run across mobile applications
[Dameng database] after backup and recovery, two SQL statements should be executed
HDU ACM 4578 Transformation-&gt;段树-间隔的变化
CVPR 2022 最佳论文候选 | PIP: 6个惯性传感器实现全身动捕和受力估计
Jerry's FM mode mono or stereo selection setting [chapter]
1200.Minimum Absolute Difference
CVPR 2022 best paper candidate | pip: six inertial sensors realize whole body dynamic capture and force estimation
unrecognized selector sent to instance 0x10b34e810
树莓派设置静态ip
编译常量、ClassLoader类、系统类加载器深度探析
VHDL实现任意大小矩阵乘法运算
About Tolerance Intervals
Enumeration general interface & enumeration usage specification
input_delay
Ubuntu 20 installation des enregistrements redisjson
【C语言】 题集 of Ⅸ
Laravel php artisan 自动生成Model+Migrate+Controller 命令大全
大白话高并发(二)