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

Subversion Repositories spacewiresystemc

[/] [spacewiresystemc/] [trunk/] [vpi/] [vpi_test_suit/] [write_tx_spw.h] - Diff between revs 5 and 40

Only display areas with differences | Details | Blame | View Log

Rev 5 Rev 40
static int write_tx_spw_calltf(char*user_data)
static int write_tx_spw_calltf(char*user_data)
{
{
        vpiHandle DATA_I   = vpi_handle_by_name("module_tb.DATA_I",NULL);
        vpiHandle DATA_I   = vpi_handle_by_name("module_tb.DATA_I",NULL);
        vpiHandle WR_DATA  = vpi_handle_by_name("module_tb.WR_DATA",NULL);
        vpiHandle WR_DATA  = vpi_handle_by_name("module_tb.WR_DATA",NULL);
        vpiHandle TX_FULL  = vpi_handle_by_name("module_tb.TX_FULL",NULL);
        vpiHandle TX_FULL  = vpi_handle_by_name("module_tb.TX_FULL",NULL);
 
 
        value_to_tx.format = vpiIntVal;
        value_to_tx.format = vpiIntVal;
 
 
        if(SC_TOP->reset_set())
        if(SC_TOP->reset_set())
        {
        {
                if(SC_TOP->start_tx_test())
                if(SC_TOP->start_tx_test())
                {
                {
                        switch(state_test)
                        switch(state_test)
                        {
                        {
                                case SEND_DATA:
                                case SEND_DATA:
                                        value_to_tx.value.integer = SC_TOP->take_data(position);
                                        value_to_tx.value.integer = SC_TOP->take_data(position);
                                        vpi_put_value(DATA_I, &value_to_tx, NULL, vpiNoDelay);
                                        vpi_put_value(DATA_I, &value_to_tx, NULL, vpiNoDelay);
                                        state_test = 59;
                                        state_test = 59;
                                break;
                                break;
                                case 59:
                                case 59:
                                        value_to_tx.value.integer = 1;
                                        value_to_tx.value.integer = 1;
                                        vpi_put_value(WR_DATA, &value_to_tx, NULL, vpiNoDelay);
                                        vpi_put_value(WR_DATA, &value_to_tx, NULL, vpiNoDelay);
                                        state_test = WAIT_DATA;
                                        state_test = WAIT_DATA;
                                break;
                                break;
                                case WAIT_DATA:
                                case WAIT_DATA:
                                        value_to_tx.value.integer = 0;
                                        value_to_tx.value.integer = 0;
                                        vpi_put_value(WR_DATA, &value_to_tx, NULL, vpiNoDelay);
                                        vpi_put_value(WR_DATA, &value_to_tx, NULL, vpiNoDelay);
 
 
                                        if(position <= SC_TOP->size_data_test())
                                        if(position <= SC_TOP->size_data_test_vlog())
                                        {
                                        {
                                                vpi_get_value(TX_FULL, &value_to_tx);
                                                vpi_get_value(TX_FULL, &value_to_tx);
                                                if(value_to_tx.value.integer == 1)
                                                if(value_to_tx.value.integer == 1)
                                                {
                                                {
                                                }
                                                }
                                                else
                                                else
                                                {
                                                {
                                                        state_test = SEND_DATA;
                                                        state_test = SEND_DATA;
                                                        //counter = counter + 1;
                                                        //counter = counter + 1;
                                                        position = position + 1;
                                                        position = position + 1;
                                                }
                                                }
                                        }
                                        }
                                        if(position > SC_TOP->size_data_test())
                                        if(position > SC_TOP->size_data_test_vlog())
                                        {
                                        {
                                                state_test = 60;
                                                state_test = 60;
                                        }
                                        }
                                break;
                                break;
                                case 60:
                                case 60:
                                        SC_TOP->end_tx_test();
                                        SC_TOP->end_tx_test();
                                        counter = position = state_test = 0;
                                        counter = position = state_test = 0;
                                break;
                                break;
                        }
                        }
                }
                }
 
 
                if(SC_TOP->enable_time_code_tx_test())
                if(SC_TOP->enable_time_code_tx_test())
                {
                {
 
 
                }
                }
        }
        }
 
 
        return 0;
        return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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