代码搜索结果
找到约 10,000 项符合
Display 的代码
display._c
#include
//***************************************************
//显示子程序,用于显示一个数字,小数点在最高位。
//传递一个0-9的数字
//DisPort——显示的端口。DisPortD——端口方向。
//DisTab[10]——显示码(const unsigned char)
//74ls4
display.s
.module Display.c
.area lit(rom, con, rel)
_DisTab::
.byte 63,6
.byte 91,'O
.byte 'f,'m
.byte 125,7
.byte 127,'o
.byte 'y,64
.byte 0
.dbfile C:\icc\project\LCD\Display.c
.dbsym s
display.c
#include
//***************************************************
//显示子程序,用于显示一个数字,小数点在最高位。
//传递一个0-9的数字
//DisPort——显示的端口。DisPortD——端口方向。
//DisTab[10]——显示码(const unsigned char)
//74ls4
display.lis
.module Display.c
.area lit(rom, con, rel)
0000 _DisTab::
0000 3F06 .byte 63,6
0002 5B4F .byte 91,'O
display.o
XL
H 3 areas A global symbols
M Display.c
S push_gset1 Ref0000
S push_gset3 Ref0000
S asgncblk Ref0000
S lsr8 Ref0000
S pop_gset1 Ref0000
S pop_gset3 Ref0000
A lit size 10 flags 0
dbfile C:\
display.c
//Display_task()
#include "includes.h"
#include "ML674000.H"
void Display_task(void *data)
{
INT8U i;
INT8U j;
INT8U err;
char key;
}
display.m
function theResult = display(self)
disp(' ')
disp([inputname(1) ' ='])
disp(' ')
disp(self)
display.m
function display(quiz)
% SDMPB/DISPLAY - Command window display of an SDMPB object
% This file is part of SeDuMi Interface 1.04 (JUL2002)
% last update 6th September 2002
% Copyright (C) 2002
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;
entity display is
port(
clk:in std_logic;
data:std_logic_vector(3 downto 0);
q:out std_logic_vector(6 downto 0)
);
end entity;
architecture