Verilog | HDL 音乐盒设计(代码类)

2024-06-05 19:58

本文主要是介绍Verilog | HDL 音乐盒设计(代码类),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

博主github:https://github.com/MichaelBeechan
博主CSDN:https://blog.csdn.net/u011344545

module music(clk,beep,pause,stop,switch,led);   //定义时钟及几个功能变量
input clk,pause,switch,stop;                //输入变量
output beep;                                //输出变量,即蜂鸣器发声
output[8:1]led;
reg[8:1]led;
reg beep_r;                       //定义几个中间变量
reg a;
reg b;
reg c;
reg[7:0]state;
reg[7:0]state1;
reg[7:0]state2;
reg[15:0]count,count_end;
reg[23:0]count1;
parameter L_5=16'd61224,L_6=16'd54545,M_1=16'd45863,M_2=16'd40864,M_3=16'd36402,M_5=16'd30612,M_6=16'd27273,H_1=16'd22956;
parameter TIME=12000000;         //时钟频率
assign beep=beep_r;
always@(posedge pause)
begin
a=!a; //暂停
end
always@(posedge stop)
begin
b=!b; //停止
end
always@(posedge switch)
begin
c=!c; //切换
end
always@(posedge clk)
begin if(a==1||b==1)
beep_r=1'b0;else
count<=count+1'b1;if(count==count_end)
begin
count<=16'h0;
beep<=!beep_r;
end
end
always@(posedge clk)
begin
if(count1<TIME )count=count1+1'b1;
else
begin
count1=24'd0;
if(state1==8'd147||state2==8'd60)
state=8'd0;
if(a==1&b==0)
begin
state=state;
end
if(a==0&b==0)  
state=state+1'b1; 
if(a==0&b==1)
begin
state=8'd0;
end
if(a==1&b==1)
state=state+1'b1;
if(c==1)    //曲目1
begin
state1=state;
case(state1)
8'd0,8'd1:                           count_end=L_5;
8'd2,8'd3,8'd4,8'd5,8'd6,8'd7,8'd8:  count_end=M_1;
8'd9,8'd10:                          count_end=M_3;
8'd11,8'd12,8'd13,8'd14:             count_end=M_2;
8'd15:                               count_end=M_1;
8'd16,8'd17:                         count_end=M_2;
8'd18,8'd19:                         count_end=M_3;
8'd20,8'd21,8'd22,8'd23,8'd24:       count_end=M_1;
8'd25,8'd26:                         count_end=M_3;
8'd27,8'd28:                         count_end=M_5;
8'd29,8'd30,8'd31,8'd32,8'd33:       count_end=M_6;
8'd34,8'd35,8'd36,8'd37,8'd38:       count_end=M_6;
8'd39,8'd40,8'd41,8'd42:             count_end=M_5;
8'd43,8'd44,8'd45:                   count_end=M_3;
8'd46,8'd47:                         count_end=M_1;
8'd48,8'd49,8'd50,8'd51:             count_end=M_2;
8'd52:                               count_end=M_1;
8'd53,8'd54:                         count_end=M_2;
8'd55,8'd56:                         count_end=M_3;
8'd57,8'd58,8'd59,8'd60:             count_end=M_1;
8'd61,8'd62,8'd63:                   count_end=L_6;
8'd64,8'd65:                         count_end=M_5;
8'd66,8'd67,8'd68,8'd69:             count_end=M_1;
8'd70,8'd71,8'd72,8'd73:             count_end=M_1;
8'd74,8'd75:                         count_end=M_6;
8'd76,8'd77,8'd78,8'd79:             count_end=M_5;
8'd80,8'd81,8'd82:                   count_end=M_3;
8'd83,8'd84:                         count_end=M_1;
8'd85,8'd86,8'd87,8'd88:             count_end=M_2;
8'd89:                               count_end=M_1;
8'd90,8'd91:                         count_end=M_2;
8'd92,8'd93:                         count_end=M_6;
8'd94,8'd95,8'd96,8'd97:             count_end=M_5;
8'd98,8'd99,8'd100:                  count_end=M_3;
8'd101,8'd102:                       count_end=M_5;
8'd103,8'd104,8'd105,8'd106:         count_end=M_6;
8'd107,8'd108,8'd109,8'd110:         count_end=M_6;
8'd111,8'd112:                       count_end=H_1;
8'd113,8'd114,8'd115,8'd116:         count_end=M_5;
8'd117,8'd118,8'd119:                count_end=M_3;
8'd120,8'd121:                       count_end=M_1;
8'd122,8'd123,8'd124,8'd125:         count_end=M_2;
8'd126:                              count_end=M_1;
8'd127,8'd128:                       count_end=M_2;
8'd129,8'd130:                       count_end=M_3;
8'd131,8'd132,8'd133,8'd134:         count_end=M_1;
8'd135,8'd136,8'd137:                count_end=L_6;
8'd138,8'd139:                       count_end=M_5;
8'd140,8'd141,8'd142,8'd143:         count_end=M_1;
8'd144,8'd145,8'd146,8'd147:         count_end=M_1;
default:count_end=16'hffff;
endcase
end
if(c==0)       //曲目2
begin
state2=state;
case(state)
8'd0,8'd1,8'd2:                       count_end=M_6;
8'd3:    count_end=M_5;
8'd4,8'd5:                            count_end=M_3;
8'd6,8'd7,8'd8:              count_end=M_5;
8'd9:                                 count_end=H_1;
8'd10:                          count_end=M_6;
8'd11:                          count_end=M_5;
8'd12,8'd13,8'd14,8'd15:        count_end=M_6;
8'd16,8'd17:                          count_end=M_3;
8'd18:                          count_end=M_5;
8'd19:        count_end=M_6;
8'd20,8'd21:        count_end=M_5;
8'd22:              count_end=M_3;
8'd23:                    count_end=M_2;
8'd24:                          count_end=M_1;
8'd25:              count_end=L_6;
8'd26:                                count_end=M_5;
8'd27:                          count_end=M_3;
8'd28,8'd29,8'd30,8'd31,8'd32,8'd33,8'd34:count_end=M_2;
8'd35:              count_end=M_3;
8'd36,8'd37,8'd38:                    count_end=M_5;
8'd39:                          count_end=M_6;
8'd40,8'd41,8'd42:              count_end=M_3;
8'd43,8'd44:              count_end=M_2;
8'd45,8'd46,8'd47,8'd48:              count_end=M_1;
8'd49,8'd50,8'd51:              count_end=M_5;
8'd52:                    count_end=M_3;
8'd53:                          count_end=M_2;
8'd54:  count_end=M_1;
8'd55:              count_end=L_6;
8'd56:                                count_end=M_1;
8'd57,8'd58,8'd59,8'd60:              count_end=L_5;
default:count_end=16'hffff;
endcase
end
end
end
always @(count)
begin
case(count)
L_5:led=8'b1111_1111;
L_6:led=8'b0111_1111;
M_1:led=8'b0011_1111;
M_2:led=8'b0001_1111;
M_3:led=8'b0000_1111;
M_5:led=8'b0000_0111;
M_6:led=8'b0000_0011;
H_1:led=8'b0000_0000;
default : led=8'b0;
endcase
end
endmodule

 

