1e6b30a3dSAndrew Rist /**************************************************************
2*66b0ed24SMatthias Seidel  *
3e6b30a3dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4e6b30a3dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5e6b30a3dSAndrew Rist  * distributed with this work for additional information
6e6b30a3dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7e6b30a3dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8e6b30a3dSAndrew Rist  * "License"); you may not use this file except in compliance
9e6b30a3dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*66b0ed24SMatthias Seidel  *
11e6b30a3dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*66b0ed24SMatthias Seidel  *
13e6b30a3dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14e6b30a3dSAndrew Rist  * software distributed under the License is distributed on an
15e6b30a3dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16e6b30a3dSAndrew Rist  * KIND, either express or implied.  See the License for the
17e6b30a3dSAndrew Rist  * specific language governing permissions and limitations
18e6b30a3dSAndrew Rist  * under the License.
19*66b0ed24SMatthias Seidel  *
20e6b30a3dSAndrew Rist  *************************************************************/
21e6b30a3dSAndrew Rist 
22*66b0ed24SMatthias Seidel 
23cdf0e10cSrcweir #define tblsele_mask_width 16
24cdf0e10cSrcweir #define tblsele_mask_height 16
25*66b0ed24SMatthias Seidel #define tblsele_mask_x_hot 14
26*66b0ed24SMatthias Seidel #define tblsele_mask_y_hot 8
27cdf0e10cSrcweir 
28*66b0ed24SMatthias Seidel static const unsigned char tblsele_mask_bits[] = {
29*66b0ed24SMatthias Seidel 	0x00,0x00,
30*66b0ed24SMatthias Seidel 	0x00,0x00,
31*66b0ed24SMatthias Seidel 	0x00,0x00,
32*66b0ed24SMatthias Seidel 	0x00,0x06,
33*66b0ed24SMatthias Seidel 	0x00,0x0e,
34*66b0ed24SMatthias Seidel 	0x00,0x1e,
35*66b0ed24SMatthias Seidel 	0xfe,0x3f,
36*66b0ed24SMatthias Seidel 	0xfe,0x7f,
37*66b0ed24SMatthias Seidel 	0xfe,0xff,
38*66b0ed24SMatthias Seidel 	0xfe,0x7f,
39*66b0ed24SMatthias Seidel 	0xfe,0x3f,
40*66b0ed24SMatthias Seidel 	0x00,0x1e,
41*66b0ed24SMatthias Seidel 	0x00,0x0e,
42*66b0ed24SMatthias Seidel 	0x00,0x06,
43*66b0ed24SMatthias Seidel 	0x00,0x00,
44*66b0ed24SMatthias Seidel 	0x00,0x00};
45