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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [src/] [sing-op_call.v] - Blame information for rev 18

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 olivier.gi
/*===========================================================================*/
2
/* Copyright (C) 2001 Authors                                                */
3
/*                                                                           */
4
/* This source file may be used and distributed without restriction provided */
5
/* that this copyright statement is not removed from the file and that any   */
6
/* derivative work contains the original copyright notice and the associated */
7
/* disclaimer.                                                               */
8
/*                                                                           */
9
/* This source file is free software; you can redistribute it and/or modify  */
10
/* it under the terms of the GNU Lesser General Public License as published  */
11
/* by the Free Software Foundation; either version 2.1 of the License, or    */
12
/* (at your option) any later version.                                       */
13
/*                                                                           */
14
/* This source is distributed in the hope that it will be useful, but WITHOUT*/
15
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or     */
16
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public       */
17
/* License for more details.                                                 */
18
/*                                                                           */
19
/* You should have received a copy of the GNU Lesser General Public License  */
20
/* along with this source; if not, write to the Free Software Foundation,    */
21
/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA        */
22
/*                                                                           */
23
/*===========================================================================*/
24
/*                 SINGLE-OPERAND ARITHMETIC: CALL  INSTRUCTION              */
25
/*---------------------------------------------------------------------------*/
26
/* Test the CALL instruction.                                                */
27 18 olivier.gi
/*                                                                           */
28
/* Author(s):                                                                */
29
/*             - Olivier Girard,    olgirard@gmail.com                       */
30
/*                                                                           */
31
/*---------------------------------------------------------------------------*/
32
/* $Rev: 17 $                                                                */
33
/* $LastChangedBy: olivier.girard $                                          */
34
/* $LastChangedDate: 2009-08-04 23:15:39 +0200 (Tue, 04 Aug 2009) $          */
35 2 olivier.gi
/*===========================================================================*/
36
 
37
initial
38
   begin
39
      $display(" ===============================================");
40
      $display("|                 START SIMULATION              |");
41
      $display(" ===============================================");
42
      repeat(5) @(posedge mclk);
43
      stimulus_done = 0;
44
 
45
      // Initialization
46
      @(r15==16'h1000);
47
      if (r1    !==16'h0252) tb_error("====== SP  initialization =====");
48
      if (r5    !==16'h0000) tb_error("====== R5  initialization  =====");
49
 
50
 
51
      // Addressing mode: Rn
52
      @(r15==16'h2000);
53
      if (r1    !==16'h0252) tb_error("====== CALL (Rn mode): SP value      =====");
54
      if (r5    !==16'h1234) tb_error("====== CALL (Rn mode): R5 value      =====");
55
 
56
 
57
      // Addressing mode: @Rn
58
      @(r15==16'h3000);
59
      if (r1    !==16'h0252) tb_error("====== CALL (@Rn mode): SP value      =====");
60
      if (r4    !==16'h0212) tb_error("====== CALL (@Rn mode): R4 value      =====");
61
      if (r5    !==16'h5678) tb_error("====== CALL (@Rn mode): R5 value      =====");
62
 
63
 
64
      // Addressing mode: @Rn+
65
      @(r15==16'h4000);
66
      if (r1    !==16'h0252) tb_error("====== CALL (@Rn+ mode): SP value      =====");
67
      if (r4    !==16'h0218) tb_error("====== CALL (@Rn+ mode): R4 value      =====");
68
      if (r5    !==16'h9abc) tb_error("====== CALL (@Rn+ mode): R5 value      =====");
69
 
70
      // Addressing mode: #N
71
      @(r15==16'h5000);
72
      if (r1    !==16'h0252) tb_error("====== CALL (#N mode): SP value      =====");
73
      if (r5    !==16'habcd) tb_error("====== CALL (#N mode): R5 value      =====");
74
 
75
 
76
      // Addressing mode: X(Rn)
77
      @(r15==16'h6000);
78
      if (r1    !==16'h0252) tb_error("====== CALL (X(Rn) mode): SP value      =====");
79
      if (r5    !==16'hef01) tb_error("====== CALL (X(Rn) mode): R5 value      =====");
80
 
81
 
82
      // Addressing mode: EDE
83
      @(r15==16'h7000);
84
      if (r1    !==16'h0252) tb_error("====== CALL (EDE mode): SP value      =====");
85
      if (r5    !==16'h2345) tb_error("====== CALL (EDE mode): R5 value      =====");
86
 
87
 
88
      // Addressing mode: &EDE
89
      @(r15==16'h8000);
90
      if (r1    !==16'h0252) tb_error("====== CALL (&EDE mode): SP value      =====");
91
      if (r5    !==16'h6789) tb_error("====== CALL (&EDE mode): R5 value      =====");
92
 
93
 
94
      stimulus_done = 1;
95
   end
96
 

powered by: WebSVN 2.1.0

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