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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [src/] [two-op_cmp.v] - Blame information for rev 2

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
/*                 TWO-OPERAND ARITHMETIC: CMP[.B] INSTRUCTION               */
25
/*---------------------------------------------------------------------------*/
26
/* Test the CMP[.B] instruction.                                             */
27
/*===========================================================================*/
28
 
29
initial
30
   begin
31
      $display(" ===============================================");
32
      $display("|                 START SIMULATION              |");
33
      $display(" ===============================================");
34
      repeat(5) @(posedge mclk);
35
      stimulus_done = 0;
36
 
37
 
38
      // CMP (WORD MODE)
39
      //--------------------------------------------------------
40
      @(r15==16'h1000);
41
 
42
      if (r5    !==16'h8888) tb_error("====== CMP without Carry =====");
43
      if (r6    !==16'h9999) tb_error("====== CMP with Carry =====");
44
 
45
 
46
      // CMP.B (BYTE MODE)
47
      //--------------------------------------------------------
48
      @(r15==16'h2000);
49
 
50
      if (r5    !==16'h8888) tb_error("====== CMP.B  without Carry =====");
51
      if (r6    !==16'h9999) tb_error("====== CMP.B  with Carry =====");
52
 
53
 
54
      // CMP (WORD MODE): Check Flags
55
      //--------------------------------------------------------
56
 
57
      @(r15==16'h3000);
58
      if (r2    !==16'h0004) tb_error("====== CMP FLAG: Flag   check error: V=0, N=1, Z=0, C=0 =====");
59
      if (r5    !==16'h0666) tb_error("====== CMP FLAG: Result check error: V=0, N=1, Z=0, C=0 =====");
60
 
61
      @(r15==16'h3001);
62
      if (r2    !==16'h0001) tb_error("====== CMP FLAG: Flag   check error: V=0, N=0, Z=0, C=1 =====");
63
      if (r5    !==16'h0555) tb_error("====== CMP FLAG: Result check error: V=0, N=0, Z=0, C=1 =====");
64
 
65
      @(r15==16'h3002);
66
      if (r2    !==16'h0003) tb_error("====== CMP FLAG: Flag   check error: V=0, N=0, Z=1, C=1 =====");
67
      if (r5    !==16'h0333) tb_error("====== CMP FLAG: Result check error: V=0, N=0, Z=1, C=1 =====");
68
 
69
      @(r15==16'h3003);
70
      if (r2    !==16'h0104) tb_error("====== CMP FLAG: Flag   check error: V=1, N=1, Z=0, C=0 =====");
71
      if (r5    !==16'h7ff0) tb_error("====== CMP FLAG: Result check error: V=1, N=1, Z=0, C=0 =====");
72
 
73
      @(r15==16'h3004);
74
      if (r2    !==16'h0101) tb_error("====== CMP FLAG: Flag   check error: V=1, N=0, Z=0, C=1 =====");
75
      if (r5    !==16'h8000) tb_error("====== CMP FLAG: Result check error: V=1, N=0, Z=0, C=1 =====");
76
 
77
 
78
      // CMP.B (BYTE MODE): Check Flags
79
      //--------------------------------------------------------
80
 
81
      @(r15==16'h4000);
82
      if (r2    !==16'h0004) tb_error("====== CMP.B FLAG: Flag   check error: V=0, N=1, Z=0, C=0 =====");
83
      if (r5    !==16'h5106) tb_error("====== CMP.B FLAG: Result check error: V=0, N=1, Z=0, C=0 =====");
84
 
85
      @(r15==16'h4001);
86
      if (r2    !==16'h0001) tb_error("====== CMP.B FLAG: Flag   check error: V=0, N=0, Z=0, C=1 =====");
87
      if (r5    !==16'h5305) tb_error("====== CMP.B FLAG: Result check error: V=0, N=0, Z=0, C=1 =====");
88
 
89
      @(r15==16'h4002);
90
      if (r2    !==16'h0003) tb_error("====== CMP.B FLAG: Flag   check error: V=0, N=0, Z=1, C=1 =====");
91
      if (r5    !==16'h8a03) tb_error("====== CMP.B FLAG: Result check error: V=0, N=0, Z=1, C=1 =====");
92
 
93
      @(r15==16'h4003);
94
      if (r2    !==16'h0104) tb_error("====== CMP.B FLAG: Flag   check error: V=1, N=1, Z=0, C=0 =====");
95
      if (r5    !==16'h817f) tb_error("====== CMP.B FLAG: Result check error: V=1, N=1, Z=0, C=0 =====");
96
 
97
      @(r15==16'h4004);
98
      if (r2    !==16'h0101) tb_error("====== CMP.B FLAG: Flag   check error: V=1, N=0, Z=0, C=1 =====");
99
      if (r5    !==16'h5480) tb_error("====== CMP.B FLAG: Result check error: V=1, N=0, Z=0, C=1 =====");
100
 
101
 
102
      stimulus_done = 1;
103
   end
104
 

powered by: WebSVN 2.1.0

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