Add copyright to files I primarily authored in simulator/
authorMichael Nolan <mtnolan2640@gmail.com>
Sun, 23 Aug 2020 20:06:24 +0000 (16:06 -0400)
committerMichael Nolan <mtnolan2640@gmail.com>
Sun, 23 Aug 2020 20:06:24 +0000 (16:06 -0400)
src/soc/simulator/gas.py
src/soc/simulator/program.py

index 571302bba870702ea76bdf56130254dd0edaecb4..14b2cd2c4e5d61d4f42e8bfe766ca8950180bf00 100644 (file)
@@ -1,6 +1,7 @@
 import tempfile
 import subprocess
 import struct
+# Copyright (C) 2020 Michael Nolan <mtnolan2640@gmail.com>
 
 
 def get_assembled_instruction(instruction, bigendian=False):
index 1c254c929fd085366ee77545a67a1d8f8fd3e2ce..86cbf6b31a47be5ca286eb5a65853785ebf7218a 100644 (file)
@@ -3,6 +3,7 @@
 takes powerpc assembly instructions and turns them into LE/BE binary
 data.  calls powerpc64-linux-gnu-as, ld and objcopy to do so.
 """
+# Copyright (C) 2020 Michael Nolan <mtnolan2640@gmail.com>
 
 import tempfile
 import subprocess