代码搜索结果
找到约 10,000 项符合
Display 的代码
display.txt
ORG 0000H
AJMP START
ORG 0030H
START:
MOV 48H, #01
MOV 49H, #02
MOV 4AH, #03
MOV 4BH, #04
DD:ACALL DISPLAY
AJMP DD
DISPLAY:MO
display.c
//display.c 显示一些菜单
//2007.12.12
extern int mem_size;
extern int ma_algorithm;
extern struct free_block_type* free_block;
extern struct allocated_area* allocated_block;
//显示菜单
display_menu(
display.c
//ICC-AVR application builder : 2005-2-24 23:07:53
// Target : M8
// Crystal: 8.0000Mhz
#include
#include
unsigned char n;
//TIMER1 initialisation - prescale:256
//
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(clk : in std_logic;
number_a : in std_logic_vector(4 downto 0);
numb
display.java
package com.javapatterns.iterator.goodexample;
import java.util.Enumeration;
import java.util.Vector;
import java.util.List;
import java.util.LinkedList;
import java.awt.Panel;
public class
display.java
package com.javapatterns.iterator.badexample;
import java.util.Enumeration;
import java.util.Vector;
import java.util.List;
import java.util.LinkedList;
import java.awt.Panel;
public class D