Advertisement
Guest User

Untitled

a guest
Feb 15th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1. traces = []
  2. textins = [
  3.     '00000000000000000000000000008000', # 1000 0000 0000 0000
  4.     '0000000000000000000000000000c000', # 1100 0000 0000 0000
  5.     '0000000000000000000000000000e000', # 1110 0000 0000 0000
  6.     '00000000000000000000000000008140', # 1000 0001 0100 0000
  7.     '0000000000000000000000000000ABE2', # 1010 1011 1110 0010
  8.     '0000000000000000000000000000ABE3'  # 1010 1011 1110 0011
  9.    
  10. ]
  11.  
  12. # Capture two traces for each input: reference and test
  13. textins = [x for t in textins for x in (t, t)]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement