//////////////////////////////////////////////////////////////////////
//// ////
//// 8051 stack pointer ////
//// ////
//// This file is part of the 8051 cores project ////
//// http://www.opencores.org/cores/8051/ ////
//// ////
//// Description ////
//// 8051 special function register: stack pointer. ////
//// ////
//// To Do: ////
//// nothing ////
//// ////
//// Author(s): ////
//// - Simon Teran, simont@opencores.org ////
//// ////
//////////////////////////////////////////////////////////////////////
//// ////
//// Copyright (C) 2000 Authors and OPENCORES.ORG ////
//// ////
//// This source file may be used and distributed without ////
//// restriction provided that this copyright statement is not ////
//// removed from the file and that any derivative work contains ////
//// the original copyright notice and the associated disclaimer. ////
//// ////
//// This source file is free software; you can redistribute it ////
//// and/or modify it under the terms of the GNU Lesser General ////
//// Public License as published by the Free Software Foundation; ////
//// either version 2.1 of the License, or (at your option) any ////
//// later version. ////
//// ////
//// This source is distributed in the hope that it will be ////
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
//// PURPOSE. See the GNU Lesser General Public License for more ////
//// details. ////
//// ////
//// You should have received a copy of the GNU Lesser General ////
//// Public License along with this source; if not, download it ////
//// from http://www.opencores.org/lgpl.shtml ////
//// ////
//////////////////////////////////////////////////////////////////////
//
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.5 2003/01/13 14:14:41 simont
// replace some modules
//
// Revision 1.4 2002/11/05 17:23:54 simont
// add module oc8051_sfr, 256 bytes internal ram
//
// Revision 1.3 2002/09/30 17:33:59 simont
// prepared header
//
//
// synopsys translate_off
`include "oc8051_timescale.v"
// synopsys translate_on
`include "oc8051_defines.v"
module oc8051_sp (clk, rst, ram_rd_sel, ram_wr_sel, wr_addr, wr, wr_bit, data_in, sp_out, sp_w);
input clk, rst, wr, wr_bit;
input [2:0] ram_rd_sel, ram_wr_sel;
input [7:0] data_in, wr_addr;
output [7:0] sp_out, sp_w;
reg [7:0] sp_out, sp_w;
reg pop;
wire write;
wire [7:0] sp_t;
reg [7:0] sp;
assign write = ((wr_addr==`OC8051_SFR_SP) & (wr) & !(wr_bit));
assign sp_t= write ? data_in : sp;
always @(posedge clk or posedge rst)
begin
if (rst)
sp <= `OC8051_RST_SP;
else if (write)
sp <= data_in;
else
sp <= sp_out;
end
always @(sp or ram_wr_sel)
begin
//
// push
if (ram_wr_sel==`OC8051_RWS_SP) sp_w = sp + 8'h01;
else sp_w = sp;
end
always @(sp_t or ram_wr_sel or pop or write)
begin
//
// push
if (write) sp_out = sp_t;
else if (ram_wr_sel==`OC8051_RWS_SP) sp_out = sp_t + 8'h01;
else sp_out = sp_t - {7'b0, pop};
end
always @(posedge clk or posedge rst)
begin
if (rst)
pop <= 1'b0;
else if (ram_rd_sel==`OC8051_RRS_SP) pop <= 1'b1;
else pop <= 1'b0;
end
endmodule