Skip to content

Instantly share code, notes, and snippets.

@expipiplus1
Created July 17, 2017 14:51
Show Gist options
  • Save expipiplus1/3d53e7123d482f3e290e2e8d582d167e to your computer and use it in GitHub Desktop.
Save expipiplus1/3d53e7123d482f3e290e2e8d582d167e to your computer and use it in GitHub Desktop.
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