代码搜索结果
找到约 10,000 项符合
Display 的代码
display.hex
:140000003F065B4F666D7D077F6F000000000000CFE5D2E052
:14001400CDBFDEBFC051D0400AEA08830024E0E7F0E010E064
:14002800E237F10711F00192FBCF0083E0E0F0E0A0E6B0E02C
:14003C0010E0E031F10721F0C89531960D92F9CF
display.src
[Files]
Counter.C
[Headers]
[Documents]
display.lst
__start:
__text_start:
0008 E5CF LDI R28,0x5F
0009 E0D2 LDI R29,2
000A BFCD OUT 0x3D,R28
000B BFDE OUT 0x3E,R29
000C 51C0 SUBI R28,0x10
000D 40D
display.mak
CC = iccavr
CFLAGS = -IC:\icc\include\ -e -l -g -Wa-W
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -LC:\icc\lib\ -g -Wl-W -bfunc_lit:0.0x2000 -dram_end:0x25f -bdata:0x60.0x25f -dhwstk_size:16 -fihx_coff
display.v
module display(q,ctr,h1,h0,m1,m0,clk,reset);
output[6:0]q;
output[3:0] ctr;
input[3:0] h1,h0,m1,m0;
input clk,reset;
reg[6:0] q;
reg[3:0] ctr;
reg[3:0] temp;
reg[3:0] i;
reg[3:0] gh;
delay yanshi
display.vwf
/*
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
display.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
display.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY display IS
PORT(din0:IN STD_LOGIC_VECTOR(3 DOWNTO 0);
din1:IN STD_LOGIC_VECTOR(3 DOWNTO 0);
din2:I
display.h
/*********************** SGS-THOMSON MICROELECTRONICS ************************
FILENAME : display.h
VERSION : V1.0
DATE : JAN 1999
AUTHOR(s) : ASHISH RUDOLA/ DEEPAK DOSHI
PROC
display.c
#include "utility.h"
#include "alarm.h"
#include "clock.h"
#include "display.h"
#include "menuctrl.h"
#include "osdchar.h"
#include "osdutil.h"
#include "eeprom.h"
#include "i2c_bus.h"
#inclu