CombinedText
stringlengths
4
3.42M
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with glib; with glib.Values; with System; with System; -- limited with GStreamer.GST_Low_Level.glib_2_0_glib_gpoll_h; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h; package GStreamer.GST_Low_Level.gst...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Declarations; with Program.Elements.Defining_Identifiers; with Program.Lexical_Elements; with Program.Elements.Expressions; package P...
with Text_IO; use Text_IO; procedure hello is begin Put_Line("Hello, world!"); end hello;
with Text_IO; use Text_IO; procedure Fibtest is Passed : Boolean := True; function Fib(N : in Positive) return Positive is separate; procedure Compare (N : in Positive; Right_Answer : in Positive) is package Int_IO is new Integer_IO(Integer); use Int_IO; My_Answer : Positive := Fib(N); begin ...
-- Copyright (C) 2019 Thierry Rascle <thierr26@free.fr> -- MIT license. Please refer to the LICENSE file. generic type Parent is abstract new Test_Event_Base with private; package Apsepp.Test_Event_Class.Generic_Assert_Num_Mixin is type Child_W_Assert_Num is new Parent with private with Type_Invariant'Cla...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <reznikmm@gmail.com> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. ...
-- Abstract : -- -- Implement [McKenzie] error recovery, extended to parallel parsers. -- -- References: -- -- [McKenzie] McKenzie, Bruce J., Yeatman, Corey, and De Vere, -- Lorraine. Error repair in shift reduce parsers. ACM Trans. Prog. -- Lang. Syst., 17(4):672-689, July 1995. Described in [Grune 2008] ref 32...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
-- This spec has been automatically generated from STM32L4x3.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.MPU is pragma Preelaborate; --------------- -- Registers -- --------------- subtype MPU_TYPER_DREGION_Fiel...
package Vole_Goto is type Small_Integer is range -32_000 .. 32_000; type Goto_Entry is record Nonterm : Small_Integer; Newstate : Small_Integer; end record; --pragma suppress(index_check); subtype Row is Integer range -1 .. Integer'Last; type Goto_Parse_Table is array (Row ra...
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" with Ada.Containers; with Text.Builder; with Yaml.Tags; package body Yaml.Parser is use type Lexer.Token_Kind; use type Text.Reference; function New_Parser return Reference is Ptr : c...
package Loop_Optimization6 is A : Integer := 0; procedure Main; end Loop_Optimization6;
-- POK header -- -- The following file is a part of the POK project. Any modification should -- be made according to the POK licence. You CANNOT use this file or a part -- of a file for your own project. -- -- For more information on the POK licence, please see our LICENCE FILE -- -- Pleas...
-- C83F01C0.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimi...
with Class1; use Class1; package PrimitivePropertyTypes is someInteger : Integer := 1; someNatural : Natural := 2; someBoolean : Boolean := False; someString : String(1 .. 5) := "hello"; someFloat : Float := 1.1; anotherFloat : Float; someClass1 : Class1.Class1; funct...
--=========================================================================== -- -- This package is the interface the Alpha internal procedures/functions -- for avoiding duplicating code -- --=========================================================================== -- -- Copyright 2021 (C) Holger Rodriguez -- -- ...
with Ada.Text_IO; use Ada.Text_IO; with Ada.Command_Line; use Ada.Command_Line; with Arbitrary; use Arbitrary; with Arbitrary.Log; use Arbitrary.Log; procedure E is precision : integer; begin if Argument_Count /= 1 then Put_Line("usage: " & Command_Name & " <digits>"); return; end if; precision := integer...
----------------------------------------------------------------------- -- util-strings-sets -- Set of strings -- Copyright (C) 2011, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file ex...
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Procedure_Body_Declarations is function Create (Not_Token : Program.Lexical_Elements.Lexi...
with Ada.Text_IO; use Ada.Text_IO; package body base_iface is procedure class_wide(Self : The_Interface'Class) is begin Put_Line(" iface'Class:class-wide, calling Self.simple"); Self.simple; end; end base_iface;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
-- -- -- package Copyright (c) Dmitry A. Kazakov -- -- Strings_Edit.Streams Luebeck -- -- Interface Spring, 2009 -- -- ...
with Ada.Text_IO; use Ada.Text_IO; with AAA.Strings; with CLIC.User_Input; use CLIC.User_Input; with GNAT.OS_Lib; package body CLIC_Ex.Commands.User_Input is function Valid_Number (Str : String) return Boolean is (for all C of Str => C in '0' .. '9'); ------------- -- Execute -- ------------- ov...
with STM32GD.Board; use STM32GD.Board; procedure Main is Now : RTC.Date_Time_Type; Wait_Time : RTC.Second_Delta_Type := 5; begin Init; Text_IO.Put_Line ("RTC Test Starting"); loop RTC.Read (Now); LED.Set; Text_IO.Put ("Seconds: "); Text_IO.Put_Integer (RTC.To_Seconds (Now)); ...
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. with AUnit.Test_Fixtures; package Tashy2.T...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
with Ada.Text_Io; use Ada.Text_Io; procedure Exceptions_From_Nested_Calls is U0 : exception; U1 : exception; Baz_Count : Natural := 0; procedure Baz is begin Baz_Count := Baz_Count + 1; if Baz_Count = 1 then raise U0; else raise U1; end if; end Baz; proced...
----------------------------------------------------------------------- -- babel-testsuite - Babel Testsuite -- Copyright (C) 2015, 2016 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file excep...
--- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../../License.txt package AdaBase.Results.Field is type Std_Field is tagged private; type Field_Access is access Std_Field; type Variant (datatype : field_types := ft_nbyte8) is record case datatype is ...
package body Loop_Optimization8_Pkg2 is function Length (Set : T) return Natural is begin return Set.Length; end Length; function Index (Set : T; Position : Natural) return Integer is begin return Set.Elements (Position); end Index; end Loop_Optimization8_Pkg2;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0...
with Ada.Unchecked_Conversion; package Tkmrpc.Request.Ike.Nc_Reset.Convert is function To_Request is new Ada.Unchecked_Conversion ( Source => Nc_Reset.Request_Type, Target => Request.Data_Type); function From_Request is new Ada.Unchecked_Conversion ( Source => Request.Data_Type, Target ...
with Libadalang.Analysis; use Libadalang.Analysis; with Libadalang.Common; use Libadalang.Common; with Rejuvenation.Navigation; use Rejuvenation.Navigation; with Rewriters_Sequence; use Rewriters_Sequence; package Rewriters_Sequence_Utils is function Rewrite (RS : Rewriters_Se...
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions...
-- Copyright 2010-2017 Free Software Foundation, Inc. -- -- 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 3 of the License, or -- (at your option) any later version. -- -- ...
-- This package has been generated automatically by GNATtest. -- Do not edit any part of it, see GNATtest documentation for more details. -- begin read only with Gnattest_Generated; package Bases.Test_Data.Tests.BaseCargo_Container.Test_Data.Tests is type Test is new GNATtest_Generated.GNATtest_Standard.Bases....
package openGL.Geometry.textured -- -- Supports per-vertex site and texture. -- is type Item is new openGL.Geometry.item with private; function new_Geometry return access Geometry.textured.item'Class; ---------- -- Vertex -- type Vertex is record Site : Vector_3; Coords...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_color_table_parameteriv_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array ...
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with System; with glib; with glib.Values; with System; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_gst_h is -- GStreamer -- * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu> -- * ...
with Ada.Text_IO; use Ada.Text_IO; -- Dans ce programme, les commentaires de spécification -- ont **volontairement** été omis ! procedure Comprendre_Mode_Parametre is function Double (N : in Integer) return Integer is begin return 2 * N; end Double; procedure Incrementer (N : in out Integer) is begin N := ...
-- ----------------------------------------------------------------- -- -- -- -- This is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public -- -- License as published by the ...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
-- { dg-do compile } -- { dg-options "-O2 -gnatp" } function Scalar_Mode_Agg_Compare_Loop return Boolean is S : constant String (1 .. 4) := "ABCD"; F : constant Natural := S'First; L : constant Natural := S'Last; begin for J in F .. L - 1 loop if S (F .. F) = "X" or (J <= L - 2 and S (J .. J + 1) = ...
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstsegment_h; with GLIB; -- with GStreamer.GST_Low_Level.glibconfig_h; with glib; with glib.Values; with System; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstel...
-- -- Copyright (C) 2015-2016 secunet Security Networks AG -- Copyright (C) 2016 Nico Huber <nico.h@gmx.de> -- -- 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,...
-- C87B43A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimit...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
package body Array25_Pkg is procedure Get_Inner (A : out Arr1) is begin null; end; procedure Get (A : out Arr2) is begin for I in Arr2'Range loop Get_Inner (A (I).Data); end loop; end; end Array25_Pkg;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
-- Procedure tests Fourier8. Code fragments -- demonstrate some features of FFT's. with Fourier8; with Text_IO; use Text_IO; with Ada.Numerics.Generic_Elementary_Functions; procedure fourier8_demo_1 is type Real is digits 15; package math is new Ada.Numerics.Generic_Elementary_Functions (Real); use math...
----------------------------------------------------------------------- -- awa-workspaces -- Module workspaces -- Copyright (C) 2011, 2012, 2015, 2017 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use t...
package body COBS.Stream.Decoder is subtype Dispatch is Instance'Class; -------------- -- Do_Flush -- -------------- procedure Do_Flush (This : in out Instance) is begin if This.Out_Index > This.Buffer'First then Dispatch (This).Flush (This.Buffer (This.Buffer'First .. Thi...
------------------------------------------------------------------------------ -- -- -- Ada User Repository Annex (AURA) -- -- Reference Implementation -- -- ...
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT IMPLEMENTATION COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- ...
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="...
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" generic type Index_Type is (<>); type Element_Type is private; with function "+" (Left, Right : Element_Type) return Element_Type is <>; with function "-" (Left, Right : Element_Type) return...
with Estimator; with Units.Navigation; use Units.Navigation; with Ada.Text_IO; use Ada.Text_IO; with Ada.Real_Time; use Ada.Real_Time; with Simulation; with Units; use Units; with Units.Vectors; use Units.Vectors; with Kalman; procedure main is subtype Elevon_Angle_Type is Angle_Type range -45.0 * Degree .. 4...
------------------------------------------------------------------------------ -- -- -- Copyright (c) 2014-2017 Vitalij Bondarenko <vibondare@gmail.com> -- -- -- ----...
-- This spec has been automatically generated from STM32WL5x_CM0P.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.EXTI is pragma Preelaborate; --------------- -- Registers -- --------------- subtype RTSR1_RT_Field i...
------------------------------------------------------------------------------ -- -- -- Ada User Repository Annex (AURA) -- -- ANNEXI-STRAYLINE Reference Implementation -- -- ...
pragma License (Unrestricted); private with System.Shared_Locking; -- implementation unit package GNAT.Task_Lock is pragma Preelaborate; procedure Lock; procedure Unlock; pragma Inline (Lock); -- renamed pragma Inline (Unlock); -- renamed private procedure Lock renames System.Shared_Locking....
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ...
package Natools.Static_Maps.S_Expressions.Templates.Dates.Cmds is pragma Pure; function Hash (S : String) return Natural; end Natools.Static_Maps.S_Expressions.Templates.Dates.Cmds;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_gen_queries_arb_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type ...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
with RASCAL.Utility; use RASCAL.Utility; with RASCAL.Heap; use RASCAL.Heap; package AcronymList is ------------------------------------------------------------------------ -- | Generic ADT for one-way linked lists -- | Author: Michael B. Feldman, The George Washington University -- | Last Mo...
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; -- with GStreamer.GST_Low_Level.glib_2_0_glib_gquark_h; with glib; with System; with glib; with glib.Values; with System; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstelement_h; package GStreamer.GST...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- A d a r u n - t i m e s p e c i f i c a t i o n -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- ...
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2021, AdaCore -- -- -- -- ...
-- Copyright (c) 2015-2019 Marcel Schneider -- for details see License.txt with Ada.Streams.Stream_IO; use Ada.Streams.Stream_IO; -- with Ada.Strings; use Ada.Strings; with Ada.Text_IO; use Ada.Text_IO; with Punctuation; use Punctuation; package body Lexer_Base is procedure OpenFile (O : in out Object; ...
---------------------------------------------------------------- -- ZLib for Ada thick binding. -- -- -- -- Copyright (C) 2002-2004 Dmitriy Anisimkov -- -- ...
with xml.Reader, ada.Text_IO; package body XML is ------------------ --- Attribute type -- function Name (Self : in Attribute_t) return String is begin return to_String (Self.Name); end Name; function Value (Self : in Attribute_t) return String is begin return ...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
--- src/gprlib.adb.orig 2021-05-19 05:22:13 UTC +++ src/gprlib.adb @@ -745,9 +745,6 @@ procedure Gprlib is for Dir of Imported_Library_Directories loop Library_Switches_Table.Append ("-L" & Dir); - if Path_Option /= null then - Add_Rpath (Dir); - end if; end loop; ...
pragma Style_Checks (Off); -- This spec has been automatically generated from ATSAMD51G19A.svd pragma Restrictions (No_Elaboration_Code); with System; -- Microchip ATSAMD51G19A Microcontroller package SAM_SVD is pragma Preelaborate; -------------------- -- Base addresses -- -------------------- A...
package body Array_Swapping is procedure Swap (A: in out ArrayType; I, J: in IndexType) with Depends => (A => (A, I, J)) is T: ElementType; begin T := A(I); A(I) := A(J); A(J) := T; end Swap; procedure Rotate3(A: in out ArrayType; X, Y, Z: in IndexType) is begin Swap(A, X, Y); ...
with Ada.Synchronous_Task_Control; use Ada.Synchronous_Task_Control; with Ada.Real_Time; use Ada.Real_Time; with STM32GD.GPIO; with STM32GD.GPIO.Pin; with STM32GD.EXTI; with STM32GD.Timer; with STM32GD.Timer.Peripheral; with STM32GD.Board; use STM32GD.Board; with Peripherals; procedure Main is package GPIO renam...
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- package body Program.Nodes.Generic_Procedure_Renaming_Declarations is function Create (Generic_Token : not null Program.Lexical_Elements ...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <reznikmm@gmail.com> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. ...
with Ada.Numerics.Generic_Elementary_Functions; with Ada.Text_IO; procedure Closest is package Math is new Ada.Numerics.Generic_Elementary_Functions (Float); Dimension : constant := 2; type Vector is array (1 .. Dimension) of Float; type Matrix is array (Positive range <>) of Vector; -- calculate the ...
------------------------------------------------------------------------------ -- A d a r u n - t i m e s p e c i f i c a t i o n -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- ...
with Ada.Unchecked_Deallocation; with SDA_Exceptions; use SDA_Exceptions; package body LCA is procedure Free is new Ada.Unchecked_Deallocation (Object => T_Cellule, Name => T_LCA); procedure Initialiser(Sda: out T_LCA) is begin Sda := null; end Initialiser; function Est_Vide (Sda : T_LCA) return Boolean i...
-- C87B14C.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimit...
-- -- Copyright 2021 (C) Holger Rodriguez -- -- SPDX-License-Identifier: BSD-3-Clause -- with LED_Control; package body Execute.LEDs is -------------------------------------------------------------------------- -- definition of the look up table for the procedures to execute -- based on the command given...
-- This spec has been automatically generated from STM32F103.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with System; package STM32_SVD.CAN is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CAN_MCR_INRQ_Field is STM32_SVD....