mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-29 01:03:29 +02:00
Enable support for providing a queue maximum index
This commit is contained in:
+3
-3
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2014 Stephen Williams ([email protected])
|
||||
* Copyright (c) 2014-2020 Stephen Williams ([email protected])
|
||||
*
|
||||
* This source code is free software; you can redistribute it
|
||||
* and/or modify it in source code form under the terms of the GNU
|
||||
@@ -22,8 +22,8 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
netqueue_t::netqueue_t(ivl_type_t vec)
|
||||
: netdarray_t(vec)
|
||||
netqueue_t::netqueue_t(ivl_type_t vec, long max_idx)
|
||||
: netdarray_t(vec), max_idx_(max_idx)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user