aboutsummaryrefslogtreecommitdiffstats
path: root/lib/lufa/Demos/Device/ClassDriver/AudioOutput/AudioOutput.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-08-27 12:53:35 -0400
committerJack Humbert <jack.humb@gmail.com>2017-08-27 12:53:35 -0400
commitba2ad57ca8977ba00228109e962f0eb4abf848a6 (patch)
tree55c7377b6b0a994c1f8e21ecb8f5340f6dd68eb6 /lib/lufa/Demos/Device/ClassDriver/AudioOutput/AudioOutput.c
parent677b89768b5ffba7261a16686ecf34f23d964580 (diff)
downloadfirmware-ba2ad57ca8977ba00228109e962f0eb4abf848a6.tar.gz
firmware-ba2ad57ca8977ba00228109e962f0eb4abf848a6.tar.bz2
firmware-ba2ad57ca8977ba00228109e962f0eb4abf848a6.zip
add rule shortcut via @samwho's suggesion
Diffstat (limited to 'lib/lufa/Demos/Device/ClassDriver/AudioOutput/AudioOutput.c')
0 files changed, 0 insertions, 0 deletions
*/ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--  Back-end for translation.
--  Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold
--
--  This program is free software: you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation, either version 2 of the License, or
--  (at your option) any later version.
--
--  This program is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--  GNU General Public License for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with this program.  If not, see <gnu.org/licenses>.
with Vhdl.Nodes; use Vhdl.Nodes;
with Translation;

package Trans_Be is
   type Sem_Foreign_Hook_Type is access
     procedure (Decl : Iir; Info : Translation.Foreign_Info_Type);

   --  Hook called by Sem_Foreign.
   Sem_Foreign_Hook : Sem_Foreign_Hook_Type := null;

   procedure Register_Translation_Back_End;
end Trans_Be;