Fixup module docstring in sim.py

The copyright notice should surely be in a comment, rather than the
docstring. And change the docstring itself to match what the file
does.
This commit is contained in:
Rupert Swarbrick 2020-03-03 17:00:00 +00:00 committed by Rupert Swarbrick
parent b90a24f00c
commit 73658abb63

View file

@ -1,22 +1,20 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
""" # Copyright 2019 Google LLC
Copyright 2019 Google LLC #
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Licensed under the Apache License, Version 2.0 (the "License"); """Regression script for running the Spike UVM testbench"""
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Regression script for RISC-V random instruction generator
"""
import argparse import argparse
import os import os