source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/data/two_level_branch_predictor-branch_history_table.pos @ 27

Last change on this file since 27 was 27, checked in by chou, 17 years ago

Release 3 du viewer: Etape 1 et 2 du projet complet et à jour.

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2
3<description>
4
5   <comment>
6     Ce composant décrit la table d'historique de branchement à deux niveaux
7   </comment>
8
9   <entity name="branch_history_table"
10           type="Branch_History_Table"
11           schema="1" >
12
13      <port name="clock"           
14            localisation="west"
15            direction="in">
16        Port d'horloge                                                   
17      </port>
18      <port name="predict"         
19            localisation="west"
20            direction="in">
21        Interface de prediction : demande de la direction pour une adresse
22      </port>
23      <port name="branch_complete"
24            localisation="east"
25            direction="in">
26        Interface de mise à jour des branchement                           
27      </port>
28
29   </entity>
30
31   <architecture>
32
33      <component name="meta_predictor"
34                 type="Meta_Predictor"
35                 size_x="10"
36                 pos_x="50"
37                 size_y="10"
38                 pos_y="20" >
39
40         <port_map name="clock"       
41                   component="branch_history_table"
42                   port="clock" />
43         <port_map name="predict"
44                   component="branch_history_table"
45                   port="predict"/>
46         <port_map name="branch_complete"
47                   component="branch_history_table"
48                   port="branch_complete" />
49
50      </component>
51<!--
52     <component name="meta_predictor"
53                 type="Meta_Predictor"
54                 size_x="10"
55                 pos_x="50"
56                 size_y="10"
57                 pos_y="20" >
58
59         <port_map name="clock"       
60                   component="branch_history_table"
61                   port="clock" />
62         <port_map name="predict"
63                   component="branch_history_table"
64                   port="predict"/>
65         <port_map name="branch_complete"
66                   component="branch_history_table"
67                   port="branch_complete" />
68
69      </component>
70-->
71   </architecture>
72
73</description>
Note: See TracBrowser for help on using the repository browser.