这篇关于Verilog | HDL 音乐盒设计(代码类)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1034029

相关文章

SpringCloud集成AlloyDB的示例代码

《SpringCloud集成AlloyDB的示例代码》AlloyDB是GoogleCloud提供的一种高度可扩展、强性能的关系型数据库服务,它兼容PostgreSQL,并提供了更快的查询性能... 目录1.AlloyDBjavascript是什么?AlloyDB 的工作原理2.搭建测试环境3.代码工程1.

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python

Java中ArrayList的8种浅拷贝方式示例代码

《Java中ArrayList的8种浅拷贝方式示例代码》:本文主要介绍Java中ArrayList的8种浅拷贝方式的相关资料,讲解了Java中ArrayList的浅拷贝概念,并详细分享了八种实现浅... 目录引言什么是浅拷贝?ArrayList 浅拷贝的重要性方法一:使用构造函数方法二:使用 addAll(

JAVA利用顺序表实现“杨辉三角”的思路及代码示例

《JAVA利用顺序表实现“杨辉三角”的思路及代码示例》杨辉三角形是中国古代数学的杰出研究成果之一,是我国北宋数学家贾宪于1050年首先发现并使用的,:本文主要介绍JAVA利用顺序表实现杨辉三角的思... 目录一:“杨辉三角”题目链接二:题解代码:三:题解思路:总结一:“杨辉三角”题目链接题目链接:点击这里

SpringBoot使用注解集成Redis缓存的示例代码

《SpringBoot使用注解集成Redis缓存的示例代码》:本文主要介绍在SpringBoot中使用注解集成Redis缓存的步骤,包括添加依赖、创建相关配置类、需要缓存数据的类(Tes... 目录一、创建 Caching 配置类二、创建需要缓存数据的类三、测试方法Spring Boot 熟悉后,集成一个外

轻松掌握python的dataclass让你的代码更简洁优雅

《轻松掌握python的dataclass让你的代码更简洁优雅》本文总结了几个我在使用Python的dataclass时常用的技巧,dataclass装饰器可以帮助我们简化数据类的定义过程,包括设置默... 目录1. 传统的类定义方式2. dataclass装饰器定义类2.1. 默认值2.2. 隐藏敏感信息

opencv实现像素统计的示例代码

《opencv实现像素统计的示例代码》本文介绍了OpenCV中统计图像像素信息的常用方法和函数,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1. 统计像素值的基本信息2. 统计像素值的直方图3. 统计像素值的总和4. 统计非零像素的数量

IDEA常用插件之代码扫描SonarLint详解

《IDEA常用插件之代码扫描SonarLint详解》SonarLint是一款用于代码扫描的插件,可以帮助查找隐藏的bug,下载并安装插件后,右键点击项目并选择“Analyze”、“Analyzewit... 目录SonajavascriptrLint 查找隐藏的bug下载安装插件扫描代码查看结果总结Sona

Python开发围棋游戏的实例代码(实现全部功能)

《Python开发围棋游戏的实例代码(实现全部功能)》围棋是一种古老而复杂的策略棋类游戏,起源于中国,已有超过2500年的历史,本文介绍了如何用Python开发一个简单的围棋游戏,实例代码涵盖了游戏的... 目录1. 围棋游戏概述1.1 游戏规则1.2 游戏设计思路2. 环境准备3. 创建棋盘3.1 棋盘类

Java实现批量化操作Excel文件的示例代码

《Java实现批量化操作Excel文件的示例代码》在操作Excel的场景中,通常会有一些针对Excel的批量操作,这篇文章主要为大家详细介绍了如何使用GcExcel实现批量化操作Excel,感兴趣的可... 目录前言 | 问题背景什么是GcExcel场景1 批量导入Excel文件,并读取特定区域的数据场景2