代码搜索结果
找到约 10,000 项符合
LCD 的代码
lcd.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity lcd is
Port ( clk : in std_logic; --3.125MHZ FROM div16 Module
lcd.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
lcd.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity lcd is
Port ( clk : in std_logic; --3.125MHZ FROM div16 Module
lcd.c
#include "AT89X51.H"
#include "LCD.H"
#include
#include
#include
/**************************************************
*最底层六个函数可驱动12032液晶
*12232
****************
lcd.lst
C51 COMPILER V7.07 LCD 08/17/2004 16:30:50 PAGE 1
C51 COMPILER V7.07, COMPILATION OF MODULE LCD
OBJECT MODULE PLACED IN lcd
lcd.h
#ifndef LCD_H
#define LCD_H
extern char DrawType; //作图方式
enum{
DrawType_Normal=0, //覆盖
DrawType_NotNormal=1, //覆盖取反,非
// DrawType_Xor=2, //异或,不同则显示
DrawType_And=3, //与
lcd.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
lcd.v
module lcd(clk,rst,data_in,lcd_e,lcd_rw,lcd_rs,data);
input clk,rst;
input [7:0] data_in;
output lcd_e,lcd_rw,lcd_rs;
output [7:0] data;
reg lcd_e,lcd_rw,lcd_rs;
reg [7:0] data,data_in_buf
lcd.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity lcd is
Port ( clk : in std_logic; --4MHZ FROM D12
Reset : in
lcd.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to