Lab 6 Program Counter and Program ROM - PowerPoint PPT Presentation

1 / 15
About This Presentation
Title:

Lab 6 Program Counter and Program ROM

Description:

Register instructions --WHYP WORDS. constant nop: opcode := X'0000'; -- NOP ... WHYP program to multiply switch settings by 10. HEX : MAIN ( -- ) BEGIN ... – PowerPoint PPT presentation

Number of Views:38
Avg rating:3.0/5.0
Slides: 16
Provided by: cseSecs
Category:
Tags: rom | counter | lab | program | register

less

Transcript and Presenter's Notes

Title: Lab 6 Program Counter and Program ROM


1
Lab 6Program Counter and Program ROM
  • Mano Kime
  • Sections 7-1 7-6

2
(No Transcript)
3
Program Counter, PC
library IEEE use IEEE.std_logic_1164.all use
IEEE.std_logic_unsigned.all   entity PC is
port ( d in STD_LOGIC_VECTOR (15 downto
0) clr in STD_LOGIC clk in
STD_LOGIC inc in STD_LOGIC
pload in STD_LOGIC q out
STD_LOGIC_VECTOR (15 downto 0) ) end PC
4
architecture PC_arch of PC is signal COUNT
STD_LOGIC_VECTOR (15 downto 0) begin   process
(clk, clr) begin if clr '1' then COUNT
lt "0000000000000000" elsif clk'event and
clk'1' then if pload '0' then
if inc '1' then COUNT lt COUNT
1 end if else COUNT lt
d end if end if q lt COUNT end
process   end PC_arch  
5
(No Transcript)
6
package opcodes is subtype opcode is
std_logic_vector(15 downto 0) -- Register
instructions --WHYP WORDS constant nop
opcode X"0000" -- NOP constant dup
opcode X"0001" -- DUP constant swap
opcode X"0002" -- SWAP -- Function
unit instructions constant plus opcode
X"0010" -- constant minus opcode
X"0011" -- - constant plus1 opcode
X"0012" -- 1 constant minus1 opcode
X"0013" -- 1- constant invert opcode
X"0014" -- INVERT constant andd opcode
X"0015" -- AND constant orr opcode
X"0016" -- OR constant xorr opcode
X"0017" -- XOR constant twotimes opcode
X"0018" -- 2 constant u2slash opcode
X"0019" -- U2/ constant twoslash opcode
X"001A" -- 2/ constant rshift opcode
X"001B" -- RSHIFT constant lshift
opcode X"001C" -- LSHIFT constant ones
opcode X"0020" -- TRUE constant zeros
opcode X"0021" -- FALSE
7
constant zeroequal opcode X"0022" -- 0
constant zeroless opcode X"0023" -- 0lt
constant ugt opcode X"0024" -- Ugt
constant ult opcode X"0025" -- Ult
constant eq opcode X"0026" --
constant ugte opcode X"0027" -- Ugt
constant ulte opcode X"0028" -- Ult
constant neq opcode X"0029" -- ltgt
constant gt opcode X"002A" -- gt
constant lt opcode X"002B" -- lt
constant gte opcode X"002C" -- gt
constant lte opcode X"002D" -- lt --
I/O instructions constant sfetch opcode
X"0037" -- S_at_ constant digstore opcode
X"0038" -- DIG! -- Transfer instructions
constant lit opcode X"0100" -- LIT
constant jmp opcode X"0101" -- AGAIN,
ELSE constant jz opcode X"0102" --
IF, UNTIL constant jb4HI opcode X"010D"
-- waitB4 constant jb4LO opcode
X"0109" end opcodes  
8
\ WHYP program to multiply switch settings by
10 HEX MAIN ( -- ) BEGIN waitBTN4 \
wait to push BTN4 S_at_ \ 3B n DIG! \
3B n waitBTN4 \ 3B wait to push BTN4 2 \
76 2n DUP \ 76 76 2n 2n 2 \ 76 EC 2n
4n 2 \ 76 1D8 2n 8n \ 24E 10n DIG! \
24E AGAIN
9
Compilation of waitBTN4
waitBTN4
0000 JB4HI, X"0000", -- X"00" wait for BTN4
up 0002 JB4LO, X"0002", -- X"02" wait for BTN4
Note BTN4 is 0 or LO when not
pressed BTN4 is 1 or HI when pressed
10
Program ROM, Prom6
library IEEE use IEEE.std_logic_1164.all use
IEEE.std_logic_unsigned.all use
work.opcodes.all   entity Prom6 is port (
addr in STD_LOGIC_VECTOR (15 downto 0)
M out STD_LOGIC_VECTOR (15 downto 0)
) end Prom6
11
  architecture Prom6_arch of Prom6 is subtype
tword is std_logic_vector(15 downto 0) type
rom_array is array (0 to 18) of tword constant
rom rom_array ( JB4HI, X"0000", -- X"00"
wait for BTN4 up JB4LO, X"0002", -- X"02" wait
for BTN4 SFETCH, -- X"04" push
switches digstore, -- X"05" display JB4HI,
X"0006", -- X"06" wait for BTN4 up JB4LO,
X"0008", -- X"08" wait for BTN4 twotimes, --
X"0A" 2 DUP, -- X"0B" DUP twotimes, --
X"0C" 2 twotimes, -- X"0D" 2 plus, --
X"0E" digstore, -- X"0F" display JMP,
X"0000", -- X"10" GOTO 0 X"0000" -- X"12" )  
12
begin process(addr) variable j integer
begin j conv_integer(addr) M lt
rom(j) end process end Prom6_arch
13
(No Transcript)
14
dig7seg.vhd
15
digdisplay.vhd
Write a Comment
User Comments (0)
About PowerShow.com