microseq.9 (6232b00ed14c648a00b34289eb98794e48030c94) | microseq.9 (5d70612b3f814f934494f69876a4b34e13c436f9) |
---|---|
1.\" Copyright (c) 1998, 1999, Nicolas Souchu 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. --- 386 unchanged lines hidden (view full) --- 395}; 396 397struct ppb_microseq { 398 int opcode; /* microins. opcode */ 399 union ppb_insarg arg[PPB_MS_MAXARGS]; /* arguments */ 400}; 401.Ed 402.Ss Using microsequences | 1.\" Copyright (c) 1998, 1999, Nicolas Souchu 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. --- 386 unchanged lines hidden (view full) --- 395}; 396 397struct ppb_microseq { 398 int opcode; /* microins. opcode */ 399 union ppb_insarg arg[PPB_MS_MAXARGS]; /* arguments */ 400}; 401.Ed 402.Ss Using microsequences |
403To instanciate a microsequence, just declare an array of ppb_microseq | 403To instantiate a microsequence, just declare an array of ppb_microseq |
404structures and initialize it as needed. You may either use predefined macros 405or code directly your microinstructions according to the ppb_microseq 406definition. For example, 407.Bd -literal 408 struct ppb_microseq select_microseq[] = { 409 410 /* parameter list 411 */ --- 53 unchanged lines hidden --- | 404structures and initialize it as needed. You may either use predefined macros 405or code directly your microinstructions according to the ppb_microseq 406definition. For example, 407.Bd -literal 408 struct ppb_microseq select_microseq[] = { 409 410 /* parameter list 411 */ --- 53 unchanged lines hidden --- |