Stub file for processing statements

This commit is contained in:
Nick Gasson 2008-06-03 18:26:36 +01:00
parent f9e1289463
commit 4211e651d0
3 changed files with 38 additions and 0 deletions

View File

@ -33,6 +33,11 @@ static int generate_vhdl_process(vhdl_entity *ent, ivl_process_t proc)
{ {
vhdl_process *vhdl_proc = new vhdl_process(); vhdl_process *vhdl_proc = new vhdl_process();
ivl_statement_t stmt = ivl_process_stmt(proc);
int rc = draw_stmt(vhdl_proc, stmt);
if (rc != 0)
return rc;
// Initial processes are translated to VHDL processes with // Initial processes are translated to VHDL processes with
// no sensitivity list and and indefinite wait statement at // no sensitivity list and and indefinite wait statement at
// the end // the end

32
tgt-vhdl/stmt.cc Normal file
View File

@ -0,0 +1,32 @@
/*
* VHDL code generation for statements.
*
* Copyright (C) 2008 Nick Gasson (nick@nickg.me.uk)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "vhdl_target.h"
#include <iostream>
/*
* Generate VHDL statements for the given Verilog statement and
* add them to the given VHDL process.
*/
int draw_stmt(vhdl_process *proc, ivl_statement_t stmt)
{
return 0;
}

View File

@ -12,6 +12,7 @@ void error(const char *fmt, ...);
int draw_scope(ivl_scope_t scope, void *_parent); int draw_scope(ivl_scope_t scope, void *_parent);
int draw_process(ivl_process_t net, void *cd); int draw_process(ivl_process_t net, void *cd);
int draw_stmt(vhdl_process *proc, ivl_statement_t stmt);
void remember_entity(vhdl_entity *ent); void remember_entity(vhdl_entity *ent);
vhdl_entity *find_entity(const std::string &tname); vhdl_entity *find_entity(const std::string &tname);