Created
July 17, 2017 14:51
-
-
Save expipiplus1/3d53e7123d482f3e290e2e8d582d167e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FIFORegisters(const volatile FIFORegisters &other) | |
: inferStatus(other.inferStatus), inferGo(other.inferGo), | |
inferBeginPhys(other.inferBeginPhys), inferEndPhys(other.inferEndPhys), | |
inferReadPhys(other.inferReadPhys), | |
inferWritePhys(other.inferWritePhys), maxFIFOLevel(other.maxFIFOLevel), | |
numInferWordsWritten(other.numInferWordsWritten), | |
imageStatus(other.imageStatus), imageGo(other.imageGo), | |
imageBeginPhys(other.imageBeginPhys), imageEndPhys(other.imageEndPhys), | |
imageReadPhys(other.imageReadPhys), | |
imageWritePhys(other.imageWritePhys), | |
currentFIFOLevel(other.currentFIFOLevel), | |
numImageWordsRead(other.numImageWordsRead) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment