diff options
author | mindchasers <privateisland@mindchasers.com> | 2020-11-16 16:14:53 -0500 |
---|---|---|
committer | mindchasers <privateisland@mindchasers.com> | 2020-11-16 16:14:53 -0500 |
commit | 3fa59667468487b7931bafc30e8ec290db899ec8 (patch) | |
tree | 84910abe36f211e9583a9edbb37a42b95f67b8bc /source | |
parent | da76ee103bf89c28c7d6027371e4a420ada41932 (diff) |
directives: rename file and update for new options
Diffstat (limited to 'source')
-rw-r--r-- | source/directives.v (renamed from source/definitions.v) | 19 | ||||
-rw-r--r-- | source/top.v | 2 |
2 files changed, 14 insertions, 7 deletions
diff --git a/source/definitions.v b/source/directives.v index ad600ff..da2f420 100644 --- a/source/definitions.v +++ b/source/directives.v @@ -1,7 +1,7 @@ /* * definitions.v * - * Copyright 2(C) 018, 2019 Mind Chasers Inc. + * Copyright (C) 2018, 2019, 2020 Mind Chasers Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,14 +15,21 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * function: misc. constants + * Description: misc. directives for board options * */ -// Debug Options (only enable at most one at a time) -`define DEBUG_I2C +// Debug Options for Darsena +//`define DEBUG_I2C //`define DEBUG_MDIO //`define DEBUG_SPI +// `define ARD_EXP_UART -// V02 boards can route UART to FT2232H -`define ARD_EXP_UART +//`define DARSENA_V01 +`define DARSENA_V02 +//`define DARSENA_V03 + +// Shield Definition (PORTS 3 & 4) +// `define SHIELD_SMA_SMA +`define SHIELD_GIGE_SMA +// `define SHIELD_SFP_SMA
\ No newline at end of file diff --git a/source/top.v b/source/top.v index 3913163..23f667f 100644 --- a/source/top.v +++ b/source/top.v @@ -116,7 +116,7 @@ module top( ); `include "sgmii_params.v" -`include "definitions.v" +`include "directives.v" /* PARAMS */ |