搜索:ALTER DE2
找到约 299 项符合「ALTER DE2」的查询结果
结果 299
按分类筛选
- 全部
- VHDL/FPGA/Verilog (102)
- 技术资料 (76)
- 嵌入式/单片机编程 (19)
- 单片机开发 (14)
- VIP专区 (11)
- C/C++语言编程 (8)
- 其他 (8)
- 其他嵌入式/单片机内容 (7)
- 可编程逻辑 (6)
- 教程资料 (5)
- Java编程 (4)
- 学术论文 (3)
- 操作系统开发 (3)
- 文件格式 (3)
- 源码 (3)
- 书籍 (3)
- 单片机编程 (2)
- 系统设计方案 (2)
- 电源技术 (1)
- DSP编程 (1)
- 加密解密 (1)
- 数据库系统 (1)
- 书籍源码 (1)
- 软件工程 (1)
- 其他书籍 (1)
- 电子书籍 (1)
- FPGA (1)
- Linux/Unix编程 (1)
- 串口编程 (1)
- 技术管理 (1)
- 汇编语言 (1)
- 通讯编程文档 (1)
- 文章/文档 (1)
- 微处理器开发 (1)
- matlab例程 (1)
- Delphi控件源码 (1)
- 中间件编程 (1)
- MySQL数据库 (1)
https://www.eeworm.com/dl/663/460857.html
VHDL/FPGA/Verilog
alter FPGA
alter FPGA,包含sdram的nios系统开发实验完整工程文件
https://www.eeworm.com/dl/531/211685.html
操作系统开发
:)alter table Students drop constraint no_na alter table Students add constraint sno primary key(S
:)alter table Students drop constraint no_na
alter table Students add constraint sno primary key(Sno)
https://www.eeworm.com/dl/663/415650.html
VHDL/FPGA/Verilog
alter公司的mcu核
alter公司的mcu核,8051ip核,为quartus2设计,其他应该兼容
https://www.eeworm.com/dl/663/291438.html
VHDL/FPGA/Verilog
一个简单的交通灯程序(包括验证,主程序,和译码程序),在ALTER DE2板上实现
一个简单的交通灯程序(包括验证,主程序,和译码程序),在ALTER DE2板上实现
https://www.eeworm.com/dl/639/228126.html
文件格式
147497_ALTERA_ACEX1K.pdf介绍alter acex1k系列芯片
147497_ALTERA_ACEX1K.pdf介绍alter acex1k系列芯片
https://www.eeworm.com/dl/633/453416.html
Java编程
alter table tbl_name add col_name type 例如,给表增加一列weight mysql>alter table pet add weight int 删
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table pet add weight int
删除列
alter table tbl_name drop col_name
例如,删除列weight:
mysql>alter table pet drop weight
改变列
alter table tbl_name modify col_name type
例如,改变weight的类型:
mysql> ...