Deleted Added
sdiff udiff text old ( 6155:2b8fec056712 ) new ( 6161:8ad9be15d1e1 )
full compact
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 925 unchanged lines hidden (view full) ---

934void Sequencer::checkCoherence(const Address& addr) {
935#ifdef CHECK_COHERENCE
936 g_system_ptr->checkGlobalCoherenceInvariant(addr);
937#endif
938}
939
940bool Sequencer::getRubyMemoryValue(const Address& addr, char* value,
941 unsigned int size_in_bytes ) {
942 for(unsigned int i=0; i < size_in_bytes; i++) {
943 std::cerr << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
944 value[i] = 0; // _read_physical_memory( m_chip_ptr->getID()*RubyConfig::numberOfProcsPerChip()+m_version,
945 // addr.getAddress() + i, 1 );
946 }
947 return false; // Do nothing?
948}
949
950bool Sequencer::setRubyMemoryValue(const Address& addr, char *value,
951 unsigned int size_in_bytes) {
952 char test_buffer[64];
953
954 return false; // Do nothing?
955}
956