search for: appnot

Displaying 20 results from an estimated 24 matches for "appnot".

Did you mean: appnote
2016 Aug 18
8
[RFC] AAP Backend
...jects. We believe the code base is sufficiently mature that it is appropriate for inclusion. Currently, the full source for AAP can be found on Github: https://github.com/embecosm Details about the ISA, and the hardware implementation can be found on our website: http://www.embecosm.com/resources/appnotes/#EAN13 http://www.embecosm.com/resources/appnotes/#EAN14 We are also planning to talk about AAP at the LLVM Cauldron in Hebden Bridge. We look forward to discussing our work on AAP with those who are attending. Thank you, Ed Jones
2016 Nov 16
2
[RFC] AAP Backend
...re that it is appropriate >> for inclusion. Currently, the full source for AAP can be found on Github: >> https://github.com/embecosm >> >> Details about the ISA, and the hardware implementation can be found on >> our website: >> http://www.embecosm.com/resources/appnotes/#EAN13 >> http://www.embecosm.com/resources/appnotes/#EAN14 >> >> We are also planning to talk about AAP at the LLVM Cauldron in Hebden >> Bridge. We look forward to discussing our work on AAP with those who are >> attending. >> >> Thank you, >> Ed...
2016 Aug 25
2
[RFC] AAP Backend
...re that it is appropriate >> for inclusion. Currently, the full source for AAP can be found on Github: >> https://github.com/embecosm >> >> Details about the ISA, and the hardware implementation can be found on >> our website: >> http://www.embecosm.com/resources/appnotes/#EAN13 >> http://www.embecosm.com/resources/appnotes/#EAN14 >> >> We are also planning to talk about AAP at the LLVM Cauldron in Hebden >> Bridge. We look forward to discussing our work on AAP with those who are >> attending. >> >> Thank you, >> Ed...
2017 Feb 01
2
Status of AAP (Embecosm's demonstration architecture)?
...eview activity seemingly went quiet (although review code has been updated quite recently). Is AAP likely to land any time soon? Also an AAP architecture question (possibly the wrong forum, though evidently the AAP authors follow this list) - the architecture presentation ( http://www.embecosm.com/appnotes/ean13/ean13.pdf ) shows in fig 2.1 multiple 16-bit-address data memory stores, seemingly with overlapping address ranges (0000-FFFF). How is a data store selected, e.g. for use with subsequent LDB/STB? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://list...
2013 May 01
1
[LLVMdev] auto-generation of archGenDisassemblerTables.inc?
...ing into development of an llvm-objdump utility for hexagon and I've read that there is a way to have tablegen automatically generate decode tables for you. I've not been able to find much info on this topic, the best info I've been able to find is this tutorial: http://www.embecosm.com/appnotes/ean10/ean10-howto-llvmas-1.0.html#idp3570032 I've managed to get tablegen to generate the HexagonGenDisassemblerTables.inc file, but the file is empty. What is required in order to properly generate the table(s)? Is this information documented somewhere that I've overlooked? Thanks, Mar...
2014 Dec 30
1
[PATCH 1/11] ARM: tegra: add function to control the GPU rail clamp
...Can we get this documented > > somewhere? > The TRM does mention a read after the write. Check the section 32.2.2.3. > Unfortunately this doesn't seem to be included in the public TRM. It would be nice if this could be documented either in the next version of the TRM or as a public Appnote. Thanks, Lucas
2015 Aug 31
0
USB HID Spec help (passing strings)
...iSerialNumber string index to the address of it in memory (in other words, load it from Flash into a global var, and then use that address when the iSerialNumber pointer is requested), but from how it is implemented, I couldn?t figure it out. I?ll look again. http://ww1.microchip.com/downloads/en/AppNotes/01176A.pdf <http://ww1.microchip.com/downloads/en/AppNotes/01176A.pdf> has code (Example 6) that allows you to specify a custom function to generate the string descriptor responses. It looks like it should be fairly simple to special-case the serial number descriptor. -- Charles Lepple cl...
2010 Mar 15
1
gpxe + SYSLINUX menus = Fail?
I am attempting to setup a test gpxe(linux.0) http site, to test among other things the recent dynamic option 252 solution. In the process of investigation I stumbled across http://www.etherboot.org/wiki/appnotes/authmenus which indicates the gpxe can launch vesamenu.c32 directly. Various other pages on etherboot's site indicate menu.c32/vesamenu.c32 can be used independently as well. Has this changed? I have spent quite a bit of time trying to get the authmenus example working, and it is one fai...
2015 Aug 20
2
Problem Compiling AsmParser
...res(ComputeAvailableFeatures(STI.getFeatureBits())); } Destructors for both TestAsmParser and MCTargetAsmParser class are available. I am using CMake. I added the following lines to AsmParser/CMakeLists.txt (From the Assembler Guide by Simon Cook from Embecosm Link <http://www.embecosm.com/appnotes/ean10/ean10-howto-llvmas-1.0.pdf>) *add_llvm_library(LLVMTestAsmParser TestAsmParser.cpp )* and the followings to main CMakeLists.txt *tablegen(LLVM TestGenAsmMatcher.inc -gen-asm-matcher)add_subdirectory(AsmParser)* Any help is appreciated. Cheers, ES -------------- next part ------...
2015 Mar 11
5
[LLVMdev] Customize Standard C Library Using LLVM (to support llvm backend optimization)
...l#glibc compiling glibc using llvm may not be a proper option. On the other hand, according to: http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-January/047088.html llvm could be able to compile newlib, thus people consider newlib as an alternative. However, according to: http://www.embecosm.com/appnotes/ean9/ean9-howto-newlib-1.0.html#id2711887 newlib intends to support binaries for bare metal (no OS) software. It implements only the hardware independent parts (e.g libc and libm) and leave a stub for each hardware dependent syscall (e.g everything in libgloss). In fact I tried to compile a sim...
2015 Aug 31
2
USB HID Spec help (passing strings)
iSerialNumber does not need to be unique per device - it is not very many bits wide. I?m pretty sure I don?t *need* iSerialNumber?I mean, I could just remove it from the report descriptor altogether. But since it is available to give, and we are writing each board?s serial number into flash as part of the micro-controller programming (we aren?t talking a staggering number of boards per year
2015 Sep 02
1
USB HID Spec help (passing strings)
...attery.type is something else that I possibly won?t know until the code is running. Our UPS can use different attached batteries, and will be able to discern what it is at runtime, and that?s when it would be able to report battery.type. Thanks for the help Charles?that is a very good link to the Appnote considering you haven?t done PIC32 work. ? My google skills failed me. Rob Groner Software Engineer Level II RTD Embedded Technologies, Inc. ISO 9001 and AS9100 Certified Ph: +1 814-234-8087 www.rtd.com<http://www.rtd.com/> -------------- next part -------------- An HTML attachment wa...
2002 Aug 28
0
FreeBSD Security Notice FreeBSD-SN-02:05
...tp://online.securityfocus.com/bid/1445/info/> +------------------------------------------------------------------------+ Port name: ethereal Affected: versions < ethereal-0.9.6 Status: Fixed Buffer overflows in BGP, IS-IS, and WCP dissectors. <URL:http://www.ethereal.com/appnotes/enpa-sa-00005.html> <URL:http://www.ethereal.com/appnotes/enpa-sa-00006.html> +------------------------------------------------------------------------+ Port name: fam Affected: versions < fam-2.6.8 Status: Fixed "Unprivileged users can potentially learn names...
2003 Apr 21
0
torisa: trying to understand the design
...rd page (generation of ALE and DWR from MEMWR and CS2..5) Can somebody explain me how the magic there works? Why can't just do ALE = ~(CS3 | CS5) and DWR = MEMWR ? (DS app note 326/452, "DS2141A, DS2143, DS2151, DS2153 Interfacing to a Nonmultiplexed Bus", at http://www.maxim-ic.com/appnotes.cfm/appnote_number/452 does just that) Thanks, HoraPe --- Horacio J. Pe?a horape@compendium.com.ar horape@uninet.edu
2010 Jul 23
2
PATCH: Let "dhcp" command iterate over interfaces like autoboot()
Hello all, I was reading http://www.etherboot.org/wiki/appnotes/autobootchainurl, and figured that as long as I was going to be modifying the code I might as well try a cleaner solution. ?Attached to this message is a patch that makes the following changes: 1) Allow the "dhcp" command to accept a list of interfaces and to try them in order until it...
2009 Jan 30
3
looking for a link or pdf ot something about opensip/openser and load balancing
hi i need a link or something about asterisk load balancing i cant find any, i only found a paragraf in an email anything wiil be wolcome thanks! David -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Nov 10
2
Checklist for eDirectory back-end?
Aren't Friday's wonderful! I've just been hit up with a request from management to install Samba on our Solaris 8 UNIX servers to share out information to the windows PC's. This wouldn't be an issue if the backend was Windows AD but in our case it's eDirectory. The shares also need to be seamlessly accessible to eDirectory based groups/users without interfering with the
2004 May 31
2
Crc4 issues
Hi All, This is our 2nd E1 client that we try to use crc4 either with the e100p or with the e405p without luck. After some trials, we ask the telco to switch off crc4 on their side and everything works flawlessly. Is there anything in the crc4 calculation that may be broken? We took a look at wct1xxx.c and wct4xx.c but there doesn't seem to be much there to be fixed (apparently the crc4
2013 Sep 24
0
[LLVMdev] request for tutorial
...04/intro-to-llvm-mc-project.html> and an old dev meeting talk by Daniel Dunba, along with a section here < http://llvm.org/docs/CodeGenerator.html#the-mc-layer>r. There's also a quite thorough tutorial specifically about implementing an integrated assembler < http://www.embecosm.com/appnotes/ean10/ean10-howto-llvmas-1.0.html>. Other than that, I don't know very much material to recommend about MC. If you gain any insight about a specific thing in the course of your backend project, please feel free to share that knowledge by documenting < http://llvm.org/docs/SphinxQuickst...
2002 May 13
0
FreeBSD Security Notice FreeBSD-SN-02:02
...&item=7223&utag=> +------------------------------------------------------------------------+ Port name: ethereal Affected: versions < ethereal-0.9.3 Status: Fixed SNMP vulnerability: malformed SNMP packets may cause ethereal to crash. <URL:http://www.ethereal.com/appnotes/enpa-sa-00003.html> +------------------------------------------------------------------------+ Port name: icecast Affected: versions < icecast-1.3.12 Status: Fixed Directory traversal vulnerability. Remote attackers may cause a denial of service via a URL that ends in . (...