mirror of
https://github.com/mrehkopf/sd2snes.git
synced 2026-01-11 14:29:25 +01:00
113 lines
4.4 KiB
Verilog
113 lines
4.4 KiB
Verilog
// megafunction wizard: %LPM_DIVIDE%
|
|
// GENERATION: STANDARD
|
|
// VERSION: WM1.0
|
|
// MODULE: LPM_DIVIDE
|
|
|
|
// ============================================================
|
|
// File Name: sa1_div.v
|
|
// Megafunction Name(s):
|
|
// LPM_DIVIDE
|
|
//
|
|
// Simulation Library Files(s):
|
|
// lpm
|
|
// ============================================================
|
|
// ************************************************************
|
|
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
|
//
|
|
// 24.1std.0 Build 1077 03/04/2025 SC Lite Edition
|
|
// ************************************************************
|
|
|
|
|
|
//Copyright (C) 2025 Altera Corporation. All rights reserved.
|
|
//Your use of Altera Corporation's design tools, logic functions
|
|
//and other software and tools, and any partner logic
|
|
//functions, and any output files from any of the foregoing
|
|
//(including device programming or simulation files), and any
|
|
//associated documentation or information are expressly subject
|
|
//to the terms and conditions of the Altera Program License
|
|
//Subscription Agreement, the Altera Quartus Prime License Agreement,
|
|
//the Altera IP License Agreement, or other applicable license
|
|
//agreement, including, without limitation, that your use is for
|
|
//the sole purpose of programming logic devices manufactured by
|
|
//Altera and sold by Altera or its authorized distributors. Please
|
|
//refer to the Altera Software License Subscription Agreements
|
|
//on the Quartus Prime software download page.
|
|
|
|
|
|
// synopsys translate_off
|
|
`timescale 1 ps / 1 ps
|
|
// synopsys translate_on
|
|
module sa1_div (
|
|
clock,
|
|
denom,
|
|
numer,
|
|
quotient,
|
|
remain);
|
|
|
|
input clock;
|
|
input [15:0] denom;
|
|
input [15:0] numer;
|
|
output [15:0] quotient;
|
|
output [15:0] remain;
|
|
|
|
wire [15:0] sub_wire0;
|
|
wire [15:0] sub_wire1;
|
|
wire [15:0] quotient = sub_wire0[15:0];
|
|
wire [15:0] remain = sub_wire1[15:0];
|
|
|
|
lpm_divide LPM_DIVIDE_component (
|
|
.clock (clock),
|
|
.denom (denom),
|
|
.numer (numer),
|
|
.quotient (sub_wire0),
|
|
.remain (sub_wire1),
|
|
.aclr (1'b0),
|
|
.clken (1'b1));
|
|
defparam
|
|
LPM_DIVIDE_component.lpm_drepresentation = "SIGNED",
|
|
LPM_DIVIDE_component.lpm_hint = "LPM_REMAINDERPOSITIVE=TRUE",
|
|
LPM_DIVIDE_component.lpm_nrepresentation = "SIGNED",
|
|
LPM_DIVIDE_component.lpm_pipeline = 8,
|
|
LPM_DIVIDE_component.lpm_type = "LPM_DIVIDE",
|
|
LPM_DIVIDE_component.lpm_widthd = 16,
|
|
LPM_DIVIDE_component.lpm_widthn = 16;
|
|
|
|
|
|
endmodule
|
|
|
|
// ============================================================
|
|
// CNX file retrieval info
|
|
// ============================================================
|
|
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone IV E"
|
|
// Retrieval info: PRIVATE: PRIVATE_LPM_REMAINDERPOSITIVE STRING "TRUE"
|
|
// Retrieval info: PRIVATE: PRIVATE_MAXIMIZE_SPEED NUMERIC "-1"
|
|
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
|
// Retrieval info: PRIVATE: USING_PIPELINE NUMERIC "1"
|
|
// Retrieval info: PRIVATE: VERSION_NUMBER NUMERIC "2"
|
|
// Retrieval info: PRIVATE: new_diagram STRING "1"
|
|
// Retrieval info: LIBRARY: lpm lpm.lpm_components.all
|
|
// Retrieval info: CONSTANT: LPM_DREPRESENTATION STRING "SIGNED"
|
|
// Retrieval info: CONSTANT: LPM_HINT STRING "LPM_REMAINDERPOSITIVE=TRUE"
|
|
// Retrieval info: CONSTANT: LPM_NREPRESENTATION STRING "SIGNED"
|
|
// Retrieval info: CONSTANT: LPM_PIPELINE NUMERIC "8"
|
|
// Retrieval info: CONSTANT: LPM_TYPE STRING "LPM_DIVIDE"
|
|
// Retrieval info: CONSTANT: LPM_WIDTHD NUMERIC "16"
|
|
// Retrieval info: CONSTANT: LPM_WIDTHN NUMERIC "16"
|
|
// Retrieval info: USED_PORT: clock 0 0 0 0 INPUT NODEFVAL "clock"
|
|
// Retrieval info: USED_PORT: denom 0 0 16 0 INPUT NODEFVAL "denom[15..0]"
|
|
// Retrieval info: USED_PORT: numer 0 0 16 0 INPUT NODEFVAL "numer[15..0]"
|
|
// Retrieval info: USED_PORT: quotient 0 0 16 0 OUTPUT NODEFVAL "quotient[15..0]"
|
|
// Retrieval info: USED_PORT: remain 0 0 16 0 OUTPUT NODEFVAL "remain[15..0]"
|
|
// Retrieval info: CONNECT: @clock 0 0 0 0 clock 0 0 0 0
|
|
// Retrieval info: CONNECT: @denom 0 0 16 0 denom 0 0 16 0
|
|
// Retrieval info: CONNECT: @numer 0 0 16 0 numer 0 0 16 0
|
|
// Retrieval info: CONNECT: quotient 0 0 16 0 @quotient 0 0 16 0
|
|
// Retrieval info: CONNECT: remain 0 0 16 0 @remain 0 0 16 0
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL sa1_div.v TRUE
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL sa1_div.inc FALSE
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL sa1_div.cmp FALSE
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL sa1_div.bsf FALSE
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL sa1_div_inst.v TRUE
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL sa1_div_bb.v TRUE
|
|
// Retrieval info: LIB_FILE: lpm
|