pmr ppc
API Reference Manual  /  4 Model-to-Model Interfaces  / 

port_space

Description
I/O port interface.
SIM_INTERFACE(port_space) {
        exception_type_t (*port_operation)(conf_object_t *NOTNULL pspace_obj,
                                           generic_transaction_t *NOTNULL mop,
                                           map_info_t map_info);
        attr_value_t (*read)(conf_object_t *NOTNULL obj,
                             conf_object_t *initiator,
                             physical_address_t addr,
                             int length,
                             int inquiry);
        exception_type_t (*write)(conf_object_t *NOTNULL obj,
                                  conf_object_t *initiator,
                                  physical_address_t addr,
                                  attr_value_t data,
                                  int inquiry);
};

#define PORT_SPACE_INTERFACE "port_space"

Execution Context
Cell Context for all methods.

pmr ppc