Realigned CLK naming to 1K block size

This commit is contained in:
Willem Cazander 2025-01-07 04:03:07 +01:00
parent a76762d9f7
commit 59cd01551e
31 changed files with 137 additions and 137 deletions

View file

@ -155,36 +155,36 @@ public enum FourCornerDotCake {
/// Code Language Keywords for VHDL/C++ and Java/etc which allows a user to load a custom word dictionary.
/// TODO: Add a few more sources and do a few dedup alias rename sessions AND abbr... unpacking + aliasses
FC_CLK9P_A(196608 + (1024*0), 1024), // start at "2^17+2^16"
FC_CLK9P_B(196608 + (1024*1), 1024),
FC_CLK9P_C(196608 + (1024*2), 1024),
FC_CLK9P_D(196608 + (1024*3), 1024),
FC_CLK9P_E(196608 + (1024*4), 1024),
FC_CLK9P_F(196608 + (1024*5), 1024),
FC_CLK9P_G(196608 + (1024*6), 1024),
FC_CLK9P_H(196608 + (1024*7), 1024),
FC_CLK9P_I(196608 + (1024*8), 1024),
FC_CLK9P_J(196608 + (1024*9), 1024),
FC_CLK9P_K(196608 + (1024*10), 1024),
FC_CLK9P_L(196608 + (1024*11), 1024),
FC_CLK9P_M(196608 + (1024*12), 1024),
FC_CLK9P_N(196608 + (1024*13), 1024),
FC_CLK9P_O(196608 + (1024*14), 1024),
FC_CLK9P_P(196608 + (1024*15), 1024),
FC_CLK9P_Q(196608 + (1024*16), 1024),
FC_CLK9P_R(196608 + (1024*17), 1024),
FC_CLK9P_S(196608 + (1024*18), 1024),
FC_CLK9P_T(196608 + (1024*19), 1024),
FC_CLK9P_U(196608 + (1024*20), 1024),
FC_CLK9P_V(196608 + (1024*21), 1024),
FC_CLK9P_W(196608 + (1024*22), 1024),
FC_CLK9P_X(196608 + (1024*23), 1024),
FC_CLK9P_Y(196608 + (1024*24), 1024),
FC_CLK9P_Z(196608 + (1024*25), 1024),
FC_CLK9P_AMP(196608 + (1024*26), 1024),
FC_CLK1K_A(196608 + (1024*0), 1024), // start at "2^17+2^16"
FC_CLK1K_B(196608 + (1024*1), 1024),
FC_CLK1K_C(196608 + (1024*2), 1024),
FC_CLK1K_D(196608 + (1024*3), 1024),
FC_CLK1K_E(196608 + (1024*4), 1024),
FC_CLK1K_F(196608 + (1024*5), 1024),
FC_CLK1K_G(196608 + (1024*6), 1024),
FC_CLK1K_H(196608 + (1024*7), 1024),
FC_CLK1K_I(196608 + (1024*8), 1024),
FC_CLK1K_J(196608 + (1024*9), 1024),
FC_CLK1K_K(196608 + (1024*10), 1024),
FC_CLK1K_L(196608 + (1024*11), 1024),
FC_CLK1K_M(196608 + (1024*12), 1024),
FC_CLK1K_N(196608 + (1024*13), 1024),
FC_CLK1K_O(196608 + (1024*14), 1024),
FC_CLK1K_P(196608 + (1024*15), 1024),
FC_CLK1K_Q(196608 + (1024*16), 1024),
FC_CLK1K_R(196608 + (1024*17), 1024),
FC_CLK1K_S(196608 + (1024*18), 1024),
FC_CLK1K_T(196608 + (1024*19), 1024),
FC_CLK1K_U(196608 + (1024*20), 1024),
FC_CLK1K_V(196608 + (1024*21), 1024),
FC_CLK1K_W(196608 + (1024*22), 1024),
FC_CLK1K_X(196608 + (1024*23), 1024),
FC_CLK1K_Y(196608 + (1024*24), 1024),
FC_CLK1K_Z(196608 + (1024*25), 1024),
FC_CLK1K_AMP(196608 + (1024*26), 1024),
/// Align unicode
__RESERVED_CLKSP(1 + FC_CLK9P_AMP.getStop(), 0x37000 - FC_CLK9P_AMP.getStop() - 1),
__RESERVED_CLKSP(1 + FC_CLK1K_AMP.getStop(), 0x37000 - FC_CLK1K_AMP.getStop() - 1),
/// Support lower 11 bit of unicode to be encoded with one cake point.
__RESERVED_UNI1102_1C(1 + __RESERVED_CLKSP.getStop(), 2048),

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 29, 2024
*/
public enum FCDotCLK9PDashA implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashA implements FCDotCLKSourceCakePoints {
AND(FCDotCLKSource.APL_DYADIC,
FCDotCLKSource.VHDL,
@ -64,7 +64,7 @@ public enum FCDotCLK9PDashA implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashA(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashA(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -75,6 +75,6 @@ public enum FCDotCLK9PDashA implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_A.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_A.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 29, 2024
*/
public enum FCDotCLK9PDashB implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashB implements FCDotCLKSourceCakePoints {
BINOMIAL(FCDotCLKSource.APL_DYADIC),
BEGIN(FCDotCLKSource.VHDL),
@ -55,7 +55,7 @@ public enum FCDotCLK9PDashB implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashB(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashB(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -66,6 +66,6 @@ public enum FCDotCLK9PDashB implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_B.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_B.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashC implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashC implements FCDotCLKSourceCakePoints {
CASE(FCDotCLKSource.VHDL,
FCDotCLKSource.CPP,
@ -71,7 +71,7 @@ public enum FCDotCLK9PDashC implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashC(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashC(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -82,6 +82,6 @@ public enum FCDotCLK9PDashC implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_C.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_C.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashD implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashD implements FCDotCLKSourceCakePoints {
DIVIDE(FCDotCLKSource.APL_DYADIC, FCDotCLKSource.ERLANG.toQNameAlias("div")),
DISCONNECT(FCDotCLKSource.VHDL),
@ -48,7 +48,7 @@ public enum FCDotCLK9PDashD implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashD(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashD(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -59,6 +59,6 @@ public enum FCDotCLK9PDashD implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_D.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_D.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashE implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashE implements FCDotCLKSourceCakePoints {
EQUAL(FCDotCLKSource.APL_DYADIC),
ELSE(FCDotCLKSource.VHDL,
@ -59,7 +59,7 @@ public enum FCDotCLK9PDashE implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashE(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashE(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -70,6 +70,6 @@ public enum FCDotCLK9PDashE implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_E.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_E.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashF implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashF implements FCDotCLKSourceCakePoints {
FILE(FCDotCLKSource.VHDL),
FOR(FCDotCLKSource.VHDL,
@ -57,7 +57,7 @@ public enum FCDotCLK9PDashF implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashF(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashF(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -68,6 +68,6 @@ public enum FCDotCLK9PDashF implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_F.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_F.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashG implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashG implements FCDotCLKSourceCakePoints {
GENERATE(FCDotCLKSource.VHDL),
GENERIC(FCDotCLKSource.VHDL),
@ -42,7 +42,7 @@ public enum FCDotCLK9PDashG implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashG(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashG(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -53,6 +53,6 @@ public enum FCDotCLK9PDashG implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_G.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_G.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,13 +30,13 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashH implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashH implements FCDotCLKSourceCakePoints {
;
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashH(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashH(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -47,6 +47,6 @@ public enum FCDotCLK9PDashH implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_H.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_H.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashI implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashI implements FCDotCLKSourceCakePoints {
IF(FCDotCLKSource.VHDL,
FCDotCLKSource.CPP,
@ -54,7 +54,7 @@ public enum FCDotCLK9PDashI implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashI(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashI(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -65,6 +65,6 @@ public enum FCDotCLK9PDashI implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_I.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_I.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,13 +30,13 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashJ implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashJ implements FCDotCLKSourceCakePoints {
;
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashJ(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashJ(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -47,6 +47,6 @@ public enum FCDotCLK9PDashJ implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_J.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_J.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,13 +30,13 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashK implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashK implements FCDotCLKSourceCakePoints {
;
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashK(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashK(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -47,6 +47,6 @@ public enum FCDotCLK9PDashK implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_K.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_K.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashL implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashL implements FCDotCLKSourceCakePoints {
LOGARITHM(FCDotCLKSource.APL_DYADIC),
LABEL(FCDotCLKSource.VHDL),
@ -45,7 +45,7 @@ public enum FCDotCLK9PDashL implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashL(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashL(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -56,6 +56,6 @@ public enum FCDotCLK9PDashL implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_L.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_L.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashM implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashM implements FCDotCLKSourceCakePoints {
MINUS(FCDotCLKSource.APL_DYADIC),
MINIMUM(FCDotCLKSource.APL_DYADIC),
@ -48,7 +48,7 @@ public enum FCDotCLK9PDashM implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashM(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashM(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -59,6 +59,6 @@ public enum FCDotCLK9PDashM implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_M.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_M.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashN implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashN implements FCDotCLKSourceCakePoints {
NAND(FCDotCLKSource.APL_DYADIC, FCDotCLKSource.VHDL),
NOR(FCDotCLKSource.APL_DYADIC, FCDotCLKSource.VHDL),
@ -49,7 +49,7 @@ public enum FCDotCLK9PDashN implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashN(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashN(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -60,6 +60,6 @@ public enum FCDotCLK9PDashN implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_N.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_N.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashO implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashO implements FCDotCLKSourceCakePoints {
OR(FCDotCLKSource.APL_DYADIC,
FCDotCLKSource.VHDL,
@ -50,7 +50,7 @@ public enum FCDotCLK9PDashO implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashO(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashO(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -61,6 +61,6 @@ public enum FCDotCLK9PDashO implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_O.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_O.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashP implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashP implements FCDotCLKSourceCakePoints {
PLUS(FCDotCLKSource.APL_DYADIC),
POWER(FCDotCLKSource.APL_DYADIC),
@ -48,7 +48,7 @@ public enum FCDotCLK9PDashP implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashP(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashP(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -59,6 +59,6 @@ public enum FCDotCLK9PDashP implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_P.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_P.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,13 +30,13 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashQ implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashQ implements FCDotCLKSourceCakePoints {
;
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashQ(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashQ(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -47,6 +47,6 @@ public enum FCDotCLK9PDashQ implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_Q.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_Q.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashR implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashR implements FCDotCLKSourceCakePoints {
RESIDUE(FCDotCLKSource.APL_DYADIC),
RANGE(FCDotCLKSource.VHDL),
@ -57,7 +57,7 @@ public enum FCDotCLK9PDashR implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashR(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashR(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -68,6 +68,6 @@ public enum FCDotCLK9PDashR implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_R.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_R.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashS implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashS implements FCDotCLKSourceCakePoints {
SELECT(FCDotCLKSource.VHDL),
SEVERITY(FCDotCLKSource.VHDL),
@ -61,7 +61,7 @@ public enum FCDotCLK9PDashS implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashS(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashS(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -72,6 +72,6 @@ public enum FCDotCLK9PDashS implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_S.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_S.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashT implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashT implements FCDotCLKSourceCakePoints {
TIMES(FCDotCLKSource.APL_DYADIC),
THEN(FCDotCLKSource.VHDL),
@ -63,7 +63,7 @@ public enum FCDotCLK9PDashT implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashT(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashT(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -74,6 +74,6 @@ public enum FCDotCLK9PDashT implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_T.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_T.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashU implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashU implements FCDotCLKSourceCakePoints {
UNAFFECTED(FCDotCLKSource.VHDL),
UNITS(FCDotCLKSource.VHDL),
@ -45,7 +45,7 @@ public enum FCDotCLK9PDashU implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashU(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashU(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -56,6 +56,6 @@ public enum FCDotCLK9PDashU implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_U.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_U.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashV implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashV implements FCDotCLKSourceCakePoints {
VARIABLE(FCDotCLKSource.VHDL),
VIRTUAL(FCDotCLKSource.CPP, FCDotCLKSource.RUST),
@ -41,7 +41,7 @@ public enum FCDotCLK9PDashV implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashV(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashV(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -52,6 +52,6 @@ public enum FCDotCLK9PDashV implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_V.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_V.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashW implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashW implements FCDotCLKSourceCakePoints {
WAIT(FCDotCLKSource.VHDL),
WHEN(FCDotCLKSource.VHDL, FCDotCLKSource.ERLANG),
@ -47,7 +47,7 @@ public enum FCDotCLK9PDashW implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashW(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashW(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -58,6 +58,6 @@ public enum FCDotCLK9PDashW implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_W.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_W.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,7 +30,7 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashX implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashX implements FCDotCLKSourceCakePoints {
XNOR(FCDotCLKSource.VHDL),
XOR(FCDotCLKSource.VHDL, FCDotCLKSource.CPP, FCDotCLKSource.ERLANG),
@ -39,7 +39,7 @@ public enum FCDotCLK9PDashX implements FCDotCLKSourceCakePoints {
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashX(FCDotCLKSourceLookup...lookups) {
private FCDotCLK1KDashX(FCDotCLKSourceLookup...lookups) {
this.lookups = lookups;
}
@ -50,6 +50,6 @@ public enum FCDotCLK9PDashX implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_X.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_X.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,14 +30,14 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashY implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashY implements FCDotCLKSourceCakePoints {
YIELD(FCDotCLKSource.RUST, FCDotCLKSource.PYTHON, FCDotCLKSource.ES6),
;
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashY(FCDotCLKSourceLookup... lookups) {
private FCDotCLK1KDashY(FCDotCLKSourceLookup... lookups) {
this.lookups = lookups;
}
@ -48,6 +48,6 @@ public enum FCDotCLK9PDashY implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_Y.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_Y.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import org.x4o.o2o.fc18.FourCornerDotCake;
@ -30,13 +30,13 @@ import org.x4o.o2o.fc18.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK9PDashZ implements FCDotCLKSourceCakePoints {
public enum FCDotCLK1KDashZ implements FCDotCLKSourceCakePoints {
;
final private FCDotCLKSourceLookup[] lookups;
private FCDotCLK9PDashZ(FCDotCLKSourceLookup... lookups) {
private FCDotCLK1KDashZ(FCDotCLKSourceLookup... lookups) {
this.lookups = lookups;
}
@ -47,6 +47,6 @@ public enum FCDotCLK9PDashZ implements FCDotCLKSourceCakePoints {
@Override
public int[] cakePoints() {
return new int[] {FourCornerDotCake.FC_CLK9P_Z.getStart() + ordinal()};
return new int[] {FourCornerDotCake.FC_CLK1K_Z.getStart() + ordinal()};
}
}

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import java.util.Objects;

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
import java.util.Optional;

View file

@ -20,7 +20,7 @@
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;
/**
*

View file

@ -22,9 +22,9 @@
*/
/**
* 18 bit Four Corner enterprise Code Language Keywords in block of 2 to the Power of 9.
* 18 bit Four Corner enterprise Code Language Keywords in block of 1024 words.
*
*
* @since 1.0
*/
package org.x4o.o2o.fc18.clk9p;
package org.x4o.o2o.fc18.clk1k;