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
# | |
# This file is part of LiteX. | |
# | |
# Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr> | |
# Copyright (c) 2017 Pierre-Olivier Vauboin <po@lambdaconcept> | |
# Copyright (c) 2021 Jevin Sweval <jevinsweval@gmail.com> | |
# SPDX-License-Identifier: BSD-2-Clause | |
from pathlib import Path | |
import os |
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
#!/bin/sh | |
# Create message to be encrypted | |
echo "Creating message file" | |
echo "---------------------" | |
echo "My secret message" > message.txt | |
echo "done\n" | |
# Create asymmetric keypair | |
echo "Creating asymmetric key pair" | |
echo "----------------------------" |
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
package tmds_pkg; | |
typedef struct packed { | |
logic inv_q_m; | |
logic use_xor; | |
logic [7:0] q_m; | |
} tmds_encoded_t; | |
typedef enum logic [9:0]{ | |
CTRL_00 = 10'b1101010100, |
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
################################################################ | |
# This is a generated script based on design: streams_example | |
# | |
# Though there are limitations about the generated script, | |
# the main purpose of this utility is to make learning | |
# IP Integrator Tcl commands easier. | |
################################################################ | |
namespace eval _tcl { |