OpenCores
URL https://opencores.org/ocsvn/8051/8051/trunk

Subversion Repositories 8051

[/] [8051/] [tags/] [rel_12/] [rtl/] [verilog/] [oc8051_acc.v] - Diff between revs 46 and 76

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 46 Rev 76
Line 42... Line 42...
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
//
//
// CVS Revision History
// CVS Revision History
//
//
// $Log: not supported by cvs2svn $
// $Log: not supported by cvs2svn $
 
// Revision 1.7  2002/09/30 17:33:59  simont
 
// prepared header
 
//
//
//
 
 
// synopsys translate_off
// synopsys translate_off
`include "oc8051_timescale.v"
`include "oc8051_timescale.v"
// synopsys translate_on
// synopsys translate_on
 
 
`include "oc8051_defines.v"
`include "oc8051_defines.v"
 
 
 
 
module oc8051_acc (clk, rst, bit_in, data_in, data2_in, wr, wr_bit, wad2, wr_addr, rd_addr,
module oc8051_acc (clk, rst, bit_in, data_in, data2_in, wr, wr_bit, wad2, wr_addr, rd_addr,
                data_out, bit_out, p, stb_o, we_o, ack_i, xdata);
                data_out, bit_out, p, rd_x, xdata);
// clk          (in)  clock
// clk          (in)  clock
// rst          (in)  reset
// rst          (in)  reset
// bit_in       (in)  bit input - used in case of writing bits to acc (bit adddressable memory space - alu carry) [oc8051_alu.desCy]
// bit_in       (in)  bit input - used in case of writing bits to acc (bit adddressable memory space - alu carry) [oc8051_alu.desCy]
// data_in      (in)  data input - used to write to acc (from alu destiantion 1) [oc8051_alu.des1]
// data_in      (in)  data input - used to write to acc (from alu destiantion 1) [oc8051_alu.des1]
// data2_in     (in)  data 2 input - write to acc, from alu detination 2 - instuctions mul and div [oc8051_alu.des2]
// data2_in     (in)  data 2 input - write to acc, from alu detination 2 - instuctions mul and div [oc8051_alu.des2]
Line 64... Line 67...
// wr_bit       (in)  write bit addresable - actine high [oc8051_decoder.bit_addr -r]
// wr_bit       (in)  write bit addresable - actine high [oc8051_decoder.bit_addr -r]
// wad2         (in)  write data 2 [oc8051_decoder.wad2 -r]
// wad2         (in)  write data 2 [oc8051_decoder.wad2 -r]
// wr_addr      (in)  write address (if is addres of acc and white high must be written to acc) [oc8051_ram_wr_sel.out]
// wr_addr      (in)  write address (if is addres of acc and white high must be written to acc) [oc8051_ram_wr_sel.out]
// data_out     (out) data output [oc8051_alu_src1_sel.acc oc8051_alu_src2_sel.acc oc8051_comp.acc oc8051_ram_sel.acc]
// data_out     (out) data output [oc8051_alu_src1_sel.acc oc8051_alu_src2_sel.acc oc8051_comp.acc oc8051_ram_sel.acc]
// p            (out) parity [oc8051_psw.p]
// p            (out) parity [oc8051_psw.p]
// stb_o            (in)  strobe
// rd_x         (in)  read external
// we_o     (in)  write to external ram
 
// ack_i            (in)  acknowlage from external ram
 
// xdata        (in)  external data input
// xdata        (in)  external data input
//
//
 
 
 
 
input clk, rst, wr, wr_bit, wad2, bit_in, stb_o, we_o, ack_i;
input clk, rst, wr, wr_bit, wad2, bit_in, rd_x;
input [2:0] rd_addr;
input [2:0] rd_addr;
input [7:0] wr_addr, data_in, data2_in, xdata;
input [7:0] wr_addr, data_in, data2_in, xdata;
 
 
output p, bit_out;
output p, bit_out;
output [7:0] data_out;
output [7:0] data_out;
Line 92... Line 93...
//must check if write high and correct address
//must check if write high and correct address
always @(posedge clk or posedge rst)
always @(posedge clk or posedge rst)
begin
begin
  if (rst)
  if (rst)
    data_out <= #1 `OC8051_RST_ACC;
    data_out <= #1 `OC8051_RST_ACC;
  else if (stb_o && !we_o && ack_i)
  else if (rd_x)
    data_out <= #1 xdata;
    data_out <= #1 xdata;
  else if (wad2)
  else if (wad2)
    data_out <= #1 data2_in;
    data_out <= #1 data2_in;
  else if (wr) begin
  else if (wr) begin
    if (!wr_bit) begin
    if (!wr_bit) begin

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.