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
`default_nettype none | |
// cclayton - simple/generic AVMM regmap | |
module avmm_regmap #( | |
NUM_READ_ONLY_REG = 10, | |
NUM_READ_WRITE_REG = 10, | |
DATA_WIDTH = 32, | |
ADDRESS_STEP = 5 | |
)( |
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
using System; | |
using System.Globalization; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Controls.Primitives; | |
using System.Windows.Data; | |
using System.Windows.Input; | |
using System.Windows.Media; | |
using System.Windows.Threading; | |
using Calendar = System.Windows.Controls.Calendar; |
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
'put the excel file, the image folder, and the script in the same folder | |
spreadsheetName = "Countries.xlsx" | |
imagesType = ".png" | |
imageNameColumn = "A" | |
imageColumn = "D" | |
imageWidth = 150 | |
Set objExcel = CreateObject("Excel.Application") |